From 6f8bd4c9eca8fa862abf944cb02553cc30892957 Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 15:07:02 +0200 Subject: [PATCH 1/7] feat: use CI scripts --- dist/index.js | 8 +++++--- scripts/verify.ts | 7 ++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index edf45c8..c5be61c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3997,9 +3997,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge Object.defineProperty(exports, "__esModule", ({ value: true })); const exec_1 = __nccwpck_require__(514); const run = (skipBuild, wsdir) => __awaiter(void 0, void 0, void 0, function* () { - yield (0, exec_1.exec)("bit status --strict", [], { cwd: wsdir }); - if (!skipBuild) { - yield (0, exec_1.exec)("bit build", [], { cwd: wsdir }); + if (skipBuild) { + yield (0, exec_1.exec)("bit ci verify", [], { cwd: wsdir }); + } + else { + yield (0, exec_1.exec)("bit ci verify --build", [], { cwd: wsdir }); } }); exports["default"] = run; diff --git a/scripts/verify.ts b/scripts/verify.ts index fe2e864..6226885 100644 --- a/scripts/verify.ts +++ b/scripts/verify.ts @@ -1,9 +1,10 @@ import { exec } from "@actions/exec"; const run = async (skipBuild: boolean, wsdir: string) => { - await exec("bit status --strict", [], { cwd: wsdir }); - if (!skipBuild) { - await exec("bit build", [], { cwd: wsdir }); + if (skipBuild) { + await exec("bit ci verify", [], { cwd: wsdir }); + } else { + await exec("bit ci verify --build", [], { cwd: wsdir }); } }; From 8b603a21491d7d6b66d738d4208e00da98abe21c Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 15:08:20 +0200 Subject: [PATCH 2/7] test: use branch action for tests --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index be19aa2..e6bd96f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,4 +14,4 @@ jobs: with: ws-dir: 'test-data' - name: Bit Verify - uses: bit-tasks/verify@main \ No newline at end of file + uses: bit-tasks/verify@use-ci-scripts \ No newline at end of file From 1e14bfc2a975619efa7130f9e92ef5cea784e96e Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 15:19:44 +0200 Subject: [PATCH 3/7] use nightly version --- test-data/workspace.jsonc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test-data/workspace.jsonc b/test-data/workspace.jsonc index 3c8a9fc..5e63180 100644 --- a/test-data/workspace.jsonc +++ b/test-data/workspace.jsonc @@ -87,5 +87,8 @@ // "teambit.react/react": { } } }, - "org.scope-name/hello-world-app": {} + "org.scope-name/hello-world-app": {}, + "teambit.harmony/bit": { + "engine": "1.11.43" + } } From c15fff363c6946c813a20aab0f41dfc517b5ed8c Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 15:29:40 +0200 Subject: [PATCH 4/7] fix: ci verify command --- action.yml | 5 +- dist/index.js | 2952 +++++++++++++++++++++++++++++++++++++++++++-- dist/licenses.txt | 19 + index.ts | 4 +- package-lock.json | 23 +- package.json | 4 +- scripts/verify.ts | 19 +- 7 files changed, 2885 insertions(+), 141 deletions(-) diff --git a/action.yml b/action.yml index a77978c..9ba3f7d 100644 --- a/action.yml +++ b/action.yml @@ -7,9 +7,6 @@ inputs: ws-dir: description: "Workspace json file directory path" required: false - skip-build: - description: "Skip running 'bit build'" - required: false runs: - using: 'node20' + using: 'node22' main: 'dist/index.js' diff --git a/dist/index.js b/dist/index.js index c5be61c..4d421e4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,7 +1,7 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 351: +/***/ 7351: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -27,8 +27,8 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.issue = exports.issueCommand = void 0; -const os = __importStar(__nccwpck_require__(37)); -const utils_1 = __nccwpck_require__(278); +const os = __importStar(__nccwpck_require__(2037)); +const utils_1 = __nccwpck_require__(5278); /** * Commands * @@ -100,7 +100,7 @@ function escapeProperty(s) { /***/ }), -/***/ 186: +/***/ 2186: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -135,12 +135,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; -const command_1 = __nccwpck_require__(351); +const command_1 = __nccwpck_require__(7351); const file_command_1 = __nccwpck_require__(717); -const utils_1 = __nccwpck_require__(278); -const os = __importStar(__nccwpck_require__(37)); -const path = __importStar(__nccwpck_require__(17)); -const oidc_utils_1 = __nccwpck_require__(41); +const utils_1 = __nccwpck_require__(5278); +const os = __importStar(__nccwpck_require__(2037)); +const path = __importStar(__nccwpck_require__(1017)); +const oidc_utils_1 = __nccwpck_require__(8041); /** * The code to exit an action */ @@ -425,17 +425,17 @@ exports.getIDToken = getIDToken; /** * Summary exports */ -var summary_1 = __nccwpck_require__(327); +var summary_1 = __nccwpck_require__(1327); Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); /** * @deprecated use core.summary */ -var summary_2 = __nccwpck_require__(327); +var summary_2 = __nccwpck_require__(1327); Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); /** * Path exports */ -var path_utils_1 = __nccwpck_require__(981); +var path_utils_1 = __nccwpck_require__(2981); Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); @@ -472,10 +472,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; // We use any as a valid input type /* eslint-disable @typescript-eslint/no-explicit-any */ -const fs = __importStar(__nccwpck_require__(147)); -const os = __importStar(__nccwpck_require__(37)); -const uuid_1 = __nccwpck_require__(840); -const utils_1 = __nccwpck_require__(278); +const fs = __importStar(__nccwpck_require__(7147)); +const os = __importStar(__nccwpck_require__(2037)); +const uuid_1 = __nccwpck_require__(5840); +const utils_1 = __nccwpck_require__(5278); function issueFileCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { @@ -508,7 +508,7 @@ exports.prepareKeyValueMessage = prepareKeyValueMessage; /***/ }), -/***/ 41: +/***/ 8041: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -524,9 +524,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.OidcClient = void 0; -const http_client_1 = __nccwpck_require__(255); -const auth_1 = __nccwpck_require__(526); -const core_1 = __nccwpck_require__(186); +const http_client_1 = __nccwpck_require__(6255); +const auth_1 = __nccwpck_require__(5526); +const core_1 = __nccwpck_require__(2186); class OidcClient { static createHttpClient(allowRetry = true, maxRetry = 10) { const requestOptions = { @@ -592,7 +592,7 @@ exports.OidcClient = OidcClient; /***/ }), -/***/ 981: +/***/ 2981: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -618,7 +618,7 @@ var __importStar = (this && this.__importStar) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0; -const path = __importStar(__nccwpck_require__(17)); +const path = __importStar(__nccwpck_require__(1017)); /** * toPosixPath converts the given path to the posix form. On Windows, \\ will be * replaced with /. @@ -657,7 +657,7 @@ exports.toPlatformPath = toPlatformPath; /***/ }), -/***/ 327: +/***/ 1327: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -673,8 +673,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0; -const os_1 = __nccwpck_require__(37); -const fs_1 = __nccwpck_require__(147); +const os_1 = __nccwpck_require__(2037); +const fs_1 = __nccwpck_require__(7147); const { access, appendFile, writeFile } = fs_1.promises; exports.SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY'; exports.SUMMARY_DOCS_URL = 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary'; @@ -947,7 +947,7 @@ exports.summary = _summary; /***/ }), -/***/ 278: +/***/ 5278: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -994,7 +994,7 @@ exports.toCommandProperties = toCommandProperties; /***/ }), -/***/ 514: +/***/ 1514: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1029,8 +1029,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getExecOutput = exports.exec = void 0; -const string_decoder_1 = __nccwpck_require__(576); -const tr = __importStar(__nccwpck_require__(159)); +const string_decoder_1 = __nccwpck_require__(1576); +const tr = __importStar(__nccwpck_require__(8159)); /** * Exec a command. * Output will be streamed to the live console. @@ -1104,7 +1104,7 @@ exports.getExecOutput = getExecOutput; /***/ }), -/***/ 159: +/***/ 8159: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1139,13 +1139,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.argStringToArray = exports.ToolRunner = void 0; -const os = __importStar(__nccwpck_require__(37)); -const events = __importStar(__nccwpck_require__(361)); -const child = __importStar(__nccwpck_require__(81)); -const path = __importStar(__nccwpck_require__(17)); -const io = __importStar(__nccwpck_require__(436)); -const ioUtil = __importStar(__nccwpck_require__(962)); -const timers_1 = __nccwpck_require__(512); +const os = __importStar(__nccwpck_require__(2037)); +const events = __importStar(__nccwpck_require__(2361)); +const child = __importStar(__nccwpck_require__(2081)); +const path = __importStar(__nccwpck_require__(1017)); +const io = __importStar(__nccwpck_require__(7436)); +const ioUtil = __importStar(__nccwpck_require__(1962)); +const timers_1 = __nccwpck_require__(9512); /* eslint-disable @typescript-eslint/unbound-method */ const IS_WINDOWS = process.platform === 'win32'; /* @@ -1729,7 +1729,7 @@ class ExecState extends events.EventEmitter { /***/ }), -/***/ 526: +/***/ 5526: /***/ (function(__unused_webpack_module, exports) { "use strict"; @@ -1817,7 +1817,7 @@ exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHand /***/ }), -/***/ 255: +/***/ 6255: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1853,10 +1853,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; -const http = __importStar(__nccwpck_require__(685)); -const https = __importStar(__nccwpck_require__(687)); -const pm = __importStar(__nccwpck_require__(835)); -const tunnel = __importStar(__nccwpck_require__(294)); +const http = __importStar(__nccwpck_require__(3685)); +const https = __importStar(__nccwpck_require__(5687)); +const pm = __importStar(__nccwpck_require__(9835)); +const tunnel = __importStar(__nccwpck_require__(4294)); var HttpCodes; (function (HttpCodes) { HttpCodes[HttpCodes["OK"] = 200] = "OK"; @@ -2429,7 +2429,7 @@ const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCa /***/ }), -/***/ 835: +/***/ 9835: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2512,7 +2512,7 @@ function isLoopbackAddress(host) { /***/ }), -/***/ 962: +/***/ 1962: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -2548,8 +2548,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge var _a; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0; -const fs = __importStar(__nccwpck_require__(147)); -const path = __importStar(__nccwpck_require__(17)); +const fs = __importStar(__nccwpck_require__(7147)); +const path = __importStar(__nccwpck_require__(1017)); _a = fs.promises // export const {open} = 'fs' , exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink; @@ -2702,7 +2702,7 @@ exports.getCmdPath = getCmdPath; /***/ }), -/***/ 436: +/***/ 7436: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -2737,9 +2737,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.findInPath = exports.which = exports.mkdirP = exports.rmRF = exports.mv = exports.cp = void 0; -const assert_1 = __nccwpck_require__(491); -const path = __importStar(__nccwpck_require__(17)); -const ioUtil = __importStar(__nccwpck_require__(962)); +const assert_1 = __nccwpck_require__(9491); +const path = __importStar(__nccwpck_require__(1017)); +const ioUtil = __importStar(__nccwpck_require__(1962)); /** * Copies a file or folder. * Based off of shelljs - https://github.com/shelljs/shelljs/blob/9237f66c52e5daa40458f94f9565e18e8132f5a6/src/cp.js @@ -3008,27 +3008,2723 @@ function copyFile(srcFile, destFile, force) { /***/ }), -/***/ 294: +/***/ 1532: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -module.exports = __nccwpck_require__(219); +"use strict"; + + +const ANY = Symbol('SemVer ANY') +// hoisted class for cyclic dependency +class Comparator { + static get ANY () { + return ANY + } + + constructor (comp, options) { + options = parseOptions(options) + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value + } + } + + comp = comp.trim().split(/\s+/).join(' ') + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) + } + + parse (comp) { + const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + const m = comp.match(r) + + if (!m) { + throw new TypeError(`Invalid comparator: ${comp}`) + } + + this.operator = m[1] !== undefined ? m[1] : '' + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } + } + + toString () { + return this.value + } + + test (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY || version === ANY) { + return true + } + + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } + } + + return cmp(version, this.operator, this.semver, this.options) + } + + intersects (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (this.operator === '') { + if (this.value === '') { + return true + } + return new Range(comp.value, options).test(this.value) + } else if (comp.operator === '') { + if (comp.value === '') { + return true + } + return new Range(this.value, options).test(comp.semver) + } + + options = parseOptions(options) + + // Special cases where nothing can possibly be lower + if (options.includePrerelease && + (this.value === '<0.0.0-0' || comp.value === '<0.0.0-0')) { + return false + } + if (!options.includePrerelease && + (this.value.startsWith('<0.0.0') || comp.value.startsWith('<0.0.0'))) { + return false + } + + // Same direction increasing (> or >=) + if (this.operator.startsWith('>') && comp.operator.startsWith('>')) { + return true + } + // Same direction decreasing (< or <=) + if (this.operator.startsWith('<') && comp.operator.startsWith('<')) { + return true + } + // same SemVer and both sides are inclusive (<= or >=) + if ( + (this.semver.version === comp.semver.version) && + this.operator.includes('=') && comp.operator.includes('=')) { + return true + } + // opposite directions less than + if (cmp(this.semver, '<', comp.semver, options) && + this.operator.startsWith('>') && comp.operator.startsWith('<')) { + return true + } + // opposite directions greater than + if (cmp(this.semver, '>', comp.semver, options) && + this.operator.startsWith('<') && comp.operator.startsWith('>')) { + return true + } + return false + } +} + +module.exports = Comparator + +const parseOptions = __nccwpck_require__(785) +const { safeRe: re, t } = __nccwpck_require__(9523) +const cmp = __nccwpck_require__(5098) +const debug = __nccwpck_require__(427) +const SemVer = __nccwpck_require__(8088) +const Range = __nccwpck_require__(9828) + + +/***/ }), + +/***/ 9828: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SPACE_CHARACTERS = /\s+/g + +// hoisted class for cyclic dependency +class Range { + constructor (range, options) { + options = parseOptions(options) + + if (range instanceof Range) { + if ( + range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease + ) { + return range + } else { + return new Range(range.raw, options) + } + } + + if (range instanceof Comparator) { + // just put it in the set and return + this.raw = range.value + this.set = [[range]] + this.formatted = undefined + return this + } + + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease + + // First reduce all whitespace as much as possible so we do not have to rely + // on potentially slow regexes like \s*. This is then stored and used for + // future error messages as well. + this.raw = range.trim().replace(SPACE_CHARACTERS, ' ') + + // First, split on || + this.set = this.raw + .split('||') + // map the range to a 2d array of comparators + .map(r => this.parseRange(r.trim())) + // throw out any comparator lists that are empty + // this generally means that it was not a valid range, which is allowed + // in loose mode, but will still throw if the WHOLE range is invalid. + .filter(c => c.length) + + if (!this.set.length) { + throw new TypeError(`Invalid SemVer Range: ${this.raw}`) + } + + // if we have any that are not the null set, throw out null sets. + if (this.set.length > 1) { + // keep the first one, in case they're all null sets + const first = this.set[0] + this.set = this.set.filter(c => !isNullSet(c[0])) + if (this.set.length === 0) { + this.set = [first] + } else if (this.set.length > 1) { + // if we have any that are *, then the range is just * + for (const c of this.set) { + if (c.length === 1 && isAny(c[0])) { + this.set = [c] + break + } + } + } + } + + this.formatted = undefined + } + + get range () { + if (this.formatted === undefined) { + this.formatted = '' + for (let i = 0; i < this.set.length; i++) { + if (i > 0) { + this.formatted += '||' + } + const comps = this.set[i] + for (let k = 0; k < comps.length; k++) { + if (k > 0) { + this.formatted += ' ' + } + this.formatted += comps[k].toString().trim() + } + } + } + return this.formatted + } + + format () { + return this.range + } + + toString () { + return this.range + } + + parseRange (range) { + // memoize range parsing for performance. + // this is a very hot path, and fully deterministic. + const memoOpts = + (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | + (this.options.loose && FLAG_LOOSE) + const memoKey = memoOpts + ':' + range + const cached = cache.get(memoKey) + if (cached) { + return cached + } + + const loose = this.options.loose + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE] + range = range.replace(hr, hyphenReplace(this.options.includePrerelease)) + debug('hyphen replace', range) + + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range) + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[t.TILDETRIM], tildeTrimReplace) + debug('tilde trim', range) + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[t.CARETTRIM], caretTrimReplace) + debug('caret trim', range) + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + let rangeList = range + .split(' ') + .map(comp => parseComparator(comp, this.options)) + .join(' ') + .split(/\s+/) + // >=0.0.0 is equivalent to * + .map(comp => replaceGTE0(comp, this.options)) + + if (loose) { + // in loose mode, throw out any that are not valid comparators + rangeList = rangeList.filter(comp => { + debug('loose invalid filter', comp, this.options) + return !!comp.match(re[t.COMPARATORLOOSE]) + }) + } + debug('range list', rangeList) + + // if any comparators are the null set, then replace with JUST null set + // if more than one comparator, remove any * comparators + // also, don't include the same comparator more than once + const rangeMap = new Map() + const comparators = rangeList.map(comp => new Comparator(comp, this.options)) + for (const comp of comparators) { + if (isNullSet(comp)) { + return [comp] + } + rangeMap.set(comp.value, comp) + } + if (rangeMap.size > 1 && rangeMap.has('')) { + rangeMap.delete('') + } + + const result = [...rangeMap.values()] + cache.set(memoKey, result) + return result + } + + intersects (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } + + return this.set.some((thisComparators) => { + return ( + isSatisfiable(thisComparators, options) && + range.set.some((rangeComparators) => { + return ( + isSatisfiable(rangeComparators, options) && + thisComparators.every((thisComparator) => { + return rangeComparators.every((rangeComparator) => { + return thisComparator.intersects(rangeComparator, options) + }) + }) + ) + }) + ) + }) + } + + // if ANY of the sets match ALL of its comparators, then pass + test (version) { + if (!version) { + return false + } + + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } + } + + for (let i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } + } + return false + } +} + +module.exports = Range + +const LRU = __nccwpck_require__(5339) +const cache = new LRU() + +const parseOptions = __nccwpck_require__(785) +const Comparator = __nccwpck_require__(1532) +const debug = __nccwpck_require__(427) +const SemVer = __nccwpck_require__(8088) +const { + safeRe: re, + t, + comparatorTrimReplace, + tildeTrimReplace, + caretTrimReplace, +} = __nccwpck_require__(9523) +const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(2293) + +const isNullSet = c => c.value === '<0.0.0-0' +const isAny = c => c.value === '' + +// take a set of comparators and determine whether there +// exists a version which can satisfy it +const isSatisfiable = (comparators, options) => { + let result = true + const remainingComparators = comparators.slice() + let testComparator = remainingComparators.pop() + + while (result && remainingComparators.length) { + result = remainingComparators.every((otherComparator) => { + return testComparator.intersects(otherComparator, options) + }) + + testComparator = remainingComparators.pop() + } + + return result +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +const parseComparator = (comp, options) => { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} + +const isX = id => !id || id.toLowerCase() === 'x' || id === '*' + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0 +// ~0.0.1 --> >=0.0.1 <0.1.0-0 +const replaceTildes = (comp, options) => { + return comp + .trim() + .split(/\s+/) + .map((c) => replaceTilde(c, options)) + .join(' ') +} + +const replaceTilde = (comp, options) => { + const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE] + return comp.replace(r, (_, M, m, p, pr) => { + debug('tilde', comp, _, M, m, p, pr) + let ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0 <${+M + 1}.0.0-0` + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0-0 + ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0` + } else if (pr) { + debug('replaceTilde pr', pr) + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` + } else { + // ~1.2.3 == >=1.2.3 <1.3.0-0 + ret = `>=${M}.${m}.${p + } <${M}.${+m + 1}.0-0` + } + + debug('tilde return', ret) + return ret + }) +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0 +// ^1.2.3 --> >=1.2.3 <2.0.0-0 +// ^1.2.0 --> >=1.2.0 <2.0.0-0 +// ^0.0.1 --> >=0.0.1 <0.0.2-0 +// ^0.1.0 --> >=0.1.0 <0.2.0-0 +const replaceCarets = (comp, options) => { + return comp + .trim() + .split(/\s+/) + .map((c) => replaceCaret(c, options)) + .join(' ') +} + +const replaceCaret = (comp, options) => { + debug('caret', comp, options) + const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET] + const z = options.includePrerelease ? '-0' : '' + return comp.replace(r, (_, M, m, p, pr) => { + debug('caret', comp, _, M, m, p, pr) + let ret + + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0` + } else if (isX(p)) { + if (M === '0') { + ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0` + } else { + ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0` + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` + } + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${+M + 1}.0.0-0` + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p + }${z} <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p + }${z} <${M}.${+m + 1}.0-0` + } + } else { + ret = `>=${M}.${m}.${p + } <${+M + 1}.0.0-0` + } + } + + debug('caret return', ret) + return ret + }) +} + +const replaceXRanges = (comp, options) => { + debug('replaceXRanges', comp, options) + return comp + .split(/\s+/) + .map((c) => replaceXRange(c, options)) + .join(' ') +} + +const replaceXRange = (comp, options) => { + comp = comp.trim() + const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE] + return comp.replace(r, (ret, gtlt, M, m, p, pr) => { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + const xM = isX(M) + const xm = xM || isX(m) + const xp = xm || isX(p) + const anyX = xp + + if (gtlt === '=' && anyX) { + gtlt = '' + } + + // if we're including prereleases in the match, then we need + // to fix this to -0, the lowest possible prerelease value + pr = options.includePrerelease ? '-0' : '' + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0-0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } + + if (gtlt === '<') { + pr = '-0' + } + + ret = `${gtlt + M}.${m}.${p}${pr}` + } else if (xm) { + ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0` + } else if (xp) { + ret = `>=${M}.${m}.0${pr + } <${M}.${+m + 1}.0-0` + } + + debug('xRange return', ret) + + return ret + }) +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +const replaceStars = (comp, options) => { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp + .trim() + .replace(re[t.STAR], '') +} + +const replaceGTE0 = (comp, options) => { + debug('replaceGTE0', comp, options) + return comp + .trim() + .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '') +} + +// This function is passed to string.replace(re[t.HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0-0 +// TODO build? +const hyphenReplace = incPr => ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr) => { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = `>=${fM}.0.0${incPr ? '-0' : ''}` + } else if (isX(fp)) { + from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}` + } else if (fpr) { + from = `>=${from}` + } else { + from = `>=${from}${incPr ? '-0' : ''}` + } + + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = `<${+tM + 1}.0.0-0` + } else if (isX(tp)) { + to = `<${tM}.${+tm + 1}.0-0` + } else if (tpr) { + to = `<=${tM}.${tm}.${tp}-${tpr}` + } else if (incPr) { + to = `<${tM}.${tm}.${+tp + 1}-0` + } else { + to = `<=${to}` + } + + return `${from} ${to}`.trim() +} + +const testSet = (set, version, options) => { + for (let i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } + } + + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (let i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === Comparator.ANY) { + continue + } + + if (set[i].semver.prerelease.length > 0) { + const allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false + } + + return true +} + + +/***/ }), + +/***/ 8088: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const debug = __nccwpck_require__(427) +const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(2293) +const { safeRe: re, t } = __nccwpck_require__(9523) + +const parseOptions = __nccwpck_require__(785) +const { compareIdentifiers } = __nccwpck_require__(2463) +class SemVer { + constructor (version, options) { + options = parseOptions(options) + + if (version instanceof SemVer) { + if (version.loose === !!options.loose && + version.includePrerelease === !!options.includePrerelease) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`) + } + + if (version.length > MAX_LENGTH) { + throw new TypeError( + `version is longer than ${MAX_LENGTH} characters` + ) + } + + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + // this isn't actually relevant for versions, but keep it so that we + // don't run into trouble passing this.options around. + this.includePrerelease = !!options.includePrerelease + + const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]) + + if (!m) { + throw new TypeError(`Invalid Version: ${version}`) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map((id) => { + if (/^[0-9]+$/.test(id)) { + const num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() + } + + format () { + this.version = `${this.major}.${this.minor}.${this.patch}` + if (this.prerelease.length) { + this.version += `-${this.prerelease.join('.')}` + } + return this.version + } + + toString () { + return this.version + } + + compare (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + if (typeof other === 'string' && other === this.version) { + return 0 + } + other = new SemVer(other, this.options) + } + + if (other.version === this.version) { + return 0 + } + + return this.compareMain(other) || this.comparePre(other) + } + + compareMain (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return ( + compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) + ) + } + + comparePre (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + let i = 0 + do { + const a = this.prerelease[i] + const b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) + } + + compareBuild (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + let i = 0 + do { + const a = this.build[i] + const b = other.build[i] + debug('build compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) + } + + // preminor will bump the version up to the next minor release, and immediately + // down to pre-release. premajor and prepatch work the same way. + inc (release, identifier, identifierBase) { + if (release.startsWith('pre')) { + if (!identifier && identifierBase === false) { + throw new Error('invalid increment argument: identifier is empty') + } + // Avoid an invalid semver results + if (identifier) { + const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]) + if (!match || match[1] !== identifier) { + throw new Error(`invalid identifier: ${identifier}`) + } + } + } + + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier, identifierBase) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier, identifierBase) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier, identifierBase) + this.inc('pre', identifier, identifierBase) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier, identifierBase) + } + this.inc('pre', identifier, identifierBase) + break + case 'release': + if (this.prerelease.length === 0) { + throw new Error(`version ${this.raw} is not a prerelease`) + } + this.prerelease.length = 0 + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if ( + this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0 + ) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction. + case 'pre': { + const base = Number(identifierBase) ? 1 : 0 + + if (this.prerelease.length === 0) { + this.prerelease = [base] + } else { + let i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + if (identifier === this.prerelease.join('.') && identifierBase === false) { + throw new Error('invalid increment argument: identifier already exists') + } + this.prerelease.push(base) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + let prerelease = [identifier, base] + if (identifierBase === false) { + prerelease = [identifier] + } + if (compareIdentifiers(this.prerelease[0], identifier) === 0) { + if (isNaN(this.prerelease[1])) { + this.prerelease = prerelease + } + } else { + this.prerelease = prerelease + } + } + break + } + default: + throw new Error(`invalid increment argument: ${release}`) + } + this.raw = this.format() + if (this.build.length) { + this.raw += `+${this.build.join('.')}` + } + return this + } +} + +module.exports = SemVer + + +/***/ }), + +/***/ 8848: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const parse = __nccwpck_require__(5925) +const clean = (version, options) => { + const s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} +module.exports = clean + + +/***/ }), + +/***/ 5098: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const eq = __nccwpck_require__(1898) +const neq = __nccwpck_require__(6017) +const gt = __nccwpck_require__(4123) +const gte = __nccwpck_require__(5522) +const lt = __nccwpck_require__(194) +const lte = __nccwpck_require__(7520) + +const cmp = (a, op, b, loose) => { + switch (op) { + case '===': + if (typeof a === 'object') { + a = a.version + } + if (typeof b === 'object') { + b = b.version + } + return a === b + + case '!==': + if (typeof a === 'object') { + a = a.version + } + if (typeof b === 'object') { + b = b.version + } + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError(`Invalid operator: ${op}`) + } +} +module.exports = cmp + + +/***/ }), + +/***/ 3466: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const parse = __nccwpck_require__(5925) +const { safeRe: re, t } = __nccwpck_require__(9523) + +const coerce = (version, options) => { + if (version instanceof SemVer) { + return version + } + + if (typeof version === 'number') { + version = String(version) + } + + if (typeof version !== 'string') { + return null + } + + options = options || {} + + let match = null + if (!options.rtl) { + match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]) + } else { + // Find the right-most coercible string that does not share + // a terminus with a more left-ward coercible string. + // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' + // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4' + // + // Walk through the string checking with a /g regexp + // Manually set the index so as to pick up overlapping matches. + // Stop when we get a match that ends at the string end, since no + // coercible string can be more right-ward without the same terminus. + const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL] + let next + while ((next = coerceRtlRegex.exec(version)) && + (!match || match.index + match[0].length !== version.length) + ) { + if (!match || + next.index + next[0].length !== match.index + match[0].length) { + match = next + } + coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length + } + // leave it in a clean state + coerceRtlRegex.lastIndex = -1 + } + + if (match === null) { + return null + } + + const major = match[2] + const minor = match[3] || '0' + const patch = match[4] || '0' + const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '' + const build = options.includePrerelease && match[6] ? `+${match[6]}` : '' + + return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options) +} +module.exports = coerce + + +/***/ }), + +/***/ 2156: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const compareBuild = (a, b, loose) => { + const versionA = new SemVer(a, loose) + const versionB = new SemVer(b, loose) + return versionA.compare(versionB) || versionA.compareBuild(versionB) +} +module.exports = compareBuild + + +/***/ }), + +/***/ 2804: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const compareLoose = (a, b) => compare(a, b, true) +module.exports = compareLoose + + +/***/ }), + +/***/ 4309: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const compare = (a, b, loose) => + new SemVer(a, loose).compare(new SemVer(b, loose)) + +module.exports = compare + + +/***/ }), + +/***/ 4297: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const parse = __nccwpck_require__(5925) + +const diff = (version1, version2) => { + const v1 = parse(version1, null, true) + const v2 = parse(version2, null, true) + const comparison = v1.compare(v2) + + if (comparison === 0) { + return null + } + + const v1Higher = comparison > 0 + const highVersion = v1Higher ? v1 : v2 + const lowVersion = v1Higher ? v2 : v1 + const highHasPre = !!highVersion.prerelease.length + const lowHasPre = !!lowVersion.prerelease.length + + if (lowHasPre && !highHasPre) { + // Going from prerelease -> no prerelease requires some special casing + + // If the low version has only a major, then it will always be a major + // Some examples: + // 1.0.0-1 -> 1.0.0 + // 1.0.0-1 -> 1.1.1 + // 1.0.0-1 -> 2.0.0 + if (!lowVersion.patch && !lowVersion.minor) { + return 'major' + } + + // If the main part has no difference + if (lowVersion.compareMain(highVersion) === 0) { + if (lowVersion.minor && !lowVersion.patch) { + return 'minor' + } + return 'patch' + } + } + + // add the `pre` prefix if we are going to a prerelease version + const prefix = highHasPre ? 'pre' : '' + + if (v1.major !== v2.major) { + return prefix + 'major' + } + + if (v1.minor !== v2.minor) { + return prefix + 'minor' + } + + if (v1.patch !== v2.patch) { + return prefix + 'patch' + } + + // high and low are preleases + return 'prerelease' +} + +module.exports = diff + + +/***/ }), + +/***/ 1898: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const eq = (a, b, loose) => compare(a, b, loose) === 0 +module.exports = eq + + +/***/ }), + +/***/ 4123: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const gt = (a, b, loose) => compare(a, b, loose) > 0 +module.exports = gt + + +/***/ }), + +/***/ 5522: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const gte = (a, b, loose) => compare(a, b, loose) >= 0 +module.exports = gte + + +/***/ }), + +/***/ 900: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) + +const inc = (version, release, options, identifier, identifierBase) => { + if (typeof (options) === 'string') { + identifierBase = identifier + identifier = options + options = undefined + } + + try { + return new SemVer( + version instanceof SemVer ? version.version : version, + options + ).inc(release, identifier, identifierBase).version + } catch (er) { + return null + } +} +module.exports = inc + + +/***/ }), + +/***/ 194: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const lt = (a, b, loose) => compare(a, b, loose) < 0 +module.exports = lt + + +/***/ }), + +/***/ 7520: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const lte = (a, b, loose) => compare(a, b, loose) <= 0 +module.exports = lte + + +/***/ }), + +/***/ 6688: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const major = (a, loose) => new SemVer(a, loose).major +module.exports = major + + +/***/ }), + +/***/ 8447: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const minor = (a, loose) => new SemVer(a, loose).minor +module.exports = minor + + +/***/ }), + +/***/ 6017: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const neq = (a, b, loose) => compare(a, b, loose) !== 0 +module.exports = neq + + +/***/ }), + +/***/ 5925: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const parse = (version, options, throwErrors = false) => { + if (version instanceof SemVer) { + return version + } + try { + return new SemVer(version, options) + } catch (er) { + if (!throwErrors) { + return null + } + throw er + } +} + +module.exports = parse + + +/***/ }), + +/***/ 2866: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const patch = (a, loose) => new SemVer(a, loose).patch +module.exports = patch + + +/***/ }), + +/***/ 4016: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const parse = __nccwpck_require__(5925) +const prerelease = (version, options) => { + const parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} +module.exports = prerelease + + +/***/ }), + +/***/ 6417: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compare = __nccwpck_require__(4309) +const rcompare = (a, b, loose) => compare(b, a, loose) +module.exports = rcompare + + +/***/ }), + +/***/ 8701: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compareBuild = __nccwpck_require__(2156) +const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) +module.exports = rsort + + +/***/ }), + +/***/ 6055: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Range = __nccwpck_require__(9828) +const satisfies = (version, range, options) => { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) +} +module.exports = satisfies + + +/***/ }), + +/***/ 1426: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const compareBuild = __nccwpck_require__(2156) +const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) +module.exports = sort + + +/***/ }), + +/***/ 9601: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const parse = __nccwpck_require__(5925) +const valid = (version, options) => { + const v = parse(version, options) + return v ? v.version : null +} +module.exports = valid + + +/***/ }), + +/***/ 1383: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +// just pre-load all the stuff that index.js lazily exports +const internalRe = __nccwpck_require__(9523) +const constants = __nccwpck_require__(2293) +const SemVer = __nccwpck_require__(8088) +const identifiers = __nccwpck_require__(2463) +const parse = __nccwpck_require__(5925) +const valid = __nccwpck_require__(9601) +const clean = __nccwpck_require__(8848) +const inc = __nccwpck_require__(900) +const diff = __nccwpck_require__(4297) +const major = __nccwpck_require__(6688) +const minor = __nccwpck_require__(8447) +const patch = __nccwpck_require__(2866) +const prerelease = __nccwpck_require__(4016) +const compare = __nccwpck_require__(4309) +const rcompare = __nccwpck_require__(6417) +const compareLoose = __nccwpck_require__(2804) +const compareBuild = __nccwpck_require__(2156) +const sort = __nccwpck_require__(1426) +const rsort = __nccwpck_require__(8701) +const gt = __nccwpck_require__(4123) +const lt = __nccwpck_require__(194) +const eq = __nccwpck_require__(1898) +const neq = __nccwpck_require__(6017) +const gte = __nccwpck_require__(5522) +const lte = __nccwpck_require__(7520) +const cmp = __nccwpck_require__(5098) +const coerce = __nccwpck_require__(3466) +const Comparator = __nccwpck_require__(1532) +const Range = __nccwpck_require__(9828) +const satisfies = __nccwpck_require__(6055) +const toComparators = __nccwpck_require__(2706) +const maxSatisfying = __nccwpck_require__(579) +const minSatisfying = __nccwpck_require__(832) +const minVersion = __nccwpck_require__(4179) +const validRange = __nccwpck_require__(2098) +const outside = __nccwpck_require__(420) +const gtr = __nccwpck_require__(9380) +const ltr = __nccwpck_require__(3323) +const intersects = __nccwpck_require__(7008) +const simplifyRange = __nccwpck_require__(5297) +const subset = __nccwpck_require__(7863) +module.exports = { + parse, + valid, + clean, + inc, + diff, + major, + minor, + patch, + prerelease, + compare, + rcompare, + compareLoose, + compareBuild, + sort, + rsort, + gt, + lt, + eq, + neq, + gte, + lte, + cmp, + coerce, + Comparator, + Range, + satisfies, + toComparators, + maxSatisfying, + minSatisfying, + minVersion, + validRange, + outside, + gtr, + ltr, + intersects, + simplifyRange, + subset, + SemVer, + re: internalRe.re, + src: internalRe.src, + tokens: internalRe.t, + SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION, + RELEASE_TYPES: constants.RELEASE_TYPES, + compareIdentifiers: identifiers.compareIdentifiers, + rcompareIdentifiers: identifiers.rcompareIdentifiers, +} + + +/***/ }), + +/***/ 2293: +/***/ ((module) => { + +"use strict"; + + +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +const SEMVER_SPEC_VERSION = '2.0.0' + +const MAX_LENGTH = 256 +const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || +/* istanbul ignore next */ 9007199254740991 + +// Max safe segment length for coercion. +const MAX_SAFE_COMPONENT_LENGTH = 16 + +// Max safe length for a build identifier. The max length minus 6 characters for +// the shortest version with a build 0.0.0+BUILD. +const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6 + +const RELEASE_TYPES = [ + 'major', + 'premajor', + 'minor', + 'preminor', + 'patch', + 'prepatch', + 'prerelease', +] + +module.exports = { + MAX_LENGTH, + MAX_SAFE_COMPONENT_LENGTH, + MAX_SAFE_BUILD_LENGTH, + MAX_SAFE_INTEGER, + RELEASE_TYPES, + SEMVER_SPEC_VERSION, + FLAG_INCLUDE_PRERELEASE: 0b001, + FLAG_LOOSE: 0b010, +} + + +/***/ }), + +/***/ 427: +/***/ ((module) => { + +"use strict"; + + +const debug = ( + typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG) +) ? (...args) => console.error('SEMVER', ...args) + : () => {} + +module.exports = debug + + +/***/ }), + +/***/ 2463: +/***/ ((module) => { + +"use strict"; + + +const numeric = /^[0-9]+$/ +const compareIdentifiers = (a, b) => { + const anum = numeric.test(a) + const bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a) + +module.exports = { + compareIdentifiers, + rcompareIdentifiers, +} + + +/***/ }), + +/***/ 5339: +/***/ ((module) => { + +"use strict"; + + +class LRUCache { + constructor () { + this.max = 1000 + this.map = new Map() + } + + get (key) { + const value = this.map.get(key) + if (value === undefined) { + return undefined + } else { + // Remove the key from the map and add it to the end + this.map.delete(key) + this.map.set(key, value) + return value + } + } + + delete (key) { + return this.map.delete(key) + } + + set (key, value) { + const deleted = this.delete(key) + + if (!deleted && value !== undefined) { + // If cache is full, delete the least recently used item + if (this.map.size >= this.max) { + const firstKey = this.map.keys().next().value + this.delete(firstKey) + } + + this.map.set(key, value) + } + + return this + } +} + +module.exports = LRUCache + + +/***/ }), + +/***/ 785: +/***/ ((module) => { + +"use strict"; + + +// parse out just the options we care about +const looseOption = Object.freeze({ loose: true }) +const emptyOpts = Object.freeze({ }) +const parseOptions = options => { + if (!options) { + return emptyOpts + } + + if (typeof options !== 'object') { + return looseOption + } + + return options +} +module.exports = parseOptions + + +/***/ }), + +/***/ 9523: +/***/ ((module, exports, __nccwpck_require__) => { + +"use strict"; + + +const { + MAX_SAFE_COMPONENT_LENGTH, + MAX_SAFE_BUILD_LENGTH, + MAX_LENGTH, +} = __nccwpck_require__(2293) +const debug = __nccwpck_require__(427) +exports = module.exports = {} + +// The actual regexps go on exports.re +const re = exports.re = [] +const safeRe = exports.safeRe = [] +const src = exports.src = [] +const safeSrc = exports.safeSrc = [] +const t = exports.t = {} +let R = 0 + +const LETTERDASHNUMBER = '[a-zA-Z0-9-]' + +// Replace some greedy regex tokens to prevent regex dos issues. These regex are +// used internally via the safeRe object since all inputs in this library get +// normalized first to trim and collapse all extra whitespace. The original +// regexes are exported for userland consumption and lower level usage. A +// future breaking change could export the safer regex only with a note that +// all input should have extra whitespace removed. +const safeRegexReplacements = [ + ['\\s', 1], + ['\\d', MAX_LENGTH], + [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH], +] + +const makeSafeRegex = (value) => { + for (const [token, max] of safeRegexReplacements) { + value = value + .split(`${token}*`).join(`${token}{0,${max}}`) + .split(`${token}+`).join(`${token}{1,${max}}`) + } + return value +} + +const createToken = (name, value, isGlobal) => { + const safe = makeSafeRegex(value) + const index = R++ + debug(name, index, value) + t[name] = index + src[index] = value + safeSrc[index] = safe + re[index] = new RegExp(value, isGlobal ? 'g' : undefined) + safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined) +} + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +createToken('NUMERICIDENTIFIER', '0|[1-9]\\d*') +createToken('NUMERICIDENTIFIERLOOSE', '\\d+') + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +createToken('NONNUMERICIDENTIFIER', `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`) + +// ## Main Version +// Three dot-separated numeric identifiers. + +createToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})`) + +createToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})`) + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. +// Non-numberic identifiers include numberic identifiers but can be longer. +// Therefore non-numberic identifiers must go first. + +createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NONNUMERICIDENTIFIER] +}|${src[t.NUMERICIDENTIFIER]})`) + +createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NONNUMERICIDENTIFIER] +}|${src[t.NUMERICIDENTIFIERLOOSE]})`) + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +createToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER] +}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`) + +createToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE] +}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`) + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +createToken('BUILDIDENTIFIER', `${LETTERDASHNUMBER}+`) + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +createToken('BUILD', `(?:\\+(${src[t.BUILDIDENTIFIER] +}(?:\\.${src[t.BUILDIDENTIFIER]})*))`) + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +createToken('FULLPLAIN', `v?${src[t.MAINVERSION] +}${src[t.PRERELEASE]}?${ + src[t.BUILD]}?`) + +createToken('FULL', `^${src[t.FULLPLAIN]}$`) + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +createToken('LOOSEPLAIN', `[v=\\s]*${src[t.MAINVERSIONLOOSE] +}${src[t.PRERELEASELOOSE]}?${ + src[t.BUILD]}?`) + +createToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`) + +createToken('GTLT', '((?:<|>)?=?)') + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +createToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`) +createToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`) + +createToken('XRANGEPLAIN', `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:${src[t.PRERELEASE]})?${ + src[t.BUILD]}?` + + `)?)?`) + +createToken('XRANGEPLAINLOOSE', `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:${src[t.PRERELEASELOOSE]})?${ + src[t.BUILD]}?` + + `)?)?`) + +createToken('XRANGE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`) +createToken('XRANGELOOSE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`) + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +createToken('COERCEPLAIN', `${'(^|[^\\d])' + + '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`) +createToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\d])`) +createToken('COERCEFULL', src[t.COERCEPLAIN] + + `(?:${src[t.PRERELEASE]})?` + + `(?:${src[t.BUILD]})?` + + `(?:$|[^\\d])`) +createToken('COERCERTL', src[t.COERCE], true) +createToken('COERCERTLFULL', src[t.COERCEFULL], true) + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +createToken('LONETILDE', '(?:~>?)') + +createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true) +exports.tildeTrimReplace = '$1~' + +createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`) +createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`) + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +createToken('LONECARET', '(?:\\^)') + +createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true) +exports.caretTrimReplace = '$1^' + +createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`) +createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`) + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`) +createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`) + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT] +}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true) +exports.comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAIN]})` + + `\\s*$`) + +createToken('HYPHENRANGELOOSE', `^\\s*(${src[t.XRANGEPLAINLOOSE]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAINLOOSE]})` + + `\\s*$`) + +// Star ranges basically just allow anything at all. +createToken('STAR', '(<|>)?=?\\s*\\*') +// >=0.0.0 is like a star +createToken('GTE0', '^\\s*>=\\s*0\\.0\\.0\\s*$') +createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$') + + +/***/ }), + +/***/ 9380: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +// Determine if version is greater than all the versions possible in the range. +const outside = __nccwpck_require__(420) +const gtr = (version, range, options) => outside(version, range, '>', options) +module.exports = gtr + + +/***/ }), + +/***/ 7008: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Range = __nccwpck_require__(9828) +const intersects = (r1, r2, options) => { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2, options) +} +module.exports = intersects + + +/***/ }), + +/***/ 3323: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const outside = __nccwpck_require__(420) +// Determine if version is less than all the versions possible in the range +const ltr = (version, range, options) => outside(version, range, '<', options) +module.exports = ltr + + +/***/ }), + +/***/ 579: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const Range = __nccwpck_require__(9828) + +const maxSatisfying = (versions, range, options) => { + let max = null + let maxSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max +} +module.exports = maxSatisfying + + +/***/ }), + +/***/ 832: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const Range = __nccwpck_require__(9828) +const minSatisfying = (versions, range, options) => { + let min = null + let minSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min +} +module.exports = minSatisfying + + +/***/ }), + +/***/ 4179: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const Range = __nccwpck_require__(9828) +const gt = __nccwpck_require__(4123) + +const minVersion = (range, loose) => { + range = new Range(range, loose) + + let minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } + + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + + minver = null + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] + + let setMin = null + comparators.forEach((comparator) => { + // Clone to avoid manipulating the comparator's semver object. + const compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!setMin || gt(compver, setMin)) { + setMin = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error(`Unexpected operation: ${comparator.operator}`) + } + }) + if (setMin && (!minver || gt(minver, setMin))) { + minver = setMin + } + } + + if (minver && range.test(minver)) { + return minver + } + + return null +} +module.exports = minVersion + + +/***/ }), + +/***/ 420: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const SemVer = __nccwpck_require__(8088) +const Comparator = __nccwpck_require__(1532) +const { ANY } = Comparator +const Range = __nccwpck_require__(9828) +const satisfies = __nccwpck_require__(6055) +const gt = __nccwpck_require__(4123) +const lt = __nccwpck_require__(194) +const lte = __nccwpck_require__(7520) +const gte = __nccwpck_require__(5522) + +const outside = (version, range, hilo, options) => { + version = new SemVer(version, options) + range = new Range(range, options) + + let gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } + + // If it satisfies the range it is not outside + if (satisfies(version, range, options)) { + return false + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] + + let high = null + let low = null + + comparators.forEach((comparator) => { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } + } + return true +} + +module.exports = outside + + +/***/ }), + +/***/ 5297: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +// given a set of versions and a range, create a "simplified" range +// that includes the same versions that the original range does +// If the original range is shorter than the simplified one, return that. +const satisfies = __nccwpck_require__(6055) +const compare = __nccwpck_require__(4309) +module.exports = (versions, range, options) => { + const set = [] + let first = null + let prev = null + const v = versions.sort((a, b) => compare(a, b, options)) + for (const version of v) { + const included = satisfies(version, range, options) + if (included) { + prev = version + if (!first) { + first = version + } + } else { + if (prev) { + set.push([first, prev]) + } + prev = null + first = null + } + } + if (first) { + set.push([first, null]) + } + + const ranges = [] + for (const [min, max] of set) { + if (min === max) { + ranges.push(min) + } else if (!max && min === v[0]) { + ranges.push('*') + } else if (!max) { + ranges.push(`>=${min}`) + } else if (min === v[0]) { + ranges.push(`<=${max}`) + } else { + ranges.push(`${min} - ${max}`) + } + } + const simplified = ranges.join(' || ') + const original = typeof range.raw === 'string' ? range.raw : String(range) + return simplified.length < original.length ? simplified : range +} + + +/***/ }), + +/***/ 7863: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Range = __nccwpck_require__(9828) +const Comparator = __nccwpck_require__(1532) +const { ANY } = Comparator +const satisfies = __nccwpck_require__(6055) +const compare = __nccwpck_require__(4309) + +// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff: +// - Every simple range `r1, r2, ...` is a null set, OR +// - Every simple range `r1, r2, ...` which is not a null set is a subset of +// some `R1, R2, ...` +// +// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff: +// - If c is only the ANY comparator +// - If C is only the ANY comparator, return true +// - Else if in prerelease mode, return false +// - else replace c with `[>=0.0.0]` +// - If C is only the ANY comparator +// - if in prerelease mode, return true +// - else replace C with `[>=0.0.0]` +// - Let EQ be the set of = comparators in c +// - If EQ is more than one, return true (null set) +// - Let GT be the highest > or >= comparator in c +// - Let LT be the lowest < or <= comparator in c +// - If GT and LT, and GT.semver > LT.semver, return true (null set) +// - If any C is a = range, and GT or LT are set, return false +// - If EQ +// - If GT, and EQ does not satisfy GT, return true (null set) +// - If LT, and EQ does not satisfy LT, return true (null set) +// - If EQ satisfies every C, return true +// - Else return false +// - If GT +// - If GT.semver is lower than any > or >= comp in C, return false +// - If GT is >=, and GT.semver does not satisfy every C, return false +// - If GT.semver has a prerelease, and not in prerelease mode +// - If no C has a prerelease and the GT.semver tuple, return false +// - If LT +// - If LT.semver is greater than any < or <= comp in C, return false +// - If LT is <=, and LT.semver does not satisfy every C, return false +// - If GT.semver has a prerelease, and not in prerelease mode +// - If no C has a prerelease and the LT.semver tuple, return false +// - Else return true + +const subset = (sub, dom, options = {}) => { + if (sub === dom) { + return true + } + + sub = new Range(sub, options) + dom = new Range(dom, options) + let sawNonNull = false + + OUTER: for (const simpleSub of sub.set) { + for (const simpleDom of dom.set) { + const isSub = simpleSubset(simpleSub, simpleDom, options) + sawNonNull = sawNonNull || isSub !== null + if (isSub) { + continue OUTER + } + } + // the null set is a subset of everything, but null simple ranges in + // a complex range should be ignored. so if we saw a non-null range, + // then we know this isn't a subset, but if EVERY simple range was null, + // then it is a subset. + if (sawNonNull) { + return false + } + } + return true +} + +const minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')] +const minimumVersion = [new Comparator('>=0.0.0')] + +const simpleSubset = (sub, dom, options) => { + if (sub === dom) { + return true + } + + if (sub.length === 1 && sub[0].semver === ANY) { + if (dom.length === 1 && dom[0].semver === ANY) { + return true + } else if (options.includePrerelease) { + sub = minimumVersionWithPreRelease + } else { + sub = minimumVersion + } + } + + if (dom.length === 1 && dom[0].semver === ANY) { + if (options.includePrerelease) { + return true + } else { + dom = minimumVersion + } + } + + const eqSet = new Set() + let gt, lt + for (const c of sub) { + if (c.operator === '>' || c.operator === '>=') { + gt = higherGT(gt, c, options) + } else if (c.operator === '<' || c.operator === '<=') { + lt = lowerLT(lt, c, options) + } else { + eqSet.add(c.semver) + } + } + + if (eqSet.size > 1) { + return null + } + + let gtltComp + if (gt && lt) { + gtltComp = compare(gt.semver, lt.semver, options) + if (gtltComp > 0) { + return null + } else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) { + return null + } + } + + // will iterate one or zero times + for (const eq of eqSet) { + if (gt && !satisfies(eq, String(gt), options)) { + return null + } + + if (lt && !satisfies(eq, String(lt), options)) { + return null + } + + for (const c of dom) { + if (!satisfies(eq, String(c), options)) { + return false + } + } + + return true + } + + let higher, lower + let hasDomLT, hasDomGT + // if the subset has a prerelease, we need a comparator in the superset + // with the same tuple and a prerelease, or it's not a subset + let needDomLTPre = lt && + !options.includePrerelease && + lt.semver.prerelease.length ? lt.semver : false + let needDomGTPre = gt && + !options.includePrerelease && + gt.semver.prerelease.length ? gt.semver : false + // exception: <1.2.3-0 is the same as <1.2.3 + if (needDomLTPre && needDomLTPre.prerelease.length === 1 && + lt.operator === '<' && needDomLTPre.prerelease[0] === 0) { + needDomLTPre = false + } + + for (const c of dom) { + hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>=' + hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<=' + if (gt) { + if (needDomGTPre) { + if (c.semver.prerelease && c.semver.prerelease.length && + c.semver.major === needDomGTPre.major && + c.semver.minor === needDomGTPre.minor && + c.semver.patch === needDomGTPre.patch) { + needDomGTPre = false + } + } + if (c.operator === '>' || c.operator === '>=') { + higher = higherGT(gt, c, options) + if (higher === c && higher !== gt) { + return false + } + } else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) { + return false + } + } + if (lt) { + if (needDomLTPre) { + if (c.semver.prerelease && c.semver.prerelease.length && + c.semver.major === needDomLTPre.major && + c.semver.minor === needDomLTPre.minor && + c.semver.patch === needDomLTPre.patch) { + needDomLTPre = false + } + } + if (c.operator === '<' || c.operator === '<=') { + lower = lowerLT(lt, c, options) + if (lower === c && lower !== lt) { + return false + } + } else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) { + return false + } + } + if (!c.operator && (lt || gt) && gtltComp !== 0) { + return false + } + } + + // if there was a < or >, and nothing in the dom, then must be false + // UNLESS it was limited by another range in the other direction. + // Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0 + if (gt && hasDomLT && !lt && gtltComp !== 0) { + return false + } + + if (lt && hasDomGT && !gt && gtltComp !== 0) { + return false + } + + // we needed a prerelease range in a specific tuple, but didn't get one + // then this isn't a subset. eg >=1.2.3-pre is not a subset of >=1.0.0, + // because it includes prereleases in the 1.2.3 tuple + if (needDomGTPre || needDomLTPre) { + return false + } + + return true +} + +// >=1.2.3 is lower than >1.2.3 +const higherGT = (a, b, options) => { + if (!a) { + return b + } + const comp = compare(a.semver, b.semver, options) + return comp > 0 ? a + : comp < 0 ? b + : b.operator === '>' && a.operator === '>=' ? b + : a +} + +// <=1.2.3 is higher than <1.2.3 +const lowerLT = (a, b, options) => { + if (!a) { + return b + } + const comp = compare(a.semver, b.semver, options) + return comp < 0 ? a + : comp > 0 ? b + : b.operator === '<' && a.operator === '<=' ? b + : a +} + +module.exports = subset + + +/***/ }), + +/***/ 2706: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Range = __nccwpck_require__(9828) + +// Mostly just for testing and legacy API reasons +const toComparators = (range, options) => + new Range(range, options).set + .map(comp => comp.map(c => c.value).join(' ').trim().split(' ')) + +module.exports = toComparators + + +/***/ }), + +/***/ 2098: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Range = __nccwpck_require__(9828) +const validRange = (range, options) => { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } +} +module.exports = validRange + + +/***/ }), + +/***/ 4294: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(4219); /***/ }), -/***/ 219: +/***/ 4219: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -var net = __nccwpck_require__(808); -var tls = __nccwpck_require__(404); -var http = __nccwpck_require__(685); -var https = __nccwpck_require__(687); -var events = __nccwpck_require__(361); -var assert = __nccwpck_require__(491); -var util = __nccwpck_require__(837); +var net = __nccwpck_require__(1808); +var tls = __nccwpck_require__(4404); +var http = __nccwpck_require__(3685); +var https = __nccwpck_require__(5687); +var events = __nccwpck_require__(2361); +var assert = __nccwpck_require__(9491); +var util = __nccwpck_require__(3837); exports.httpOverHttp = httpOverHttp; @@ -3288,7 +5984,7 @@ exports.debug = debug; // for test /***/ }), -/***/ 840: +/***/ 5840: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3352,29 +6048,29 @@ Object.defineProperty(exports, "parse", ({ } })); -var _v = _interopRequireDefault(__nccwpck_require__(628)); +var _v = _interopRequireDefault(__nccwpck_require__(8628)); -var _v2 = _interopRequireDefault(__nccwpck_require__(409)); +var _v2 = _interopRequireDefault(__nccwpck_require__(6409)); -var _v3 = _interopRequireDefault(__nccwpck_require__(122)); +var _v3 = _interopRequireDefault(__nccwpck_require__(5122)); -var _v4 = _interopRequireDefault(__nccwpck_require__(120)); +var _v4 = _interopRequireDefault(__nccwpck_require__(9120)); -var _nil = _interopRequireDefault(__nccwpck_require__(332)); +var _nil = _interopRequireDefault(__nccwpck_require__(5332)); -var _version = _interopRequireDefault(__nccwpck_require__(595)); +var _version = _interopRequireDefault(__nccwpck_require__(1595)); -var _validate = _interopRequireDefault(__nccwpck_require__(900)); +var _validate = _interopRequireDefault(__nccwpck_require__(6900)); -var _stringify = _interopRequireDefault(__nccwpck_require__(950)); +var _stringify = _interopRequireDefault(__nccwpck_require__(8950)); -var _parse = _interopRequireDefault(__nccwpck_require__(746)); +var _parse = _interopRequireDefault(__nccwpck_require__(2746)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }), -/***/ 569: +/***/ 4569: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3385,7 +6081,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _crypto = _interopRequireDefault(__nccwpck_require__(113)); +var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3404,7 +6100,7 @@ exports["default"] = _default; /***/ }), -/***/ 332: +/***/ 5332: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -3419,7 +6115,7 @@ exports["default"] = _default; /***/ }), -/***/ 746: +/***/ 2746: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3430,7 +6126,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(900)); +var _validate = _interopRequireDefault(__nccwpck_require__(6900)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3497,7 +6193,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = rng; -var _crypto = _interopRequireDefault(__nccwpck_require__(113)); +var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3517,7 +6213,7 @@ function rng() { /***/ }), -/***/ 274: +/***/ 5274: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3528,7 +6224,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _crypto = _interopRequireDefault(__nccwpck_require__(113)); +var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3547,7 +6243,7 @@ exports["default"] = _default; /***/ }), -/***/ 950: +/***/ 8950: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3558,7 +6254,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(900)); +var _validate = _interopRequireDefault(__nccwpck_require__(6900)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3593,7 +6289,7 @@ exports["default"] = _default; /***/ }), -/***/ 628: +/***/ 8628: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3606,7 +6302,7 @@ exports["default"] = void 0; var _rng = _interopRequireDefault(__nccwpck_require__(807)); -var _stringify = _interopRequireDefault(__nccwpck_require__(950)); +var _stringify = _interopRequireDefault(__nccwpck_require__(8950)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3707,7 +6403,7 @@ exports["default"] = _default; /***/ }), -/***/ 409: +/***/ 6409: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3718,9 +6414,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(998)); +var _v = _interopRequireDefault(__nccwpck_require__(5998)); -var _md = _interopRequireDefault(__nccwpck_require__(569)); +var _md = _interopRequireDefault(__nccwpck_require__(4569)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3730,7 +6426,7 @@ exports["default"] = _default; /***/ }), -/***/ 998: +/***/ 5998: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3742,9 +6438,9 @@ Object.defineProperty(exports, "__esModule", ({ exports["default"] = _default; exports.URL = exports.DNS = void 0; -var _stringify = _interopRequireDefault(__nccwpck_require__(950)); +var _stringify = _interopRequireDefault(__nccwpck_require__(8950)); -var _parse = _interopRequireDefault(__nccwpck_require__(746)); +var _parse = _interopRequireDefault(__nccwpck_require__(2746)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3815,7 +6511,7 @@ function _default(name, version, hashfunc) { /***/ }), -/***/ 122: +/***/ 5122: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3828,7 +6524,7 @@ exports["default"] = void 0; var _rng = _interopRequireDefault(__nccwpck_require__(807)); -var _stringify = _interopRequireDefault(__nccwpck_require__(950)); +var _stringify = _interopRequireDefault(__nccwpck_require__(8950)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3859,7 +6555,7 @@ exports["default"] = _default; /***/ }), -/***/ 120: +/***/ 9120: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3870,9 +6566,9 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _v = _interopRequireDefault(__nccwpck_require__(998)); +var _v = _interopRequireDefault(__nccwpck_require__(5998)); -var _sha = _interopRequireDefault(__nccwpck_require__(274)); +var _sha = _interopRequireDefault(__nccwpck_require__(5274)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3882,7 +6578,7 @@ exports["default"] = _default; /***/ }), -/***/ 900: +/***/ 6900: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3906,7 +6602,7 @@ exports["default"] = _default; /***/ }), -/***/ 595: +/***/ 1595: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -3917,7 +6613,7 @@ Object.defineProperty(exports, "__esModule", ({ })); exports["default"] = void 0; -var _validate = _interopRequireDefault(__nccwpck_require__(900)); +var _validate = _interopRequireDefault(__nccwpck_require__(6900)); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -3934,7 +6630,7 @@ exports["default"] = _default; /***/ }), -/***/ 177: +/***/ 4177: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -3966,12 +6662,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(186)); -const verify_1 = __importDefault(__nccwpck_require__(903)); +const core = __importStar(__nccwpck_require__(2186)); +const verify_1 = __importDefault(__nccwpck_require__(9903)); try { const wsDir = core.getInput("ws-dir") || process.env.WSDIR || "./"; - const skipBuild = core.getInput("skip-build") === "true" ? true : false; - (0, verify_1.default)(skipBuild, wsDir); + (0, verify_1.default)(wsDir); } catch (error) { core.setFailed(error.message); @@ -3980,7 +6675,7 @@ catch (error) { /***/ }), -/***/ 903: +/***/ 9903: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -3994,22 +6689,27 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const exec_1 = __nccwpck_require__(514); -const run = (skipBuild, wsdir) => __awaiter(void 0, void 0, void 0, function* () { - if (skipBuild) { - yield (0, exec_1.exec)("bit ci verify", [], { cwd: wsdir }); - } - else { - yield (0, exec_1.exec)("bit ci verify --build", [], { cwd: wsdir }); - } +const exec_1 = __nccwpck_require__(1514); +const semver_1 = __importDefault(__nccwpck_require__(1383)); +const run = (wsdir) => __awaiter(void 0, void 0, void 0, function* () { + const version = yield (0, exec_1.getExecOutput)("bit -v", [], { cwd: wsdir }); + // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 + // or upgrade Bit to ^1.11.43 + if (semver_1.default.lt(version.stdout, "1.11.43")) { + throw new Error("Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43"); + } + yield (0, exec_1.exec)("bit ci verify", [], { cwd: wsdir }); }); exports["default"] = run; /***/ }), -/***/ 491: +/***/ 9491: /***/ ((module) => { "use strict"; @@ -4017,7 +6717,7 @@ module.exports = require("assert"); /***/ }), -/***/ 81: +/***/ 2081: /***/ ((module) => { "use strict"; @@ -4025,7 +6725,7 @@ module.exports = require("child_process"); /***/ }), -/***/ 113: +/***/ 6113: /***/ ((module) => { "use strict"; @@ -4033,7 +6733,7 @@ module.exports = require("crypto"); /***/ }), -/***/ 361: +/***/ 2361: /***/ ((module) => { "use strict"; @@ -4041,7 +6741,7 @@ module.exports = require("events"); /***/ }), -/***/ 147: +/***/ 7147: /***/ ((module) => { "use strict"; @@ -4049,7 +6749,7 @@ module.exports = require("fs"); /***/ }), -/***/ 685: +/***/ 3685: /***/ ((module) => { "use strict"; @@ -4057,7 +6757,7 @@ module.exports = require("http"); /***/ }), -/***/ 687: +/***/ 5687: /***/ ((module) => { "use strict"; @@ -4065,7 +6765,7 @@ module.exports = require("https"); /***/ }), -/***/ 808: +/***/ 1808: /***/ ((module) => { "use strict"; @@ -4073,7 +6773,7 @@ module.exports = require("net"); /***/ }), -/***/ 37: +/***/ 2037: /***/ ((module) => { "use strict"; @@ -4081,7 +6781,7 @@ module.exports = require("os"); /***/ }), -/***/ 17: +/***/ 1017: /***/ ((module) => { "use strict"; @@ -4089,7 +6789,7 @@ module.exports = require("path"); /***/ }), -/***/ 576: +/***/ 1576: /***/ ((module) => { "use strict"; @@ -4097,7 +6797,7 @@ module.exports = require("string_decoder"); /***/ }), -/***/ 512: +/***/ 9512: /***/ ((module) => { "use strict"; @@ -4105,7 +6805,7 @@ module.exports = require("timers"); /***/ }), -/***/ 404: +/***/ 4404: /***/ ((module) => { "use strict"; @@ -4113,7 +6813,7 @@ module.exports = require("tls"); /***/ }), -/***/ 837: +/***/ 3837: /***/ ((module) => { "use strict"; @@ -4163,7 +6863,7 @@ module.exports = require("util"); /******/ // startup /******/ // Load entry module and return exports /******/ // This entry module is referenced by other modules so it can't be inlined -/******/ var __webpack_exports__ = __nccwpck_require__(177); +/******/ var __webpack_exports__ = __nccwpck_require__(4177); /******/ module.exports = __webpack_exports__; /******/ /******/ })() diff --git a/dist/licenses.txt b/dist/licenses.txt index d771846..7672a42 100644 --- a/dist/licenses.txt +++ b/dist/licenses.txt @@ -59,6 +59,25 @@ The above copyright notice and this permission notice shall be included in all c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +semver +ISC +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + tunnel MIT The MIT License (MIT) diff --git a/index.ts b/index.ts index cd6a5e5..3dedd50 100644 --- a/index.ts +++ b/index.ts @@ -3,9 +3,7 @@ import run from "./scripts/verify"; try { const wsDir: string = core.getInput("ws-dir") || process.env.WSDIR || "./"; - const skipBuild: boolean = - core.getInput("skip-build") === "true" ? true : false; - run(skipBuild, wsDir); + run(wsDir); } catch (error) { core.setFailed((error as Error).message); } diff --git a/package-lock.json b/package-lock.json index 2d93475..9a7e167 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,10 +10,12 @@ "license": "ISC", "dependencies": { "@actions/core": "^1.10.0", - "@actions/exec": "^1.1.1" + "@actions/exec": "^1.1.1", + "semver": "^7.7.2" }, "devDependencies": { "@types/node": "^20.3.2", + "@types/semver": "^7.7.0", "@vercel/ncc": "^0.36.1", "typescript": "^4.6.2" } @@ -54,6 +56,13 @@ "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==", "dev": true }, + "node_modules/@types/semver": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz", + "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==", + "dev": true, + "license": "MIT" + }, "node_modules/@vercel/ncc": { "version": "0.36.1", "resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.36.1.tgz", @@ -63,6 +72,18 @@ "ncc": "dist/ncc/cli.js" } }, + "node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", diff --git a/package.json b/package.json index c5f9a5f..c366eac 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,12 @@ "license": "ISC", "dependencies": { "@actions/core": "^1.10.0", - "@actions/exec": "^1.1.1" + "@actions/exec": "^1.1.1", + "semver": "^7.7.2" }, "devDependencies": { "@types/node": "^20.3.2", + "@types/semver": "^7.7.0", "@vercel/ncc": "^0.36.1", "typescript": "^4.6.2" } diff --git a/scripts/verify.ts b/scripts/verify.ts index 6226885..c9f281b 100644 --- a/scripts/verify.ts +++ b/scripts/verify.ts @@ -1,11 +1,18 @@ -import { exec } from "@actions/exec"; +import { exec, getExecOutput } from "@actions/exec"; +import semver from "semver"; -const run = async (skipBuild: boolean, wsdir: string) => { - if (skipBuild) { - await exec("bit ci verify", [], { cwd: wsdir }); - } else { - await exec("bit ci verify --build", [], { cwd: wsdir }); +const run = async (wsdir: string) => { + const version = await getExecOutput("bit -v", [], { cwd: wsdir }); + + // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 + // or upgrade Bit to ^1.11.43 + if (semver.lt(version.stdout, "1.11.43")) { + throw new Error( + "Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43" + ); } + + await exec("bit ci verify", [], { cwd: wsdir }); }; export default run; From 1f82d44de8e56c30be0298dbf736d7fcd47c9607 Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 15:30:31 +0200 Subject: [PATCH 5/7] fix: node version --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9ba3f7d..32e8334 100644 --- a/action.yml +++ b/action.yml @@ -8,5 +8,5 @@ inputs: description: "Workspace json file directory path" required: false runs: - using: 'node22' + using: 'node20' main: 'dist/index.js' From 9b1f1a2bf2f5a2390a3f56fc86f7fe31ffbfa535 Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 16:05:50 +0200 Subject: [PATCH 6/7] update test ws --- dist/index.js | 2 +- scripts/verify.ts | 2 +- test-data/.bitmap | 8 +- test-data/package.json | 3 + test-data/pnpm-lock.yaml | 34189 +++++++++++++++++++++---------------- 5 files changed, 19469 insertions(+), 14735 deletions(-) create mode 100644 test-data/package.json diff --git a/dist/index.js b/dist/index.js index 4d421e4..639e604 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6699,7 +6699,7 @@ const run = (wsdir) => __awaiter(void 0, void 0, void 0, function* () { const version = yield (0, exec_1.getExecOutput)("bit -v", [], { cwd: wsdir }); // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 // or upgrade Bit to ^1.11.43 - if (semver_1.default.lt(version.stdout, "1.11.43")) { + if (semver_1.default.lt(version.stdout.trim(), "1.11.43")) { throw new Error("Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43"); } yield (0, exec_1.exec)("bit ci verify", [], { cwd: wsdir }); diff --git a/scripts/verify.ts b/scripts/verify.ts index c9f281b..f9ea15d 100644 --- a/scripts/verify.ts +++ b/scripts/verify.ts @@ -6,7 +6,7 @@ const run = async (wsdir: string) => { // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 // or upgrade Bit to ^1.11.43 - if (semver.lt(version.stdout, "1.11.43")) { + if (semver.lt(version.stdout.trim(), "1.11.43")) { throw new Error( "Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43" ); diff --git a/test-data/.bitmap b/test-data/.bitmap index 8aa23f4..68f5626 100644 --- a/test-data/.bitmap +++ b/test-data/.bitmap @@ -3,13 +3,14 @@ /** * The Bitmap file is an auto generated file used by Bit to track all your Bit components. It maps the component to a folder in your file system. * This file should be committed to VCS(version control). - * Components are listed using their component ID (https://bit.dev/docs/components/component-id). + * Components are listed using their component ID (https://bit.dev/reference/components/component-id). * If you want to delete components you can use the "bit remove " command. - * See the docs (https://bit.dev/docs/components/removing-components) for more information, or use "bit remove --help". + * See the docs (https://bit.dev/reference/components/removing-components) for more information, or use "bit remove --help". */ { "envs/my-react-env": { + "name": "envs/my-react-env", "scope": "", "version": "", "defaultScope": "org.scope-name", @@ -41,6 +42,7 @@ } }, "get-hello-world": { + "name": "get-hello-world", "scope": "", "version": "", "defaultScope": "org.scope-name", @@ -67,6 +69,7 @@ } }, "hello-world-app": { + "name": "hello-world-app", "scope": "", "version": "", "defaultScope": "org.scope-name", @@ -94,6 +97,7 @@ } }, "ui/hello-world": { + "name": "ui/hello-world", "scope": "", "version": "", "defaultScope": "org.scope-name", diff --git a/test-data/package.json b/test-data/package.json new file mode 100644 index 0000000..3dbc1ca --- /dev/null +++ b/test-data/package.json @@ -0,0 +1,3 @@ +{ + "type": "module" +} diff --git a/test-data/pnpm-lock.yaml b/test-data/pnpm-lock.yaml index b2fbf9c..ff43fde 100644 --- a/test-data/pnpm-lock.yaml +++ b/test-data/pnpm-lock.yaml @@ -1,7 +1,7 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: - autoInstallPeers: false + autoInstallPeers: true excludeLinksFromLockfile: true importers: @@ -10,110 +10,110 @@ importers: dependencies: '@apollo/client': specifier: 3.6.9 - version: 3.6.9(graphql@14.7.0)(react@18.2.0)(subscriptions-transport-ws@0.11.0) + version: 3.6.9(graphql@14.7.0)(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@14.7.0)) '@babel/runtime': specifier: 7.20.0 version: 7.20.0 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@teambit/defender.eslint-linter': specifier: 0.0.10 - version: 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) + version: 0.0.10 '@teambit/defender.jest-tester': specifier: 0.0.10 - version: 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) + version: 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) '@teambit/defender.prettier-formatter': specifier: 0.0.6 - version: 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) + version: 0.0.6 '@teambit/dependencies.modules.packages-excluder': specifier: 0.0.70 - version: 0.0.70(react@18.2.0) + version: 0.0.70(react@18.3.1) '@teambit/eslint-config-bit-react': specifier: ~0.0.367 - version: 0.0.367(@teambit/legacy@node_modules+@teambit+legacy)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1)(react-dom@18.2.0)(react@18.2.0) + version: 0.0.367(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/node.node': + specifier: 0.0.38 + version: 0.0.38(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@teambit/preview.react-preview': specifier: 0.0.35 - version: 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) + version: 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) '@teambit/react.mounter': specifier: 0.0.10 version: 0.0.10 '@teambit/react.react-env': - specifier: ^0.0.68 - version: 0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + specifier: 0.0.68 + version: 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) '@teambit/typescript.typescript-compiler': - specifier: 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 - version: 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3(@teambit/legacy@node_modules+@teambit+legacy) + specifier: 2.0.16 + version: 2.0.16 + '@testing-library/react': + specifier: ^12.1.5 + version: 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react-hooks': specifier: ^8.0.0 - version: 8.0.1(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@typescript-eslint/eslint-plugin': specifier: 4.29.3 - version: 4.29.3 + version: 4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) core-js: specifier: ^3.0.0 - version: 3.31.0 + version: 3.44.0 eslint-import-resolver-node: specifier: 0.3.6 version: 0.3.6 eslint-plugin-import: specifier: 2.22.1 - version: 2.22.1(eslint@7.32.0) + version: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) eslint-plugin-jest: specifier: 24.4.0 - version: 24.4.0(@typescript-eslint/eslint-plugin@4.29.3) + version: 24.4.0(@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) eslint-plugin-jsx-a11y: specifier: 6.4.1 version: 6.4.1(eslint@7.32.0) eslint-plugin-mdx: specifier: 1.15.0 - version: 1.15.0 + version: 1.15.0(eslint@7.32.0) eslint-plugin-react: specifier: 7.25.1 - version: 7.25.1 + version: 7.25.1(eslint@7.32.0) graphql: - specifier: 14.7.0 + specifier: ^14.3.0 version: 14.7.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: - specifier: '>=18.0.0 <19.0.0' - version: 18.2.0 + specifier: ^18.0.0 + version: 18.3.1 react-dom: - specifier: '>=18.0.0 <19.0.0' - version: 18.2.0(react@18.2.0) + specifier: ^18.0.0 + version: 18.3.1(react@18.3.1) react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^6.0.0 + version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) subscriptions-transport-ws: specifier: ^0.11.0 version: 0.11.0(graphql@14.7.0) devDependencies: '@learnbit/hello-world.envs.my-react-env': specifier: 0.0.3 - version: 0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@teambit/node.node': - specifier: 0.0.38 - version: 0.0.38(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14)(graphql@14.7.0) - '@testing-library/react': - specifier: ^13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 0.0.3(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@types/jest': specifier: '>=29.2.2 <30.0.0' - version: 29.5.2 + version: 29.5.14 '@types/node': specifier: '>=16.18.11 <17.0.0' - version: 16.18.37 + version: 16.18.126 '@types/react': specifier: '>=18.0.0 <19.0.0' - version: 18.2.14 + version: 18.3.23 '@types/react-dom': specifier: '>=18.0.0 <19.0.0' - version: 18.2.6 + version: 18.3.7(@types/react@18.3.23) '@types/testing-library__jest-dom': specifier: 5.9.5 version: 5.9.5 @@ -122,40 +122,40 @@ importers: dependencies: '@learnbit/hello-world.envs.my-react-env': specifier: 0.0.3 - version: 0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@org/scope-name.envs.my-react-env': specifier: workspace:* - version: file:scope-name/envs/my-react-env(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@org/scope-name.get-hello-world': specifier: workspace:* - version: file:scope-name/get-hello-world + version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) '@org/scope-name.hello-world-app': specifier: workspace:* - version: file:scope-name/hello-world-app(react-dom@18.2.0) + version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1)) '@org/scope-name.ui.hello-world': specifier: workspace:* - version: file:scope-name/ui/hello-world(react@18.2.0) + version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) graphql: specifier: 14.7.0 version: 14.7.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) react-router-dom: specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) dependenciesMeta: '@org/scope-name.envs.my-react-env': injected: true @@ -166,78 +166,26 @@ importers: '@org/scope-name.ui.hello-world': injected: true - node_modules/.bit_roots/org.scope-name_hello-world-app: + node_modules/.bit_roots/teambit.envs_env: dependencies: - '@mdx-js/react': - specifier: 1.6.22 - version: 1.6.22(react@18.2.0) '@org/scope-name.envs.my-react-env': specifier: workspace:* - version: file:scope-name/envs/my-react-env(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: file:scope-name/envs/my-react-env(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@org/scope-name.get-hello-world': specifier: workspace:* - version: file:scope-name/get-hello-world + version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) '@org/scope-name.hello-world-app': specifier: workspace:* - version: file:scope-name/hello-world-app(react-dom@18.2.0) + version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@17.0.2(react@17.0.2)) '@org/scope-name.ui.hello-world': specifier: workspace:* - version: file:scope-name/ui/hello-world(react@18.2.0) - '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) - graphql: - specifier: 14.7.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@17.0.2) react: - specifier: ^18.0.0 - version: 18.2.0 + specifier: ^16.8.0 || ^17.0.0 + version: 17.0.2 react-dom: - specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) - react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) - devDependencies: - '@learnbit/hello-world.envs.my-react-env': - specifier: 0.0.3 - version: 0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@types/jest': - specifier: ^29.2.2 - version: 29.5.2 - '@types/react': - specifier: ^18.0.0 - version: 18.2.14 - '@types/react-dom': - specifier: ^18.0.0 - version: 18.2.6 - dependenciesMeta: - '@org/scope-name.envs.my-react-env': - injected: true - '@org/scope-name.get-hello-world': - injected: true - '@org/scope-name.hello-world-app': - injected: true - '@org/scope-name.ui.hello-world': - injected: true - - node_modules/.bit_roots/teambit.envs_env: - dependencies: - '@org/scope-name.envs.my-react-env': - specifier: workspace:* - version: file:scope-name/envs/my-react-env(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@org/scope-name.get-hello-world': - specifier: workspace:* - version: file:scope-name/get-hello-world - '@org/scope-name.hello-world-app': - specifier: workspace:* - version: file:scope-name/hello-world-app(react-dom@18.2.0) - '@org/scope-name.ui.hello-world': - specifier: workspace:* - version: file:scope-name/ui/hello-world(react@18.2.0) + specifier: ^16.8.0 || ^17.0.0 + version: 17.0.2(react@17.0.2) dependenciesMeta: '@org/scope-name.envs.my-react-env': injected: true @@ -252,34 +200,34 @@ importers: dependencies: '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@org/scope-name.envs.my-react-env': specifier: workspace:* - version: file:scope-name/envs/my-react-env(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@org/scope-name.get-hello-world': specifier: workspace:* - version: file:scope-name/get-hello-world + version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) '@org/scope-name.hello-world-app': specifier: workspace:* - version: file:scope-name/hello-world-app(react-dom@18.2.0) + version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1)) '@org/scope-name.ui.hello-world': specifier: workspace:* - version: file:scope-name/ui/hello-world(react@18.2.0) + version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/node.node': specifier: 0.0.38 - version: 0.0.38(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14)(graphql@14.7.0) + version: 0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) dependenciesMeta: '@org/scope-name.envs.my-react-env': injected: true @@ -297,52 +245,52 @@ importers: version: 7.20.0 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@teambit/defender.eslint-linter': specifier: 0.0.10 - version: 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) + version: 0.0.10 '@teambit/defender.jest-tester': specifier: 0.0.10 - version: 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4) + version: 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) '@teambit/defender.prettier-formatter': specifier: 0.0.6 - version: 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) + version: 0.0.6 '@teambit/dependencies.modules.packages-excluder': specifier: 0.0.70 - version: 0.0.70(react@18.2.0) + version: 0.0.70(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/preview.react-preview': specifier: 0.0.35 - version: 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@17.0.62)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) + version: 0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3) '@teambit/react.mounter': specifier: 0.0.10 version: 0.0.10 '@teambit/react.react-env': specifier: ^0.0.68 - version: 0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@12.20.4)(@types/react@17.0.62) + version: 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@12.20.4)(@types/react@17.0.87)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) '@teambit/typescript.typescript-compiler': - specifier: 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 - version: 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3(@teambit/legacy@node_modules+@teambit+legacy) + specifier: 2.0.16 + version: 2.0.16 core-js: specifier: ^3.0.0 - version: 3.31.0 + version: 3.44.0 graphql: specifier: 14.7.0 version: 14.7.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@12.20.4) + version: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) react-router-dom: specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@types/jest': specifier: ^26.0.0 @@ -352,10 +300,10 @@ importers: version: 12.20.4 '@types/react': specifier: ^17.0.8 - version: 17.0.62 + version: 17.0.87 '@types/react-dom': specifier: ^17.0.5 - version: 17.0.20 + version: 17.0.26(@types/react@17.0.87) '@types/testing-library__jest-dom': specifier: 5.9.5 version: 5.9.5 @@ -364,6724 +312,13273 @@ importers: dependencies: '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) devDependencies: '@teambit/node.node': specifier: 0.0.38 - version: 0.0.38(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14)(graphql@14.7.0) + version: 0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@types/jest': specifier: ^29.2.2 - version: 29.5.2 + version: 29.5.14 '@types/node': specifier: ^16.18.11 - version: 16.18.37 + version: 16.18.126 scope-name/hello-world-app: dependencies: '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) graphql: specifier: 14.7.0 version: 14.7.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) react-router-dom: specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@learnbit/hello-world.envs.my-react-env': specifier: 0.0.3 - version: 0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@types/jest': specifier: ^29.2.2 - version: 29.5.2 + version: 29.5.14 '@types/react': specifier: ^18.0.0 - version: 18.2.14 + version: 18.3.23 '@types/react-dom': specifier: ^18.0.0 - version: 18.2.6 + version: 18.3.7(@types/react@18.3.23) scope-name/ui/hello-world: dependencies: '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.2.0) + version: 1.6.22(react@18.3.1) '@teambit/mdx.ui.mdx-scope-context': specifier: 0.0.496 - version: 0.0.496(react-dom@18.2.0)(react@18.2.0) + version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) graphql: specifier: 14.7.0 version: 14.7.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.37) + version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: specifier: ^18.0.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.0.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) react-router-dom: specifier: 6.8.1 - version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@learnbit/hello-world.envs.my-react-env': specifier: 0.0.3 - version: 0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) + version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) '@testing-library/react': specifier: ^13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.2.2 - version: 29.5.2 + version: 29.5.14 '@types/react': specifier: ^18.0.0 - version: 18.2.14 + version: 18.3.23 '@types/react-dom': specifier: ^18.0.0 - version: 18.2.6 + version: 18.3.7(@types/react@18.3.23) packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - - /@adobe/css-tools@4.2.0: - resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==} + '@adobe/css-tools@4.4.3': + resolution: {integrity: sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==} - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - /@apollo/client@3.6.9(graphql@14.7.0)(react@18.2.0)(subscriptions-transport-ws@0.11.0): + '@apollo/client@3.6.9': resolution: {integrity: sha512-Y1yu8qa2YeaCUBVuw08x8NHenFi0sw2I3KCu7Kw9mDSu86HmmtHJkCAifKVrN2iPgDTW/BbP3EpSV8/EQCcxZA==} peerDependencies: - graphql: '*' - graphql-ws: '*' - react: '*' - subscriptions-transport-ws: '*' + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql-ws: ^5.5.5 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + subscriptions-transport-ws: ^0.9.0 || ^0.11.0 peerDependenciesMeta: - graphql: - optional: true graphql-ws: optional: true react: optional: true subscriptions-transport-ws: optional: true - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) - '@wry/context': 0.6.1 - '@wry/equality': 0.5.6 - '@wry/trie': 0.3.2 - graphql: 14.7.0 - graphql-tag: 2.12.6(graphql@14.7.0) - hoist-non-react-statics: 3.3.2 - optimism: 0.16.2 - prop-types: 15.8.1 - react: 18.2.0 - subscriptions-transport-ws: 0.11.0(graphql@14.7.0) - symbol-observable: 4.0.0 - ts-invariant: 0.10.3 - tslib: 2.6.0 - zen-observable-ts: 1.2.5 - dev: false - /@babel/code-frame@7.12.11: + '@asamuzakjp/css-color@3.2.0': + resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + + '@babel/code-frame@7.12.11': resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - dependencies: - '@babel/highlight': 7.22.5 - /@babel/code-frame@7.22.5: - resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.22.5 - /@babel/compat-data@7.22.5: - resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==} + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} engines: {node: '>=6.9.0'} - /@babel/core@7.11.6: + '@babel/core@7.11.6': resolution: {integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.2 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - /@babel/core@7.12.9: + '@babel/core@7.12.9': resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.2 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - /@babel/core@7.19.6: + '@babel/core@7.19.6': resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/core@7.20.2: + '@babel/core@7.20.2': resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - - /@babel/core@7.22.5: - resolution: {integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - - /@babel/generator@7.22.5: - resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - jsesc: 2.5.2 - - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5: - resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - - /@babel/helper-compilation-targets@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.19.6 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.0 - /@babel/helper-compilation-targets@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} + '@babel/core@7.28.0': + resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.20.2 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.0 - /@babel/helper-compilation-targets@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==} + '@babel/generator@7.28.0': + resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.0 - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==} + '@babel/helper-create-class-features-plugin@7.27.1': + resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.0 + '@babel/core': ^7.0.0 - /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==} + '@babel/helper-create-regexp-features-plugin@7.27.1': + resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.0 - - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.19.6): - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.2 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0 - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.2): + '@babel/helper-define-polyfill-provider@0.3.3': resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.2 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.4.0-0 - /@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.19.6): - resolution: {integrity: sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==} + '@babel/helper-define-polyfill-provider@0.6.5': + resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.2 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + '@babel/helper-environment-visitor@7.24.7': + resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 - - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-member-expression-to-functions@7.22.5: - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-module-imports@7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-module-transforms@7.22.5: - resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color + peerDependencies: + '@babel/core': ^7.0.0 - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-plugin-utils@7.10.4: + '@babel/helper-plugin-utils@7.10.4': resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==} + '@babel/helper-remap-async-to-generator@7.27.1': + resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0 - /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==} + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - - /@babel/helper-replace-supers@7.22.5: - resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0 - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + '@babel/helper-simple-access@7.27.1': + resolution: {integrity: sha512-OU4zVQrJgFBNXMjrHs1yFSdlTgufO4tefcUZoqNhukVfw0p8x1Asht/gcGZ3bpHbi8gu/76m4JhrlKPqkrs/WQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-split-export-declaration@7.22.5: - resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==} + '@babel/helper-split-export-declaration@7.24.7': + resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function@7.22.5: - resolution: {integrity: sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==} + '@babel/helper-wrap-function@7.27.1': + resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/helpers@7.22.5: - resolution: {integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==} + '@babel/helpers@7.27.6': + resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/highlight@7.22.5: - resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} + '@babel/highlight@7.25.9': + resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.5 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/parser@7.22.5: - resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==} + '@babel/parser@7.28.0': + resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} engines: {node: '>=6.0.0'} hasBin: true - dependencies: - '@babel/types': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.13.0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + '@babel/plugin-proposal-class-properties@7.18.6': + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.19.6): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + '@babel/plugin-proposal-class-static-block@7.21.0': + resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.12.0 - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.2): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + '@babel/plugin-proposal-decorators@7.20.2': + resolution: {integrity: sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + '@babel/plugin-proposal-decorators@7.28.0': + resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + '@babel/plugin-proposal-dynamic-import@7.18.6': + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.19.6): - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} + '@babel/plugin-proposal-export-namespace-from@7.18.9': + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.2): - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} + '@babel/plugin-proposal-json-strings@7.18.6': + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.20.2): - resolution: {integrity: sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw==} + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==} + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + '@babel/plugin-proposal-object-rest-spread@7.11.0': + resolution: {integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-object-rest-spread@7.12.1': + resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-object-rest-spread@7.20.2': + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.19.6): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.2): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + '@babel/plugin-proposal-private-methods@7.18.6': + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + '@babel/plugin-proposal-private-property-in-object@7.21.11': + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.19.6): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + '@babel/plugin-proposal-unicode-property-regex@7.18.6': + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.2): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + '@babel/plugin-syntax-decorators@7.27.1': + resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-flow@7.27.1': + resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + '@babel/plugin-syntax-import-assertions@7.27.1': + resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.10.4': + resolution: {integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.12.1': + resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.6): - resolution: {integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==} + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.11.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): - resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.12.9) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-object-rest-spread@7.20.2: - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.12.9) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.19.6): - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.20.2): - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + '@babel/plugin-transform-arrow-functions@7.27.1': + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + '@babel/plugin-transform-async-to-generator@7.27.1': + resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.19.6): - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + '@babel/plugin-transform-block-scoped-functions@7.27.1': + resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.2): - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + '@babel/plugin-transform-block-scoping@7.28.0': + resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + '@babel/plugin-transform-classes@7.28.0': + resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + '@babel/plugin-transform-computed-properties@7.27.1': + resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.19.6): - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + '@babel/plugin-transform-destructuring@7.28.0': + resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.20.2): - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + '@babel/plugin-transform-dotall-regex@7.27.1': + resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} + '@babel/plugin-transform-duplicate-keys@7.27.1': + resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} + '@babel/plugin-transform-exponentiation-operator@7.27.1': + resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.19.6): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + '@babel/plugin-transform-flow-strip-types@7.27.1': + resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + '@babel/plugin-transform-for-of@7.27.1': + resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + '@babel/plugin-transform-function-name@7.27.1': + resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + '@babel/plugin-transform-literals@7.27.1': + resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.19.6): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + '@babel/plugin-transform-modules-commonjs@7.19.6': + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + '@babel/plugin-transform-modules-commonjs@7.27.1': + resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.19.6): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@babel/plugin-transform-modules-systemjs@7.27.1': + resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.2): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@babel/plugin-transform-modules-umd@7.27.1': + resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0 - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + '@babel/plugin-transform-new-target@7.27.1': + resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + '@babel/plugin-transform-object-super@7.27.1': + resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + '@babel/plugin-transform-optional-chaining@7.27.1': + resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + '@babel/plugin-transform-parameters@7.27.7': + resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + '@babel/plugin-transform-property-literals@7.27.1': + resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + '@babel/plugin-transform-react-constant-elements@7.27.1': + resolution: {integrity: sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + '@babel/plugin-transform-react-display-name@7.28.0': + resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + '@babel/plugin-transform-react-jsx-development@7.27.1': + resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + '@babel/plugin-transform-react-jsx@7.27.1': + resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + '@babel/plugin-transform-react-pure-annotations@7.27.1': + resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + '@babel/plugin-transform-regenerator@7.28.1': + resolution: {integrity: sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + '@babel/plugin-transform-runtime@7.28.0': + resolution: {integrity: sha512-dGopk9nZrtCs2+nfIem25UuHyt5moSJamArzIoh9/vezUQPmYDOzjaHDCkAzuGJibCIkPup8rMT2+wYB6S73cA==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-jsx@7.10.4(@babel/core@7.11.6): - resolution: {integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==} + '@babel/plugin-transform-shorthand-properties@7.27.1': + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): - resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} + '@babel/plugin-transform-spread@7.27.1': + resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + '@babel/plugin-transform-sticky-regex@7.27.1': + resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + '@babel/plugin-transform-template-literals@7.27.1': + resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.19.6): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + '@babel/plugin-transform-typeof-symbol@7.27.1': + resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + '@babel/plugin-transform-typescript@7.28.0': + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + '@babel/plugin-transform-unicode-escapes@7.27.1': + resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + '@babel/plugin-transform-unicode-regex@7.27.1': + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + '@babel/preset-env@7.20.2': + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + '@babel/preset-modules@0.1.6': + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.19.6): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + '@babel/preset-react@7.18.6': + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + '@babel/preset-typescript@7.18.6': + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + '@babel/preset-typescript@7.27.1': + resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} + engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.6): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/runtime-corejs3@7.28.0': + resolution: {integrity: sha512-nlIXnSqLcBij8K8TtkxbBJgfzfvi75V1pAKSM7dUXejGw12vJAqez74jZrHTsJ3Z+Aczc5Q/6JgNjKRMsVU44g==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/runtime@7.20.0': + resolution: {integrity: sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/traverse@7.28.0': + resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/types@7.20.0': + resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/types@7.28.1': + resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==} + engines: {node: '>=6.9.0'} - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/color-helpers@5.0.2': + resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==} + engines: {node: '>=18'} - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.19.6): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@csstools/css-calc@2.1.4': + resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} + engines: {node: '>=18'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@csstools/css-color-parser@3.0.10': + resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==} + engines: {node: '>=18'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@csstools/css-parser-algorithms@3.0.5': + resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} + engines: {node: '>=18'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/css-tokenizer': ^3.0.4 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.19.6): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/css-tokenizer@3.0.4': + resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} + engines: {node: '>=18'} - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.2): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@csstools/normalize.css@12.1.1': + resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==} - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.19.6): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-cascade-layers@1.1.1': + resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-color-function@1.1.1': + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.5): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-font-format-keywords@1.0.1': + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-hwb-function@1.0.2': + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-ic-unit@1.0.1': + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.5): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-is-pseudo-class@2.0.7': + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-nested-calc@1.0.0': + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-normalize-display-values@1.0.1': + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-oklab-function@1.1.1': + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + postcss: ^8.2 - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-progressive-custom-properties@1.3.0': + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + postcss: ^8.3 - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-stepped-value-functions@1.0.1': + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-text-decoration-shorthand@1.0.0': + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-trigonometric-functions@1.0.2': + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} - engines: {node: '>=6.9.0'} + '@csstools/postcss-unset-value@1.0.2': + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + postcss: ^8.2 - /@babel/plugin-transform-classes@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==} - engines: {node: '>=6.9.0'} + '@csstools/selector-specificity@2.2.0': + resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + postcss-selector-parser: ^6.0.10 - /@babel/plugin-transform-classes@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@eslint/eslintrc@0.4.3': + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: '>=6.9.0'} + '@graphql-typed-document-node/core@3.2.0': + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@hapi/bourne@2.1.0': + resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@humanwhocodes/config-array@0.5.0': + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@humanwhocodes/object-schema@1.2.1': + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + deprecated: Use @eslint/object-schema instead - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} - engines: {node: '>=6.9.0'} + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@babel/core': '*' + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: - '@babel/core': + node-notifier: optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} - engines: {node: '>=6.9.0'} + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@babel/core': '*' + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: - '@babel/core': + node-notifier: optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} - engines: {node: '>=6.9.0'} + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@29.3.1': + resolution: {integrity: sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.12': + resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.10': + resolution: {integrity: sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==} + + '@jridgewell/sourcemap-codec@1.5.4': + resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==} + + '@jridgewell/trace-mapping@0.3.29': + resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==} + + '@learnbit/hello-world.envs.my-react-env@0.0.3': + resolution: {integrity: sha512-c0HAz11815K2kUfKtDf3+XN7+ySI1Vb9DBQWAQXn0DjNgDPdleYYZIGEhU6/9C3XRrINDv15Ye3gclz3bMK+5Q==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@mdx-js/mdx@1.6.21': + resolution: {integrity: sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==} + + '@mdx-js/react@1.6.22': + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.13.1 || ^17.0.0 - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} - engines: {node: '>=6.9.0'} + '@mdx-js/util@1.6.21': + resolution: {integrity: sha512-6sANhqfEHu6gdHZSrzDjN18Y48mIon8f2Os6J+IFmMHN0IhNG/0PUIIsI07kA1sZ9t6vgZNBloVmcDa5WOSe6A==} + + '@mdx-js/util@1.6.22': + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env': + resolution: {directory: scope-name/envs/my-react-env, type: directory} + + '@org/scope-name.get-hello-world@file:scope-name/get-hello-world': + resolution: {directory: scope-name/get-hello-world, type: directory} + + '@org/scope-name.hello-world-app@file:scope-name/hello-world-app': + resolution: {directory: scope-name/hello-world-app, type: directory} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.19.6) + react-dom: ^17.0.0 || ^18.0.0 - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} - engines: {node: '>=6.9.0'} + '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world': + resolution: {directory: scope-name/ui/hello-world, type: directory} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^17.0.0 || ^18.0.0 - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} - engines: {node: '>=6.9.0'} + '@pmmmwh/react-refresh-webpack-plugin@0.5.9': + resolution: {integrity: sha512-7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA==} + engines: {node: '>= 10.13'} peerDependencies: - '@babel/core': '*' + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <4.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x peerDependenciesMeta: - '@babel/core': + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} - engines: {node: '>=6.9.0'} + '@prerenderer/prerenderer@1.2.5': + resolution: {integrity: sha512-rPNbSgupfZhtwxdhdlOxDRevEcxvRmKrPQfCrwQH+bMDeRvjPtTYZHt8ZUob7o67UmC9wjZrFGvzji9QOOe9rA==} + engines: {node: '>=8.0.0'} + + '@prerenderer/renderer-jsdom@1.1.9': + resolution: {integrity: sha512-8PWlgZDImYTbCNjhLZhjE1GFk0lZbwix/aCPj4El7/T0smNMVxjYWERxrIp6xmsxpUFq24tZJJeDvKjd8qR+Zg==} + engines: {node: '>=12.0.0'} + + '@prerenderer/renderer-puppeteer@1.2.4': + resolution: {integrity: sha512-S0LY0xYGnXLo/8DqkiT+pDLDd0X5msXSeaPzq5goqgmFfZOQEME3+A7j1T2iClrNzk4Rjgfu4KTA8o508GYXiQ==} + engines: {node: '>=8.0.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-function-name': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + puppeteer: '>= 2' - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} - engines: {node: '>=6.9.0'} + '@prerenderer/webpack-plugin@5.3.10': + resolution: {integrity: sha512-j1ijUz6FXDsCnJheoU+x6XtY03ImFhfLXFCgiVX3ZekSi6f81NKW8o3lVaI/gCs9Xwo6/zs8ub+fW7cKnY7kuw==} + engines: {node: '>=10.13.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-function-name': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + html-webpack-plugin: ^5 + webpack: ^5 - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} - engines: {node: '>=6.9.0'} + '@puppeteer/browsers@2.10.5': + resolution: {integrity: sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==} + engines: {node: '>=18'} + hasBin: true + + '@remix-run/router@1.3.2': + resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==} + engines: {node: '>=14'} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1': + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-svg-dynamic-title@6.5.1': + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-svg-em-dimensions@6.5.1': + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.19.6): - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-transform-react-native-svg@6.5.1': + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.20.2): - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} - engines: {node: '>=6.9.0'} + '@svgr/babel-plugin-transform-svg-component@6.5.1': + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} - engines: {node: '>=6.9.0'} + '@svgr/babel-preset@6.5.1': + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - transitivePeerDependencies: - - supports-color + '@babel/core': ^7.0.0-0 - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} - engines: {node: '>=6.9.0'} + '@svgr/core@6.5.1': + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@6.5.1': + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@6.5.1': + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - transitivePeerDependencies: - - supports-color + '@svgr/core': ^6.0.0 - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} - engines: {node: '>=6.9.0'} + '@svgr/plugin-svgo@6.5.1': + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - transitivePeerDependencies: - - supports-color + '@svgr/core': '*' - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} - engines: {node: '>=6.9.0'} + '@svgr/webpack@6.5.1': + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} + + '@teambit/base-react.navigation.link@2.0.27': + resolution: {integrity: sha1-ZCQxvK+jLOilJMnAnOZAAf9ya+w=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + '@testing-library/react': ^12.0.0 + '@types/react': ^17.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-react.theme.theme-provider@1.95.3': + resolution: {integrity: sha1-CBX15Vnm/ZI8JgjJKI170gnN0r8=} + deprecated: No longer maintained, use teambit.base-react/themes/theme-provider peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-react.themes.theme-switcher@1.0.2': + resolution: {integrity: sha1-ohfnPt23FmLPqATiPMmBwSeIpIA=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.css-components.elevation@1.0.0': + resolution: {integrity: sha512-6hC8vHh0PmHU8fOUM81NXLML7rx9SYpzKkEMz1eS5sIrY/cFIdhLKupo01sARPVwcWTQ0VkVYI1fOO3Q4vi3yg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.css-components.roundness@1.0.0': + resolution: {integrity: sha512-92TAw5Cs4wg2h+Ad9/XmY2p5yRlV8a4dIPL776A1OXw/JXR6NIePUl61VtCrW9v0EJanSJywBtka3AWG+PKOmg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.elements.dots-loader@1.0.3': + resolution: {integrity: sha1-VJCw39xmwHq3wpyTQP8yqmHOqLo=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.elements.icon@1.0.0': + resolution: {integrity: sha512-qaoHLbt6wNXzgST7N3oE+1hI/PttCzrSLQ9B7d/7yKKxUbHbhjoMX0+wViJxlQq3PYnb8LOHDzwvylfZoeBgKQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.input.button@1.0.5': + resolution: {integrity: sha1-s1c+U4PsHHseDY8rDXs7t3sZZzU=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.input.error@1.0.1': + resolution: {integrity: sha512-jgIob/7MGmKLXm4tQCJnV+v2Izm6M+Sbl+oy9Dwj60IAOVSkLThMw/C9szX5OSYjgBItYOcXy2AK1YPDrXLkqw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.input.error@1.0.3': + resolution: {integrity: sha1-u786FrWekFm9ZXJNbAtguAA+wE0=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.11.6): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.layout.breakpoints@1.0.0': + resolution: {integrity: sha512-F7+aHFncCH4iHtClKX9i7Yj6+SBQjQTQkrzxX9Jq4/r4QGEIVVbJ6Tjwa+abI2ef8Ww0fpPpLCP+ithPJWHQtA==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.12.9): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.layout.grid-component@1.0.1': + resolution: {integrity: sha1-s8B7uWwtKRVnglUSUuvOCkW7+HI=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.routing.compare-url@1.0.0': + resolution: {integrity: sha512-57vlN0+yBZFGsX5JLo237OQ3Bu8eeJ+vEVbeQuioJsuvS0zEhI8EyobYssEfyaCMsbpDpbpL6HkfSvuQB0Vtmw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.styles.flex-center@1.0.0': + resolution: {integrity: sha512-kO9scMrQ5AI2+vi9Xc/VMQryBhlcR+RAAsM32mmPQ6cEbE4R1clN9SIASj2BZ2gTca+nQI37+sFvXdefviz4iw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.background@1.0.1': + resolution: {integrity: sha512-VHPPrzqkHUiYkbief6QtxCbTXUcCh69xMtkbrAsIJXZjrAAN1GhNX2PrErEEaCRIXW1joo06zekyth0+vT1HUg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.card@1.0.1': + resolution: {integrity: sha512-taJIr7LqtuyIrERv9FeT3+91mSrY8WF+AbtfHttb6J8pE4xV0FaqxVXbKT9wRw06XDi5RUo6LXKMZOldkgR8Gw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0': + resolution: {integrity: sha512-sbN1AgGvc3lzoeWg7KQrYD9lCa4V9s0EctfZSrPCwy/UcHGePgMipBOWJkcNwuq8GGhzSTzH8rP8McWCLUGdew==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.split-pane.layout@1.0.0': + resolution: {integrity: sha512-Ib4sVeQYp3NU8zz6lhhvQ8B9AHb8bSGDaG5qZP36bXI8N+b9a0G+gCX2kFFmFPuAx74HOYnKz3B5xUPH5yTT0Q==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.split-pane.pane@1.0.0': + resolution: {integrity: sha512-OUzOlgCzt5pkAN9FcoXzlB+TUuH+5+Hh0EE/7X488rFTDHS6lW3pEgKPsqg1XUw30ivthOdVq7cwnpnB1seRhw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.19.6) + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0': + resolution: {integrity: sha512-Zomx0m2Gsf9Dl+A3YwyZy1qJO3q6LtI7BTeEWsBLrub9fO0IXMTMjelsK918oAZ3xJ+LOXnEgYYVh+A9CQm2Qg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.19.6) - '@babel/types': 7.22.5 - - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} - engines: {node: '>=6.9.0'} + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/base-ui.surfaces.split-pane.splitter@1.0.0': + resolution: {integrity: sha512-5/oGHEUOQQnQUi2911fLb/rdFLLDoMy1G4fQ4DNkqoHcahi1a26tCtKlV+7FAI1LsFdk0V+wRp6WY+kX+Qbsxw==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.text.heading@1.0.4': + resolution: {integrity: sha1-tPpsdOpL9sYJhfliT8AZfDG0p0A=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.text.paragraph@1.0.3': + resolution: {integrity: sha1-1+iy0XYAMZbJ++r57HBNzAK7hoE=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.text.text-sizes@1.0.0': + resolution: {integrity: sha512-mCoVLxG3Hm4hgeHJeNnde/4YxpUTvNPNsKbGozErigUrBTf5cKFvLnDYXlEzGOGwNrs9hqIG/nmm3um9E9/5bg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.text.themed-text@1.0.1': + resolution: {integrity: sha512-YG/xgNwXuFkTDopsmThwea4zHjHZ5yRlN43s81kdqKAjqouHEcNZzte39A/ZA398Cx+TUrlwbKuBHxMMiijv2w==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-runtime@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.theme.accent-color@1.1.0': + resolution: {integrity: sha512-IASK1+zcJmULcWGbw57lm8kFH/SkKRZEsqYj/QaxyIKjvnrS/uBXUNDGRqgmkR/IC3Fl8rQlbFxELwASTiSNZg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.3(@babel/core@7.19.6) - babel-plugin-polyfill-corejs3: 0.8.1(@babel/core@7.19.6) - babel-plugin-polyfill-regenerator: 0.5.0(@babel/core@7.19.6) - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.theme.colors@1.0.0': + resolution: {integrity: sha512-3lKvT0eFMwkOGydNHu8TU2xlRHWHQVzx2Uxk50sICGlIjAcEyIZ1E655qvF8B/KPSES81rj/nozWklslhVBMeQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.theme.fonts.book@1.0.2': + resolution: {integrity: sha1-TzaJASmrWjLeCze8rnRp8IZgxwA=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.theme.sizes@1.0.0': + resolution: {integrity: sha512-A2PoEhZ/8GYSeypqIMGK0Hu/bcpfDdquxQtkXZ34bIpXdYaYGn0tHIJTAuxJTInWM+qLMBAHQ32p3qkm86IuDQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} - engines: {node: '>=6.9.0'} + '@teambit/base-ui.utils.composer@1.0.0': + resolution: {integrity: sha512-2w+T+WdEJWxWbGcqRueoww08xeDrPyWxDnWFho4N7WsxKS6zaHp/u29b18KV34VDJV9hdHcrXzhUoaLXd8pFSA==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} - engines: {node: '>=6.9.0'} + '@teambit/bit-error@0.0.402': + resolution: {integrity: sha512-hYIJQWD5UCiD35WAIy0YGySW63PP0GyNIpCDmAOYxRGpA0RMQD+zacKpG1SH6iAfsg8NF/Am8lWis1Lg9ihQtQ==} + engines: {node: '>=12.22.0'} + + '@teambit/community.constants.links@0.0.2': + resolution: {integrity: sha1-cUo3bbFCwlI564kZTrREbBRp234=} + + '@teambit/compilation.compiler-task@0.0.4': + resolution: {integrity: sha512-6zIyC1zn940E1HSsvRPJCUM8WZ5Cgojlj2lOZAw3cADYKyfxAzxFYoJttfs4C17XYj3zePSP5oi95fgaQVeTBg==} + + '@teambit/compilation.compiler-task@1.0.6': + resolution: {integrity: sha512-2Y+LaNBF8aWa2/ca8cdVvsYM+3WNIq0R1i/M8h/kXqf/OjkQ4hfPKDyhmzH4JtG5kuK39uClZMZbPvXmAgo7QA==} + + '@teambit/component-id@0.0.425': + resolution: {integrity: sha512-uG9lej8rfVogowZOBmDXBDYNqj8+AcR+fIMAXzWjfVmSW5Amt2rwnYiyaJEeU9yh+5f6F3BsuXjXbX/tEVZAfA==} + engines: {node: '>=12.22.0'} + + '@teambit/component-version@0.0.406': + resolution: {integrity: sha512-fcqjqGhAblhIfzMgzuLchEq+8T3+fgTojaNmP97F1BAbj3nRtp7cXTyqB8C2My/gC9jJk1CQcTDn5q9xQCmvow==} + engines: {node: '>=12.22.0'} + + '@teambit/component.ui.hooks.use-fetch-docs@0.0.14': + resolution: {integrity: sha1-ilPirLwgHw2HY4GpKFHtFxutA/g=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} - engines: {node: '>=6.9.0'} + '@teambit/compositions.model.composition-id@0.0.496': + resolution: {integrity: sha1-j4ZHommJ0BDZF722wBrOWqcAGHg=} + engines: {node: '>=12.22.0'} + + '@teambit/compositions.model.composition-type@0.0.497': + resolution: {integrity: sha1-eXDEQ+gQrUk9lqcO8HE77OVROJ4=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: 17.0.2 - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} - engines: {node: '>=6.9.0'} + '@teambit/compositions.ui.composition-card@0.0.504': + resolution: {integrity: sha1-Ryd0RxCLOkxA+4lkH9aZxETTyDA=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} - engines: {node: '>=6.9.0'} + '@teambit/compositions.ui.compositions-overview@0.0.3': + resolution: {integrity: sha1-DRu2BTsr/itbUQk8nm0vbNOcXRs=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} - engines: {node: '>=6.9.0'} + '@teambit/defender.eslint-linter@0.0.10': + resolution: {integrity: sha512-XCu/MUYqBwF9G3w46+9/zFrf3SrNvBQ6DTzXJtmMT9MfGE3QyAZV4OAmWBvHOK2LdjZIcO0xSYnHqn2ifgIKEQ==} + + '@teambit/defender.jest-tester@0.0.10': + resolution: {integrity: sha512-VoKG5/ZWorm3MNiAyKQ2oYH5VVw5mRkqO3SGhutoD6XXfCUbo7WBkmuNqO/oHws2BMG+cGSWdEqtiV1q4EaiIQ==} + + '@teambit/defender.linter-task@0.0.5': + resolution: {integrity: sha512-g8AczzzR0ZjPR15LIFYUi6K/JEwM8XNs5yVGEGAEtb+7MoM4eXcTKBSI/9kOggUGgHsGq6mQC/9cQJiHsPI/Qg==} + + '@teambit/defender.prettier-formatter@0.0.6': + resolution: {integrity: sha512-U/6p1+wsBGuBTlQhbvfrs1onftUg/DqONPP9KFbsU6ag0z8gFdkhNft5X8r42+rkoND+zxIVw1uOfGPT64EUwg==} + + '@teambit/defender.tester-task@0.0.6': + resolution: {integrity: sha512-26TV25QkppXO8pjuFGsxvutnesF4yE1wVKoaqMyr74Ol9BQuBZnRnLW8m4oIh5ubPv6SxFQOlnN/Rp7YGlsjbg==} + + '@teambit/dependencies.modules.packages-excluder@0.0.70': + resolution: {integrity: sha512-JAv9vIJ6UtaguT68GVjjB1IoljG9f8DLvzKas0gSOVhqgUyhj/J4G/3jaOLZ9Yu8AEX0XOzsFn/B8K7QDGlwYg==} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + react: 17.0.2 - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} - engines: {node: '>=6.9.0'} + '@teambit/design.theme.icons-font@1.0.8': + resolution: {integrity: sha1-64IRscIeqjVac9Qgt8SeTPg98mw=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} - engines: {node: '>=6.9.0'} + '@teambit/design.theme.icons-font@2.0.24': + resolution: {integrity: sha1-xHWuZM3zVSfkJwnOF6BBOWh6VII=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} - engines: {node: '>=6.9.0'} + '@teambit/design.themes.base-theme@0.1.0': + resolution: {integrity: sha1-V2cI94Nm8O1ShJoQwK8wavfYo50=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@testing-library/react': 12.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} - engines: {node: '>=6.9.0'} + '@teambit/design.themes.dark-theme@1.91.0': + resolution: {integrity: sha1-bwvJgtmAX99/BfXo/HXq4uBsppY=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 + '@testing-library/react': 12.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} - engines: {node: '>=6.9.0'} + '@teambit/design.themes.light-theme@0.1.0': + resolution: {integrity: sha1-Ac1kTk+HDvWo8mW3jBcMuChEY8k=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@testing-library/react': 12.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} - engines: {node: '>=6.9.0'} + '@teambit/design.themes.theme-toggler@0.1.3': + resolution: {integrity: sha1-YjcrpFPsM/OhlOMlrs12oDM+mnc=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.20.2): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} - engines: {node: '>=6.9.0'} + '@teambit/design.ui.error-page@0.0.364': + resolution: {integrity: sha1-vQV7Te5JyvHLSgtDRcCjbwF7v6E=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-env@7.20.2: - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} + '@teambit/design.ui.icon-button@1.0.16': + resolution: {integrity: sha1-4guwxtPII430l1WuK5krEgo4PUY=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.19.6) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-object-rest-spread': 7.20.2 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.19.6) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.19.6) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.12.9) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.19.6) - '@babel/preset-modules': 0.1.5(@babel/core@7.19.6) - '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.6) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.6) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.6) - core-js-compat: 3.31.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-env@7.20.2(@babel/core@7.19.6): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} + '@teambit/design.ui.pages.not-found@0.0.366': + resolution: {integrity: sha1-k9HJT7pUUTGpFWQC2Ofnv4D+Mec=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.19.6) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.19.6) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.19.6) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.19.6) - '@babel/preset-modules': 0.1.5(@babel/core@7.19.6) - '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.6) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.6) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.6) - core-js-compat: 3.31.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-env@7.20.2(@babel/core@7.20.2): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} + '@teambit/design.ui.pages.server-error@0.0.366': + resolution: {integrity: sha1-23wJXHdEaXKFQtZr+SLOU9bbRng=} + engines: {node: '>=12.22.0'} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.2) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.20.2) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.2) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.2) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.20.2) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-classes': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.20.2) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.20.2) - '@babel/preset-modules': 0.1.5(@babel/core@7.20.2) - '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.2) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.2) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.2) - core-js-compat: 3.31.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/docs.docs-template@0.0.11': + resolution: {integrity: sha512-Y1RfmYRwMfq5TEB8HYASNvY9kVKrigx5TLSf42WVybLGrOxRjcFqPVRj6i+pdj1loIAJOXB5zvDuoPAWJNn0IQ==} - /@babel/preset-modules@0.1.5(@babel/core@7.19.6): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + '@teambit/documenter.code.react-playground@4.0.1': + resolution: {integrity: sha512-ElhYSW8VpdOA9DOOE+l85TM1R5tH4K1Fz7ofmb1bWcwFOYqk7qIl4r+lTW+H5x9jyNONkn/kn3A8Vu6d+K+7kA==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.19.6) - '@babel/types': 7.22.5 - esutils: 2.0.3 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-modules@0.1.5(@babel/core@7.20.2): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + '@teambit/documenter.code.react-playground@4.1.7': + resolution: {integrity: sha1-EzAHf8p3qGNfvHcMt3Ev9J6xiqQ=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.20.2) - '@babel/types': 7.22.5 - esutils: 2.0.3 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-react@7.18.6(@babel/core@7.19.6): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} + '@teambit/documenter.markdown.heading@0.1.8': + resolution: {integrity: sha1-nzm8nvmN4ZhYeKvSemUQ8QCkkmM=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.19.6) - - /@babel/preset-typescript@7.18.6(@babel/core@7.20.2): - resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} - engines: {node: '>=6.9.0'} + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10': + resolution: {integrity: sha1-+ukZl1tIe1fvYdNgc3jmbw3TobQ=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/preset-typescript@7.22.5(@babel/core@7.19.6): - resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} - engines: {node: '>=6.9.0'} + '@teambit/documenter.markdown.mdx@0.1.11': + resolution: {integrity: sha1-uT5XYysdIL/omRIx4bjge23mhDw=} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + '@teambit/documenter.routing.external-link@4.1.2': + resolution: {integrity: sha1-x8BwO3dJWu6xpvFCmhyGxIBGUsk=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/runtime-corejs3@7.22.5: - resolution: {integrity: sha512-TNPDN6aBFaUox2Lu+H/Y1dKKQgr4ucz/FGyCz67RVYLsBpVpUFf1dDngzg+Od8aqbrqwyztkaZjtWCZEUOT8zA==} - engines: {node: '>=6.9.0'} - dependencies: - core-js-pure: 3.31.0 - regenerator-runtime: 0.13.11 + '@teambit/documenter.ui.anchor@4.0.6': + resolution: {integrity: sha1-F/md7GOXvxkNRtlH5aNtoA7s/VY=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/runtime@7.20.0: - resolution: {integrity: sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.11 + '@teambit/documenter.ui.anchor@4.0.8': + resolution: {integrity: sha1-uCm/XjJzF/uAWNo0M0ZD+EqSK4w=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/template@7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/types': 7.22.5 + '@teambit/documenter.ui.block-quote@4.0.7': + resolution: {integrity: sha1-7+GPtKk6G3gN7oPmjt/F4b6F84I=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/traverse@7.22.5: - resolution: {integrity: sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.5 - '@babel/parser': 7.22.5 - '@babel/types': 7.22.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@teambit/documenter.ui.bold@4.0.7': + resolution: {integrity: sha1-9gJM/LIlweId0FfiXSfJe0b8P6Q=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/types@7.20.0: - resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - to-fast-properties: 2.0.0 + '@teambit/documenter.ui.code-snippet@4.2.2': + resolution: {integrity: sha1-dgCI6suKWJxi4A2jJFLa0UUESpQ=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@babel/types@7.22.5: - resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - to-fast-properties: 2.0.0 + '@teambit/documenter.ui.copied-message@4.1.6': + resolution: {integrity: sha1-M5pctQny1uKI9T6rUQIR4Nv4iSE=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@teambit/documenter.ui.heading@4.1.4': + resolution: {integrity: sha1-jENJgXMvwy825NKKTM8gP90faMc=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/normalize.css@12.0.0: - resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==} + '@teambit/documenter.ui.heading@4.1.6': + resolution: {integrity: sha1-nCoruiI/7n5xcXd4GEMdtuU5nIU=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.19): - resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.image@4.0.2': + resolution: {integrity: sha1-lOGzakfJTF07HAYwkCYPeS3MKwI=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-color-function@1.1.1(postcss@8.4.19): - resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.inline-code@0.1.5': + resolution: {integrity: sha1-ds6zetV22NrzIjAju0UoDBjePEY=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.19): - resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.italic@4.0.7': + resolution: {integrity: sha1-udDO1kKFVhbtzPHibq1fT3cAjtg=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.19): - resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.linked-heading@4.1.6': + resolution: {integrity: sha1-f24gfJKAIAD/V+cvUE/6Zk847U0=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.19): - resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.linked-heading@4.1.8': + resolution: {integrity: sha1-LGpmPIXZSWsXbYgkS/WR1VxJcCg=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.19): - resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.ol@4.1.5': + resolution: {integrity: sha1-lapFqkqFsOmHSTE3otAHINSFdu8=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.19): - resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.paragraph@4.1.5': + resolution: {integrity: sha1-w9jrNz9R2bIsMgLvjNgv9Ycmr3Y=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.19): - resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.property-table@4.1.3': + resolution: {integrity: sha1-JTxLbdTeNEeF6K1N9uOmUpclSYw=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.19): - resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.section@4.1.1': + resolution: {integrity: sha512-PwMUmernBbCKKHm4AdXfBTlanIrkF6bE/Uyjg2AobIMf5taLw0L9RiQ2lAjUnSn9Mq4VFId/TrcjdA1p7jqlmQ==} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.19): - resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.separator@4.1.5': + resolution: {integrity: sha1-xyOoVnbJEVVdAGegDDbr5EXrZH8=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.19): - resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.sup@4.0.7': + resolution: {integrity: sha1-BsLXxuTjySkYTbpe2bxzPcbamVU=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.19): - resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.table-column@4.0.0': + resolution: {integrity: sha512-sGMLD+Lu2snQ1g1xUXYHqhbUcH3iOp0CUc69T76SNt3cQBabNGb5T9yg0A/7JYN4Ams1IKJ8Anws8+T64huSDg==} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.19): - resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} - engines: {node: ^14 || >=16} + '@teambit/documenter.ui.table-heading-column@4.0.4': + resolution: {integrity: sha1-88YzrKFIcEPPln9jc6nKCGB69Qs=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.19): - resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} - engines: {node: ^12 || ^14 || >=16} + '@teambit/documenter.ui.table-heading-row@4.0.4': + resolution: {integrity: sha1-5Y0+Bx4PBE8oyFlUjczMJdil4ig=} peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): - resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} - engines: {node: ^14 || ^16 || >=18} + '@teambit/documenter.ui.table-row@4.1.2': + resolution: {integrity: sha1-eWzMJmyZbLH5RL03UwVgy6xrZAs=} peerDependencies: - postcss-selector-parser: '*' - peerDependenciesMeta: - postcss-selector-parser: - optional: true - dependencies: - postcss-selector-parser: 6.0.13 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@eslint/eslintrc@0.4.3: - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 7.3.1 - globals: 13.20.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - js-yaml: 3.14.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color + '@teambit/documenter.ui.table.base-table@4.1.5': + resolution: {integrity: sha1-bdqA6VoAdA2lDnRjrxeUUjk09UQ=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@graphql-typed-document-node/core@3.2.0(graphql@14.7.0): - resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + '@teambit/documenter.ui.table.td@4.1.5': + resolution: {integrity: sha1-G1IEysSy68nlR2OF+QHUU39HrEw=} peerDependencies: - graphql: '*' - peerDependenciesMeta: - graphql: - optional: true - dependencies: - graphql: 14.7.0 - dev: false + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@hapi/bourne@2.1.0: - resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} + '@teambit/documenter.ui.table.tr@4.1.5': + resolution: {integrity: sha1-jNAXpVn9c16u1xtdH/m1beo5TnQ=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@humanwhocodes/config-array@0.5.0: - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@teambit/documenter.ui.table@4.1.2': + resolution: {integrity: sha1-OIJesPzJ1bKWQTPMeEGAPT++8Eo=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + '@teambit/documenter.ui.ul@4.1.5': + resolution: {integrity: sha1-tRTv2mMIu1ulZTNVLUDzQsDBuyM=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 + '@teambit/eslint-config-bit-react@0.0.367': + resolution: {integrity: sha512-d8N9+n/OSxaVpeFBkRhYm6QvqKbzaMf4bN8NJrLmPBuJh4on74U3z4xsqu8sLIphEO0fA2G8ISB9Mo+TINqbMw==} + peerDependencies: + eslint: '> 7.0.0' + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + '@teambit/evangelist.elements.icon@1.0.2': + resolution: {integrity: sha512-OoqGwKyhQDETfLYTebBOGUeISdix6eyj9cT3iQoVMtZlcIGOJlQqccDsFbjnhOUMFoI9IbtqTaGL7ymCGbA8rw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/console@29.5.0: - resolution: {integrity: sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - chalk: 4.1.2 - jest-message-util: 29.5.0 - jest-util: 29.5.0 - slash: 3.0.0 + '@teambit/evangelist.elements.icon@1.0.5': + resolution: {integrity: sha1-abaBfCKbp8JEu8J7j9OB5kvyo5s=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/core@29.5.0: - resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@teambit/graphql.hooks.use-query-light@1.0.0': + resolution: {integrity: sha1-FUGp8ZjK399H63okAGKoLjBGtIE=} peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 29.5.0 - '@jest/reporters': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/transform': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.8.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.5.0 - jest-config: 29.5.0(@types/node@16.18.37) - jest-haste-map: 29.5.0 - jest-message-util: 29.5.0 - jest-regex-util: 29.4.3 - jest-resolve: 29.5.0 - jest-resolve-dependencies: 29.5.0 - jest-runner: 29.5.0 - jest-runtime: 29.5.0 - jest-snapshot: 29.5.0 - jest-util: 29.5.0 - jest-validate: 29.5.0 - jest-watcher: 29.5.0 - micromatch: 4.0.5 - pretty-format: 29.5.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node + graphql: ^14.0.0 || ^15.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/environment@29.5.0: - resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/fake-timers': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - jest-mock: 29.5.0 + '@teambit/legacy-bit-id@0.0.421': + resolution: {integrity: sha512-65a+uW3GK01vKHPnnX54PHKoLVgIDa9ajXME/4alskhw7VC32ohf1/O5M1EvBvm8f5ek/ply8WUhuqkUIihAzQ==} + engines: {node: '>=12.22.0'} - /@jest/expect-utils@29.5.0: - resolution: {integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.4.3 + '@teambit/mdx.modules.mdx-compiler@0.0.500': + resolution: {integrity: sha512-a5gcFfpF6HAXmA6h5JaN8slnNkCRY8Qf2lJgOMrLxPU6+1CUZkapQAUIQKdTF8WMx49IG/jIsLkPUbvZNKYlSw==} + engines: {node: '>=12.22.0'} + deprecated: No longer maintained, use teambit.mdx/compilers/mdx-transpiler + peerDependencies: + react: 17.0.2 - /@jest/expect@29.5.0: - resolution: {integrity: sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - expect: 29.5.0 - jest-snapshot: 29.5.0 - transitivePeerDependencies: - - supports-color + '@teambit/mdx.modules.mdx-loader@0.0.509': + resolution: {integrity: sha512-yc/6oG3eArL/BjF+P556rCzn4xviNoT4mAX5EsBqyJ0cZ0EQLBYClc5QHlWjeFRO4chdn5qllGs5ST+wvV01/w==} + engines: {node: '>=12.22.0'} - /@jest/fake-timers@29.5.0: - resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.5.0 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 16.18.37 - jest-message-util: 29.5.0 - jest-mock: 29.5.0 - jest-util: 29.5.0 + '@teambit/mdx.ui.docs.link@0.0.497': + resolution: {integrity: sha1-24kqPZGV0Se3S3ghyYTIiazYb4A=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/globals@29.5.0: - resolution: {integrity: sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.5.0 - '@jest/expect': 29.5.0 - '@jest/types': 29.5.0 - jest-mock: 29.5.0 - transitivePeerDependencies: - - supports-color + '@teambit/mdx.ui.docs.snippet@0.0.499': + resolution: {integrity: sha1-6fWFOxK7E2C2KFa4PNMAQSuSmRA=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/reporters@29.5.0: - resolution: {integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@teambit/mdx.ui.mdx-layout@0.0.510': + resolution: {integrity: sha1-XFZX/GIYo7ydMaWBLLANslOFu6U=} + engines: {node: '>=12.22.0'} peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/transform': 29.5.0 - '@jest/types': 29.5.0 - '@jridgewell/trace-mapping': 0.3.18 - '@types/node': 16.18.37 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.1 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 - jest-message-util: 29.5.0 - jest-util: 29.5.0 - jest-worker: 29.5.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.0 - transitivePeerDependencies: - - supports-color + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/schemas@29.4.3: - resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@sinclair/typebox': 0.25.24 + '@teambit/mdx.ui.mdx-scope-context@0.0.496': + resolution: {integrity: sha1-+ie1660+VhKn+W5o7bhzIYSjNdM=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@jest/source-map@29.4.3: - resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jridgewell/trace-mapping': 0.3.18 - callsites: 3.1.0 - graceful-fs: 4.2.11 + '@teambit/node.deps-detectors.detective-es6@0.0.1': + resolution: {integrity: sha512-wH9MRqL+zFnTyFIrYr5geTR80E79ecSQGmg2ezBI6wf7+Y0mM6KdRM4MRTFnvTXSDc4DQdC/oX3jdYhNGJTPlA==} - /@jest/test-result@29.3.1: - resolution: {integrity: sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': 29.5.0 - '@jest/types': 29.5.0 - '@types/istanbul-lib-coverage': 2.0.4 - collect-v8-coverage: 1.0.1 + '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': + resolution: {integrity: sha512-vJrbAt/ci/vPU42f7HsNzYaeub0Okp99oJtAXiA58MwxmeG8oroqP4Z4kxVmAAbbpbI8d3Z4Q6rGBvpfh459CQ==} - /@jest/test-result@29.5.0: - resolution: {integrity: sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/console': 29.5.0 - '@jest/types': 29.5.0 - '@types/istanbul-lib-coverage': 2.0.4 - collect-v8-coverage: 1.0.1 + '@teambit/node.generator.node-starters@0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894': + resolution: {integrity: sha512-5V1C9zihE43BqDkZZsFPz9d4BVGnwslmiV1MbacWmrCyeKoS/wCPGr/khiAbII2BYNZdiyZlZ4mbB8uefRwB5A==} - /@jest/test-sequencer@29.5.0: - resolution: {integrity: sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/test-result': 29.5.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.5.0 - slash: 3.0.0 + '@teambit/node.generator.node-templates@0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d': + resolution: {integrity: sha512-XmAamGrZXFNHWNNZCKcc6yexpYTNE7ZzNwTC7CY01ubrUj8oC2GkVwBD13rH4R+Ig4uaM3qiTmzW0fD3f5vaCw==} - /@jest/transform@29.5.0: - resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/core': 7.22.5 - '@jest/types': 29.5.0 - '@jridgewell/trace-mapping': 0.3.18 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.5.0 - jest-regex-util: 29.4.3 - jest-util: 29.5.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color + '@teambit/node.node@0.0.38': + resolution: {integrity: sha512-Xp+Aim/bnK9V9daMxyg2wPwSwTIsjyGOsO3BmtdmlGurRkPHMaW5wGJohzbHmEFqGO12Nw2U0Y/PG636hBIzLw==} - /@jest/types@26.6.2: - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 16.18.37 - '@types/yargs': 15.0.15 - chalk: 4.1.2 - dev: true + '@teambit/preview.react-preview@0.0.35': + resolution: {integrity: sha512-aNJcGOKSFG7s0JeaNtFjldpYnYBo/udeYM4xL7sJdJV15pZSeEwF0Z8bg+US2LaF7LeEybQdp5Vfo7G1Uya9zg==} + peerDependencies: + react: 18.2.0 - /@jest/types@29.5.0: - resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.4.3 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 16.18.37 - '@types/yargs': 17.0.24 - chalk: 4.1.2 + '@teambit/react.apps.react-app-types@0.0.32': + resolution: {integrity: sha512-tdfsyQZ6j2UzS1ONgB/LyjuEoj5UCUuFOl5+S/7CtIEq22zibJmBnxfr/6ONIzPIxpS91JcjvERxxLZIcnP3ZA==} - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 + '@teambit/react.babel.bit-react-transformer@0.0.525': + resolution: {integrity: sha1-Lp+xyzKieJ7xqXjacuRHWOrMoIM=} + engines: {node: '>=12.22.0'} - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} + '@teambit/react.eslint-config-bit-react@0.0.794': + resolution: {integrity: sha512-ztBWBreeAmFF3tzp6tgvOsTpcuWFurQjZZ213pLf2gtxr0JntUmpoZMUqQ6yAXd/nr1O3pJGNOLI4JJlk/bWvQ==} + engines: {node: '>=12.22.0'} + peerDependencies: + eslint: '> 7.0.0' - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} + '@teambit/react.generator.react-starters@0.0.12': + resolution: {integrity: sha512-nVTNeBzfYzh1ElM6Jk5VAjZwpC8Vzk4EEul6XCtn+tSLzaWpM0rxmSeh02dAz/B0AHB1jsNUQWXJB5QBzYxH9w==} - /@jridgewell/source-map@0.3.3: - resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@teambit/react.generator.react-templates@0.0.10': + resolution: {integrity: sha512-o7e7rXT9UaQa1d02v3pydtncTDMluWBhGa/KHBWrweZ1D395Tep0FWg08A/DPBJu0TmEGbSakI4lbXIbf7y9jw==} - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + '@teambit/react.jest.react-jest@0.0.6': + resolution: {integrity: sha512-akXvrs4dWvl2hlI8xr2qxuf0t6MlnHW2kN54ZY4LIFVUWKk18mXGjmTy2CQCs6/RZSsIOSi7TYo2I2ZEM9RqbA==} - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + '@teambit/react.mounter@0.0.10': + resolution: {integrity: sha512-ARdWzf+L8ryu7GzK7SV2kcIug+isV4S1wWaHV2kLBIC+zspAqUzuNHCWJ4fUsy8furDRoAqf4CXej8wGjBBSGQ==} - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@teambit/react.react-env@0.0.68': + resolution: {integrity: sha512-j3aMC0PLraM4LUfVJXSogqFcFWbQhaFxttxLBHP9VB4Jyd99nFFkVmLz+zoEbrmDM4vc9w9LUMDtukxaBx1qyg==} - /@learnbit/hello-world.envs.my-react-env@0.0.3(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14): - resolution: {integrity: sha1-QH9BgCUPAHwNyK0DiOP/D2dV7IU=, tarball: https://node-registry.bit.cloud/@learnbit/hello-world.envs.my-react-env/-/@learnbit-hello-world.envs.my-react-env-0.0.3.tgz} - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/defender.eslint-linter': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@teambit/defender.prettier-formatter': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.2.0) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - '@teambit/preview.react-preview': 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3(@teambit/legacy@node_modules+@teambit+legacy) - core-js: 3.31.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.37) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-router-dom: 6.8.1(react-dom@18.2.0)(react@18.2.0) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve + '@teambit/react.rendering.ssr@1.0.1': + resolution: {integrity: sha1-Wt4Y5BoIxJgeVaeJ16DRz1aojcc=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@leichtgewicht/ip-codec@2.0.4: - resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} + '@teambit/react.ui.docs-app@0.0.200': + resolution: {integrity: sha1-VsWB8twknI6I+t2/RLyUWIYWpao=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@mdx-js/mdx@1.6.21: - resolution: {integrity: sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==} - dependencies: - '@babel/core': 7.11.6 - '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) - '@mdx-js/util': 1.6.21 - babel-plugin-apply-mdx-type-prop: 1.6.21(@babel/core@7.11.6) - babel-plugin-extract-import-names: 1.6.21 - camelcase-css: 2.0.1 - detab: 2.0.3 - hast-util-raw: 6.0.1 - lodash.uniq: 4.5.0 - mdast-util-to-hast: 9.1.2 - remark-footnotes: 2.0.0 - remark-mdx: 1.6.21 - remark-parse: 8.0.3 - remark-squeeze-paragraphs: 4.0.0 - style-to-object: 0.3.0 - unified: 9.2.0 - unist-builder: 2.0.3 - unist-util-visit: 2.0.3 - transitivePeerDependencies: - - supports-color + '@teambit/react.ui.docs.apply-providers@0.0.9': + resolution: {integrity: sha1-/uucZTxEpts5Vd+RTBmgUdB/ZHg=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@mdx-js/react@1.6.22(react@18.2.0): - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + '@teambit/react.ui.docs.compositions-carousel@0.0.12': + resolution: {integrity: sha1-n0rroqYrv8eOj7p4W7/Y9i8FvqU=} + engines: {node: '>=12.22.0'} peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@mdx-js/util@1.6.21: - resolution: {integrity: sha512-6sANhqfEHu6gdHZSrzDjN18Y48mIon8f2Os6J+IFmMHN0IhNG/0PUIIsI07kA1sZ9t6vgZNBloVmcDa5WOSe6A==} + '@teambit/react.ui.docs.docs-content@0.0.11': + resolution: {integrity: sha1-72/vBTx8WnHwjFaJDAroTo1TMm0=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@mdx-js/util@1.6.22: - resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + '@teambit/react.ui.docs.properties-table@0.0.9': + resolution: {integrity: sha1-XmFJKOdmn3TKn0poeelp2/Nv0KA=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 + '@teambit/react.ui.error-fallback@0.0.118': + resolution: {integrity: sha1-4WqvFqd/1DnRh0cvwg4Nxfyss4Y=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.29': + resolution: {integrity: sha1-2KCEkwOu4F8nvFJ4CL+b4Os4d1M=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + '@teambit/react.webpack.react-webpack@0.0.28': + resolution: {integrity: sha512-h4UrOwNKxW2o9dAjw3S6kAuJ22GZ1tu/WCJfhTYC3yVlCDN5LaRu5G+pljIFzBG8broyps9dWl2mNUnDtMIGGQ==} - /@pmmmwh/react-refresh-webpack-plugin@0.5.9(react-refresh@0.14.0)(webpack-dev-server@4.15.0)(webpack@5.84.1): - resolution: {integrity: sha512-7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA==} - engines: {node: '>= 10.13'} + '@teambit/tests-results@0.0.104': + resolution: {integrity: sha512-JuXh+pXR1O437N2lE9n/C5pIrlune7pRwPjPQ9ZviCV/+EZW3xPjJJX2ehLHkhkL6bNpuSpSyUSb34xkXTlKaw==} + engines: {node: '>=12.22.0'} + + '@teambit/toolbox.fs.hard-link-directory@0.0.15': + resolution: {integrity: sha512-vuA+r0Iwx5seH/cyZ6qK5BhLB7yFT5Wge5BEWwu5LZyDHQnyY31G1qwK6QGJRRqcGJ8aYpRsFA9U2g56Nh1uLQ==} + engines: {node: '>=12.22.0'} + + '@teambit/toolbox.fs.hard-link-directory@0.0.9': + resolution: {integrity: sha1-St+dQX5yyoZajHllbcoy69isL1I=} + engines: {node: '>=12.22.0'} + + '@teambit/toolbox.network.get-port@0.0.121': + resolution: {integrity: sha1-XuOaoA9egIDH+nPU155/XvGTIV4=} + engines: {node: '>=12.22.0'} + + '@teambit/typescript.typescript-compiler@0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3': + resolution: {integrity: sha512-FTp8l04srk+IK4k/am6R5gdhh4Vj/jTa4wgntnlu/3EyCdOutvf63EPMPGELkz5+ovmOWOz1MaX9cTmpEIO/gA==} + + '@teambit/typescript.typescript-compiler@0.0.9': + resolution: {integrity: sha512-t6JEmy1Tax3WQVvDc5VvltM+275eZsQrraqJKy1yiKwdVRU7xyNWQRX7iNprX7ZjaD8NiRz8fIAnA1VDISV4Rg==} + + '@teambit/typescript.typescript-compiler@2.0.16': + resolution: {integrity: sha512-o9onBfMpp2w1RMx8pbQ9xAiNAolNY3FKtScwmA7qVsqxWVovS/5hUzdUfQDoatqhJiSmyrhh1HbYnYWQ/Z/5TQ==} + + '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.79': + resolution: {integrity: sha1-YIElSDziq2TTNw3L4u8Qz3LP1MI=} + engines: {node: '>=12.22.0'} peerDependencies: - '@types/webpack': '*' - react-refresh: '*' - sockjs-client: '*' - type-fest: '*' - webpack: '*' - webpack-dev-server: '*' - webpack-hot-middleware: '*' - webpack-plugin-serve: '*' - peerDependenciesMeta: - '@types/webpack': - optional: true - react-refresh: - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.31.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.4.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@prerenderer/prerenderer@1.2.3: - resolution: {integrity: sha512-ildOGNPo6vg2SNSBd/wjTljem98BJ0bzgCFcHL0SZEgTf9c26ucTvreZnGgqrqZ+lpiYb6c4RbPABvZW69x6lw==} - engines: {node: '>=8.0.0'} - dependencies: - express: 4.18.2 - portfinder: 1.0.32 - schema-utils: 4.0.0 - stoppable: 1.1.0 - ts-deepmerge: 6.1.0 - optionalDependencies: - http-proxy-middleware: 2.0.6(@types/express@4.17.17) - transitivePeerDependencies: - - '@types/express' - - debug - - supports-color + '@teambit/ui-foundation.ui.pages.static-error@0.0.86': + resolution: {integrity: sha1-GtGNKpFEb1NweBlDYujUkrg/Ybs=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@prerenderer/renderer-jsdom@1.1.6: - resolution: {integrity: sha512-pLU/aS7uWHodu58Jf+aO54woLOGZB4xp46x15SriicwUQLpaKQCCwxw7frNzdbG7w5OLKvjV33s5j5VhIw0snA==} - engines: {node: '>=8.0.0'} - dependencies: - '@types/jsdom': 20.0.1 - jsdom: 22.1.0 - promise-limit: 2.7.0 - schema-utils: 4.0.0 - whatwg-fetch: 3.6.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate + '@teambit/ui-foundation.ui.rendering.html@0.0.69': + resolution: {integrity: sha1-wLxfPsjKW+2sB5juwlbAA60Oirk=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@prerenderer/renderer-puppeteer@1.2.2: - resolution: {integrity: sha512-tTdhhxrm7sgZC4i6hrDuOwFN3JVLiotgk2NmaLlJbEO+HVgpPbDLPGITNAlNRXlTYHaaHTd11Sdwh1eZoStOMQ==} - engines: {node: '>=8.0.0'} - requiresBuild: true + '@teambit/ui-foundation.ui.rendering.html@0.0.80': + resolution: {integrity: sha1-ORPBHExFttraKEKYRouJ/4sMAiM=} + engines: {node: '>=12.22.0'} peerDependencies: - puppeteer: '*' - peerDependenciesMeta: - puppeteer: - optional: true - dependencies: - deepmerge: 4.3.1 - promise-limit: 2.7.0 - schema-utils: 4.2.0 - optional: true + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - /@prerenderer/webpack-plugin@5.3.6(webpack@5.84.1): - resolution: {integrity: sha512-U5Q2bmXe7IdRX3HGmttOp5AJ6Ci1TJjC8y5IYYK3wxTTsPQTb5Up+pG26JP94Tz0yZx3+iRkuWwpdZBrnkSf0w==} - engines: {node: '>=10.13.0'} + '@teambit/webpack.modules.generate-style-loaders@0.0.110': + resolution: {integrity: sha1-5/UrCzkUflAvTtIr9rq0sCZyM4g=} + engines: {node: '>=12.22.0'} + + '@teambit/webpack.modules.style-regexps@0.0.139': + resolution: {integrity: sha1-imtAG5V7pNn9DG/bocygmAT5DYw=} + engines: {node: '>=12.22.0'} + + '@teambit/webpack.transformers.favicon-reload@0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb': + resolution: {integrity: sha512-l+9OalEqSoIbCYQaZUdRf8G+zUAm9lG18scw8SE49okrq/3p7pZrm/hdKb0846wNTtXrCPWMp8fAGjAVr5uzag==} + + '@teambit/webpack.webpack-bundler@0.0.9': + resolution: {integrity: sha512-BcSMCCw0amUdUi2KKCBp1KO5gmnCJ7hwFAOdWCNvqoCN284UVEya+8FUdLeSbI69X7FtC/VbEUDIhti2gT+avg==} + + '@teambit/webpack.webpack-dev-server@0.0.16': + resolution: {integrity: sha512-FdIsREDPJOMcCvW+gcGZxpI9N4GQ67Jirx8nwq13nq7ZI6of5ufocbBQnAJSD/ZmwkKWi4zpLbb8eqG1nsQMHA==} + peerDependencies: + webpack: 5.84.1 + + '@testing-library/dom@8.20.1': + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} + + '@testing-library/jest-dom@5.16.5': + resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + + '@testing-library/react-hooks@8.0.1': + resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} + engines: {node: '>=12'} peerDependencies: - html-webpack-plugin: '*' - webpack: '*' + '@types/react': ^16.9.0 || ^17.0.0 + react: ^16.9.0 || ^17.0.0 + react-dom: ^16.9.0 || ^17.0.0 + react-test-renderer: ^16.9.0 || ^17.0.0 peerDependenciesMeta: - html-webpack-plugin: + '@types/react': optional: true - webpack: + react-dom: + optional: true + react-test-renderer: optional: true - dependencies: - '@prerenderer/prerenderer': 1.2.3 - schema-utils: 4.2.0 - webpack: 5.84.1 - optionalDependencies: - '@prerenderer/renderer-puppeteer': 1.2.2 - transitivePeerDependencies: - - '@types/express' - - debug - - puppeteer - - supports-color - /@remix-run/router@1.3.2: - resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==} - engines: {node: '>=14'} + '@testing-library/react@12.1.5': + resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==} + engines: {node: '>=12'} + peerDependencies: + react: <18.0.0 + react-dom: <18.0.0 - /@sinclair/typebox@0.25.24: - resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} + '@testing-library/react@13.4.0': + resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} + engines: {node: '>=12'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 - /@sinonjs/commons@3.0.0: - resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} - dependencies: - type-detect: 4.0.8 + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - dependencies: - '@sinonjs/commons': 3.0.0 + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.7': + resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} + + '@types/body-parser@1.19.6': + resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/buble@0.20.5': + resolution: {integrity: sha512-CNpql2WPrZloamMweLkyM42nPsUVa10NDurkhTB5+tGu8SstDd568dothJi7tFSAsbqJK0rSb83W9ZwGt8My/A==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + + '@types/estree@0.0.50': + resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/express-serve-static-core@4.19.6': + resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==} + + '@types/express-serve-static-core@5.0.7': + resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==} + + '@types/express@4.17.23': + resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-errors@2.0.5': + resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} + + '@types/http-proxy@1.17.16': + resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@26.0.24': + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} + + '@types/jest@29.5.14': + resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/jsdom@21.1.7': + resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/node-forge@1.3.13': + resolution: {integrity: sha512-zePQJSW5QkwSHKRApqWCVKeKoSOt4xvEnLENZPjyvm9Ezdf/EyDeJM7jqLzOwjVICQQzvLZ63T55MKdJB5H6ww==} + + '@types/node@12.20.4': + resolution: {integrity: sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==} + + '@types/node@16.18.126': + resolution: {integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@5.0.3': + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + + '@types/prop-types@15.7.15': + resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} + + '@types/qs@6.14.0': + resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-dom@17.0.26': + resolution: {integrity: sha512-Z+2VcYXJwOqQ79HreLU/1fyQ88eXSSFh6I3JdrEHQIfYSI0kCQpTGvOrbE6jFGGYXKsHuwY9tBa/w5Uo6KzrEg==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 + '@types/react': ^17.0.0 - /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.19.6): - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 + '@types/react': ^18.0.0 - /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.19.6): - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} + '@types/react@17.0.87': + resolution: {integrity: sha512-wpg9AbtJ6agjA+BKYmhG6dRWEU/2DHYwMzCaBzsz137ft6IyuqZ5fI4ic1DWL4DrI03Zy78IyVE6ucrXl0mu4g==} + + '@types/react@18.3.23': + resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/scheduler@0.16.8': + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + + '@types/send@0.17.5': + resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.8': + resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/testing-library__jest-dom@5.9.5': + resolution: {integrity: sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + + '@types/yargs@17.0.33': + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@typescript-eslint/eslint-plugin@4.13.0': + resolution: {integrity: sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - '@babel/core': '*' + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} + '@typescript-eslint/eslint-plugin@4.29.3': + resolution: {integrity: sha512-tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - '@babel/core': '*' + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} + '@typescript-eslint/eslint-plugin@5.35.1': + resolution: {integrity: sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - '@babel/core': '*' + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} + '@typescript-eslint/experimental-utils@4.13.0': + resolution: {integrity: sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - dependencies: - '@babel/core': 7.19.6 + eslint: '*' - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} + '@typescript-eslint/experimental-utils@4.29.3': + resolution: {integrity: sha512-ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + + '@typescript-eslint/experimental-utils@4.33.0': + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - '@babel/core': '*' + eslint: '*' + + '@typescript-eslint/parser@4.13.0': + resolution: {integrity: sha512-KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} + '@typescript-eslint/parser@4.4.1': + resolution: {integrity: sha512-S0fuX5lDku28Au9REYUsV+hdJpW/rNW0gWlc4SXzF/kdrRaAVX9YCxKpziH7djeWT/HFAjLZcnY7NJD8xTeUEg==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - '@babel/core': '*' + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - /@svgr/babel-preset@6.5.1(@babel/core@7.19.6): - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} + '@typescript-eslint/parser@5.35.1': + resolution: {integrity: sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - '@babel/core': '*' + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' peerDependenciesMeta: - '@babel/core': + typescript: optional: true - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.19.6) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.19.6) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.19.6) - /@svgr/core@6.5.1: - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) - '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) - camelcase: 6.3.0 - cosmiconfig: 7.1.0 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/scope-manager@4.13.0': + resolution: {integrity: sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@svgr/hast-util-to-babel-ast@6.5.1: - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} - dependencies: - '@babel/types': 7.22.5 - entities: 4.5.0 + '@typescript-eslint/scope-manager@4.29.3': + resolution: {integrity: sha512-x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' - peerDependenciesMeta: - '@svgr/core': - optional: true - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) - '@svgr/core': 6.5.1 - '@svgr/hast-util-to-babel-ast': 6.5.1 - svg-parser: 2.0.4 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/scope-manager@4.33.0': + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' - peerDependenciesMeta: - '@svgr/core': - optional: true - dependencies: - '@svgr/core': 6.5.1 - cosmiconfig: 7.1.0 - deepmerge: 4.3.1 - svgo: 2.8.0 + '@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} - /@svgr/webpack@6.5.1: - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} - engines: {node: '>=10'} - dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.19.6) - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@babel/preset-typescript': 7.22.5(@babel/core@7.19.6) - '@svgr/core': 6.5.1 - '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) - '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) - transitivePeerDependencies: - - supports-color + '@typescript-eslint/scope-manager@5.35.1': + resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ZCQxvK+jLOilJMnAnOZAAf9ya+w=, tarball: https://node-registry.bit.cloud/@teambit/base-react.navigation.link/-/@teambit-base-react.navigation.link-2.0.27.tgz} + '@typescript-eslint/type-utils@5.35.1': + resolution: {integrity: sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - '@testing-library/react': '*' - '@types/react': '*' - react: '*' - react-dom: '*' + eslint: '*' + typescript: '*' peerDependenciesMeta: - '@testing-library/react': - optional: true - '@types/react': - optional: true - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - '@teambit/base-ui.routing.compare-url': registry.npmjs.org/@teambit/base-ui.routing.compare-url@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@testing-library/react': 13.4.0(react-dom@18.2.0)(react@18.2.0) - '@types/react': 17.0.62 - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false - /@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ZCQxvK+jLOilJMnAnOZAAf9ya+w=, tarball: https://node-registry.bit.cloud/@teambit/base-react.navigation.link/-/@teambit-base-react.navigation.link-2.0.27.tgz} - peerDependencies: - '@testing-library/react': '*' - '@types/react': '*' - react: '*' - react-dom: '*' - peerDependenciesMeta: - '@testing-library/react': - optional: true - '@types/react': - optional: true - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.routing.compare-url': registry.npmjs.org/@teambit/base-ui.routing.compare-url@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@testing-library/react': 13.4.0(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.14 - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@typescript-eslint/types@4.13.0': + resolution: {integrity: sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/base-react.theme.theme-provider@1.95.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-CBX15Vnm/ZI8JgjJKI170gnN0r8=, tarball: https://node-registry.bit.cloud/@teambit/base-react.theme.theme-provider/-/@teambit-base-react.theme.theme-provider-1.95.3.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@typescript-eslint/types@4.29.3': + resolution: {integrity: sha512-s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ohfnPt23FmLPqATiPMmBwSeIpIA=, tarball: https://node-registry.bit.cloud/@teambit/base-react.themes.theme-switcher/-/@teambit-base-react.themes.theme-switcher-1.0.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@typescript-eslint/types@4.33.0': + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-VJCw39xmwHq3wpyTQP8yqmHOqLo=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.elements.dots-loader/-/@teambit-base-ui.elements.dots-loader-1.0.3.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@typescript-eslint/types@4.4.1': + resolution: {integrity: sha512-KNDfH2bCyax5db+KKIZT4rfA8rEk5N0EJ8P0T5AJjo5xrV26UAzaiqoJCxeaibqc0c/IvZxp7v2g3difn2Pn3w==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/base-ui.input.button@1.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-s1c+U4PsHHseDY8rDXs7t3sZZzU=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.input.button/-/@teambit-base-ui.input.button-1.0.5.tgz} + '@typescript-eslint/types@5.35.1': + resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/typescript-estree@4.13.0': + resolution: {integrity: sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - react: '*' - react-dom: '*' + typescript: '*' peerDependenciesMeta: - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - '@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/base-ui.input.error@1.0.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-u786FrWekFm9ZXJNbAtguAA+wE0=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.input.error/-/@teambit-base-ui.input.error-1.0.3.tgz} + '@typescript-eslint/typescript-estree@4.29.3': + resolution: {integrity: sha512-45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - react: '*' - react-dom: '*' + typescript: '*' peerDependenciesMeta: - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/base-ui.layout.grid-component@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-s8B7uWwtKRVnglUSUuvOCkW7+HI=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.layout.grid-component/-/@teambit-base-ui.layout.grid-component-1.0.1.tgz} + '@typescript-eslint/typescript-estree@4.33.0': + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - react: '*' - react-dom: '*' + typescript: '*' peerDependenciesMeta: - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - '@teambit/base-ui.layout.breakpoints': registry.npmjs.org/@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/base-ui.text.heading@1.0.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-tPpsdOpL9sYJhfliT8AZfDG0p0A=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.text.heading/-/@teambit-base-ui.text.heading-1.0.4.tgz} + '@typescript-eslint/typescript-estree@4.4.1': + resolution: {integrity: sha512-wP/V7ScKzgSdtcY1a0pZYBoCxrCstLrgRQ2O9MmCUZDtmgxCO/TCqOTGRVwpP4/2hVfqMz/Vw1ZYrG8cVxvN3g==} + engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: - react: '*' - react-dom: '*' + typescript: '*' peerDependenciesMeta: - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/base-ui.text.paragraph@1.0.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-1+iy0XYAMZbJ++r57HBNzAK7hoE=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.text.paragraph/-/@teambit-base-ui.text.paragraph-1.0.3.tgz} + '@typescript-eslint/typescript-estree@5.35.1': + resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - react: '*' - react-dom: '*' + typescript: '*' peerDependenciesMeta: - react: - optional: true - react-dom: + typescript: optional: true - dependencies: - '@teambit/base-ui.text.text-sizes': registry.npmjs.org/@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.theme.sizes': registry.npmjs.org/@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/base-ui.theme.fonts.book@1.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-TzaJASmrWjLeCze8rnRp8IZgxwA=, tarball: https://node-registry.bit.cloud/@teambit/base-ui.theme.fonts.book/-/@teambit-base-ui.theme.fonts.book-1.0.2.tgz} + '@typescript-eslint/utils@5.35.1': + resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - /@teambit/bit-error@0.0.402: - resolution: {integrity: sha512-hYIJQWD5UCiD35WAIy0YGySW63PP0GyNIpCDmAOYxRGpA0RMQD+zacKpG1SH6iAfsg8NF/Am8lWis1Lg9ihQtQ==} - engines: {node: '>=12.22.0'} + '@typescript-eslint/visitor-keys@4.13.0': + resolution: {integrity: sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/community.constants.links@0.0.2: - resolution: {integrity: sha1-cUo3bbFCwlI564kZTrREbBRp234=, tarball: https://node-registry.bit.cloud/@teambit/community.constants.links/-/@teambit-community.constants.links-0.0.2.tgz} + '@typescript-eslint/visitor-keys@4.29.3': + resolution: {integrity: sha512-MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/compilation.compiler-task@0.0.4: - resolution: {integrity: sha1-E7zkrOiXjuabhEx8JTjD1ojIYX4=, tarball: https://node-registry.bit.cloud/@teambit/compilation.compiler-task/-/@teambit-compilation.compiler-task-0.0.4.tgz} - dependencies: - '@teambit/toolbox.fs.hard-link-directory': 0.0.9 - fs-extra: 10.1.0 + '@typescript-eslint/visitor-keys@4.33.0': + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@teambit/component-id@0.0.425: - resolution: {integrity: sha512-uG9lej8rfVogowZOBmDXBDYNqj8+AcR+fIMAXzWjfVmSW5Amt2rwnYiyaJEeU9yh+5f6F3BsuXjXbX/tEVZAfA==} - engines: {node: '>=12.22.0'} - dependencies: - '@teambit/legacy-bit-id': 0.0.421 + '@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} - /@teambit/component-version@0.0.406: - resolution: {integrity: sha512-fcqjqGhAblhIfzMgzuLchEq+8T3+fgTojaNmP97F1BAbj3nRtp7cXTyqB8C2My/gC9jJk1CQcTDn5q9xQCmvow==} - engines: {node: '>=12.22.0'} - dependencies: - '@teambit/bit-error': 0.0.402 - semver: 7.3.4 + '@typescript-eslint/visitor-keys@5.35.1': + resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@teambit/component.ui.hooks.use-fetch-docs@0.0.14(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ilPirLwgHw2HY4GpKFHtFxutA/g=, tarball: https://node-registry.bit.cloud/@teambit/component.ui.hooks.use-fetch-docs/-/@teambit-component.ui.hooks.use-fetch-docs-0.0.14.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - encoding - - graphql + '@webassemblyjs/ast@1.11.1': + resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} - /@teambit/compositions.model.composition-id@0.0.496: - resolution: {integrity: sha1-j4ZHommJ0BDZF722wBrOWqcAGHg=, tarball: https://node-registry.bit.cloud/@teambit/compositions.model.composition-id/-/@teambit-compositions.model.composition-id-0.0.496.tgz} - engines: {node: '>=12.22.0'} - dependencies: - humanize-string: 2.1.0 + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} - /@teambit/compositions.model.composition-type@0.0.497(react@18.2.0): - resolution: {integrity: sha1-eXDEQ+gQrUk9lqcO8HE77OVROJ4=, tarball: https://node-registry.bit.cloud/@teambit/compositions.model.composition-type/-/@teambit-compositions.model.composition-type-0.0.497.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - react: 18.2.0 + '@webassemblyjs/floating-point-hex-parser@1.11.1': + resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - /@teambit/compositions.ui.composition-card@0.0.504(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-Ryd0RxCLOkxA+4lkH9aZxETTyDA=, tarball: https://node-registry.bit.cloud/@teambit/compositions.ui.composition-card/-/@teambit-compositions.ui.composition-card-0.0.504.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.surfaces.card': registry.npmjs.org/@teambit/base-ui.surfaces.card@1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.text.themed-text': registry.npmjs.org/@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.theme.accent-color': registry.npmjs.org/@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/compositions.model.composition-id': 0.0.496 - '@teambit/compositions.model.composition-type': 0.0.497(react@18.2.0) - '@teambit/evangelist.elements.icon': registry.npmjs.org/@teambit/evangelist.elements.icon@1.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.2.0)(react@18.2.0) - classnames: 2.2.6 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} - /@teambit/compositions.ui.compositions-overview@0.0.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-DRu2BTsr/itbUQk8nm0vbNOcXRs=, tarball: https://node-registry.bit.cloud/@teambit/compositions.ui.compositions-overview/-/@teambit-compositions.ui.compositions-overview-0.0.3.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/compositions.model.composition-type': 0.0.497(react@18.2.0) - '@teambit/compositions.ui.composition-card': 0.0.504(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@webassemblyjs/helper-api-error@1.11.1': + resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - /@teambit/defender.eslint-linter@0.0.10(@teambit/legacy@node_modules+@teambit+legacy): - resolution: {integrity: sha1-RkC9TBYEfkDqJNxFgN73EyUFy7E=, tarball: https://node-registry.bit.cloud/@teambit/defender.eslint-linter/-/@teambit-defender.eslint-linter-0.0.10.tgz} - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/defender.linter-task': 0.0.5 - '@teambit/typescript.typescript-compiler': 0.0.9(@teambit/legacy@node_modules+@teambit+legacy) - eslint: 7.32.0 - fs-extra: 10.1.0 - lodash: 4.17.21 - object-hash: 3.0.0 - p-map-series: 2.1.0 - typescript: 4.9.3 - transitivePeerDependencies: - - '@teambit/legacy' - - supports-color + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} - /@teambit/defender.jest-tester@0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4): - resolution: {integrity: sha1-lD4AK6CzYBXK0drezQX4loEz69I=, tarball: https://node-registry.bit.cloud/@teambit/defender.jest-tester/-/@teambit-defender.jest-tester-0.0.10.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/preset-env': 7.20.2(@babel/core@7.20.2) - '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) - '@jest/test-result': 29.3.1 - '@teambit/defender.tester-task': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/legacy': link:node_modules/@teambit/legacy - '@teambit/tests-results': 0.0.104 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2) - babel-preset-jest: 29.2.0(@babel/core@7.20.2) - camelcase: 7.0.0 - comlink: 4.3.1 - flatted: 3.2.7 - fs-extra: 10.1.0 - identity-obj-proxy: 3.0.0 - jest: 29.3.1(@types/node@12.20.4) - jest-message-util: 29.3.1 - lodash: 4.17.21 - minimatch: 5.1.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@types/node' - - node-notifier - - supports-color - - ts-node - dev: false + '@webassemblyjs/helper-buffer@1.11.1': + resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - /@teambit/defender.jest-tester@0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37): - resolution: {integrity: sha1-lD4AK6CzYBXK0drezQX4loEz69I=, tarball: https://node-registry.bit.cloud/@teambit/defender.jest-tester/-/@teambit-defender.jest-tester-0.0.10.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/preset-env': 7.20.2(@babel/core@7.20.2) - '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) - '@jest/test-result': 29.3.1 - '@teambit/defender.tester-task': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/legacy': link:node_modules/@teambit/legacy - '@teambit/tests-results': 0.0.104 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2) - babel-preset-jest: 29.2.0(@babel/core@7.20.2) - camelcase: 7.0.0 - comlink: 4.3.1 - flatted: 3.2.7 - fs-extra: 10.1.0 - identity-obj-proxy: 3.0.0 - jest: 29.3.1(@types/node@16.18.37) - jest-message-util: 29.3.1 - lodash: 4.17.21 - minimatch: 5.1.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@types/node' - - node-notifier - - supports-color - - ts-node + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} - /@teambit/defender.linter-task@0.0.5: - resolution: {integrity: sha1-SVz+88G7j/lePhSSy3g+xt4F7wQ=, tarball: https://node-registry.bit.cloud/@teambit/defender.linter-task/-/@teambit-defender.linter-task-0.0.5.tgz} + '@webassemblyjs/helper-numbers@1.11.1': + resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} - /@teambit/defender.prettier-formatter@0.0.6(@teambit/legacy@node_modules+@teambit+legacy): - resolution: {integrity: sha1-506hW1gHNYhEGr6kYPcls7vuKHg=, tarball: https://node-registry.bit.cloud/@teambit/defender.prettier-formatter/-/@teambit-defender.prettier-formatter-0.0.6.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/legacy': link:node_modules/@teambit/legacy - lodash: 4.17.21 - p-map-series: 2.1.0 - prettier: 2.7.1 + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} - /@teambit/defender.tester-task@0.0.6(@teambit/legacy@node_modules+@teambit+legacy): - resolution: {integrity: sha1-zKHbAus4OH9FJhbWQUJee+86PUg=, tarball: https://node-registry.bit.cloud/@teambit/defender.tester-task/-/@teambit-defender.tester-task-0.0.6.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@teambit/legacy': link:node_modules/@teambit/legacy - fs-extra: 10.1.0 - junit-report-builder: 3.0.0 - strip-ansi: 6.0.0 + '@webassemblyjs/helper-wasm-bytecode@1.11.1': + resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - /@teambit/dependencies.modules.packages-excluder@0.0.70(react@18.2.0): - resolution: {integrity: sha1-M8PZTvKkefKLDLBsdvtmF80sGDs=, tarball: https://node-registry.bit.cloud/@teambit/dependencies.modules.packages-excluder/-/@teambit-dependencies.modules.packages-excluder-0.0.70.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - react: 18.2.0 + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} - /@teambit/design.theme.icons-font@1.0.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-64IRscIeqjVac9Qgt8SeTPg98mw=, tarball: https://node-registry.bit.cloud/@teambit/design.theme.icons-font/-/@teambit-design.theme.icons-font-1.0.8.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@webassemblyjs/helper-wasm-section@1.11.1': + resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} - /@teambit/design.theme.icons-font@2.0.24(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-xHWuZM3zVSfkJwnOF6BBOWh6VII=, tarball: https://node-registry.bit.cloud/@teambit/design.theme.icons-font/-/@teambit-design.theme.icons-font-2.0.24.tgz} - engines: {node: '>=12.22.0'} + '@webassemblyjs/helper-wasm-section@1.14.1': + resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} + + '@webassemblyjs/ieee754@1.11.1': + resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} + + '@webassemblyjs/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + + '@webassemblyjs/leb128@1.11.1': + resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} + + '@webassemblyjs/leb128@1.13.2': + resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} + + '@webassemblyjs/utf8@1.11.1': + resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} + + '@webassemblyjs/utf8@1.13.2': + resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} + + '@webassemblyjs/wasm-edit@1.11.1': + resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} + + '@webassemblyjs/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + + '@webassemblyjs/wasm-gen@1.11.1': + resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} + + '@webassemblyjs/wasm-gen@1.14.1': + resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} + + '@webassemblyjs/wasm-opt@1.11.1': + resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} + + '@webassemblyjs/wasm-opt@1.14.1': + resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} + + '@webassemblyjs/wasm-parser@1.11.1': + resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} + + '@webassemblyjs/wasm-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + + '@webassemblyjs/wast-printer@1.11.1': + resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} + + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + + '@wry/context@0.6.1': + resolution: {integrity: sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==} + engines: {node: '>=8'} + + '@wry/context@0.7.4': + resolution: {integrity: sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==} + engines: {node: '>=8'} + + '@wry/equality@0.5.7': + resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==} + engines: {node: '>=8'} + + '@wry/trie@0.3.2': + resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==} + engines: {node: '>=8'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@zkochan/rimraf@2.1.3': + resolution: {integrity: sha512-mCfR3gylCzPC+iqdxEA6z5SxJeOgzgbwmyxanKriIne5qZLswDe/M43aD3p5MNzwzXRhbZg/OX+MpES6Zk1a6A==} + engines: {node: '>=12.10'} + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + deprecated: package has been renamed to acorn-import-attributes peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + acorn: ^8 - /@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-V2cI94Nm8O1ShJoQwK8wavfYo50=, tarball: https://node-registry.bit.cloud/@teambit/design.themes.base-theme/-/@teambit-design.themes.base-theme-0.1.0.tgz} + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: - '@testing-library/react': '*' - react: '*' - react-dom: '*' - peerDependenciesMeta: - '@testing-library/react': - optional: true - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.2.0)(react@18.2.0) - '@testing-library/react': 13.4.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@5.7.4: + resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} + + adjust-sourcemap-loader@4.0.0: + resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} + engines: {node: '>=8.9'} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.4: + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} + engines: {node: '>= 14'} - /@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-bwvJgtmAX99/BfXo/HXq4uBsppY=, tarball: https://node-registry.bit.cloud/@teambit/design.themes.dark-theme/-/@teambit-design.themes.dark-theme-1.91.0.tgz} + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: - '@testing-library/react': '*' - react: '*' - react-dom: '*' + ajv: ^8.0.0 peerDependenciesMeta: - '@testing-library/react': - optional: true - react: - optional: true - react-dom: + ajv: optional: true - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@testing-library/react': 13.4.0(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - /@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-Ac1kTk+HDvWo8mW3jBcMuChEY8k=, tarball: https://node-registry.bit.cloud/@teambit/design.themes.light-theme/-/@teambit-design.themes.light-theme-0.1.0.tgz} + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: - '@testing-library/react': '*' - react: '*' - react-dom: '*' - peerDependenciesMeta: - '@testing-library/react': - optional: true - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@testing-library/react': 13.4.0(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + ajv: ^6.9.1 - /@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-YjcrpFPsM/OhlOMlrs12oDM+mnc=, tarball: https://node-registry.bit.cloud/@teambit/design.themes.theme-toggler/-/@teambit-design.themes.theme-toggler-0.1.3.tgz} + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' + ajv: ^8.8.2 - /@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-vQV7Te5JyvHLSgtDRcCjbwF7v6E=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.error-page/-/@teambit-design.ui.error-page-0.0.364.tgz} - engines: {node: '>=12.22.0'} + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + amdefine@1.0.1: + resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} + engines: {node: '>=0.4.2'} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + args@5.0.3: + resolution: {integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==} + engines: {node: '>= 6.0.0'} + + aria-query@4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + + array-timsort@1.0.3: + resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + asn1.js@4.10.1: + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + + assert@2.0.0: + resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==} + + ast-types-flow@0.0.7: + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + + ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + + ast-types@0.9.6: + resolution: {integrity: sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==} + engines: {node: '>= 0.8'} + + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + autoprefixer@10.4.21: + resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - '@teambit/community.constants.links': 0.0.2 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - dev: false + postcss: ^8.1.0 - /@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-vQV7Te5JyvHLSgtDRcCjbwF7v6E=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.error-page/-/@teambit-design.ui.error-page-0.0.364.tgz} - engines: {node: '>=12.22.0'} + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axe-core@4.10.3: + resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==} + engines: {node: '>=4'} + + axobject-query@2.2.0: + resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + + b4a@1.6.7: + resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@teambit/community.constants.links': 0.0.2 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' + '@babel/core': ^7.8.0 - /@teambit/design.ui.icon-button@1.0.16(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-4guwxtPII430l1WuK5krEgo4PUY=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.icon-button/-/@teambit-design.ui.icon-button-1.0.16.tgz} + babel-loader@9.1.0: + resolution: {integrity: sha512-Antt61KJPinUMwHwIIz9T5zfMgevnfZkEVWYDWlG888fgdvRRGD0JTuf/fFozQnfT+uq64sk1bmdHDy/mOEWnA==} + engines: {node: '>= 14.15.0'} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.elements.icon': registry.npmjs.org/@teambit/base-ui.elements.icon@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.input.button': 1.0.5(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/core': ^7.12.0 + webpack: '>=5' - /@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-k9HJT7pUUTGpFWQC2Ofnv4D+Mec=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.pages.not-found/-/@teambit-design.ui.pages.not-found-0.0.366.tgz} - engines: {node: '>=12.22.0'} + babel-plugin-apply-mdx-type-prop@1.6.21: + resolution: {integrity: sha512-+vQarmm+g+kePH4CMp2iEN/HOx1oEvZeSKCdKCEZlnJOthXzkpaRAbM3ZNCiKqVr9WuoqPNfoXQ0EVppYpIwfg==} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - dev: false + '@babel/core': ^7.11.6 - /@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-k9HJT7pUUTGpFWQC2Ofnv4D+Mec=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.pages.not-found/-/@teambit-design.ui.pages.not-found-0.0.366.tgz} - engines: {node: '>=12.22.0'} + babel-plugin-extract-import-names@1.6.21: + resolution: {integrity: sha512-mCjTry00HB/4xHGunxQNMOGZ7JEGJdEScNh7C1WJBto7nePyn9wCdYAZP61pGC6+z3ETH5btY20mqg0plcxZGA==} + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.3.3: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' + '@babel/core': ^7.0.0-0 - /@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-23wJXHdEaXKFQtZr+SLOU9bbRng=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.pages.server-error/-/@teambit-design.ui.pages.server-error-0.0.366.tgz} - engines: {node: '>=12.22.0'} + babel-plugin-polyfill-corejs2@0.4.14: + resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==} peerDependencies: - react: '*' - react-dom: '*' + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.13.0: + resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.6.0: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-regenerator@0.4.1: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-regenerator@0.6.5: + resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-transform-react-remove-prop-types@0.4.24: + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} + + babel-plugin-transform-typescript-metadata@0.3.2: + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 peerDependenciesMeta: - react: - optional: true - react-dom: + '@babel/traverse': optional: true - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - dev: false - /@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-23wJXHdEaXKFQtZr+SLOU9bbRng=, tarball: https://node-registry.bit.cloud/@teambit/design.ui.pages.server-error/-/@teambit-design.ui.pages.server-error-0.0.366.tgz} - engines: {node: '>=12.22.0'} + babel-preset-current-node-syntax@1.1.0: + resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} peerDependencies: - react: '*' - react-dom: '*' + '@babel/core': ^7.0.0 + + babel-preset-jest@29.2.0: + resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-react-app@10.0.1: + resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} + + backo2@1.0.2: + resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} + + bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + bare-events@2.6.0: + resolution: {integrity: sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg==} + + bare-fs@4.1.6: + resolution: {integrity: sha512-25RsLF33BqooOEFNdMcEhMpJy8EoR88zSMrnOQOaM3USnOK2VmaJ1uaQEwPA6AQjrv1lXChScosN6CzbwbO9OQ==} + engines: {bare: '>=1.16.0'} + peerDependencies: + bare-buffer: '*' peerDependenciesMeta: - react: + bare-buffer: optional: true - react-dom: - optional: true - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - /@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0)(@types/react@17.0.62)(graphql@14.7.0)(typescript@4.9.3): - resolution: {integrity: sha1-KxXFxuFSYWG0eLaxXVbGN6rv21s=, tarball: https://node-registry.bit.cloud/@teambit/docs.docs-template/-/@teambit-docs.docs-template-0.0.11.tgz} - dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0)(@types/react@17.0.62)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - encoding - - graphql - - typescript - dev: false + bare-os@3.6.1: + resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} + engines: {bare: '>=1.14.0'} - /@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0)(@types/react@18.2.14)(graphql@14.7.0)(typescript@4.9.3): - resolution: {integrity: sha1-KxXFxuFSYWG0eLaxXVbGN6rv21s=, tarball: https://node-registry.bit.cloud/@teambit/docs.docs-template/-/@teambit-docs.docs-template-0.0.11.tgz} - dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0)(@types/react@18.2.14)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - encoding - - graphql - - typescript + bare-path@3.0.0: + resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} - /@teambit/documenter.code.react-playground@4.1.7(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-EzAHf8p3qGNfvHcMt3Ev9J6xiqQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.code.react-playground/-/@teambit-documenter.code.react-playground-4.1.7.tgz} + bare-stream@2.6.5: + resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==} peerDependencies: - react: '*' - react-dom: '*' + bare-buffer: '*' + bare-events: '*' peerDependenciesMeta: - react: + bare-buffer: optional: true - react-dom: + bare-events: optional: true - dependencies: - '@teambit/base-ui.input.error': 1.0.3(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.split-pane': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - prism-react-renderer: 1.3.5(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-live: 2.4.1(react-dom@18.2.0)(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@17.0.62)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false - /@teambit/documenter.code.react-playground@4.1.7(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-EzAHf8p3qGNfvHcMt3Ev9J6xiqQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.code.react-playground/-/@teambit-documenter.code.react-playground-4.1.7.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.input.error': 1.0.3(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.split-pane': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - prism-react-renderer: 1.3.5(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-live: 2.4.1(react-dom@18.2.0)(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@18.2.14)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + base62@1.2.8: + resolution: {integrity: sha512-V6YHUbjLxN1ymqNLb1DPHoU1CpfdL7d2YTIp5W3U4hhoG4hhxNmsFDs66M9EXxBiSEke5Bt5dwdfMwwZF70iLA==} - /@teambit/documenter.markdown.heading@0.1.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-nzm8nvmN4ZhYeKvSemUQ8QCkkmM=, tarball: https://node-registry.bit.cloud/@teambit/documenter.markdown.heading/-/@teambit-documenter.markdown.heading-0.1.8.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.linked-heading': 4.1.8(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-+ukZl1tIe1fvYdNgc3jmbw3TobQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.markdown.hybrid-live-code-snippet/-/@teambit-documenter.markdown.hybrid-live-code-snippet-0.1.10.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.code.react-playground': 4.1.7(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false + basic-ftp@5.0.5: + resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} + engines: {node: '>=10.0.0'} - /@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-+ukZl1tIe1fvYdNgc3jmbw3TobQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.markdown.hybrid-live-code-snippet/-/@teambit-documenter.markdown.hybrid-live-code-snippet-0.1.10.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.code.react-playground': 4.1.7(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - /@teambit/documenter.markdown.mdx@0.1.11(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-uT5XYysdIL/omRIx4bjge23mhDw=, tarball: https://node-registry.bit.cloud/@teambit/documenter.markdown.mdx/-/@teambit-documenter.markdown.mdx-0.1.11.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.image': 4.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} - /@teambit/documenter.markdown.mdx@0.1.11(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-uT5XYysdIL/omRIx4bjge23mhDw=, tarball: https://node-registry.bit.cloud/@teambit/documenter.markdown.mdx/-/@teambit-documenter.markdown.mdx-0.1.11.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.image': 4.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - /@teambit/documenter.routing.external-link@4.1.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-x8BwO3dJWu6xpvFCmhyGxIBGUsk=, tarball: https://node-registry.bit.cloud/@teambit/documenter.routing.external-link/-/@teambit-documenter.routing.external-link-4.1.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} - /@teambit/documenter.ui.anchor@4.0.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-F/md7GOXvxkNRtlH5aNtoA7s/VY=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.anchor/-/@teambit-documenter.ui.anchor-4.0.6.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + bn.js@4.12.2: + resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} - /@teambit/documenter.ui.anchor@4.0.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-uCm/XjJzF/uAWNo0M0ZD+EqSK4w=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.anchor/-/@teambit-documenter.ui.anchor-4.0.8.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + bn.js@5.2.2: + resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} - /@teambit/documenter.ui.block-quote@4.0.7(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-7+GPtKk6G3gN7oPmjt/F4b6F84I=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.block-quote/-/@teambit-documenter.ui.block-quote-4.0.7.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + body-parser@1.20.0: + resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - /@teambit/documenter.ui.bold@4.0.7(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-9gJM/LIlweId0FfiXSfJe0b8P6Q=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.bold/-/@teambit-documenter.ui.bold-4.0.7.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + body-parser@1.20.1: + resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - /@teambit/documenter.ui.code-snippet@4.2.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-dgCI6suKWJxi4A2jJFLa0UUESpQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.code-snippet/-/@teambit-documenter.ui.code-snippet-4.2.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.copied-message': 4.1.6(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - copy-to-clipboard: 3.3.3 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-syntax-highlighter: 13.5.3(react@18.2.0) + body-parser@1.20.3: + resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - /@teambit/documenter.ui.copied-message@4.1.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-M5pctQny1uKI9T6rUQIR4Nv4iSE=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.copied-message/-/@teambit-documenter.ui.copied-message-4.1.6.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + bonjour-service@1.3.0: + resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==} - /@teambit/documenter.ui.heading@4.1.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-jENJgXMvwy825NKKTM8gP90faMc=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.heading/-/@teambit-documenter.ui.heading-4.1.4.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - /@teambit/documenter.ui.heading@4.1.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-nCoruiI/7n5xcXd4GEMdtuU5nIU=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.heading/-/@teambit-documenter.ui.heading-4.1.6.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} - /@teambit/documenter.ui.image@4.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-lOGzakfJTF07HAYwkCYPeS3MKwI=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.image/-/@teambit-documenter.ui.image-4.0.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} - /@teambit/documenter.ui.inline-code@0.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ds6zetV22NrzIjAju0UoDBjePEY=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.inline-code/-/@teambit-documenter.ui.inline-code-0.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} - /@teambit/documenter.ui.italic@4.0.7(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-udDO1kKFVhbtzPHibq1fT3cAjtg=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.italic/-/@teambit-documenter.ui.italic-4.0.7.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + brorand@1.1.0: + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} - /@teambit/documenter.ui.linked-heading@4.1.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-f24gfJKAIAD/V+cvUE/6Zk847U0=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.linked-heading/-/@teambit-documenter.ui.linked-heading-4.1.6.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.anchor': 4.0.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.heading': 4.1.4(react-dom@18.2.0)(react@18.2.0) - classnames: 2.2.6 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserify-aes@1.2.0: + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} - /@teambit/documenter.ui.linked-heading@4.1.8(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-LGpmPIXZSWsXbYgkS/WR1VxJcCg=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.linked-heading/-/@teambit-documenter.ui.linked-heading-4.1.8.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.anchor': 4.0.8(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserify-cipher@1.0.1: + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} - /@teambit/documenter.ui.ol@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-lapFqkqFsOmHSTE3otAHINSFdu8=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.ol/-/@teambit-documenter.ui.ol-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserify-des@1.0.2: + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} - /@teambit/documenter.ui.paragraph@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-w9jrNz9R2bIsMgLvjNgv9Ycmr3Y=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.paragraph/-/@teambit-documenter.ui.paragraph-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.text.paragraph': 1.0.3(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.theme.sizes': registry.npmjs.org/@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserify-rsa@4.1.1: + resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} + engines: {node: '>= 0.10'} - /@teambit/documenter.ui.property-table@4.1.3(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-JTxLbdTeNEeF6K1N9uOmUpclSYw=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.property-table/-/@teambit-documenter.ui.property-table-4.1.3.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@17.0.62)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false + browserify-sign@4.2.3: + resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} + engines: {node: '>= 0.12'} - /@teambit/documenter.ui.property-table@4.1.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-JTxLbdTeNEeF6K1N9uOmUpclSYw=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.property-table/-/@teambit-documenter.ui.property-table-4.1.3.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@18.2.14)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + browserify-zlib@0.2.0: + resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} - /@teambit/documenter.ui.separator@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-xyOoVnbJEVVdAGegDDbr5EXrZH8=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.separator/-/@teambit-documenter.ui.separator-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserslist@4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true - /@teambit/documenter.ui.sup@4.0.7(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-BsLXxuTjySkYTbpe2bxzPcbamVU=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.sup/-/@teambit-documenter.ui.sup-4.0.7.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + browserslist@4.25.1: + resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true - /@teambit/documenter.ui.table-heading-column@4.0.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-88YzrKFIcEPPln9jc6nKCGB69Qs=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table-heading-column/-/@teambit-documenter.ui.table-heading-column-4.0.4.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - /@teambit/documenter.ui.table-heading-row@4.0.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-5Y0+Bx4PBE8oyFlUjczMJdil4ig=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table-heading-row/-/@teambit-documenter.ui.table-heading-row-4.0.4.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table-heading-column': 4.0.4(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + buble@0.19.6: + resolution: {integrity: sha512-9kViM6nJA1Q548Jrd06x0geh+BG2ru2+RMDkIHHgJY/8AcyCs34lTHwra9BX7YdPrZXd5aarkpr/SY8bmPgPdg==} + hasBin: true - /@teambit/documenter.ui.table-row@4.1.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-eWzMJmyZbLH5RL03UwVgy6xrZAs=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table-row/-/@teambit-documenter.ui.table-row-4.1.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table-column': registry.npmjs.org/@teambit/documenter.ui.table-column@4.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-syntax-highlighter: 13.5.3(react@18.2.0) + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - /@teambit/documenter.ui.table.base-table@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-bdqA6VoAdA2lDnRjrxeUUjk09UQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table.base-table/-/@teambit-documenter.ui.table.base-table-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - /@teambit/documenter.ui.table.td@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-G1IEysSy68nlR2OF+QHUU39HrEw=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table.td/-/@teambit-documenter.ui.table.td-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + buffer-xor@1.0.3: + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} - /@teambit/documenter.ui.table.tr@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-jNAXpVn9c16u1xtdH/m1beo5TnQ=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table.tr/-/@teambit-documenter.ui.table.tr-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - /@teambit/documenter.ui.table@4.1.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-OIJesPzJ1bKWQTPMeEGAPT++8Eo=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.table/-/@teambit-documenter.ui.table-4.1.2.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.ui.table-heading-row': 4.0.4(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + builtin-status-codes@3.0.0: + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} - /@teambit/documenter.ui.ul@4.1.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-tRTv2mMIu1ulZTNVLUDzQsDBuyM=, tarball: https://node-registry.bit.cloud/@teambit/documenter.ui.ul/-/@teambit-documenter.ui.ul-4.1.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} - /@teambit/eslint-config-bit-react@0.0.367(@teambit/legacy@node_modules+@teambit+legacy)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-d8N9+n/OSxaVpeFBkRhYm6QvqKbzaMf4bN8NJrLmPBuJh4on74U3z4xsqu8sLIphEO0fA2G8ISB9Mo+TINqbMw==} - peerDependencies: - '@teambit/legacy': '*' - eslint: '*' - react: '*' - react-dom: '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - eslint: - optional: true - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/legacy': link:node_modules/@teambit/legacy - '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0) - '@typescript-eslint/parser': 4.13.0 - core-js: 3.31.0 - eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@4.13.0)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks - - supports-color - - typescript - dev: false + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} - /@teambit/evangelist.elements.icon@1.0.5(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-abaBfCKbp8JEu8J7j9OB5kvyo5s=, tarball: https://node-registry.bit.cloud/@teambit/evangelist.elements.icon/-/@teambit-evangelist.elements.icon-1.0.5.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.elements.icon': registry.npmjs.org/@teambit/base-ui.elements.icon@1.0.0(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} - /@teambit/graphql.hooks.use-query-light@1.0.0(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-FUGp8ZjK399H63okAGKoLjBGtIE=, tarball: https://node-registry.bit.cloud/@teambit/graphql.hooks.use-query-light/-/@teambit-graphql.hooks.use-query-light-1.0.0.tgz} - peerDependencies: - graphql: '*' - react: '*' - react-dom: '*' - peerDependenciesMeta: - graphql: - optional: true - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - graphql: 14.7.0 - graphql-request: 4.3.0(graphql@14.7.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-deep-compare: 1.1.0(react@18.2.0) - transitivePeerDependencies: - - encoding + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} - /@teambit/legacy-bit-id@0.0.421: - resolution: {integrity: sha512-65a+uW3GK01vKHPnnX54PHKoLVgIDa9ajXME/4alskhw7VC32ohf1/O5M1EvBvm8f5ek/ply8WUhuqkUIihAzQ==} - engines: {node: '>=12.22.0'} - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/component-version': 0.0.406 - decamelize: 1.2.0 - lodash: 4.17.21 - semver: 7.3.4 + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} - /@teambit/mdx.modules.mdx-compiler@0.0.500(react@18.2.0): - resolution: {integrity: sha1-oyBk6TqT4ntRJWIGNYxKsMnJ1Mk=, tarball: https://node-registry.bit.cloud/@teambit/mdx.modules.mdx-compiler/-/@teambit-mdx.modules.mdx-compiler-0.0.500.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - '@mdx-js/mdx': 1.6.21 - '@teambit/node.deps-detectors.detective-es6': 0.0.1 - react: 18.2.0 - remark-admonitions: 1.2.1 - remark-frontmatter: 2.0.0 - unist-util-remove: 2.0.1 - unist-util-visit: 2.0.3 - vfile: 4.2.0 - yaml: 1.10.2 - transitivePeerDependencies: - - supports-color + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - /@teambit/mdx.modules.mdx-loader@0.0.509(esbuild@0.14.28)(react@18.2.0): - resolution: {integrity: sha1-N99lcsPyJeDR5aI4twoWSD6HLNI=, tarball: https://node-registry.bit.cloud/@teambit/mdx.modules.mdx-loader/-/@teambit-mdx.modules.mdx-loader-0.0.509.tgz} - engines: {node: '>=12.22.0'} - dependencies: - '@teambit/mdx.modules.mdx-compiler': 0.0.500(react@18.2.0) - loader-utils: 2.0.4 - memory-fs: 0.5.0 - webpack: 5.51.1(esbuild@0.14.28) - transitivePeerDependencies: - - '@swc/core' - - esbuild - - react - - supports-color - - uglify-js - - webpack-cli + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} - /@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-24kqPZGV0Se3S3ghyYTIiazYb4A=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.docs.link/-/@teambit-mdx.ui.docs.link-0.0.497.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - dev: false + camelcase@5.0.0: + resolution: {integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==} + engines: {node: '>=6'} - /@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-24kqPZGV0Se3S3ghyYTIiazYb4A=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.docs.link/-/@teambit-mdx.ui.docs.link-0.0.497.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} - /@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-6fWFOxK7E2C2KFa4PNMAQSuSmRA=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.docs.snippet/-/@teambit-mdx.ui.docs.snippet-0.0.499.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} - /@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-6fWFOxK7E2C2KFa4PNMAQSuSmRA=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.docs.snippet/-/@teambit-mdx.ui.docs.snippet-0.0.499.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + camelcase@7.0.0: + resolution: {integrity: sha512-JToIvOmz6nhGsUhAYScbo2d6Py5wojjNfoxoc2mEVLUdJ70gJK2gnd+ABY1Tc3sVMyK7QDPtN0T/XdlCQWITyQ==} + engines: {node: '>=14.16'} - /@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-XFZX/GIYo7ydMaWBLLANslOFu6U=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.mdx-layout/-/@teambit-mdx.ui.mdx-layout-0.0.510.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript - dev: false + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - /@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-XFZX/GIYo7ydMaWBLLANslOFu6U=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.mdx-layout/-/@teambit-mdx.ui.mdx-layout-0.0.510.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript + caniuse-lite@1.0.30001727: + resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==} - /@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-+ie1660+VhKn+W5o7bhzIYSjNdM=, tarball: https://node-registry.bit.cloud/@teambit/mdx.ui.mdx-scope-context/-/@teambit-mdx.ui.mdx-scope-context-0.0.496.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} - /@teambit/node.deps-detectors.detective-es6@0.0.1: - resolution: {integrity: sha1-nwO+/PmFgU12kOXA1FqJvDBnVqM=, tarball: https://node-registry.bit.cloud/@teambit/node.deps-detectors.detective-es6/-/@teambit-node.deps-detectors.detective-es6-0.0.1.tgz} - dependencies: - '@teambit/node.deps-detectors.parser-helper': 0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a - node-source-walk: 5.0.2 + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} - /@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a: - resolution: {integrity: sha1-UTUJiakxdUY1KZKMoaxTLTrRap8=, tarball: https://node-registry.bit.cloud/@teambit/node.deps-detectors.parser-helper/-/@teambit-node.deps-detectors.parser-helper-0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a.tgz} + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} - /@teambit/node.generator.node-starters@0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894: - resolution: {integrity: sha1-bISVYKVboE1+N70Mjo+Ata+LBbc=, tarball: https://node-registry.bit.cloud/@teambit/node.generator.node-starters/-/@teambit-node.generator.node-starters-0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894.tgz} - dependencies: - comment-json: 4.2.3 + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} - /@teambit/node.generator.node-templates@0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d: - resolution: {integrity: sha1-irmkBA6xuYuB3XGqaE7pFwmt80s=, tarball: https://node-registry.bit.cloud/@teambit/node.generator.node-templates/-/@teambit-node.generator.node-templates-0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d.tgz} + character-entities-html4@1.1.4: + resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==} - /@teambit/node.node@0.0.38(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14)(graphql@14.7.0): - resolution: {integrity: sha1-0NAuntojQwKi19nIBjy0iXlN75s=, tarball: https://node-registry.bit.cloud/@teambit/node.node/-/@teambit-node.node-0.0.38.tgz} - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/defender.eslint-linter': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@teambit/defender.prettier-formatter': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.2.0) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - '@teambit/node.generator.node-starters': 0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894 - '@teambit/node.generator.node-templates': 0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d - '@teambit/preview.react-preview': 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@teambit/typescript.typescript-compiler': 0.0.9(@teambit/legacy@node_modules+@teambit+legacy) - core-js: 3.31.0 - jest: 29.3.1(@types/node@16.18.37) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - graphql - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} - /@teambit/preview.react-preview@0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@17.0.62)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-x0ZR2jv4kCva7eGG4yrcZwIsn9A=, tarball: https://node-registry.bit.cloud/@teambit/preview.react-preview/-/@teambit-preview.react-preview-0.0.35.tgz} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0)(@types/react@17.0.62)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3)(webpack-dev-server@4.15.0) - '@teambit/webpack.webpack-bundler': 0.0.9 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - object-hash: 3.0.0 - react: 18.2.0 - webpack: 5.84.1 - webpack-dev-server: 4.15.0(webpack@5.84.1) - transitivePeerDependencies: - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/react' - - '@types/webpack' - - bufferutil - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - fibers - - graphql - - less - - node-sass - - react-dom - - sass-embedded - - sockjs-client - - supports-color - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-hot-middleware - - webpack-plugin-serve - dev: false + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} - /@teambit/preview.react-preview@0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-x0ZR2jv4kCva7eGG4yrcZwIsn9A=, tarball: https://node-registry.bit.cloud/@teambit/preview.react-preview/-/@teambit-preview.react-preview-0.0.35.tgz} + chromium-bidi@7.1.0: + resolution: {integrity: sha512-UVYuuZfwi7AIiV+OWIRePZD6kX1bSNxoWjEsYG+Xkb97hzQIt9qnV662I5A6BAcdKO4bcZQVrkK/VhNHzFjNDg==} peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true - dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0)(@types/react@18.2.14)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3)(webpack-dev-server@4.15.0) - '@teambit/webpack.webpack-bundler': 0.0.9 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - object-hash: 3.0.0 - react: 18.2.0 - webpack: 5.84.1 - webpack-dev-server: 4.15.0(webpack@5.84.1) - transitivePeerDependencies: - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/react' - - '@types/webpack' - - bufferutil - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - fibers - - graphql - - less - - node-sass - - react-dom - - sass-embedded - - sockjs-client - - supports-color + devtools-protocol: '*' + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + cipher-base@1.0.6: + resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} + engines: {node: '>= 0.10'} + + cjs-module-lexer@1.4.3: + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} + + classnames@2.2.6: + resolution: {integrity: sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==} + + classnames@2.3.1: + resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + + clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + collapse-white-space@1.0.6: + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comlink@4.3.1: + resolution: {integrity: sha512-+YbhUdNrpBZggBAHWcgQMLPLH1KDF3wJpeqrCKieWQ8RL7atmgsgTQko1XEBK6PsecfopWNntopJ+ByYG1lRaA==} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + comment-json@4.2.3: + resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==} + engines: {node: '>= 6'} + + common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + commoner@0.10.8: + resolution: {integrity: sha512-3/qHkNMM6o/KGXHITA14y78PcfmXh4+AOCJpSoF73h4VY1JpdGv3CHMS5+JW6SwLhfJt4RhNmLAa7+RRX/62EQ==} + engines: {node: '>= 0.8'} + hasBin: true + + component-props@1.1.1: + resolution: {integrity: sha512-69pIRJs9fCCHRqCz3390YF2LV1Lu6iEMZ5zuVqqUn+G20V9BNXlMs0cWawWeW9g4Ynmg29JmkG6R7/lUJoGd1Q==} + + component-xor@0.0.4: + resolution: {integrity: sha512-ZIt6sla8gfo+AFVRZoZOertcnD5LJaY2T9CKE2j13NJxQt/mUafD69Bl7/Y4AnpI2LGjiXH7cOfJDx/n2G9edA==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression-webpack-plugin@10.0.0: + resolution: {integrity: sha512-wLXLIBwpul/ALcm7Aj+69X0pYT3BYt6DdPn3qrgBIh9YejV9Bju9ShhlAsjujLyWMo6SAweFIWaUoFmXZNuNrg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: ^5.1.0 + + compression@1.8.0: + resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + + constants-browserify@1.0.0: + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + + contains-path@0.1.0: + resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==} + engines: {node: '>=0.10.0'} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + + cookie@0.7.1: + resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} + engines: {node: '>= 0.6'} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + copy-to-clipboard@3.3.3: + resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + + core-js-compat@3.44.0: + resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==} + + core-js-pure@3.44.0: + resolution: {integrity: sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==} + + core-js@1.2.7: + resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + + core-js@3.44.0: + resolution: {integrity: sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + create-ecdh@4.0.4: + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + + create-hash@1.1.3: + resolution: {integrity: sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==} + + create-hash@1.2.0: + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + + create-hmac@1.1.7: + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + cross-fetch@3.2.0: + resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crypto-browserify@3.12.0: + resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} + + css-blank-pseudo@3.0.3: + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-has-pseudo@3.0.4: + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-loader@6.7.1: + resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + css-loader@6.7.2: + resolution: {integrity: sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + css-minimizer-webpack-plugin@3.0.2: + resolution: {integrity: sha512-B3I5e17RwvKPJwsxjjWcdgpU/zqylzK1bPVghcmpFHRL48DXiBgrtqz1BJsn68+t/zzaLp9kYAaEDvQ7GyanFQ==} + engines: {node: '>= 12.13.0'} + peerDependencies: + clean-css: '*' + csso: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + clean-css: + optional: true + csso: + optional: true + + css-prefers-color-scheme@6.0.3: + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + cssdb@7.11.2: + resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + cssstyle@4.6.0: + resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} + engines: {node: '>=18'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + data-uri-to-buffer@6.0.2: + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} + + data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + date-format@0.0.2: + resolution: {integrity: sha512-M4obuJx8jU5T91lcbwi0+QPNVaWOY1DQYz5xUuKYWO93osVzB2ZPqyDUc5T+mDjbA1X8VOb4JDZ+8r2MrSOp7Q==} + deprecated: 0.x is no longer supported. Please upgrade to 4.x or higher. + + dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decamelize@2.0.0: + resolution: {integrity: sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==} + engines: {node: '>=4'} + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + dedent@1.6.0: + resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defined@1.0.1: + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + + degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + des.js@1.1.0: + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detab@2.0.3: + resolution: {integrity: sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + + detect-port-alt@1.1.6: + resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} + engines: {node: '>= 4.2.1'} + hasBin: true + + detective@4.7.1: + resolution: {integrity: sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==} + + devtools-protocol@0.0.1464554: + resolution: {integrity: sha512-CAoP3lYfwAGQTaAXYvA6JZR0fjGUb7qec1qf4mToyoH2TZgUFeIqYcjh6f9jNuhHfuZiEdH+PONHYrLhRQX6aw==} + + diff-sequences@26.6.2: + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diffie-hellman@5.0.3: + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + doctrine@1.5.0: + resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==} + engines: {node: '>=0.10.0'} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + + dom-iterator@1.0.2: + resolution: {integrity: sha512-BMelEjhy08OpoWF3v/jrPtx7PZCyP1VM9yiB7rJk19UVmt7zTN5rqoC0Jea+EyT0M6v/VokL0LxIlGLUOBJZ2g==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + domain-browser@4.19.0: + resolution: {integrity: sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==} + engines: {node: '>=10'} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + electron-to-chromium@1.5.183: + resolution: {integrity: sha512-vCrDBYjQCAEefWGjlK3EpoSKfKbT10pR4XXPdn65q7snuNOZnthoVpBfZPykmDapOKfoD+MMIPG8ZjKyyc9oHA==} + + elliptic@6.6.1: + resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + enhanced-resolve@5.18.2: + resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} + engines: {node: '>=10.13.0'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envify@3.4.1: + resolution: {integrity: sha512-XLiBFsLtNF0MOZl+vWU59yPb3C2JtrQY2CNJn22KH75zPlHWY5ChcAQuf4knJeWT/lLkrx3sqvhP/J349bt4Bw==} + hasBin: true + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-module-lexer@0.7.1: + resolution: {integrity: sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + + es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + + es6-object-assign@1.1.0: + resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} + + es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} + + es6-weak-map@2.0.3: + resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} + + esbuild-android-64@0.14.28: + resolution: {integrity: sha512-A52C3zq+9tNwCqZ+4kVLBxnk/WnrYM8P2+QNvNE9B6d2OVPs214lp3g6UyO+dKDhUdefhfPCuwkP8j2A/+szNA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + esbuild-android-arm64@0.14.28: + resolution: {integrity: sha512-sm0fDEGElZhMC3HLZeECI2juE4aG7uPfMBMqNUhy9CeX399Pz8rC6e78OXMXInGjSdEAwQmCOHmfsP7uv3Q8rA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + esbuild-darwin-64@0.14.28: + resolution: {integrity: sha512-nzDd7mQ44FvsFHtOafZdBgn3Li5SMsnMnoz1J2MM37xJmR3wGNTFph88KypjHgWqwbxCI7MXS1U+sN4qDeeW6Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + esbuild-darwin-arm64@0.14.28: + resolution: {integrity: sha512-XEq/bLR/glsUl+uGrBimQzOVs/CmwI833fXUhP9xrLI3IJ+rKyrZ5IA8u+1crOEf1LoTn8tV+hInmX6rGjbScw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + esbuild-freebsd-64@0.14.28: + resolution: {integrity: sha512-rTKLgUj/HEcPeE5XZ7IZwWpFx7IWMfprN7QRk/TUJE1s1Ipb58esboIesUpjirJz/BwrgHq+FDG9ChAI8dZAtQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + esbuild-freebsd-arm64@0.14.28: + resolution: {integrity: sha512-sBffxD1UMOsB7aWMoExmipycjcy3HJGwmqE4GQZUTZvdiH4GhjgUiVdtPyt7kSCdL40JqnWQJ4b1l8Y51oCF4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + esbuild-linux-32@0.14.28: + resolution: {integrity: sha512-+Wxidh3fBEQ9kHcCsD4etlBTMb1n6QY2uXv3rFhVn88CY/JP782MhA57/ipLMY4kOLeSKEuFGN4rtjHuhmRMig==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + esbuild-linux-64@0.14.28: + resolution: {integrity: sha512-7+xgsC4LvR6cnzaBdiljNnPDjbkwzahogN+S9uy9AoYw7ZjPnnXc6sjQAVCbqGb7MEgrWdpa6u/Tao79i4lWxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + esbuild-linux-arm64@0.14.28: + resolution: {integrity: sha512-EjRHgwg+kgXABzyoPGPOPg4d5wZqRnZ/ZAxBDzLY+i6DS8OUfTSlZHWIOZzU4XF7125WxRBg9ULbrFJBl+57Eg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + esbuild-linux-arm@0.14.28: + resolution: {integrity: sha512-L5isjmlLbh9E0WVllXiVETbScgMbth/+XkXQii1WwgO1RvLIfaGrVFz8d2n6EH/ImtgYxPYGx+OcvIKQBc91Rg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + esbuild-linux-mips64le@0.14.28: + resolution: {integrity: sha512-krx9SSg7yfiUKk64EmjefOyiEF6nv2bRE4um/LiTaQ6Y/6FP4UF3/Ou/AxZVyR154uSRq63xejcAsmswXAYRsw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + esbuild-linux-ppc64le@0.14.28: + resolution: {integrity: sha512-LD0Xxu9g+DNuhsEBV5QuVZ4uKVBMup0xPIruLweuAf9/mHXFnaCuNXUBF5t0DxKl7GQ5MSioKtnb92oMo+QXEw==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + esbuild-linux-riscv64@0.14.28: + resolution: {integrity: sha512-L/DWfRh2P0vxq4Y+qieSNXKGdMg+e9Qe8jkbN2/8XSGYDTPzO2OcAxSujob4qIh7iSl+cknbXV+BvH0YFR0jbg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + esbuild-linux-s390x@0.14.28: + resolution: {integrity: sha512-rrgxmsbmL8QQknWGnAL9bGJRQYLOi2AzXy5OTwfhxnj9eqjo5mSVbJXjgiq5LPUAMQZGdPH5yaNK0obAXS81Zw==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + esbuild-netbsd-64@0.14.28: + resolution: {integrity: sha512-h8wntIyOR8/xMVVM6TvJxxWKh4AjmLK87IPKpuVi8Pq0kyk0RMA+eo4PFGk5j2XK0D7dj8PcSF5NSlP9kN/j0A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + esbuild-openbsd-64@0.14.28: + resolution: {integrity: sha512-HBv18rVapbuDx52/fhZ/c/w6TXyaQAvRxiDDn5Hz/pBcwOs3cdd2WxeIKlWmDoqm2JMx5EVlq4IWgoaRX9mVkw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + esbuild-sunos-64@0.14.28: + resolution: {integrity: sha512-zlIxePhZxKYheR2vBCgPVvTixgo/ozOfOMoP6RZj8dxzquU1NgeyhjkcRXucbLCtmoNJ+i4PtWwPZTLuDd3bGg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + esbuild-windows-32@0.14.28: + resolution: {integrity: sha512-am9DIJxXlld1BOAY/VlvBQHMUCPL7S3gB/lnXIY3M4ys0gfuRqPf4EvMwZMzYUbFKBY+/Qb8SRgPRRGhwnJ8Kg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + esbuild-windows-64@0.14.28: + resolution: {integrity: sha512-78PhySDnmRZlsPNp/W/5Fim8iivlBQQxfhBFIqR7xwvfDmCFUSByyMKP7LCHgNtb04yNdop8nJJkJaQ8Xnwgiw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + esbuild-windows-arm64@0.14.28: + resolution: {integrity: sha512-VhXGBTo6HELD8zyHXynV6+L2jWx0zkKnGx4TmEdSBK7UVFACtOyfUqpToG0EtnYyRZ0HESBhzPSVpP781ovmvA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + esbuild@0.14.28: + resolution: {integrity: sha512-YLNprkCcMVKQ5sekmCKEQ3Obu/L7s6+iij38xNKyBeSmSsTWur4Ky/9zB3XIGT8SCJITG/bZwAR2l7YOAXch4Q==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-config-airbnb-base@14.2.0: + resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} + engines: {node: '>= 6'} + peerDependencies: + eslint: ^5.16.0 || ^6.8.0 || ^7.2.0 + eslint-plugin-import: ^2.21.2 + + eslint-config-airbnb-typescript@12.0.0: + resolution: {integrity: sha512-TUCVru1Z09eKnVAX5i3XoNzjcCOU3nDQz2/jQGkg1jVYm+25fKClveziSl16celfCq+npU0MBPW/ZnXdGFZ9lw==} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^4.4.1 + + eslint-config-airbnb@18.2.0: + 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 + + eslint-config-prettier@8.5.0: + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-import-resolver-node@0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + + eslint-mdx@1.17.1: + resolution: {integrity: sha512-ihkTZCYipPUpzZgTeTwRajj3ZFYQAMWUm/ajscLWjXPVA2+ZQoLRreVNETRZ1znCnE3OAGbwmA1vd0uxtSk2wg==} + engines: {node: '>=10.0.0'} + peerDependencies: + eslint: '>=5.0.0' + + eslint-module-utils@2.12.1: + resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-import@2.22.1: + resolution: {integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jest@24.1.5: + resolution: {integrity: sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==} + engines: {node: '>=10'} + peerDependencies: + eslint: '>=5' + + eslint-plugin-jest@24.4.0: + resolution: {integrity: sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==} + engines: {node: '>=10'} + peerDependencies: + '@typescript-eslint/eslint-plugin': '>= 4' + eslint: '>=5' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + + eslint-plugin-jsx-a11y@6.4.1: + resolution: {integrity: sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 + + eslint-plugin-markdown@2.2.1: + resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} + engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-mdx@1.13.0: + resolution: {integrity: sha512-oZ/R9OmSx1gZs52CO58HTHlJXRKoZtF6ZMaWP+sOcSGMFxoddoPr9PDgpP52ab5TWu5yVl5guR9D+GMfzkR2Uw==} + engines: {node: '>=10.0.0'} + peerDependencies: + eslint: '>=5.0.0' + + eslint-plugin-mdx@1.15.0: + resolution: {integrity: sha512-3NF/tp6MgdJL+28i+Qzg60loiHqgPWb35NUtDQvhocUOK2afRD0YR1+ep7JFUZ5mys2CTkpbd8Gc/GrXgsBVNA==} + engines: {node: '>=10.0.0'} + peerDependencies: + eslint: '>=5.0.0' + + eslint-plugin-react-hooks@4.2.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 + + eslint-plugin-react@7.22.0: + resolution: {integrity: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 + + eslint-plugin-react@7.25.1: + resolution: {integrity: sha512-P4j9K1dHoFXxDNP05AtixcJEvIT6ht8FhYKsrkY0MPCPaUMYijhpWwNiRDZVtA8KFuZOkGSeft6QwH8KuVpJug==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + + eslint-utils@3.0.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + + eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + + eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + hasBin: true + + esniff@2.0.1: + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} + + espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + + esprima-fb@15001.1.0-dev-harmony-fb: + resolution: {integrity: sha512-59dDGQo2b3M/JfKIws0/z8dcXH2mnVHkfSPRhCYS91JNGfGNwr7GsSF6qzWZuOGvw5Ii0w9TtylrX07MGmlOoQ==} + engines: {node: '>=0.4.0'} + hasBin: true + + esprima@3.1.3: + resolution: {integrity: sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==} + engines: {node: '>=4'} + hasBin: true + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + + eventemitter3@3.1.2: + resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + evp_bytestokey@1.0.3: + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + express@4.18.1: + resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} + engines: {node: '>= 0.10.0'} + + express@4.18.2: + resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} + engines: {node: '>= 0.10.0'} + + express@4.21.2: + resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} + engines: {node: '>= 0.10.0'} + + ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extract-files@9.0.0: + resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==} + engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0} + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-safe-stringify@2.1.1: + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fault@1.0.4: + resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + + faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fbjs@0.6.1: + resolution: {integrity: sha512-4KW7tT33ytfazK3Ekvesbsa4A5J79hUrdXONQGZ0wM6i3PFc70YknF9kj1eyx3mDupgJ7Z+ifFhcMJ+ps2eZIw==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + filesize@8.0.7: + resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} + engines: {node: '>= 0.4.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + finalhandler@1.3.1: + resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} + engines: {node: '>= 0.8'} + + find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flatted@3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + fork-ts-checker-webpack-plugin@6.5.3: + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + form-data@3.0.3: + resolution: {integrity: sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==} + engines: {node: '>= 6'} + + form-data@4.0.3: + resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==} + engines: {node: '>= 6'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-extra@10.0.0: + resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==} + engines: {node: '>=12'} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@11.3.0: + resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} + engines: {node: '>=14.14'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.2.0: + resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==} + + get-uri@6.0.5: + resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} + engines: {node: '>= 14'} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@5.0.15: + resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + global-modules@2.0.0: + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} + + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphql-request@4.3.0: + resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==} + peerDependencies: + graphql: 14 - 16 + + graphql-tag@2.12.6: + resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} + engines: {node: '>=10'} + peerDependencies: + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + + graphql@14.7.0: + resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} + engines: {node: '>= 6.x'} + deprecated: 'No longer supported; please update to a newer version. Details: https://github.com/graphql/graphql-js#version-support' + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + + harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-own-prop@2.0.0: + resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hash-base@2.0.2: + resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==} + + hash-base@3.0.5: + resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} + engines: {node: '>= 0.10'} + + hash-base@3.1.0: + resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} + engines: {node: '>=4'} + + hash.js@1.1.7: + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + + hast-util-from-parse5@5.0.3: + resolution: {integrity: sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==} + + hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + + hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + + hastscript@5.1.2: + resolution: {integrity: sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + highlight.js@10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + + hmac-drbg@1.0.1: + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hpack.js@2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + + html-entities@2.6.0: + resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true + + html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + + html-webpack-plugin@5.5.0: + resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} + engines: {node: '>=10.13.0'} + peerDependencies: + webpack: ^5.20.0 + + htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + + http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + + http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-parser-js@0.5.10: + resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + http-proxy-middleware@2.0.9: + resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + https-browserify@1.0.0: + resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + humanize-string@2.1.0: + resolution: {integrity: sha512-sQ+hqmxyXW8Cj7iqxcQxD7oSy3+AXnIZXdUF9lQMkzaG8dtbKAB8U7lCtViMnwQ+MpdCKsO2Kiij3G6UUXq/Xg==} + engines: {node: '>=6'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + immer@9.0.21: + resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} + + immutable@4.3.7: + resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphanumeric@1.0.0: + resolution: {integrity: sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==} + engines: {node: '>=0.10.0'} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-root@2.1.0: + resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} + engines: {node: '>=6'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + iterall@1.3.0: + resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@26.6.2: + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom@29.3.1: + resolution: {integrity: sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.3.1: + resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@29.3.1: + resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jmespath@0.15.0: + resolution: {integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==} + engines: {node: '>= 0.6.0'} + + joycon@2.2.5: + resolution: {integrity: sha512-YqvUxoOcVPnCp0VU1/56f+iKSdvIRJYPznH22BdXV3xMk75SFXhWeJkZ8C9XxUWt1b5x2X1SxuFygW1U0FmkEQ==} + engines: {node: '>=6'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@26.1.0: + resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^3.0.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-pretty-compact@1.2.0: + resolution: {integrity: sha512-/11Pj1OyX814QMKO7K8l85SHPTr/KsFxHp8GE2zVa0BtJgGimDjXHfM3FhC7keQdWDea7+nXf+f1de7ATZcZkQ==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jstransform@11.0.3: + resolution: {integrity: sha512-LGm87w0A8E92RrcXt94PnNHkFqHmgDy3mKHvNZOG7QepKCTCH/VB6S+IEN+bT4uLN3gVpOT0vvOOVd96osG71g==} + engines: {node: '>=0.8.8'} + hasBin: true + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + jsx-to-string@1.4.0: + resolution: {integrity: sha512-BmDM0gMngtBcjET7iEDuMxU+ZA4fTFWhMWAfbJeZP0X0VIaN7+At3wa64v48hzuE9rf77VAwlI/aMJrR+9LEZA==} + + junit-report-builder@3.0.0: + resolution: {integrity: sha512-aW7DnfLddUb51T+V08bJyecexaLomy5ID/0FXvhwsRXs9E0abvDaDT024U99J2agU3dt4q0ppzfKxSwrIIgXWg==} + engines: {node: '>=8'} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + launch-editor@2.10.0: + resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==} + + less-loader@11.1.0: + resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} + engines: {node: '>= 14.15.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + + less@4.3.0: + resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==} + engines: {node: '>=14'} + hasBin: true + + leven@2.1.0: + resolution: {integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==} + engines: {node: '>=0.10.0'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + load-json-file@2.0.0: + resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==} + engines: {node: '>=4'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lockfile@1.0.4: + resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==} + + lodash.compact@3.0.1: + resolution: {integrity: sha512-2ozeiPi+5eBXW1CLtzjk8XQFhQOEMwwfxblqeq6EGyTxZJ1bPATqilY0e6g2SLQpP4KuMeuioBhEnWz5Pr7ICQ==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.get@4.4.2: + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. + + lodash.has@4.5.2: + resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + longest-streak@2.0.4: + resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lowlight@1.20.0: + resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + lru-queue@0.1.0: + resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + + make-dir@1.3.0: + resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} + engines: {node: '>=4'} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + + markdown-table@2.0.0: + resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + md5.js@1.3.5: + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + + mdast-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + + mdast-util-compact@2.0.1: + resolution: {integrity: sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==} + + mdast-util-definitions@3.0.1: + resolution: {integrity: sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA==} + + mdast-util-from-markdown@0.8.5: + resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + + mdast-util-to-hast@9.1.2: + resolution: {integrity: sha512-OpkFLBC2VnNAb2FNKcKWu9FMbJhQKog+FCT8nuKmQNIKXyT1n3SIskE7uWDep6x+cA20QXlK5AETHQtYmQmxtQ==} + + mdast-util-to-string@2.0.0: + resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memoizee@0.4.15: + resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} + + memory-fs@0.5.0: + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + merge-descriptors@1.0.3: + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + micromark@2.11.4: + resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + miller-rabin@4.0.1: + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} + hasBin: true + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + mini-css-extract-plugin@2.7.0: + resolution: {integrity: sha512-auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimalistic-crypto-utils@1.0.1: + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.0: + resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + engines: {node: '>=10'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mri@1.1.4: + resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==} + engines: {node: '>=4'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + engines: {node: '>= 4.4.x'} + hasBin: true + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + negotiator@0.6.4: + resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + + new-url-loader@0.1.1: + resolution: {integrity: sha512-e7v5Q3uFk2jXgnL1JSVCszPTg9MYkbNIpKI6azeNlAa1bAwboA63aBsC63jlTEWlTacNL45tqWPx0Nm0SkCxCQ==} + engines: {node: '>=10.13.0'} + peerDependencies: + webpack: ^5.0.0 + + next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-source-walk@5.0.2: + resolution: {integrity: sha512-Y4jr/8SRS5hzEdZ7SGuvZGwfORvNsSsNRwDXx5WisiqzsVfeftDvRgfeqWNgZvWSJbgubTRVRYBzK6UO+ErqjA==} + engines: {node: '>=12'} + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + + object-assign@2.1.1: + resolution: {integrity: sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==} + engines: {node: '>=0.10.0'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + optimism@0.16.2: + resolution: {integrity: sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + os-browserify@0.3.0: + resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} + + os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + + p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} + + p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + pac-proxy-agent@7.2.0: + resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + engines: {node: '>= 14'} + + pac-resolver@7.0.1: + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} + + pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-asn1@5.1.7: + resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} + engines: {node: '>= 0.10'} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + parse5@5.1.1: + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-to-regexp@0.1.12: + resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + path-type@2.0.0: + resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pbkdf2@3.1.3: + resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} + engines: {node: '>=0.12'} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pino-pretty@4.5.0: + resolution: {integrity: sha512-TtIzAq3JrPT4cYMZcXHypAXYV+MTE7ncAPUFoaz/1enVD2Loj+hV6RZsypYo85dm7SbBolW6fcIydOF28iGjsg==} + hasBin: true + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-up@3.1.0: + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} + + portfinder@1.0.37: + resolution: {integrity: sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==} + engines: {node: '>= 10.12'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-attribute-case-insensitive@5.0.2: + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-browser-comments@4.0.0: + resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} + engines: {node: '>=8'} + peerDependencies: + browserslist: '>=4' + postcss: '>=8' + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-clamp@4.1.0: + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + + postcss-color-functional-notation@4.2.4: + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-color-hex-alpha@8.0.4: + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-color-rebeccapurple@7.1.1: + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-custom-media@8.0.2: + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + + postcss-custom-properties@12.1.11: + resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-custom-selectors@6.0.3: + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + + postcss-dir-pseudo-class@6.0.5: + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-double-position-gradients@3.1.2: + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-env-function@4.0.6: + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-flexbugs-fixes@5.0.2: + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + peerDependencies: + postcss: ^8.1.4 + + postcss-focus-visible@6.0.4: + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-focus-within@5.0.4: + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-font-variant@5.0.0: + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + + postcss-gap-properties@3.0.5: + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-image-set-function@4.0.7: + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-initial@4.0.1: + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + peerDependencies: + postcss: ^8.0.0 + + postcss-lab-function@4.2.1: + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-loader@7.0.1: + resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + + postcss-logical@5.0.4: + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + + postcss-media-minmax@5.0.0: + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.1.0 + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.2.0: + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-nesting@10.2.0: + resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize@10.0.1: + resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} + engines: {node: '>= 12'} + peerDependencies: + browserslist: '>= 4' + postcss: '>= 8' + + postcss-opacity-percentage@1.1.3: + resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-overflow-shorthand@3.0.4: + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-page-break@3.0.4: + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + + postcss-place@7.0.5: + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-preset-env@7.8.3: + resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-pseudo-class-any-link@7.1.6: + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-replace-overflow-wrap@4.0.0: + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + + postcss-selector-not@6.0.1: + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-selector-parser@7.1.0: + resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.19: + resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier@2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + engines: {node: '>=10.13.0'} + hasBin: true + + pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + prism-react-renderer@1.3.5: + resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} + peerDependencies: + react: '>=0.14.9' + + prismjs@1.27.0: + resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} + engines: {node: '>=6'} + + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} + + private@0.1.8: + resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} + engines: {node: '>= 0.6'} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + promise-limit@2.7.0: + resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} + + promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-agent@6.5.0: + resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} + engines: {node: '>= 14'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + public-encrypt@4.0.3: + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + + pump@3.0.3: + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + + punycode@1.3.2: + resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} + + punycode@2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + puppeteer-core@24.13.0: + resolution: {integrity: sha512-2Mr1zFCMfAJpKN5mRGqDAmwVEtS6qsalLnUZJn1uJxMdbZLMiqNuMf12gDmZGizg0CjvcfXxoaJhEZB8W0DXlw==} + engines: {node: '>=18'} + + puppeteer@24.13.0: + resolution: {integrity: sha512-3dpT7LIdlRBJBGKb7SjJeno/C3cl0bBpgwie+cxvf8PKmK502QdRU9TT/hvfchyFG7BzJKBHPxK5Boholx7zow==} + engines: {node: '>=18'} + hasBin: true + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + + qs@6.10.3: + resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} + engines: {node: '>=0.6'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + qs@6.13.0: + resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} + engines: {node: '>=0.6'} + + querystring-es3@0.2.1: + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} + engines: {node: '>=0.4.x'} + + querystring@0.2.0: + resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + randomfill@1.0.4: + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + react-app-polyfill@3.0.0: + resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} + engines: {node: '>=14'} + + react-dev-utils@12.0.1: + resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=2.7' + webpack: '>=4' + peerDependenciesMeta: + typescript: + optional: true + + react-dom@17.0.2: + resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} + peerDependencies: + react: 17.0.2 + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-error-boundary@3.1.4: + resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} + engines: {node: '>=10', npm: '>=6'} + peerDependencies: + react: '>=16.13.1' + + react-error-overlay@6.0.9: + resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==} + + react-error-overlay@6.1.0: + resolution: {integrity: sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==} + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-live@2.4.1: + resolution: {integrity: sha512-r+32f7oV/kBs3QZBRvaT+9vOkQW47UZrDpgwUe5FiIMOl7sdo5pmISgb7Zpj5PGHgY6XQaiXs3FEh+IWw3KbRg==} + engines: {node: '>= 0.12.0', npm: '>= 2.0.0'} + peerDependencies: + react: '*' + react-dom: '*' + + react-refresh@0.14.0: + resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} + engines: {node: '>=0.10.0'} + + react-router-dom@6.8.1: + resolution: {integrity: sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==} + engines: {node: '>=14'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + react-router@6.8.1: + resolution: {integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==} + engines: {node: '>=14'} + peerDependencies: + react: '>=16.8' + + react-simple-code-editor@0.11.3: + resolution: {integrity: sha512-7bVI4Yd1aNCeuldErXUt8ksaAG5Fi+GZ6vp3mtFBnckKdzsQtrgkDvdwMFXIhwTGG+mUYmk5ZpMo0axSW9JBzA==} + peerDependencies: + react: '*' + react-dom: '*' + + react-syntax-highlighter@13.5.3: + resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} + peerDependencies: + react: '>= 0.14.0' + + react-use-dimensions@1.2.1: + resolution: {integrity: sha512-XL+Rup9Hosxx3Ap9xpyQMbVwuUa4BSqiOjfBb2zDuGs4uv2FesFV+m8Z/huRx2BNptMd9ARPqFuSNA62zhCozg==} + peerDependencies: + '@types/react': ^16.8.20 + react: ^16.8.x + typescript: ^3.5.2 + + react@0.14.10: + resolution: {integrity: sha512-yxMw5aorZG4qsLVBfjae4wGFvd5708DhcxaXLJ3IOTgr1TCs8k9+ZheGgLGr5OfwWMhSahNbGvvoEDzrxVWouA==} + engines: {node: '>=0.10.0'} + + react@17.0.2: + resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} + engines: {node: '>=0.10.0'} + + react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + read-pkg-up@2.0.0: + resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==} + engines: {node: '>=4'} + + read-pkg@2.0.0: + resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==} + engines: {node: '>=4'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + recast@0.11.23: + resolution: {integrity: sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==} + engines: {node: '>= 0.8'} + + recursive-readdir@2.2.3: + resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} + engines: {node: '>=6.0.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + refractor@3.6.0: + resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + + regenerate-unicode-properties@9.0.0: + resolution: {integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regex-parser@2.3.1: + resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + + regexpu-core@4.8.0: + resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==} + engines: {node: '>=4'} + + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + + regjsgen@0.5.2: + resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + regjsparser@0.7.0: + resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==} + hasBin: true + + rehype-parse@6.0.2: + resolution: {integrity: sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==} + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + remark-admonitions@1.2.1: + resolution: {integrity: sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow==} + + remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + + remark-frontmatter@2.0.0: + resolution: {integrity: sha512-uNOQt4tO14qBFWXenF0MLC4cqo3dv8qiHPGyjCl1rwOT0LomSHpcElbjjVh5CwzElInB38HD8aSRVugKQjeyHA==} + + remark-mdx@1.6.21: + resolution: {integrity: sha512-IGb3l46a6NFi62egT+WXeTT3T8wYTunmPCEGTfDO6oRAfuss9VAb/3InVCKKGXXoiNi0mTuplI0EFusdCLGk3A==} + + remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + + remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + + remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + + remark-stringify@8.1.1: + resolution: {integrity: sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==} + + rename-overwrite@5.0.4: + resolution: {integrity: sha512-BOR/6Zr3F0vmTzwvkiCZaPrzv1NJZQVRhrWA4w2IQtj33owmh5Y4LRajsR4QrqdIgLlAqOLEEc1PiUf15ku9hQ==} + engines: {node: '>=12.10'} + + renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + replace-ext@1.0.0: + resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} + engines: {node: '>= 0.10'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-link-target@1.0.1: + resolution: {integrity: sha512-uid343+whX+g+LLUzwCYaZBOZPX8Hi3Y7qZBr0r1Rvb0y6WMWVLT32uuGllxD5uNQR+mddUE/Dx/wwvgGrZLSA==} + engines: {node: '>=4'} + + resolve-url-loader@5.0.0: + resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==} + engines: {node: '>=12'} + + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + ripemd160@2.0.1: + resolution: {integrity: sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==} + + ripemd160@2.0.2: + resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + + rrweb-cssom@0.8.0: + resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sanitize.css@13.0.0: + resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} + + sass-loader@13.2.0: + resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + + sass@1.56.1: + resolution: {integrity: sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==} + engines: {node: '>=12.0.0'} + hasBin: true + + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.20.2: + resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.0.0: + resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} + engines: {node: '>= 12.13.0'} + + schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} + + schema-utils@4.3.2: + resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} + engines: {node: '>= 10.13.0'} + + select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + send@0.19.0: + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} + engines: {node: '>= 0.8.0'} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-index@1.9.1: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + serve-static@1.16.2: + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} + engines: {node: '>= 0.8.0'} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + + setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + sha.js@2.4.12: + resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} + engines: {node: '>= 0.10'} + hasBin: true + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} + + socks@2.8.6: + resolution: {integrity: sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-loader@4.0.1: + resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: ^5.72.1 + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.4.4: + resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==} + engines: {node: '>=0.8.0'} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.21: + resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} + + spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + + spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + stoppable@1.1.0: + resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} + engines: {node: '>=4', npm: '>=6'} + + stream-browserify@3.0.0: + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + + stream-http@3.2.0: + resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} + + streamx@2.22.1: + resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@3.1.0: + resolution: {integrity: sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==} + + strip-ansi@6.0.0: + resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} + engines: {node: '>=8'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-loader@3.3.1: + resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + subscriptions-transport-ws@0.11.0: + resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} + deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md + peerDependencies: + graphql: ^15.7.2 || ^16.0.0 + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + symbol-observable@1.2.0: + resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} + engines: {node: '>=0.10.0'} + + symbol-observable@4.0.0: + resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} + engines: {node: '>=0.10'} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + symlink-dir@5.2.1: + resolution: {integrity: sha512-HfqqI7BoCx3+482BUfoR1sXAFx5G90KrWImT5/J/a+HZWvzMTTA/hYKh2030WFYn7OwRRUAoMCQvqlwBMnhBUw==} + engines: {node: '>=12.10'} + hasBin: true + + synckit@0.1.6: + resolution: {integrity: sha512-5pk9meINInVUZ4nKn5942/x/mY5OE9SVzkOFIxiCDnellaz1cwTd4m7Xl1ibz1F3AxnZ8NxQMEbF7eMWMGECGg==} + engines: {node: '>=4.0'} + + synckit@0.3.4: + resolution: {integrity: sha512-t6qVl+gzR6qMkrP5pW+sxGe0mVx/O7vj29ir9k4Lw9BacPBE/cKHMvcROJlFBgNHFW94etQL/sBYFq4uur6C6A==} + engines: {node: '>=8.10'} + + table@6.9.0: + resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} + engines: {node: '>=10.0.0'} + + tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} + + tapable@2.2.2: + resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} + engines: {node: '>=6'} + + tar-fs@3.1.0: + resolution: {integrity: sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==} + + tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + + terser-webpack-plugin@5.2.0: + resolution: {integrity: sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser-webpack-plugin@5.3.14: + resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@5.43.1: + resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-decoder@1.2.3: + resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + + timers-browserify@2.0.12: + resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} + engines: {node: '>=0.6.0'} + + timers-ext@0.1.8: + resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} + engines: {node: '>=0.12'} + + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-buffer@1.2.1: + resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==} + engines: {node: '>= 0.4'} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toggle-selection@1.0.6: + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + + tr46@5.1.1: + resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} + engines: {node: '>=18'} + + trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + + trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead + + trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + + ts-deepmerge@6.2.1: + resolution: {integrity: sha512-8CYSLazCyj0DJDpPIxOFzJG46r93uh6EynYjuey+bxcLltBeqZL7DMfaE5ZPzZNFlav7wx+2TDa/mBl8gkTYzw==} + engines: {node: '>=14.13.1'} + + ts-invariant@0.10.3: + resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==} + engines: {node: '>=8'} + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsutils@3.21.0: + 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' + + tty-browserify@0.0.1: + resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typed-query-selector@2.12.0: + resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==} + + typescript@4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} + engines: {node: '>=4.2.0'} + hasBin: true + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + ua-parser-js@0.7.40: + resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + unescape@1.0.1: + resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==} + engines: {node: '>=0.10.0'} + + unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unified@8.4.2: + resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==} + + unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + + unified@9.2.2: + resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} + + unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + + unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + + unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + + unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + + unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + + unist-util-remove@2.0.1: + resolution: {integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==} + + unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + + unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + + unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-join@4.0.0: + resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} + + url-parse@1.5.1: + resolution: {integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.0: + resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} + + use-debounce@3.4.3: + resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==} + peerDependencies: + react: '>=16.8.0' + + use-deep-compare@1.3.0: + resolution: {integrity: sha512-94iG+dEdEP/Sl3WWde+w9StIunlV8Dgj+vkt5wTwMoFQLaijiEZSXXy8KtcStpmEDtIptRJiNeD4ACTtVvnIKA==} + peerDependencies: + react: '>=16.8.0' + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util@0.12.3: + resolution: {integrity: sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==} + + utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} + + vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + + vfile@4.2.0: + resolution: {integrity: sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==} + + vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + + vlq@1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + + vm-browserify@1.1.2: + resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + watchpack@2.4.4: + resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==} + engines: {node: '>=10.13.0'} + + wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + + web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-assets-manifest@5.1.0: + resolution: {integrity: sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==} + engines: {node: '>=10.13.0'} + peerDependencies: + webpack: ^5.2.0 + + webpack-dev-middleware@5.3.4: + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + webpack-dev-server@4.15.0: + resolution: {integrity: sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: ^4.37.0 || ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + + webpack-merge@5.8.0: + resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} + engines: {node: '>=10.0.0'} + + webpack-sources@3.3.3: + resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==} + engines: {node: '>=10.13.0'} + + webpack@5.51.1: + resolution: {integrity: sha512-xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + webpack@5.84.1: + resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} + + websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-fetch@0.9.0: + resolution: {integrity: sha512-DIuh7/cloHxHYwS/oRXGgkALYAntijL63nsgMQsNSnBj825AysosAqA2ZbYXGRqpPRiNH7335dTqV364euRpZw==} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + + whatwg-url@14.2.0: + resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} + engines: {node: '>=18'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xmlbuilder@15.1.1: + resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} + engines: {node: '>=8.0'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xregexp@4.0.0: + resolution: {integrity: sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zen-observable-ts@1.2.5: + resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==} + + zen-observable@0.8.15: + resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} + + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + + zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + +bit: + depsRequiringBuild: + - core-js-pure@3.44.0 + - core-js@3.44.0 + - es5-ext@0.10.64 + - esbuild@0.14.28 + - puppeteer@24.13.0(typescript@4.9.3) + - puppeteer@24.13.0(typescript@5.8.3) + +snapshots: + + '@adobe/css-tools@4.4.3': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + + '@apollo/client@3.6.9(graphql@14.7.0)(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@14.7.0))': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) + '@wry/context': 0.6.1 + '@wry/equality': 0.5.7 + '@wry/trie': 0.3.2 + graphql: 14.7.0 + graphql-tag: 2.12.6(graphql@14.7.0) + hoist-non-react-statics: 3.3.2 + optimism: 0.16.2 + prop-types: 15.8.1 + symbol-observable: 4.0.0 + ts-invariant: 0.10.3 + tslib: 2.8.1 + zen-observable-ts: 1.2.5 + optionalDependencies: + react: 18.3.1 + subscriptions-transport-ws: 0.11.0(graphql@14.7.0) + + '@asamuzakjp/css-color@3.2.0': + dependencies: + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + lru-cache: 10.4.3 + + '@babel/code-frame@7.12.11': + dependencies: + '@babel/highlight': 7.25.9 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.11.6': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.11.6) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + convert-source-map: 1.9.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.10 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.12.9': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + convert-source-map: 1.9.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.10 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.19.6': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + convert-source-map: 1.9.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.20.2': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + convert-source-map: 1.9.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.28.0': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.28.0': + dependencies: + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.28.1 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.1 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.24.7': + dependencies: + '@babel/types': 7.28.1 + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.11.6)': + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.28.1 + + '@babel/helper-plugin-utils@7.10.4': {} + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-simple-access@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-split-export-declaration@7.24.7': + dependencies: + '@babel/types': 7.28.1 + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helper-wrap-function@7.27.1': + dependencies: + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.27.6': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.1 + + '@babel/highlight@7.25.9': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/parser@7.28.0': + dependencies: + '@babel/types': 7.28.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.28.0) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) + + '@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.6)': + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.11.6) + + '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) + + '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.12.9)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.12.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) + + '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.19.6)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.19.6) + + '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.20.2)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.20.2) + + '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.28.0)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.10.4(@babel/core@7.11.6)': + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.6)': + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-classes@7.28.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.28.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.19.6) + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-simple-access': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-simple-access': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-simple-access': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-simple-access': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.11.6)': + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.12.9) + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.19.6) + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-runtime@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.19.6) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.19.6) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.19.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/preset-env@7.20.2(@babel/core@7.12.9)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.12.9 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.12.9) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.12.9) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.12.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.12.9) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.12.9) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.12.9) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.12.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.12.9) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.12.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.12.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.12.9) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.12.9) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.12.9) + '@babel/preset-modules': 0.1.6(@babel/core@7.12.9) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.12.9) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.12.9) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.12.9) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.20.2(@babel/core@7.19.6)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.19.6 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.19.6) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.19.6) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.19.6) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.19.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.19.6) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.19.6) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.6) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.19.6) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.19.6) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.19.6) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.19.6) + '@babel/preset-modules': 0.1.6(@babel/core@7.19.6) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.6) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.6) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.6) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.20.2(@babel/core@7.20.2)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.2) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.20.2) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.2) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.20.2) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.20.2) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.20.2) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.20.2) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.20.2) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.20.2) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.20.2) + '@babel/preset-modules': 0.1.6(@babel/core@7.20.2) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.2) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.2) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.2) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.20.2(@babel/core@7.28.0)': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.28.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.28.0) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.28.0) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.28.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.28.0) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.28.0) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.28.0) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.28.0) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0) + '@babel/preset-modules': 0.1.6(@babel/core@7.28.0) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.28.0) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.28.0) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.28.0) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-modules@0.1.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.12.9) + '@babel/types': 7.28.1 + esutils: 2.0.3 + + '@babel/preset-modules@0.1.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.19.6) + '@babel/types': 7.28.1 + esutils: 2.0.3 + + '@babel/preset-modules@0.1.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.2) + '@babel/types': 7.28.1 + esutils: 2.0.3 + + '@babel/preset-modules@0.1.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.28.0) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0) + '@babel/types': 7.28.1 + esutils: 2.0.3 + + '@babel/preset-react@7.18.6(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.12.9) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.12.9) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color + + '@babel/preset-react@7.18.6(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/preset-react@7.18.6(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color + + '@babel/preset-typescript@7.18.6(@babel/core@7.20.2)': + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + '@babel/preset-typescript@7.27.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color + + '@babel/runtime-corejs3@7.28.0': + dependencies: + core-js-pure: 3.44.0 + + '@babel/runtime@7.20.0': + dependencies: + regenerator-runtime: 0.13.11 + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 + + '@babel/traverse@7.28.0': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/types': 7.28.1 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.20.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + to-fast-properties: 2.0.0 + + '@babel/types@7.28.1': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@bcoe/v8-coverage@0.2.3': {} + + '@csstools/color-helpers@5.0.2': {} + + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': + dependencies: + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + + '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': + dependencies: + '@csstools/color-helpers': 5.0.2 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + + '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': + dependencies: + '@csstools/css-tokenizer': 3.0.4 + + '@csstools/css-tokenizer@3.0.4': {} + + '@csstools/normalize.css@12.1.1': {} + + '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.19)': + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 + + '@csstools/postcss-color-function@1.1.1(postcss@8.4.19)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.19)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.19)': + dependencies: + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 + + '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.19)': + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + '@csstools/postcss-unset-value@1.0.2(postcss@8.4.19)': + dependencies: + postcss: 8.4.19 + + '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)': + dependencies: + postcss-selector-parser: 6.1.2 + + '@eslint/eslintrc@0.4.3': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 7.3.1 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.1 + js-yaml: 3.14.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@graphql-typed-document-node/core@3.2.0(graphql@14.7.0)': + dependencies: + graphql: 14.7.0 + + '@hapi/bourne@2.1.0': {} + + '@humanwhocodes/config-array@0.5.0': + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@humanwhocodes/object-schema@1.2.1': {} + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/console@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + jest-mock: 29.7.0 + + '@jest/expect-utils@29.7.0': + dependencies: + jest-get-type: 29.6.3 + + '@jest/expect@29.7.0': + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 16.18.126 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + '@jest/globals@29.7.0': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@29.7.0': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.29 + '@types/node': 16.18.126 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.3.0 + transitivePeerDependencies: + - supports-color + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/source-map@29.6.3': + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + '@jest/test-result@29.3.1': + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-result@29.7.0': + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-sequencer@29.7.0': + dependencies: + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + + '@jest/transform@29.7.0': + dependencies: + '@babel/core': 7.28.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.29 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.8 + pirates: 4.0.7 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@26.6.2': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 16.18.126 + '@types/yargs': 15.0.19 + chalk: 4.1.2 + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 16.18.126 + '@types/yargs': 17.0.33 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.12': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/trace-mapping': 0.3.29 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/source-map@0.3.10': + dependencies: + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + + '@jridgewell/sourcemap-codec@1.5.4': {} + + '@jridgewell/trace-mapping@0.3.29': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.4 + + '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 + core-js: 3.44.0 + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 + core-js: 3.44.0 + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 + core-js: 3.44.0 + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@leichtgewicht/ip-codec@2.0.5': {} + + '@mdx-js/mdx@1.6.21': + dependencies: + '@babel/core': 7.11.6 + '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) + '@mdx-js/util': 1.6.21 + babel-plugin-apply-mdx-type-prop: 1.6.21(@babel/core@7.11.6) + babel-plugin-extract-import-names: 1.6.21 + camelcase-css: 2.0.1 + detab: 2.0.3 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 9.1.2 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.21 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 + transitivePeerDependencies: + - supports-color + + '@mdx-js/react@1.6.22(react@17.0.2)': + dependencies: + react: 17.0.2 + + '@mdx-js/react@1.6.22(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@mdx-js/util@1.6.21': {} + + '@mdx-js/util@1.6.22': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 2.0.16 + core-js: 3.44.0 + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 2.0.16 + core-js: 3.44.0 + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client + - supports-color + - ts-node - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-hot-middleware - - webpack-plugin-serve + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@org/scope-name.get-hello-world@file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@org/scope-name.hello-world-app@file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@17.0.2(react@17.0.2))': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@org/scope-name.ui.hello-world': file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@17.0.2(react@17.0.2))(react@18.3.1) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 17.0.2(react@17.0.2) + react-router-dom: 6.8.1(react-dom@17.0.2(react@17.0.2))(react@18.3.1) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@org/scope-name.hello-world-app@file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@org/scope-name.ui.hello-world': file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@17.0.2)': + dependencies: + '@mdx-js/react': 1.6.22(react@17.0.2) + '@org/scope-name.get-hello-world': file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@17.0.2))(react@17.0.2) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 17.0.2 + react-dom: 18.3.1(react@17.0.2) + react-router-dom: 6.8.1(react-dom@18.3.1(react@17.0.2))(react@17.0.2) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@org/scope-name.get-hello-world': file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@pmmmwh/react-refresh-webpack-plugin@0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1)': + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.44.0 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.6.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + type-fest: 0.21.3 + webpack-dev-server: 4.15.0(webpack@5.84.1) + + '@prerenderer/prerenderer@1.2.5(@types/express@4.17.23)': + dependencies: + express: 4.18.2 + portfinder: 1.0.37 + schema-utils: 4.0.0 + stoppable: 1.1.0 + ts-deepmerge: 6.2.1 + optionalDependencies: + http-proxy-middleware: 2.0.9(@types/express@4.17.23) + transitivePeerDependencies: + - '@types/express' + - debug + - supports-color + + '@prerenderer/renderer-jsdom@1.1.9': + dependencies: + '@types/jsdom': 21.1.7 + jsdom: 26.1.0 + promise-limit: 2.7.0 + schema-utils: 4.2.0 + ts-deepmerge: 6.2.1 + whatwg-fetch: 3.6.20 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + '@prerenderer/renderer-puppeteer@1.2.4(puppeteer@24.13.0(typescript@4.9.3))': + dependencies: + promise-limit: 2.7.0 + puppeteer: 24.13.0(typescript@4.9.3) + schema-utils: 4.3.2 + ts-deepmerge: 6.2.1 + optional: true + + '@prerenderer/renderer-puppeteer@1.2.4(puppeteer@24.13.0(typescript@5.8.3))': + dependencies: + promise-limit: 2.7.0 + puppeteer: 24.13.0(typescript@5.8.3) + schema-utils: 4.3.2 + ts-deepmerge: 6.2.1 + optional: true + + '@prerenderer/webpack-plugin@5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1)': + dependencies: + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + html-webpack-plugin: 5.5.0(webpack@5.84.1) + schema-utils: 4.3.2 + ts-deepmerge: 6.2.1 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + '@prerenderer/renderer-puppeteer': 1.2.4(puppeteer@24.13.0(typescript@4.9.3)) + transitivePeerDependencies: + - '@types/express' + - debug + - puppeteer + - supports-color + + '@prerenderer/webpack-plugin@5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@5.8.3))(webpack@5.84.1)': + dependencies: + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + html-webpack-plugin: 5.5.0(webpack@5.84.1) + schema-utils: 4.3.2 + ts-deepmerge: 6.2.1 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + '@prerenderer/renderer-puppeteer': 1.2.4(puppeteer@24.13.0(typescript@5.8.3)) + transitivePeerDependencies: + - '@types/express' + - debug + - puppeteer + - supports-color + + '@puppeteer/browsers@2.10.5': + dependencies: + debug: 4.4.1 + extract-zip: 2.0.1 + progress: 2.0.3 + proxy-agent: 6.5.0 + semver: 7.7.2 + tar-fs: 3.1.0 + yargs: 17.7.2 + transitivePeerDependencies: + - bare-buffer + - supports-color + optional: true + + '@remix-run/router@1.3.2': {} + + '@sinclair/typebox@0.27.8': {} + + '@sinonjs/commons@3.0.1': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.1 + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + + '@svgr/babel-preset@6.5.1(@babel/core@7.19.6)': + dependencies: + '@babel/core': 7.19.6 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.19.6) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.19.6) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.19.6) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.19.6) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.19.6) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.19.6) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.19.6) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.19.6) + + '@svgr/core@6.5.1': + dependencies: + '@babel/core': 7.19.6 + '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + transitivePeerDependencies: + - supports-color + + '@svgr/hast-util-to-babel-ast@6.5.1': + dependencies: + '@babel/types': 7.28.1 + entities: 4.5.0 + + '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@babel/core': 7.19.6 + '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) + '@svgr/core': 6.5.1 + '@svgr/hast-util-to-babel-ast': 6.5.1 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@svgr/core': 6.5.1 + cosmiconfig: 7.1.0 + deepmerge: 4.3.1 + svgo: 2.8.0 + + '@svgr/webpack@6.5.1': + dependencies: + '@babel/core': 7.19.6 + '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.19.6) + '@babel/preset-env': 7.20.2(@babel/core@7.19.6) + '@babel/preset-react': 7.18.6(@babel/core@7.19.6) + '@babel/preset-typescript': 7.27.1(@babel/core@7.19.6) + '@svgr/core': 6.5.1 + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) + transitivePeerDependencies: + - supports-color + + '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.23 + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 17.0.87 + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.23 + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-react.theme.theme-provider@1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.elements.icon@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.input.button@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.input.error@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.input.error@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.layout.grid-component@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.routing.compare-url@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + url-parse: 1.5.1 + + '@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.card@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.background': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.text.heading@1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.text.paragraph@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.theme.colors': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.theme.colors@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.theme.fonts.book@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/base-ui.utils.composer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/bit-error@0.0.402': {} + + '@teambit/community.constants.links@0.0.2': {} + + '@teambit/compilation.compiler-task@0.0.4': + dependencies: + '@teambit/toolbox.fs.hard-link-directory': 0.0.9 + fs-extra: 10.1.0 + + '@teambit/compilation.compiler-task@1.0.6': + dependencies: + '@teambit/toolbox.fs.hard-link-directory': 0.0.15 + fs-extra: 10.1.0 + + '@teambit/component-id@0.0.425': + dependencies: + '@teambit/legacy-bit-id': 0.0.421 + + '@teambit/component-version@0.0.406': + dependencies: + '@teambit/bit-error': 0.0.402 + semver: 7.3.4 + + '@teambit/component.ui.hooks.use-fetch-docs@0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - encoding + - graphql + + '@teambit/compositions.model.composition-id@0.0.496': + dependencies: + humanize-string: 2.1.0 + + '@teambit/compositions.model.composition-type@0.0.497(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@teambit/compositions.ui.composition-card@0.0.504(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.surfaces.card': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.text.themed-text': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.theme.accent-color': 1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/compositions.model.composition-id': 0.0.496 + '@teambit/compositions.model.composition-type': 0.0.497(react@18.3.1) + '@teambit/evangelist.elements.icon': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + + '@teambit/compositions.ui.compositions-overview@0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/compositions.model.composition-type': 0.0.497(react@18.3.1) + '@teambit/compositions.ui.composition-card': 0.0.504(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/defender.eslint-linter@0.0.10': + dependencies: + '@teambit/bit-error': 0.0.402 + '@teambit/defender.linter-task': 0.0.5 + '@teambit/typescript.typescript-compiler': 0.0.9 + eslint: 7.32.0 + fs-extra: 10.1.0 + lodash: 4.17.21 + object-hash: 3.0.0 + p-map-series: 2.1.0 + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color + + '@teambit/defender.jest-tester@0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0)': + dependencies: + '@babel/core': 7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) + '@babel/preset-env': 7.20.2(@babel/core@7.20.2) + '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) + '@jest/test-result': 29.3.1 + '@teambit/defender.tester-task': 0.0.6 + '@teambit/tests-results': 0.0.104 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0) + babel-preset-jest: 29.2.0(@babel/core@7.20.2) + camelcase: 7.0.0 + comlink: 4.3.1 + flatted: 3.2.7 + fs-extra: 10.1.0 + identity-obj-proxy: 3.0.0 + jest: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + jest-message-util: 29.3.1 + lodash: 4.17.21 + minimatch: 5.1.0 + transitivePeerDependencies: + - '@babel/traverse' + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@teambit/defender.jest-tester@0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': + dependencies: + '@babel/core': 7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) + '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) + '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) + '@babel/preset-env': 7.20.2(@babel/core@7.20.2) + '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) + '@jest/test-result': 29.3.1 + '@teambit/defender.tester-task': 0.0.6 + '@teambit/tests-results': 0.0.104 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0) + babel-preset-jest: 29.2.0(@babel/core@7.20.2) + camelcase: 7.0.0 + comlink: 4.3.1 + flatted: 3.2.7 + fs-extra: 10.1.0 + identity-obj-proxy: 3.0.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-message-util: 29.3.1 + lodash: 4.17.21 + minimatch: 5.1.0 + transitivePeerDependencies: + - '@babel/traverse' + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + + '@teambit/defender.linter-task@0.0.5': {} + + '@teambit/defender.prettier-formatter@0.0.6': + dependencies: + '@teambit/bit-error': 0.0.402 + lodash: 4.17.21 + p-map-series: 2.1.0 + prettier: 2.7.1 + + '@teambit/defender.tester-task@0.0.6': + dependencies: + fs-extra: 10.1.0 + junit-report-builder: 3.0.0 + strip-ansi: 6.0.0 + + '@teambit/dependencies.modules.packages-excluder@0.0.70(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@teambit/design.theme.icons-font@1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.theme.icons-font@2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + + '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + + '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + + '@teambit/design.ui.error-page@0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/community.constants.links': 0.0.2 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/community.constants.links': 0.0.2 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/community.constants.links': 0.0.2 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.icon-button@1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.button': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + + '@teambit/docs.docs-template@0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3)': + dependencies: + '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript + + '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3)': + dependencies: + '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript + + '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@5.8.3)': + dependencies: + '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript + + '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3)': + dependencies: + '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript + + '@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.code.react-playground@4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.code.react-playground@4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.code.react-playground@4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.code.react-playground@4.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.heading@0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.linked-heading': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/documenter.code.react-playground': 4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + dependencies: + '@teambit/documenter.code.react-playground': 4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/documenter.code.react-playground': 4.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.mdx@0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.mdx@0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.markdown.mdx@0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript + + '@teambit/documenter.routing.external-link@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.anchor@4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.anchor@4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.apps.react-app-types@0.0.32(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@17.0.62)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-ZDW6Go+E+FpjvmuIPKKXIv7ClO4=, tarball: https://node-registry.bit.cloud/@teambit/react.apps.react-app-types/-/@teambit-react.apps.react-app-types-0.0.32.tgz} + '@teambit/documenter.ui.block-quote@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@prerenderer/prerenderer': 1.2.3 - '@prerenderer/renderer-jsdom': 1.1.6 - '@prerenderer/webpack-plugin': 5.3.6(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.webpack.react-webpack': 0.0.28(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 - fs-extra: 10.1.0 - lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(webpack@5.84.1) - url-join: 4.0.0 - webpack: 5.84.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.bold@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.code-snippet@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.copied-message': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + copy-to-clipboard: 3.3.3 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-syntax-highlighter: 13.5.3(react@18.3.1) + + '@teambit/documenter.ui.copied-message@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.heading@4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.heading@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.image@4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.inline-code@0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.italic@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.linked-heading@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.anchor': 4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.heading': 4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.linked-heading@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.anchor': 4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.ol@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.paragraph@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.text.paragraph': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.property-table@4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - '@types/react' - - '@types/webpack' - - bufferutil - - canvas - - clean-css - - csso - - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - less - - node-sass - - puppeteer - - react - - react-dom - - sass-embedded - - sockjs-client - - supports-color - - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - dev: false - /@teambit/react.apps.react-app-types@0.0.32(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-ZDW6Go+E+FpjvmuIPKKXIv7ClO4=, tarball: https://node-registry.bit.cloud/@teambit/react.apps.react-app-types/-/@teambit-react.apps.react-app-types-0.0.32.tgz} + '@teambit/documenter.ui.property-table@4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@prerenderer/prerenderer': 1.2.3 - '@prerenderer/renderer-jsdom': 1.1.6 - '@prerenderer/webpack-plugin': 5.3.6(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.webpack.react-webpack': 0.0.28(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 - fs-extra: 10.1.0 - lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(webpack@5.84.1) - url-join: 4.0.0 - webpack: 5.84.1 + '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) + use-debounce: 3.4.3(react@18.3.1) transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - '@types/react' - - '@types/webpack' - - bufferutil - - canvas - - clean-css - - csso - - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - less - - node-sass - - puppeteer - - react - - react-dom - - sass-embedded - - sockjs-client - - supports-color - - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - /@teambit/react.babel.bit-react-transformer@0.0.525(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-Lp+xyzKieJ7xqXjacuRHWOrMoIM=, tarball: https://node-registry.bit.cloud/@teambit/react.babel.bit-react-transformer/-/@teambit-react.babel.bit-react-transformer-0.0.525.tgz} - engines: {node: '>=12.22.0'} + '@teambit/documenter.ui.property-table@4.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/types': 7.20.0 - '@teambit/component-id': 0.0.425 - '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.29(react-dom@18.2.0)(react@18.2.0) - find-root: 1.1.0 - fs-extra: 10.0.0 - memoizee: 0.4.15 + '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) + use-debounce: 3.4.3(react@18.3.1) transitivePeerDependencies: - - react - - react-dom - - supports-color + - '@types/react' + - typescript - /@teambit/react.eslint-config-bit-react@0.0.794(@teambit/legacy@node_modules+@teambit+legacy)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha1-cyo+1+8cRO9IiYRXRjXZ25eeVZQ=, tarball: https://node-registry.bit.cloud/@teambit/react.eslint-config-bit-react/-/@teambit-react.eslint-config-bit-react-0.0.794.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - '@teambit/legacy': '*' - eslint: '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - eslint: - optional: true + '@teambit/documenter.ui.section@4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/legacy': link:node_modules/@teambit/legacy - '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1)(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 - eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@5.35.1)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0)(typescript@4.9.3) - eslint-config-prettier: 8.5.0(eslint@7.32.0) - transitivePeerDependencies: - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks - - supports-color - - typescript + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.generator.react-starters@0.0.12: - resolution: {integrity: sha1-N5gKn+tYMw1W7hSwYAoC1ajoaiA=, tarball: https://node-registry.bit.cloud/@teambit/react.generator.react-starters/-/@teambit-react.generator.react-starters-0.0.12.tgz} + '@teambit/documenter.ui.separator@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - comment-json: 4.2.3 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.generator.react-templates@0.0.10: - resolution: {integrity: sha1-dwvkNBPoSIV7DGyVZnpE8UTzHm0=, tarball: https://node-registry.bit.cloud/@teambit/react.generator.react-templates/-/@teambit-react.generator.react-templates-0.0.10.tgz} + '@teambit/documenter.ui.sup@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.jest.react-jest@0.0.6(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4): - resolution: {integrity: sha1-9kx1mmO+Z7KqWOJrmXF2pTwEAMQ=, tarball: https://node-registry.bit.cloud/@teambit/react.jest.react-jest/-/@teambit-react.jest.react-jest-0.0.6.tgz} + '@teambit/documenter.ui.table-column@4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4) - '@testing-library/jest-dom': 5.16.5 - jest-environment-jsdom: 29.3.1 - react-app-polyfill: 3.0.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@teambit/legacy' - - '@types/node' - - bufferutil - - canvas - - node-notifier - - supports-color - - ts-node - - utf-8-validate - dev: false + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.jest.react-jest@0.0.6(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37): - resolution: {integrity: sha1-9kx1mmO+Z7KqWOJrmXF2pTwEAMQ=, tarball: https://node-registry.bit.cloud/@teambit/react.jest.react-jest/-/@teambit-react.jest.react-jest-0.0.6.tgz} + '@teambit/documenter.ui.table-heading-column@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@testing-library/jest-dom': 5.16.5 - jest-environment-jsdom: 29.3.1 - react-app-polyfill: 3.0.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@teambit/legacy' - - '@types/node' - - bufferutil - - canvas - - node-notifier - - supports-color - - ts-node - - utf-8-validate + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.mounter@0.0.10: - resolution: {integrity: sha1-uR+FUXDzUO4NSqhkUuVUCYz+G1Y=, tarball: https://node-registry.bit.cloud/@teambit/react.mounter/-/@teambit-react.mounter-0.0.10.tgz} + '@teambit/documenter.ui.table-heading-row@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-heading-column': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.react-env@0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@12.20.4)(@types/react@17.0.62): - resolution: {integrity: sha1-+47dMWyPsV6mq4SdgfLZoBsuurU=, tarball: https://node-registry.bit.cloud/@teambit/react.react-env/-/@teambit-react.react-env-0.0.68.tgz} + '@teambit/documenter.ui.table-row@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/defender.eslint-linter': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4) - '@teambit/defender.prettier-formatter': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.2.0) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0)(@types/react@17.0.62)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - '@teambit/preview.react-preview': 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@17.0.62)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@17.0.62)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.eslint-config-bit-react': 0.0.794(@teambit/legacy@node_modules+@teambit+legacy)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@12.20.4) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9(@teambit/legacy@node_modules+@teambit+legacy) - '@testing-library/jest-dom': 5.16.5 - browserslist: 4.21.4 - core-js: 3.31.0 + '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-column': 4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-syntax-highlighter: 13.5.3(react@18.3.1) + + '@teambit/documenter.ui.table.base-table@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.table.td@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.table.tr@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.table@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.table-heading-row': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.ul@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/eslint-config-bit-react@0.0.367(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + core-js: 3.44.0 eslint: 7.32.0 - eslint-plugin-import: 2.22.1(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - graphql: 14.7.0 - jest: 29.3.1(@types/node@12.20.4) - pino-pretty: 4.5.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - typescript: 4.9.3 + eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks - supports-color - - ts-node - - type-fest - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - dev: false + - typescript + + '@teambit/evangelist.elements.icon@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/evangelist.elements.icon@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@teambit/react.react-env@0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14): - resolution: {integrity: sha1-+47dMWyPsV6mq4SdgfLZoBsuurU=, tarball: https://node-registry.bit.cloud/@teambit/react.react-env/-/@teambit-react.react-env-0.0.68.tgz} + '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/defender.eslint-linter': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@teambit/defender.prettier-formatter': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.2.0) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0)(@types/react@18.2.14)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - '@teambit/preview.react-preview': 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.eslint-config-bit-react': 0.0.794(@teambit/legacy@node_modules+@teambit+legacy)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9(@teambit/legacy@node_modules+@teambit+legacy) - '@testing-library/jest-dom': 5.16.5 - browserslist: 4.21.4 - core-js: 3.31.0 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + core-js: 3.44.0 graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.37) - pino-pretty: 4.5.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - typescript: 4.9.3 + graphql-request: 4.3.0(graphql@14.7.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + use-deep-compare: 1.3.0(react@18.3.1) transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - bufferutil - - canvas - - clean-css - - csso - - debug - encoding + + '@teambit/legacy-bit-id@0.0.421': + dependencies: + '@teambit/bit-error': 0.0.402 + '@teambit/component-version': 0.0.406 + decamelize: 1.2.0 + lodash: 4.17.21 + semver: 7.3.4 + + '@teambit/mdx.modules.mdx-compiler@0.0.500(react@18.3.1)': + dependencies: + '@mdx-js/mdx': 1.6.21 + '@teambit/node.deps-detectors.detective-es6': 0.0.1 + react: 18.3.1 + remark-admonitions: 1.2.1 + remark-frontmatter: 2.0.0 + unist-util-remove: 2.0.1 + unist-util-visit: 2.0.3 + vfile: 4.2.0 + yaml: 1.10.2 + transitivePeerDependencies: + - supports-color + + '@teambit/mdx.modules.mdx-loader@0.0.509(esbuild@0.14.28)(react@18.3.1)': + dependencies: + '@teambit/mdx.modules.mdx-compiler': 0.0.500(react@18.3.1) + loader-utils: 2.0.4 + memory-fs: 0.5.0 + webpack: 5.51.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@swc/core' - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client + - react - supports-color - - ts-node - - type-fest - uglify-js - - utf-8-validate - - vue-template-compiler - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - /@teambit/react.rendering.ssr@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-Wt4Y5BoIxJgeVaeJ16DRz1aojcc=, tarball: https://node-registry.bit.cloud/@teambit/react.rendering.ssr/-/@teambit-react.rendering.ssr-1.0.1.tgz} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/base-ui.utils.composer': registry.npmjs.org/@teambit/base-ui.utils.composer@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/ui-foundation.ui.rendering.html': 0.0.69(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - express: 4.18.1 - lodash.compact: 3.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - webpack-merge: 5.8.0 + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@testing-library/react' + - '@types/react' - /@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0)(@types/react@17.0.62)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-VsWB8twknI6I+t2/RLyUWIYWpao=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs-app/-/@teambit-react.ui.docs-app-0.0.200.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.code.react-playground': registry.npmjs.org/@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@17.0.62)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - classnames: 2.2.6 - core-js: 3.31.0 - jsx-to-string: 1.4.0 - lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - - encoding - - graphql - - typescript - dev: false - /@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0)(@types/react@18.2.14)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-VsWB8twknI6I+t2/RLyUWIYWpao=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs-app/-/@teambit-react.ui.docs-app-0.0.200.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.code.react-playground': registry.npmjs.org/@teambit/documenter.code.react-playground@4.0.1(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@18.2.14)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - classnames: 2.2.6 - core-js: 3.31.0 - jsx-to-string: 1.4.0 - lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - - encoding - - graphql + + '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - typescript - /@teambit/react.ui.docs.apply-providers@0.0.9(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-/uucZTxEpts5Vd+RTBmgUdB/ZHg=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.apply-providers/-/@teambit-react.ui.docs.apply-providers-0.0.9.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@teambit/base-ui.utils.composer': registry.npmjs.org/@teambit/base-ui.utils.composer@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript - /@teambit/react.ui.docs.compositions-carousel@0.0.12(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-n0rroqYrv8eOj7p4W7/Y9i8FvqU=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.compositions-carousel/-/@teambit-react.ui.docs.compositions-carousel-0.0.12.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@teambit/compositions.ui.compositions-overview': 0.0.3(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/react.ui.docs.apply-providers': 0.0.9(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - typescript - /@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-72/vBTx8WnHwjFaJDAroTo1TMm0=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.docs-content/-/@teambit-react.ui.docs.docs-content-0.0.11.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - typescript - dev: false - /@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-72/vBTx8WnHwjFaJDAroTo1TMm0=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.docs-content/-/@teambit-react.ui.docs.docs-content-0.0.11.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - typescript - /@teambit/react.ui.docs.properties-table@0.0.9(@types/react@17.0.62)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-XmFJKOdmn3TKn0poeelp2/Nv0KA=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.properties-table/-/@teambit-react.ui.docs.properties-table-0.0.9.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.property-table': 4.1.3(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: + - '@testing-library/react' - '@types/react' - - encoding - - graphql - typescript - dev: false - /@teambit/react.ui.docs.properties-table@0.0.9(@types/react@18.2.14)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-XmFJKOdmn3TKn0poeelp2/Nv0KA=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.docs.properties-table/-/@teambit-react.ui.docs.properties-table-0.0.9.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.2.0)(react@18.2.0) - '@teambit/documenter.ui.property-table': 4.1.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/documenter.ui.section': registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: + - '@testing-library/react' - '@types/react' - - encoding - - graphql - typescript - /@teambit/react.ui.error-fallback@0.0.118(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-4WqvFqd/1DnRh0cvwg4Nxfyss4Y=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.error-fallback/-/@teambit-react.ui.error-fallback-0.0.118.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@17.0.2(react@17.0.2))(react@18.3.1)': dependencies: - '@teambit/base-ui.styles.flex-center': registry.npmjs.org/@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.ui.icon-button': 1.0.16(react-dom@18.2.0)(react@18.2.0) - classnames: 2.2.6 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 17.0.2(react@17.0.2) - /@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.29(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-2KCEkwOu4F8nvFJ4CL+b4Os4d1M=, tarball: https://node-registry.bit.cloud/@teambit/react.ui.highlighter.component-metadata.bit-component-meta/-/@teambit-react.ui.highlighter.component-metadata.bit-component-meta-0.0.29.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@18.3.1(react@17.0.2))(react@17.0.2)': dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + core-js: 3.44.0 + react: 17.0.2 + react-dom: 18.3.1(react@17.0.2) - /@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.19.6)(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3)(webpack-dev-server@4.15.0): - resolution: {integrity: sha1-DolUnPS5rsTyCLbwmmTv9RJid1M=, tarball: https://node-registry.bit.cloud/@teambit/react.webpack.react-webpack/-/@teambit-react.webpack.react-webpack-0.0.28.tgz} + '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(webpack-dev-server@4.15.0)(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.2.0) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.2.0)(react@18.2.0) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(webpack@5.84.1) - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/node.deps-detectors.detective-es6@0.0.1': + dependencies: + '@teambit/node.deps-detectors.parser-helper': 0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a + node-source-walk: 5.0.2 + + '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': {} + + '@teambit/node.generator.node-starters@0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894': + dependencies: + comment-json: 4.2.3 + + '@teambit/node.generator.node-templates@0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d': {} + + '@teambit/node.node@0.0.38(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/node.generator.node-starters': 0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894 + '@teambit/node.generator.node-templates': 0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 0.0.9 + core-js: 3.44.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' + - '@babel/traverse' - '@swc/core' - - '@teambit/legacy' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros - bufferutil + - canvas - clean-css - csso - debug + - encoding + - esbuild - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - fibers + - graphql + - html-webpack-plugin - less + - node-notifier - node-sass - - react - - react-dom + - puppeteer - sass-embedded - sockjs-client - supports-color + - ts-node - type-fest - typescript - uglify-js @@ -7092,63 +13589,57 @@ packages: - webpack-hot-middleware - webpack-plugin-serve - /@teambit/react.webpack.react-webpack@0.0.28(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha1-DolUnPS5rsTyCLbwmmTv9RJid1M=, tarball: https://node-registry.bit.cloud/@teambit/react.webpack.react-webpack/-/@teambit-react.webpack.react-webpack-0.0.28.tgz} + '@teambit/node.node@0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@babel/preset-env': 7.20.2 - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(webpack-dev-server@4.15.0)(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.2.0) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.2.0)(react@18.2.0) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(webpack@5.84.1) - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/node.generator.node-starters': 0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894 + '@teambit/node.generator.node-templates': 0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) + '@teambit/typescript.typescript-compiler': 0.0.9 + core-js: 3.44.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' + - '@babel/traverse' - '@swc/core' - - '@teambit/legacy' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros - bufferutil + - canvas - clean-css - csso - debug + - encoding + - esbuild - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - fibers + - graphql + - html-webpack-plugin - less + - node-notifier - node-sass - - react - - react-dom + - puppeteer - sass-embedded - sockjs-client - supports-color + - ts-node - type-fest - typescript - uglify-js @@ -7159,10819 +13650,9055 @@ packages: - webpack-hot-middleware - webpack-plugin-serve - /@teambit/tests-results@0.0.104: - resolution: {integrity: sha512-JuXh+pXR1O437N2lE9n/C5pIrlune7pRwPjPQ9ZviCV/+EZW3xPjJJX2ehLHkhkL6bNpuSpSyUSb34xkXTlKaw==} - engines: {node: '>=12.22.0'} - - /@teambit/toolbox.fs.hard-link-directory@0.0.9: - resolution: {integrity: sha1-St+dQX5yyoZajHllbcoy69isL1I=, tarball: https://node-registry.bit.cloud/@teambit/toolbox.fs.hard-link-directory/-/@teambit-toolbox.fs.hard-link-directory-0.0.9.tgz} - engines: {node: '>=12.22.0'} - dependencies: - fs-extra: 10.0.0 - - /@teambit/toolbox.network.get-port@0.0.121: - resolution: {integrity: sha1-XuOaoA9egIDH+nPU155/XvGTIV4=, tarball: https://node-registry.bit.cloud/@teambit/toolbox.network.get-port/-/@teambit-toolbox.network.get-port-0.0.121.tgz} - engines: {node: '>=12.22.0'} - - /@teambit/typescript.typescript-compiler@0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3(@teambit/legacy@node_modules+@teambit+legacy): - resolution: {integrity: sha1-CKSrC8vK1N/iu1llKF2030BS+qc=, tarball: https://node-registry.bit.cloud/@teambit/typescript.typescript-compiler/-/@teambit-typescript.typescript-compiler-0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/compilation.compiler-task': 0.0.4 - '@teambit/legacy': link:node_modules/@teambit/legacy - fs-extra: 10.1.0 - get-tsconfig: 4.2.0 - globby: 11.1.0 - react: 18.2.0 - typescript: 4.9.3 - - /@teambit/typescript.typescript-compiler@0.0.9(@teambit/legacy@node_modules+@teambit+legacy): - resolution: {integrity: sha1-yICNOWviuahkxrDKpo36ntyzBk0=, tarball: https://node-registry.bit.cloud/@teambit/typescript.typescript-compiler/-/@teambit-typescript.typescript-compiler-0.0.9.tgz} - peerDependencies: - '@teambit/legacy': '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/compilation.compiler-task': 0.0.4 - '@teambit/legacy': link:node_modules/@teambit/legacy - fs-extra: 10.1.0 - get-tsconfig: 4.2.0 - globby: 11.1.0 - react: 18.2.0 - typescript: 4.9.3 - - /@teambit/ui-foundation.ui.pages.preview-not-found@0.0.79(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-YIElSDziq2TTNw3L4u8Qz3LP1MI=, tarball: https://node-registry.bit.cloud/@teambit/ui-foundation.ui.pages.preview-not-found/-/@teambit-ui-foundation.ui.pages.preview-not-found-0.0.79.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - /@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-GtGNKpFEb1NweBlDYujUkrg/Ybs=, tarball: https://node-registry.bit.cloud/@teambit/ui-foundation.ui.pages.static-error/-/@teambit-ui-foundation.ui.pages.static-error-0.0.86.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0)(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0) - '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.2.0)(react@18.2.0) - '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - dev: false - - /@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-GtGNKpFEb1NweBlDYujUkrg/Ybs=, tarball: https://node-registry.bit.cloud/@teambit/ui-foundation.ui.pages.static-error/-/@teambit-ui-foundation.ui.pages.static-error-0.0.86.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + '@teambit/preview.react-preview@0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) - '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.2.0)(react@18.2.0) - '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/core': 7.19.6 + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + object-hash: 3.0.0 + react: 18.3.1 + webpack: 5.84.1(esbuild@0.14.28) + webpack-dev-server: 4.15.0(webpack@5.84.1) transitivePeerDependencies: + - '@swc/core' - '@testing-library/react' - '@types/react' - - /@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-wLxfPsjKW+2sB5juwlbAA60Oirk=, tarball: https://node-registry.bit.cloud/@teambit/ui-foundation.ui.rendering.html/-/@teambit-ui-foundation.ui.rendering.html-0.0.69.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - /@teambit/ui-foundation.ui.rendering.html@0.0.80(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-ORPBHExFttraKEKYRouJ/4sMAiM=, tarball: https://node-registry.bit.cloud/@teambit/ui-foundation.ui.rendering.html/-/@teambit-ui-foundation.ui.rendering.html-0.0.80.tgz} - engines: {node: '>=12.22.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - /@teambit/webpack.modules.generate-style-loaders@0.0.110: - resolution: {integrity: sha1-5/UrCzkUflAvTtIr9rq0sCZyM4g=, tarball: https://node-registry.bit.cloud/@teambit/webpack.modules.generate-style-loaders/-/@teambit-webpack.modules.generate-style-loaders-0.0.110.tgz} - engines: {node: '>=12.22.0'} - - /@teambit/webpack.modules.style-regexps@0.0.139: - resolution: {integrity: sha1-imtAG5V7pNn9DG/bocygmAT5DYw=, tarball: https://node-registry.bit.cloud/@teambit/webpack.modules.style-regexps/-/@teambit-webpack.modules.style-regexps-0.0.139.tgz} - engines: {node: '>=12.22.0'} - - /@teambit/webpack.transformers.favicon-reload@0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb: - resolution: {integrity: sha1-55Mz4SnszeD67MeRr9pKUkenZX8=, tarball: https://node-registry.bit.cloud/@teambit/webpack.transformers.favicon-reload/-/@teambit-webpack.transformers.favicon-reload-0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb.tgz} - - /@teambit/webpack.webpack-bundler@0.0.9: - resolution: {integrity: sha1-zCt7rNHjLORy/exnScwJC3Z4gfE=, tarball: https://node-registry.bit.cloud/@teambit/webpack.webpack-bundler/-/@teambit-webpack.webpack-bundler-0.0.9.tgz} - dependencies: - '@teambit/bit-error': 0.0.402 - assert: 2.0.0 - browserify-zlib: 0.2.0 - buffer: 6.0.3 - compression-webpack-plugin: 10.0.0(webpack@5.84.1) - constants-browserify: 1.0.0 - crypto-browserify: 3.12.0 - css-loader: 6.7.1(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - domain-browser: 4.19.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) - https-browserify: 1.0.0 - lodash: 4.17.21 - os-browserify: 0.3.0 - p-map-series: 2.1.0 - path-browserify: 1.0.1 - process: 0.11.10 - punycode: 2.1.1 - querystring-es3: 0.2.1 - stream-browserify: 3.0.0 - stream-http: 3.2.0 - string_decoder: 1.3.0 - timers-browserify: 2.0.12 - tty-browserify: 0.0.1 - url: 0.11.0 - util: 0.12.3 - vm-browserify: 1.1.2 - webpack: 5.84.1 - webpack-assets-manifest: 5.1.0(webpack@5.84.1) - transitivePeerDependencies: - - '@swc/core' + - '@types/webpack' + - bufferutil - clean-css - csso + - debug + - encoding - esbuild - - uglify-js - - webpack-cli - - /@teambit/webpack.webpack-bundler@0.0.9(esbuild@0.14.28): - resolution: {integrity: sha1-zCt7rNHjLORy/exnScwJC3Z4gfE=, tarball: https://node-registry.bit.cloud/@teambit/webpack.webpack-bundler/-/@teambit-webpack.webpack-bundler-0.0.9.tgz} - dependencies: - '@teambit/bit-error': 0.0.402 - assert: 2.0.0 - browserify-zlib: 0.2.0 - buffer: 6.0.3 - compression-webpack-plugin: 10.0.0(webpack@5.84.1) - constants-browserify: 1.0.0 - crypto-browserify: 3.12.0 - css-loader: 6.7.1(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - domain-browser: 4.19.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) - https-browserify: 1.0.0 - lodash: 4.17.21 - os-browserify: 0.3.0 - p-map-series: 2.1.0 - path-browserify: 1.0.1 - process: 0.11.10 - punycode: 2.1.1 - querystring-es3: 0.2.1 - stream-browserify: 3.0.0 - stream-http: 3.2.0 - string_decoder: 1.3.0 - timers-browserify: 2.0.12 - tty-browserify: 0.0.1 - url: 0.11.0 - util: 0.12.3 - vm-browserify: 1.1.2 + - eslint + - fibers + - graphql + - less + - node-sass + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve + + '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': + dependencies: + '@babel/core': 7.19.6 + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + object-hash: 3.0.0 + react: 18.3.1 webpack: 5.84.1(esbuild@0.14.28) - webpack-assets-manifest: 5.1.0(webpack@5.84.1) + webpack-dev-server: 4.15.0(webpack@5.84.1) transitivePeerDependencies: - '@swc/core' + - '@testing-library/react' + - '@types/react' + - '@types/webpack' + - bufferutil - clean-css - csso + - debug + - encoding - esbuild + - eslint + - fibers + - graphql + - less + - node-sass + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript - uglify-js + - utf-8-validate + - vue-template-compiler - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve - /@teambit/webpack.webpack-dev-server@0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): - resolution: {integrity: sha1-aqO0LZ4umUOSJzMV6BCbV3XIDQ4=, tarball: https://node-registry.bit.cloud/@teambit/webpack.webpack-dev-server/-/@teambit-webpack.webpack-dev-server-0.0.16.tgz} - peerDependencies: - '@teambit/legacy': '*' - webpack: '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - webpack: - optional: true + '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)': dependencies: - '@teambit/legacy': link:node_modules/@teambit/legacy + '@babel/core': 7.19.6 + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@5.8.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - find-root: 1.1.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) object-hash: 3.0.0 - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + react: 18.3.1 webpack: 5.84.1(esbuild@0.14.28) webpack-dev-server: 4.15.0(webpack@5.84.1) transitivePeerDependencies: - '@swc/core' + - '@testing-library/react' + - '@types/react' + - '@types/webpack' - bufferutil - clean-css - csso - debug + - encoding - esbuild - eslint + - fibers + - graphql + - less + - node-sass + - react-dom + - sass-embedded + - sockjs-client - supports-color + - type-fest - typescript - uglify-js - utf-8-validate - vue-template-compiler - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve - /@teambit/webpack.webpack-dev-server@0.0.16(@teambit/legacy@node_modules+@teambit+legacy)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): - resolution: {integrity: sha1-aqO0LZ4umUOSJzMV6BCbV3XIDQ4=, tarball: https://node-registry.bit.cloud/@teambit/webpack.webpack-dev-server/-/@teambit-webpack.webpack-dev-server-0.0.16.tgz} - peerDependencies: - '@teambit/legacy': '*' - webpack: '*' - peerDependenciesMeta: - '@teambit/legacy': - optional: true - webpack: - optional: true + '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@teambit/legacy': link:node_modules/@teambit/legacy - '@teambit/webpack.webpack-bundler': 0.0.9 - find-root: 1.1.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) + '@babel/core': 7.19.6 + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/react.mounter': 0.0.10 + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) object-hash: 3.0.0 - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - webpack: 5.84.1 + react: 18.3.1 + webpack: 5.84.1(esbuild@0.14.28) webpack-dev-server: 4.15.0(webpack@5.84.1) transitivePeerDependencies: - '@swc/core' + - '@testing-library/react' + - '@types/react' + - '@types/webpack' - bufferutil - clean-css - csso - debug + - encoding - esbuild - eslint + - fibers + - graphql + - less + - node-sass + - react-dom + - sass-embedded + - sockjs-client - supports-color + - type-fest - typescript - uglify-js - utf-8-validate - vue-template-compiler - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve - /@testing-library/dom@8.20.1: - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/runtime': 7.20.0 - '@types/aria-query': 5.0.1 - aria-query: 5.1.3 - chalk: 4.1.2 - dom-accessibility-api: 0.5.16 - lz-string: 1.5.0 - pretty-format: 27.5.1 - - /@testing-library/jest-dom@5.16.5: - resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.12.9)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@adobe/css-tools': 4.2.0 - '@babel/runtime': 7.20.0 - '@types/testing-library__jest-dom': 5.9.5 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.5.16 + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + '@prerenderer/renderer-jsdom': 1.1.9 + '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) + '@teambit/bit-error': 0.0.402 + '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.12.9)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/toolbox.network.get-port': 0.0.121 + '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + express: 4.18.2 + fs-extra: 10.1.0 lodash: 4.17.21 - redent: 3.0.0 - - /@testing-library/react-hooks@8.0.1(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} - engines: {node: '>=12'} - peerDependencies: - '@types/react': '*' - react: '*' - react-dom: '*' - react-test-renderer: '*' - peerDependenciesMeta: - '@types/react': - optional: true - react: - optional: true - react-dom: - optional: true - react-test-renderer: - optional: true - dependencies: - '@babel/runtime': 7.20.0 - '@types/react': 18.2.14 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) - dev: false - - /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} - engines: {node: '>=12'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@babel/runtime': 7.20.0 - '@testing-library/dom': 8.20.1 - '@types/react-dom': 18.2.6 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - /@types/aria-query@5.0.1: - resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} - - /@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} - dependencies: - '@babel/parser': 7.22.5 - '@babel/types': 7.22.5 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.20.1 - - /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} - dependencies: - '@babel/types': 7.22.5 - - /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} - dependencies: - '@babel/parser': 7.22.5 - '@babel/types': 7.22.5 - - /@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==} - dependencies: - '@babel/types': 7.22.5 - - /@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} - dependencies: - '@types/connect': 3.4.35 - '@types/node': 16.18.37 - - /@types/bonjour@3.5.10: - resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} - dependencies: - '@types/node': 16.18.37 - - /@types/buble@0.20.1: - resolution: {integrity: sha512-itmN3lGSTvXg9IImY5j290H+n0B3PpZST6AgEfJJDXfaMx2cdJJZro3/Ay+bZZdIAa25Z5rnoo9rHiPCbANZoQ==} - dependencies: - magic-string: 0.25.9 - - /@types/connect-history-api-fallback@1.5.0: - resolution: {integrity: sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==} - dependencies: - '@types/express-serve-static-core': 4.17.35 - '@types/node': 16.18.37 - - /@types/connect@3.4.35: - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} - dependencies: - '@types/node': 16.18.37 - - /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} - dependencies: - '@types/eslint': 8.40.2 - '@types/estree': 1.0.1 - - /@types/eslint@8.40.2: - resolution: {integrity: sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==} - dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 - - /@types/estree@0.0.50: - resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} - - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} - - /@types/express-serve-static-core@4.17.35: - resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==} - dependencies: - '@types/node': 16.18.37 - '@types/qs': 6.9.7 - '@types/range-parser': 1.2.4 - '@types/send': 0.17.1 - - /@types/express@4.17.17: - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} - dependencies: - '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.35 - '@types/qs': 6.9.7 - '@types/serve-static': 1.15.2 - - /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} - dependencies: - '@types/node': 16.18.37 - - /@types/hast@2.3.4: - resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} - dependencies: - '@types/unist': 2.0.6 - - /@types/html-minifier-terser@6.1.0: - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - - /@types/http-errors@2.0.1: - resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==} - - /@types/http-proxy@1.17.11: - resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==} - dependencies: - '@types/node': 16.18.37 - - /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} - - /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} - dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - - /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} - dependencies: - '@types/istanbul-lib-report': 3.0.0 - - /@types/jest@26.0.24: - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} - dependencies: - jest-diff: 26.6.2 - pretty-format: 26.6.2 - dev: true - - /@types/jest@29.5.2: - resolution: {integrity: sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==} - dependencies: - expect: 29.5.0 - pretty-format: 29.5.0 - - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - dependencies: - '@types/node': 16.18.37 - '@types/tough-cookie': 4.0.2 - parse5: 7.1.2 - - /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} - - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - - /@types/mdast@3.0.11: - resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==} - dependencies: - '@types/unist': 2.0.6 - - /@types/mime@1.3.2: - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} - - /@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} - - /@types/node@12.20.4: - resolution: {integrity: sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==} - - /@types/node@16.18.37: - resolution: {integrity: sha512-ql+4dw4PlPFBP495k8JzUX/oMNRI2Ei4PrMHgj8oT4VhGlYUzF4EYr0qk2fW+XBVGIrq8Zzk13m4cvyXZuv4pA==} - - /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - - /@types/parse5@5.0.3: - resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} - - /@types/prettier@2.7.3: - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - - /@types/qs@6.9.7: - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - - /@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - - /@types/react-dom@17.0.20: - resolution: {integrity: sha512-4pzIjSxDueZZ90F52mU3aPoogkHIoSIDG+oQ+wQK7Cy2B9S+MvOqY0uEA/qawKz381qrEDkvpwyt8Bm31I8sbA==} - dependencies: - '@types/react': 17.0.62 - dev: true - - /@types/react-dom@18.2.6: - resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==} - dependencies: - '@types/react': 18.2.14 - - /@types/react@17.0.62: - resolution: {integrity: sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - - /@types/react@18.2.14: - resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - - /@types/retry@0.12.0: - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - - /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} - - /@types/send@0.17.1: - resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} - dependencies: - '@types/mime': 1.3.2 - '@types/node': 16.18.37 + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + url-join: 4.0.0 + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/react' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - less + - node-sass + - puppeteer + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@types/serve-index@1.9.1: - resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} + '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@types/express': 4.17.17 + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + '@prerenderer/renderer-jsdom': 1.1.9 + '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) + '@teambit/bit-error': 0.0.402 + '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/toolbox.network.get-port': 0.0.121 + '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + express: 4.18.2 + fs-extra: 10.1.0 + lodash: 4.17.21 + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + url-join: 4.0.0 + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/react' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - less + - node-sass + - puppeteer + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@types/serve-static@1.15.2: - resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==} + '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@17.0.87)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': dependencies: - '@types/http-errors': 2.0.1 - '@types/mime': 3.0.1 - '@types/node': 16.18.37 + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + '@prerenderer/renderer-jsdom': 1.1.9 + '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@5.8.3))(webpack@5.84.1) + '@teambit/bit-error': 0.0.402 + '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/toolbox.network.get-port': 0.0.121 + '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + express: 4.18.2 + fs-extra: 10.1.0 + lodash: 4.17.21 + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + url-join: 4.0.0 + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/react' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - less + - node-sass + - puppeteer + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@types/sockjs@0.3.33: - resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} + '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@types/node': 16.18.37 - - /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) + '@prerenderer/renderer-jsdom': 1.1.9 + '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) + '@teambit/bit-error': 0.0.402 + '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/toolbox.network.get-port': 0.0.121 + '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + express: 4.18.2 + fs-extra: 10.1.0 + lodash: 4.17.21 + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + url-join: 4.0.0 + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/react' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - less + - node-sass + - puppeteer + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@types/testing-library__jest-dom@5.9.5: - resolution: {integrity: sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==} + '@teambit/react.babel.bit-react-transformer@0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@types/jest': 29.5.2 - - /@types/tough-cookie@4.0.2: - resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} - - /@types/unist@2.0.6: - resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} + '@babel/core': 7.19.6 + '@babel/types': 7.20.0 + '@teambit/component-id': 0.0.425 + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + find-root: 1.1.0 + fs-extra: 10.0.0 + memoizee: 0.4.15 + transitivePeerDependencies: + - react + - react-dom + - supports-color - /@types/ws@8.5.5: - resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} + '@teambit/react.eslint-config-bit-react@0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@types/node': 16.18.37 - - /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + eslint: 7.32.0 + eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + eslint-config-prettier: 8.5.0(eslint@7.32.0) + transitivePeerDependencies: + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - /@types/yargs@15.0.15: - resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} + '@teambit/react.generator.react-starters@0.0.12': dependencies: - '@types/yargs-parser': 21.0.0 - dev: true + comment-json: 4.2.3 - /@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} - dependencies: - '@types/yargs-parser': 21.0.0 + '@teambit/react.generator.react-templates@0.0.10': {} - /@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0): - resolution: {integrity: sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - typescript: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - typescript: - optional: true + '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': dependencies: - '@typescript-eslint/experimental-utils': 4.13.0 - '@typescript-eslint/parser': 4.13.0 - '@typescript-eslint/scope-manager': 4.13.0 - debug: 4.3.4 - functional-red-black-tree: 1.0.1 - lodash: 4.17.21 - regexpp: 3.2.0 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) + '@babel/preset-react': 7.18.6(@babel/core@7.12.9) + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@testing-library/jest-dom': 5.16.5 + jest-environment-jsdom: 29.3.1 + react-app-polyfill: 3.0.0 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@types/node' + - babel-plugin-macros + - bufferutil + - canvas + - node-notifier - supports-color - dev: false + - ts-node + - utf-8-validate - /@typescript-eslint/eslint-plugin@4.29.3: - resolution: {integrity: sha512-tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - typescript: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - typescript: - optional: true + '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0)': dependencies: - '@typescript-eslint/experimental-utils': 4.29.3 - '@typescript-eslint/scope-manager': 4.29.3 - debug: 4.3.4 - functional-red-black-tree: 1.0.1 - regexpp: 3.2.0 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) + '@babel/preset-react': 7.18.6(@babel/core@7.28.0) + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + '@testing-library/jest-dom': 5.16.5 + jest-environment-jsdom: 29.3.1 + react-app-polyfill: 3.0.0 transitivePeerDependencies: - - supports-color - dev: false - - /@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1)(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - typescript: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/type-utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - debug: 4.3.4 - eslint: 7.32.0 - functional-red-black-tree: 1.0.1 - ignore: 5.2.4 - regexpp: 3.2.0 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + - '@babel/core' + - '@babel/traverse' + - '@types/node' + - babel-plugin-macros + - bufferutil + - canvas + - node-notifier + - supports-color + - ts-node + - utf-8-validate + + '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': + dependencies: + '@babel/preset-react': 7.18.6(@babel/core@7.28.0) + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@testing-library/jest-dom': 5.16.5 + jest-environment-jsdom: 29.3.1 + react-app-polyfill: 3.0.0 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@types/node' + - babel-plugin-macros + - bufferutil + - canvas + - node-notifier - supports-color + - ts-node + - utf-8-validate - /@typescript-eslint/experimental-utils@4.13.0: - resolution: {integrity: sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + '@teambit/react.mounter@0.0.10': dependencies: - '@types/json-schema': 7.0.12 - '@typescript-eslint/scope-manager': 4.13.0 - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/typescript-estree': 4.13.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + + '@teambit/react.react-env@0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.12.9)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + '@teambit/react.generator.react-starters': 0.0.12 + '@teambit/react.generator.react-templates': 0.0.10 + '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/react.mounter': 0.0.10 + '@teambit/typescript.typescript-compiler': 0.0.9 + '@testing-library/jest-dom': 5.16.5 + browserslist: 4.21.4 + core-js: 3.44.0 + eslint: 7.32.0 + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-mdx: 1.13.0(eslint@7.32.0) + eslint-plugin-react: 7.22.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + pino-pretty: 4.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.3 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client - supports-color - - typescript - dev: false + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@typescript-eslint/experimental-utils@4.29.3: - resolution: {integrity: sha512-ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': dependencies: - '@types/json-schema': 7.0.12 - '@typescript-eslint/scope-manager': 4.29.3 - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/typescript-estree': 4.29.3 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + '@teambit/react.generator.react-starters': 0.0.12 + '@teambit/react.generator.react-templates': 0.0.10 + '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/react.mounter': 0.0.10 + '@teambit/typescript.typescript-compiler': 0.0.9 + '@testing-library/jest-dom': 5.16.5 + browserslist: 4.21.4 + core-js: 3.44.0 + eslint: 7.32.0 + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-mdx: 1.13.0(eslint@7.32.0) + eslint-plugin-react: 7.22.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + pino-pretty: 4.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.3 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client - supports-color - - typescript - dev: false + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@12.20.4)(@types/react@17.0.87)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': dependencies: - '@types/json-schema': 7.0.12 - '@typescript-eslint/scope-manager': 4.33.0 - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.3) + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@17.0.87)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) + '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + '@teambit/react.generator.react-starters': 0.0.12 + '@teambit/react.generator.react-templates': 0.0.10 + '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + '@teambit/react.mounter': 0.0.10 + '@teambit/typescript.typescript-compiler': 0.0.9 + '@testing-library/jest-dom': 5.16.5 + browserslist: 4.21.4 + core-js: 3.44.0 eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-mdx: 1.13.0(eslint@7.32.0) + eslint-plugin-react: 7.22.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + graphql: 14.7.0 + jest: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + pino-pretty: 4.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.3 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client - supports-color - - typescript + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@typescript-eslint/parser@4.13.0: - resolution: {integrity: sha512-KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true + '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': dependencies: - '@typescript-eslint/scope-manager': 4.13.0 - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/typescript-estree': 4.13.0 - debug: 4.3.4 + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 0.0.10 + '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/defender.prettier-formatter': 0.0.6 + '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) + '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) + '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) + '@teambit/react.generator.react-starters': 0.0.12 + '@teambit/react.generator.react-templates': 0.0.10 + '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + '@teambit/react.mounter': 0.0.10 + '@teambit/typescript.typescript-compiler': 0.0.9 + '@testing-library/jest-dom': 5.16.5 + browserslist: 4.21.4 + core-js: 3.44.0 + eslint: 7.32.0 + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-mdx: 1.13.0(eslint@7.32.0) + eslint-plugin-react: 7.22.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + graphql: 14.7.0 + jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + pino-pretty: 4.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.3 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@swc/core' + - '@testing-library/react' + - '@types/express' + - '@types/node' + - '@types/react' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - html-webpack-plugin + - less + - node-notifier + - node-sass + - puppeteer + - sass-embedded + - sockjs-client - supports-color - dev: false + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@typescript-eslint/parser@4.4.1(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-S0fuX5lDku28Au9REYUsV+hdJpW/rNW0gWlc4SXzF/kdrRaAVX9YCxKpziH7djeWT/HFAjLZcnY7NJD8xTeUEg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true + '@teambit/react.rendering.ssr@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@typescript-eslint/scope-manager': 4.4.1 - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/typescript-estree': 4.4.1(typescript@4.9.3) - debug: 4.3.4 - eslint: 7.32.0 - typescript: 4.9.3 + '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + express: 4.18.1 + lodash.compact: 3.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + webpack-merge: 5.8.0 transitivePeerDependencies: - supports-color - /@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true + '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) - debug: 4.3.4 - eslint: 7.32.0 - typescript: 4.9.3 + '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + classnames: 2.2.6 + core-js: 3.44.0 + jsx-to-string: 1.4.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - supports-color - - /@typescript-eslint/scope-manager@4.13.0: - resolution: {integrity: sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/visitor-keys': 4.13.0 - dev: false + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript - /@typescript-eslint/scope-manager@4.29.3: - resolution: {integrity: sha512-x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/visitor-keys': 4.29.3 - dev: false + '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + classnames: 2.2.6 + core-js: 3.44.0 + jsx-to-string: 1.4.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript - /@typescript-eslint/scope-manager@4.33.0: - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 + '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + classnames: 2.2.6 + core-js: 3.44.0 + jsx-to-string: 1.4.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript - /@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} + '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 + '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + classnames: 2.2.6 + core-js: 3.44.0 + jsx-to-string: 1.4.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' + - encoding + - graphql + - typescript - /@typescript-eslint/scope-manager@5.35.1: - resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@teambit/react.ui.docs.apply-providers@0.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 + '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) - /@typescript-eslint/type-utils@5.35.1(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true + '@teambit/react.ui.docs.compositions-carousel@0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - debug: 4.3.4 - eslint: 7.32.0 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/types@4.13.0: - resolution: {integrity: sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: false - - /@typescript-eslint/types@4.29.3: - resolution: {integrity: sha512-s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: false - - /@typescript-eslint/types@4.33.0: - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - /@typescript-eslint/types@4.4.1: - resolution: {integrity: sha512-KNDfH2bCyax5db+KKIZT4rfA8rEk5N0EJ8P0T5AJjo5xrV26UAzaiqoJCxeaibqc0c/IvZxp7v2g3difn2Pn3w==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@teambit/compositions.ui.compositions-overview': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.apply-providers': 0.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@typescript-eslint/types@5.35.1: - resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - /@typescript-eslint/typescript-estree@4.13.0: - resolution: {integrity: sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/visitor-keys': 4.13.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 lodash: 4.17.21 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) transitivePeerDependencies: - - supports-color - dev: false + - '@testing-library/react' + - '@types/react' + - typescript - /@typescript-eslint/typescript-estree@4.29.3: - resolution: {integrity: sha512-45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/visitor-keys': 4.29.3 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) transitivePeerDependencies: - - supports-color - dev: false + - '@testing-library/react' + - '@types/react' + - typescript - /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.3): - resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@testing-library/react' + - '@types/react' + - typescript - /@typescript-eslint/typescript-estree@4.4.1(typescript@4.9.3): - resolution: {integrity: sha512-wP/V7ScKzgSdtcY1a0pZYBoCxrCstLrgRQ2O9MmCUZDtmgxCO/TCqOTGRVwpP4/2hVfqMz/Vw1ZYrG8cVxvN3g==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 lodash: 4.17.21 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@testing-library/react' + - '@types/react' + - typescript - /@typescript-eslint/typescript-estree@5.35.1(typescript@4.9.3): - resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.3 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.property-table': 4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@types/react' + - encoding + - graphql + - typescript - /@typescript-eslint/utils@5.35.1(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': dependencies: - '@types/json-schema': 7.0.12 - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.property-table': 4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@types/react' + - encoding + - graphql - typescript - /@typescript-eslint/visitor-keys@4.13.0: - resolution: {integrity: sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.13.0 - eslint-visitor-keys: 2.1.0 - dev: false - - /@typescript-eslint/visitor-keys@4.29.3: - resolution: {integrity: sha512-MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.29.3 - eslint-visitor-keys: 2.1.0 - dev: false - - /@typescript-eslint/visitor-keys@4.33.0: - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dependencies: - '@typescript-eslint/types': 4.33.0 - eslint-visitor-keys: 2.1.0 - - /@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} + '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': dependencies: - '@typescript-eslint/types': 4.4.1 - eslint-visitor-keys: 2.1.0 + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.property-table': 4.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - encoding + - graphql + - typescript - /@typescript-eslint/visitor-keys@5.35.1: - resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@teambit/react.ui.error-fallback@0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@typescript-eslint/types': 5.35.1 - eslint-visitor-keys: 3.4.1 + '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) - /@webassemblyjs/ast@1.11.1: - resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/helper-numbers': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.12.9)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - - /@webassemblyjs/floating-point-hex-parser@1.11.1: - resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - /@webassemblyjs/helper-api-error@1.11.1: - resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - - /@webassemblyjs/helper-buffer@1.11.1: - resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - - /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + '@babel/preset-env': 7.20.2(@babel/core@7.12.9) + '@babel/preset-react': 7.18.6(@babel/core@7.12.9) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) + '@svgr/webpack': 6.5.1 + '@teambit/component-id': 0.0.425 + '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) + '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.modules.generate-style-loaders': 0.0.110 + '@teambit/webpack.modules.style-regexps': 0.0.139 + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + babel-loader: 9.1.0(@babel/core@7.12.9)(webpack@5.84.1) + babel-preset-react-app: 10.0.1 + browserslist: 4.21.4 + css-loader: 6.7.2(webpack@5.84.1) + css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) + esbuild: 0.14.28 + less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) + lodash: 4.17.21 + mini-css-extract-plugin: 2.7.0(webpack@5.84.1) + new-url-loader: 0.1.1(webpack@5.84.1) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + react-error-overlay: 6.0.9 + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.56.1 + sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) + source-map-loader: 4.0.1(webpack@5.84.1) + strip-ansi: 6.0.0 + style-loader: 3.3.1(webpack@5.84.1) + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@types/webpack' + - bufferutil + - clean-css + - csso + - debug + - eslint + - fibers + - less + - node-sass + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@webassemblyjs/helper-numbers@1.11.1: - resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} + '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.1 - '@webassemblyjs/helper-api-error': 1.11.1 - '@xtuc/long': 4.2.2 + '@babel/preset-env': 7.20.2(@babel/core@7.19.6) + '@babel/preset-react': 7.18.6(@babel/core@7.19.6) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) + '@svgr/webpack': 6.5.1 + '@teambit/component-id': 0.0.425 + '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) + '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.modules.generate-style-loaders': 0.0.110 + '@teambit/webpack.modules.style-regexps': 0.0.139 + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) + babel-preset-react-app: 10.0.1 + browserslist: 4.21.4 + css-loader: 6.7.2(webpack@5.84.1) + css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) + esbuild: 0.14.28 + less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) + lodash: 4.17.21 + mini-css-extract-plugin: 2.7.0(webpack@5.84.1) + new-url-loader: 0.1.1(webpack@5.84.1) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + react-error-overlay: 6.0.9 + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.56.1 + sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) + source-map-loader: 4.0.1(webpack@5.84.1) + strip-ansi: 6.0.0 + style-loader: 3.3.1(webpack@5.84.1) + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@types/webpack' + - bufferutil + - clean-css + - csso + - debug + - eslint + - fibers + - less + - node-sass + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 - - /@webassemblyjs/helper-wasm-bytecode@1.11.1: - resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + '@babel/preset-env': 7.20.2(@babel/core@7.19.6) + '@babel/preset-react': 7.18.6(@babel/core@7.19.6) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) + '@svgr/webpack': 6.5.1 + '@teambit/component-id': 0.0.425 + '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) + '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.modules.generate-style-loaders': 0.0.110 + '@teambit/webpack.modules.style-regexps': 0.0.139 + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) + babel-preset-react-app: 10.0.1 + browserslist: 4.21.4 + css-loader: 6.7.2(webpack@5.84.1) + css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) + esbuild: 0.14.28 + less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) + lodash: 4.17.21 + mini-css-extract-plugin: 2.7.0(webpack@5.84.1) + new-url-loader: 0.1.1(webpack@5.84.1) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + react-error-overlay: 6.0.9 + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.56.1 + sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) + source-map-loader: 4.0.1(webpack@5.84.1) + strip-ansi: 6.0.0 + style-loader: 3.3.1(webpack@5.84.1) + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@types/webpack' + - bufferutil + - clean-css + - csso + - debug + - eslint + - fibers + - less + - node-sass + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@webassemblyjs/helper-wasm-section@1.11.1: - resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} + '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 + '@babel/preset-env': 7.20.2(@babel/core@7.28.0) + '@babel/preset-react': 7.18.6(@babel/core@7.28.0) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) + '@svgr/webpack': 6.5.1 + '@teambit/component-id': 0.0.425 + '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) + '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.modules.generate-style-loaders': 0.0.110 + '@teambit/webpack.modules.style-regexps': 0.0.139 + '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + babel-loader: 9.1.0(@babel/core@7.28.0)(webpack@5.84.1) + babel-preset-react-app: 10.0.1 + browserslist: 4.21.4 + css-loader: 6.7.2(webpack@5.84.1) + css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) + esbuild: 0.14.28 + less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) + lodash: 4.17.21 + mini-css-extract-plugin: 2.7.0(webpack@5.84.1) + new-url-loader: 0.1.1(webpack@5.84.1) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + react-error-overlay: 6.0.9 + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.56.1 + sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) + source-map-loader: 4.0.1(webpack@5.84.1) + strip-ansi: 6.0.0 + style-loader: 3.3.1(webpack@5.84.1) + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - '@babel/core' + - '@swc/core' + - '@types/webpack' + - bufferutil + - clean-css + - csso + - debug + - eslint + - fibers + - less + - node-sass + - react + - react-dom + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 + '@teambit/tests-results@0.0.104': {} - /@webassemblyjs/ieee754@1.11.1: - resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} + '@teambit/toolbox.fs.hard-link-directory@0.0.15': dependencies: - '@xtuc/ieee754': 1.2.0 + fs-extra: 10.0.0 + resolve-link-target: 1.0.1 + symlink-dir: 5.2.1 - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + '@teambit/toolbox.fs.hard-link-directory@0.0.9': dependencies: - '@xtuc/ieee754': 1.2.0 + fs-extra: 10.0.0 - /@webassemblyjs/leb128@1.11.1: - resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} + '@teambit/toolbox.network.get-port@0.0.121': {} + + '@teambit/typescript.typescript-compiler@0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3': dependencies: - '@xtuc/long': 4.2.2 + '@teambit/bit-error': 0.0.402 + '@teambit/compilation.compiler-task': 0.0.4 + fs-extra: 10.1.0 + get-tsconfig: 4.2.0 + globby: 11.1.0 + react: 18.2.0 + typescript: 4.9.3 - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + '@teambit/typescript.typescript-compiler@0.0.9': dependencies: - '@xtuc/long': 4.2.2 + '@teambit/bit-error': 0.0.402 + '@teambit/compilation.compiler-task': 0.0.4 + fs-extra: 10.1.0 + get-tsconfig: 4.2.0 + globby: 11.1.0 + react: 18.2.0 + typescript: 4.9.3 - /@webassemblyjs/utf8@1.11.1: - resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} + '@teambit/typescript.typescript-compiler@2.0.16': + dependencies: + '@teambit/bit-error': 0.0.402 + '@teambit/compilation.compiler-task': 1.0.6 + comment-json: 4.2.3 + fs-extra: 11.3.0 + get-tsconfig: 4.2.0 + globby: 11.1.0 + lodash: 4.17.21 + normalize-path: 3.0.0 + react: 18.2.0 + typescript: 5.8.3 - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@webassemblyjs/wasm-edit@1.11.1: - resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} + '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/helper-wasm-section': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 - '@webassemblyjs/wasm-opt': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - '@webassemblyjs/wast-printer': 1.11.1 + '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' - /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 + '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' - /@webassemblyjs/wasm-gen@1.11.1: - resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} + '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/ieee754': 1.11.1 - '@webassemblyjs/leb128': 1.11.1 - '@webassemblyjs/utf8': 1.11.1 + '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@testing-library/react' + - '@types/react' - /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + '@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@webassemblyjs/wasm-opt@1.11.1: - resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} + '@teambit/ui-foundation.ui.rendering.html@0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/webpack.modules.generate-style-loaders@0.0.110': {} + + '@teambit/webpack.modules.style-regexps@0.0.139': {} - /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + '@teambit/webpack.transformers.favicon-reload@0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb': {} + + '@teambit/webpack.webpack-bundler@0.0.9(esbuild@0.14.28)': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 + '@teambit/bit-error': 0.0.402 + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 10.0.0(webpack@5.84.1) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.84.1) + css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) + domain-browser: 4.19.0 + html-webpack-plugin: 5.5.0(webpack@5.84.1) + https-browserify: 1.0.0 + lodash: 4.17.21 + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.0 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.84.1(esbuild@0.14.28) + webpack-assets-manifest: 5.1.0(webpack@5.84.1) + transitivePeerDependencies: + - '@swc/core' + - clean-css + - csso + - esbuild + - uglify-js + - webpack-cli - /@webassemblyjs/wasm-parser@1.11.1: - resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} + '@teambit/webpack.webpack-dev-server@0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1)': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-api-error': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/ieee754': 1.11.1 - '@webassemblyjs/leb128': 1.11.1 - '@webassemblyjs/utf8': 1.11.1 + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + find-root: 1.1.0 + html-webpack-plugin: 5.5.0(webpack@5.84.1) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + webpack-dev-server: 4.15.0(webpack@5.84.1) + transitivePeerDependencies: + - '@swc/core' + - bufferutil + - clean-css + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli - /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + '@teambit/webpack.webpack-dev-server@0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1)': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + find-root: 1.1.0 + html-webpack-plugin: 5.5.0(webpack@5.84.1) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + webpack: 5.84.1(esbuild@0.14.28) + webpack-dev-server: 4.15.0(webpack@5.84.1) + transitivePeerDependencies: + - '@swc/core' + - bufferutil + - clean-css + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli - /@webassemblyjs/wast-printer@1.11.1: - resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} + '@testing-library/dom@8.20.1': dependencies: - '@webassemblyjs/ast': 1.11.1 - '@xtuc/long': 4.2.2 + '@babel/code-frame': 7.27.1 + '@babel/runtime': 7.20.0 + '@types/aria-query': 5.0.4 + aria-query: 5.1.3 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 - /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + '@testing-library/jest-dom@5.16.5': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 + '@adobe/css-tools': 4.4.3 + '@babel/runtime': 7.20.0 + '@types/testing-library__jest-dom': 5.9.5 + aria-query: 5.3.2 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.16 + lodash: 4.17.21 + redent: 3.0.0 - /@wry/context@0.6.1: - resolution: {integrity: sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==} - engines: {node: '>=8'} + '@testing-library/react-hooks@8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - tslib: 2.6.0 - dev: false + '@babel/runtime': 7.20.0 + react: 18.3.1 + react-error-boundary: 3.1.4(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.23 + react-dom: 18.3.1(react@18.3.1) - /@wry/context@0.7.3: - resolution: {integrity: sha512-Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA==} - engines: {node: '>=8'} + '@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - tslib: 2.6.0 - dev: false + '@babel/runtime': 7.20.0 + '@testing-library/dom': 8.20.1 + '@types/react-dom': 17.0.26(@types/react@18.3.23) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - /@wry/equality@0.5.6: - resolution: {integrity: sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA==} - engines: {node: '>=8'} + '@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - tslib: 2.6.0 - dev: false + '@babel/runtime': 7.20.0 + '@testing-library/dom': 8.20.1 + '@types/react-dom': 18.3.7(@types/react@17.0.87) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - /@wry/trie@0.3.2: - resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==} - engines: {node: '>=8'} + '@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - tslib: 2.6.0 - dev: false + '@babel/runtime': 7.20.0 + '@testing-library/dom': 8.20.1 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + '@tootallnate/once@2.0.0': {} - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + '@tootallnate/quickjs-emscripten@0.23.0': + optional: true - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + '@trysound/sax@0.2.0': {} - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} - dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 + '@types/aria-query@5.0.4': {} - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + '@types/babel__core@7.20.5': dependencies: - acorn: 8.9.0 - acorn-walk: 8.2.0 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.7 - /acorn-import-assertions@1.9.0(acorn@8.9.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: '*' - peerDependenciesMeta: - acorn: - optional: true + '@types/babel__generator@7.27.0': dependencies: - acorn: 8.9.0 + '@babel/types': 7.28.1 - /acorn-jsx@5.3.2(acorn@7.4.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: '*' - peerDependenciesMeta: - acorn: - optional: true + '@types/babel__template@7.4.4': dependencies: - acorn: 7.4.1 - - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} - - /acorn@5.7.4: - resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} - engines: {node: '>=0.4.0'} - hasBin: true - - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 - /acorn@8.9.0: - resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} - engines: {node: '>=0.4.0'} - hasBin: true + '@types/babel__traverse@7.20.7': + dependencies: + '@babel/types': 7.28.1 - /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + '@types/body-parser@1.19.6': + dependencies: + '@types/connect': 3.4.38 + '@types/node': 16.18.126 - /adjust-sourcemap-loader@4.0.0: - resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} - engines: {node: '>=8.9'} + '@types/bonjour@3.5.13': dependencies: - loader-utils: 2.0.4 - regex-parser: 2.2.11 + '@types/node': 16.18.126 - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + '@types/buble@0.20.5': dependencies: - debug: 4.3.4 - transitivePeerDependencies: - - supports-color + magic-string: 0.25.9 - /ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependenciesMeta: - ajv: - optional: true + '@types/connect-history-api-fallback@1.5.4': dependencies: - ajv: 8.12.0 + '@types/express-serve-static-core': 5.0.7 + '@types/node': 16.18.126 - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: '*' - peerDependenciesMeta: - ajv: - optional: true + '@types/connect@3.4.38': dependencies: - ajv: 6.12.6 + '@types/node': 16.18.126 - /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: '*' - peerDependenciesMeta: - ajv: - optional: true + '@types/eslint-scope@3.7.7': dependencies: - ajv: 8.12.0 - fast-deep-equal: 3.1.3 + '@types/eslint': 9.6.1 + '@types/estree': 1.0.8 - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + '@types/eslint@9.6.1': dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + + '@types/estree@0.0.50': {} + + '@types/estree@1.0.8': {} - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + '@types/express-serve-static-core@4.19.6': dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 + '@types/node': 16.18.126 + '@types/qs': 6.14.0 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.5 - /amdefine@1.0.1: - resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} - engines: {node: '>=0.4.2'} + '@types/express-serve-static-core@5.0.7': + dependencies: + '@types/node': 16.18.126 + '@types/qs': 6.14.0 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.5 - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + '@types/express@4.17.23': + dependencies: + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 4.19.6 + '@types/qs': 6.14.0 + '@types/serve-static': 1.15.8 - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + '@types/graceful-fs@4.1.9': dependencies: - type-fest: 0.21.3 + '@types/node': 16.18.126 - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + '@types/html-minifier-terser@6.1.0': {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 + '@types/http-errors@2.0.5': {} - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + '@types/http-proxy@1.17.16': dependencies: - color-convert: 2.0.1 + '@types/node': 16.18.126 - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + '@types/istanbul-lib-coverage@2.0.6': {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + '@types/istanbul-lib-report@3.0.3': dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 + '@types/istanbul-lib-coverage': 2.0.6 - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + '@types/istanbul-reports@3.0.4': dependencies: - sprintf-js: 1.0.3 + '@types/istanbul-lib-report': 3.0.3 - /args@5.0.3: - resolution: {integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==} - engines: {node: '>= 6.0.0'} + '@types/jest@26.0.24': dependencies: - camelcase: 5.0.0 - chalk: 2.4.2 - leven: 2.1.0 - mri: 1.1.4 + jest-diff: 26.6.2 + pretty-format: 26.6.2 - /aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} + '@types/jest@29.5.14': dependencies: - '@babel/runtime': 7.20.0 - '@babel/runtime-corejs3': 7.22.5 + expect: 29.7.0 + pretty-format: 29.7.0 - /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + '@types/jsdom@20.0.1': dependencies: - deep-equal: 2.2.1 + '@types/node': 16.18.126 + '@types/tough-cookie': 4.0.5 + parse5: 7.3.0 - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + '@types/jsdom@21.1.7': dependencies: - dequal: 2.0.3 + '@types/node': 16.18.126 + '@types/tough-cookie': 4.0.5 + parse5: 7.3.0 + + '@types/json-schema@7.0.15': {} - /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + '@types/json5@0.0.29': {} + + '@types/mdast@3.0.15': dependencies: - call-bind: 1.0.2 - is-array-buffer: 3.0.2 + '@types/unist': 2.0.11 - /array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + '@types/mime@1.3.5': {} - /array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + '@types/node-forge@1.3.13': + dependencies: + '@types/node': 16.18.126 - /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} - engines: {node: '>= 0.4'} + '@types/node@12.20.4': {} + + '@types/node@16.18.126': {} + + '@types/parse-json@4.0.2': {} + + '@types/parse5@5.0.3': {} + + '@types/prop-types@15.7.15': {} + + '@types/qs@6.14.0': {} + + '@types/range-parser@1.2.7': {} + + '@types/react-dom@17.0.26(@types/react@17.0.87)': dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.1 - is-string: 1.0.7 + '@types/react': 17.0.87 - /array-timsort@1.0.3: - resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} + '@types/react-dom@17.0.26(@types/react@18.3.23)': + dependencies: + '@types/react': 18.3.23 - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + '@types/react-dom@18.3.7(@types/react@17.0.87)': + dependencies: + '@types/react': 17.0.87 - /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} - engines: {node: '>= 0.4'} + '@types/react-dom@18.3.7(@types/react@18.3.23)': dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 + '@types/react': 18.3.23 - /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} - engines: {node: '>= 0.4'} + '@types/react@17.0.87': dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 + '@types/prop-types': 15.7.15 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 - /asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + '@types/react@18.3.23': + dependencies: + '@types/prop-types': 15.7.15 + csstype: 3.1.3 - /asn1.js@5.4.1: - resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} + '@types/retry@0.12.0': {} + + '@types/scheduler@0.16.8': {} + + '@types/send@0.17.5': dependencies: - bn.js: 4.12.0 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - safer-buffer: 2.1.2 + '@types/mime': 1.3.5 + '@types/node': 16.18.126 - /assert@2.0.0: - resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==} + '@types/serve-index@1.9.4': dependencies: - es6-object-assign: 1.1.0 - is-nan: 1.3.2 - object-is: 1.1.5 - util: 0.12.3 + '@types/express': 4.17.23 - /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + '@types/serve-static@1.15.8': + dependencies: + '@types/http-errors': 2.0.5 + '@types/node': 16.18.126 + '@types/send': 0.17.5 - /ast-types@0.9.6: - resolution: {integrity: sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==} - engines: {node: '>= 0.8'} + '@types/sockjs@0.3.36': + dependencies: + '@types/node': 16.18.126 - /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + '@types/stack-utils@2.0.3': {} - /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + '@types/testing-library__jest-dom@5.9.5': dependencies: - lodash: 4.17.21 + '@types/jest': 29.5.14 - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + '@types/tough-cookie@4.0.5': {} - /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + '@types/unist@2.0.11': {} - /autoprefixer@10.4.14(postcss@8.4.19): - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + '@types/ws@8.18.1': dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001509 - fraction.js: 4.2.0 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@types/node': 16.18.126 - /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} + '@types/yargs-parser@21.0.3': {} - /axe-core@4.7.2: - resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} - engines: {node: '>=4'} + '@types/yargs@15.0.19': + dependencies: + '@types/yargs-parser': 21.0.3 - /axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + '@types/yargs@17.0.33': + dependencies: + '@types/yargs-parser': 21.0.3 - /babel-jest@29.5.0(@babel/core@7.22.5): - resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@types/yauzl@2.10.3': dependencies: - '@babel/core': 7.22.5 - '@jest/transform': 29.5.0 - '@types/babel__core': 7.20.1 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.22.5) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 + '@types/node': 16.18.126 + optional: true + + '@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': + dependencies: + '@typescript-eslint/experimental-utils': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/scope-manager': 4.13.0 + debug: 4.4.1 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + lodash: 4.17.21 + regexpp: 3.2.0 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-loader@9.1.0(@babel/core@7.19.6)(webpack@5.84.1): - resolution: {integrity: sha512-Antt61KJPinUMwHwIIz9T5zfMgevnfZkEVWYDWlG888fgdvRRGD0JTuf/fFozQnfT+uq64sk1bmdHDy/mOEWnA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': '*' - webpack: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - webpack: - optional: true + '@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - find-cache-dir: 3.3.2 - schema-utils: 4.2.0 - webpack: 5.84.1(esbuild@0.14.28) + '@typescript-eslint/experimental-utils': 4.29.3(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/scope-manager': 4.29.3 + debug: 4.4.1 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + regexpp: 3.2.0 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color - /babel-plugin-apply-mdx-type-prop@1.6.21(@babel/core@7.11.6): - resolution: {integrity: sha512-+vQarmm+g+kePH4CMp2iEN/HOx1oEvZeSKCdKCEZlnJOthXzkpaRAbM3ZNCiKqVr9WuoqPNfoXQ0EVppYpIwfg==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.10.4 - '@mdx-js/util': 1.6.21 + '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/scope-manager': 5.35.1 + '@typescript-eslint/type-utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + debug: 4.4.1 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + ignore: 5.3.2 + regexpp: 3.2.0 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color - /babel-plugin-extract-import-names@1.6.21: - resolution: {integrity: sha512-mCjTry00HB/4xHGunxQNMOGZ7JEGJdEScNh7C1WJBto7nePyn9wCdYAZP61pGC6+z3ETH5btY20mqg0plcxZGA==} + '@typescript-eslint/experimental-utils@4.13.0(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/helper-plugin-utils': 7.10.4 + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.13.0 + '@typescript-eslint/types': 4.13.0 + '@typescript-eslint/typescript-estree': 4.13.0(typescript@4.9.3) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + transitivePeerDependencies: + - supports-color + - typescript - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + '@typescript-eslint/experimental-utils@4.29.3(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/helper-plugin-utils': 7.22.5 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.1 - test-exclude: 6.0.0 + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.29.3 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/typescript-estree': 4.29.3(typescript@4.9.3) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) transitivePeerDependencies: - supports-color + - typescript - /babel-plugin-jest-hoist@29.5.0: - resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 - '@types/babel__core': 7.20.1 - '@types/babel__traverse': 7.20.1 + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.3) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + - typescript - /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + '@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/runtime': 7.20.0 - cosmiconfig: 7.1.0 - resolve: 1.22.2 + '@typescript-eslint/scope-manager': 4.13.0 + '@typescript-eslint/types': 4.13.0 + '@typescript-eslint/typescript-estree': 4.13.0(typescript@4.9.3) + debug: 4.4.1 + eslint: 7.32.0 + optionalDependencies: + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.19.6): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/parser@4.4.1(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) - semver: 6.3.0 + '@typescript-eslint/scope-manager': 4.4.1 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/typescript-estree': 4.4.1(typescript@4.9.3) + debug: 4.4.1 + eslint: 7.32.0 + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.2): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) - semver: 6.3.0 + '@typescript-eslint/scope-manager': 5.35.1 + '@typescript-eslint/types': 5.35.1 + '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) + debug: 4.4.1 + eslint: 7.32.0 + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.19.6): - resolution: {integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/scope-manager@4.13.0': dependencies: - '@babel/compat-data': 7.22.5 - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.19.6) - semver: 6.3.0 + '@typescript-eslint/types': 4.13.0 + '@typescript-eslint/visitor-keys': 4.13.0 + + '@typescript-eslint/scope-manager@4.29.3': + dependencies: + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/visitor-keys': 4.29.3 + + '@typescript-eslint/scope-manager@4.33.0': + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + + '@typescript-eslint/scope-manager@4.4.1': + dependencies: + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 + + '@typescript-eslint/scope-manager@5.35.1': + dependencies: + '@typescript-eslint/types': 5.35.1 + '@typescript-eslint/visitor-keys': 5.35.1 + + '@typescript-eslint/type-utils@5.35.1(eslint@7.32.0)(typescript@4.9.3)': + dependencies: + '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + debug: 4.4.1 + eslint: 7.32.0 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.19.6): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/types@4.13.0': {} + + '@typescript-eslint/types@4.29.3': {} + + '@typescript-eslint/types@4.33.0': {} + + '@typescript-eslint/types@4.4.1': {} + + '@typescript-eslint/types@5.35.1': {} + + '@typescript-eslint/typescript-estree@4.13.0(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) - core-js-compat: 3.31.0 + '@typescript-eslint/types': 4.13.0 + '@typescript-eslint/visitor-keys': 4.13.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.2): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/typescript-estree@4.29.3(typescript@4.9.3)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) - core-js-compat: 3.31.0 + '@typescript-eslint/types': 4.29.3 + '@typescript-eslint/visitor-keys': 4.29.3 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.19.6): - resolution: {integrity: sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.19.6) - core-js-compat: 3.31.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.19.6): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/typescript-estree@4.4.1(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.2): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/typescript-estree@5.35.1(typescript@4.9.3)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) + '@typescript-eslint/types': 5.35.1 + '@typescript-eslint/visitor-keys': 5.35.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@4.9.3) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.19.6): - resolution: {integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/utils@5.35.1(eslint@7.32.0)(typescript@4.9.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.4.0(@babel/core@7.19.6) + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 5.35.1 + '@typescript-eslint/types': 5.35.1 + '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) transitivePeerDependencies: - supports-color + - typescript - /babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} + '@typescript-eslint/visitor-keys@4.13.0': + dependencies: + '@typescript-eslint/types': 4.13.0 + eslint-visitor-keys: 2.1.0 - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.20.2): - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': '*' - '@babel/traverse': '*' - peerDependenciesMeta: - '@babel/core': - optional: true - '@babel/traverse': - optional: true + '@typescript-eslint/visitor-keys@4.29.3': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.22.5 + '@typescript-eslint/types': 4.29.3 + eslint-visitor-keys: 2.1.0 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.2): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/visitor-keys@4.33.0': dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) + '@typescript-eslint/types': 4.33.0 + eslint-visitor-keys: 2.1.0 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.5): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/visitor-keys@4.4.1': dependencies: - '@babel/core': 7.22.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.5) - - /babel-preset-jest@29.2.0(@babel/core@7.20.2): - resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@typescript-eslint/types': 4.4.1 + eslint-visitor-keys: 2.1.0 + + '@typescript-eslint/visitor-keys@5.35.1': dependencies: - '@babel/core': 7.20.2 - babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.2) + '@typescript-eslint/types': 5.35.1 + eslint-visitor-keys: 3.4.3 - /babel-preset-jest@29.5.0(@babel/core@7.22.5): - resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': '*' - peerDependenciesMeta: - '@babel/core': - optional: true + '@webassemblyjs/ast@1.11.1': dependencies: - '@babel/core': 7.22.5 - babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.5) + '@webassemblyjs/helper-numbers': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - /babel-preset-react-app@10.0.1: - resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} + '@webassemblyjs/ast@1.14.1': dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.19.6) - '@babel/plugin-transform-runtime': 7.22.5(@babel/core@7.19.6) - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@babel/preset-typescript': 7.22.5(@babel/core@7.19.6) - '@babel/runtime': 7.20.0 - babel-plugin-macros: 3.1.0 - babel-plugin-transform-react-remove-prop-types: 0.4.24 - transitivePeerDependencies: - - supports-color + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 - /backo2@1.0.2: - resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} - dev: false + '@webassemblyjs/floating-point-hex-parser@1.11.1': {} - /bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + '@webassemblyjs/helper-api-error@1.11.1': {} - /base62@1.2.8: - resolution: {integrity: sha512-V6YHUbjLxN1ymqNLb1DPHoU1CpfdL7d2YTIp5W3U4hhoG4hhxNmsFDs66M9EXxBiSEke5Bt5dwdfMwwZF70iLA==} + '@webassemblyjs/helper-api-error@1.13.2': {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + '@webassemblyjs/helper-buffer@1.11.1': {} - /batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + '@webassemblyjs/helper-buffer@1.14.1': {} - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + '@webassemblyjs/helper-numbers@1.11.1': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.1 + '@webassemblyjs/helper-api-error': 1.11.1 + '@xtuc/long': 4.2.2 - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + '@webassemblyjs/helper-numbers@1.13.2': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 - /bn.js@4.12.0: - resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} + '@webassemblyjs/helper-wasm-bytecode@1.11.1': {} - /bn.js@5.2.1: - resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} - /body-parser@1.20.0: - resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + '@webassemblyjs/helper-wasm-section@1.11.1': dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.10.3 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 - /body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + '@webassemblyjs/helper-wasm-section@1.14.1': dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 - /bonjour-service@1.1.1: - resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==} + '@webassemblyjs/ieee754@1.11.1': dependencies: - array-flatten: 2.1.2 - dns-equal: 1.0.0 - fast-deep-equal: 3.1.3 - multicast-dns: 7.2.5 + '@xtuc/ieee754': 1.2.0 - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + '@webassemblyjs/ieee754@1.13.2': + dependencies: + '@xtuc/ieee754': 1.2.0 - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + '@webassemblyjs/leb128@1.11.1': dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 + '@xtuc/long': 4.2.2 - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + '@webassemblyjs/leb128@1.13.2': dependencies: - balanced-match: 1.0.2 + '@xtuc/long': 4.2.2 - /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + '@webassemblyjs/utf8@1.11.1': {} + + '@webassemblyjs/utf8@1.13.2': {} + + '@webassemblyjs/wasm-edit@1.11.1': dependencies: - fill-range: 7.0.1 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/helper-wasm-section': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 + '@webassemblyjs/wasm-opt': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + '@webassemblyjs/wast-printer': 1.11.1 - /brorand@1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + '@webassemblyjs/wasm-edit@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/helper-wasm-section': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-opt': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + '@webassemblyjs/wast-printer': 1.14.1 - /browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + '@webassemblyjs/wasm-gen@1.11.1': dependencies: - buffer-xor: 1.0.3 - cipher-base: 1.0.4 - create-hash: 1.2.0 - evp_bytestokey: 1.0.3 - inherits: 2.0.4 - safe-buffer: 5.2.1 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/ieee754': 1.11.1 + '@webassemblyjs/leb128': 1.11.1 + '@webassemblyjs/utf8': 1.11.1 - /browserify-cipher@1.0.1: - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + '@webassemblyjs/wasm-gen@1.14.1': dependencies: - browserify-aes: 1.2.0 - browserify-des: 1.0.2 - evp_bytestokey: 1.0.3 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 - /browserify-des@1.0.2: - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + '@webassemblyjs/wasm-opt@1.11.1': dependencies: - cipher-base: 1.0.4 - des.js: 1.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 - /browserify-rsa@4.1.0: - resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} + '@webassemblyjs/wasm-opt@1.14.1': dependencies: - bn.js: 5.2.1 - randombytes: 2.1.0 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 - /browserify-sign@4.2.1: - resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==} + '@webassemblyjs/wasm-parser@1.11.1': dependencies: - bn.js: 5.2.1 - browserify-rsa: 4.1.0 - create-hash: 1.2.0 - create-hmac: 1.1.7 - elliptic: 6.5.4 - inherits: 2.0.4 - parse-asn1: 5.1.6 - readable-stream: 3.6.2 - safe-buffer: 5.2.1 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-api-error': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/ieee754': 1.11.1 + '@webassemblyjs/leb128': 1.11.1 + '@webassemblyjs/utf8': 1.11.1 + + '@webassemblyjs/wasm-parser@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-api-error': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 - /browserify-zlib@0.2.0: - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} + '@webassemblyjs/wast-printer@1.11.1': dependencies: - pako: 1.0.11 + '@webassemblyjs/ast': 1.11.1 + '@xtuc/long': 4.2.2 - /browserslist@4.21.4: - resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + '@webassemblyjs/wast-printer@1.14.1': dependencies: - caniuse-lite: 1.0.30001509 - electron-to-chromium: 1.4.442 - node-releases: 2.0.12 - update-browserslist-db: 1.0.11(browserslist@4.21.4) + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 - /browserslist@4.21.9: - resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + '@wry/context@0.6.1': dependencies: - caniuse-lite: 1.0.30001509 - electron-to-chromium: 1.4.442 - node-releases: 2.0.12 - update-browserslist-db: 1.0.11(browserslist@4.21.9) + tslib: 2.8.1 - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + '@wry/context@0.7.4': dependencies: - node-int64: 0.4.0 + tslib: 2.8.1 - /buble@0.19.6: - resolution: {integrity: sha512-9kViM6nJA1Q548Jrd06x0geh+BG2ru2+RMDkIHHgJY/8AcyCs34lTHwra9BX7YdPrZXd5aarkpr/SY8bmPgPdg==} - hasBin: true + '@wry/equality@0.5.7': dependencies: - chalk: 2.4.2 - magic-string: 0.25.9 - minimist: 1.2.8 - os-homedir: 1.0.2 - regexpu-core: 4.8.0 - vlq: 1.0.1 + tslib: 2.8.1 - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + '@wry/trie@0.3.2': + dependencies: + tslib: 2.8.1 - /buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + '@xtuc/ieee754@1.2.0': {} - /buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + '@xtuc/long@4.2.2': {} + + '@zkochan/rimraf@2.1.3': dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 + rimraf: 3.0.2 - /builtin-status-codes@3.0.0: - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} + abab@2.0.6: {} - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + accepts@1.3.8: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + acorn-globals@7.0.1: + dependencies: + acorn: 8.15.0 + acorn-walk: 8.3.4 - /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + acorn-import-assertions@1.9.0(acorn@8.15.0): dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + acorn: 8.15.0 - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + acorn-jsx@5.3.2(acorn@7.4.1): + dependencies: + acorn: 7.4.1 - /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + acorn-walk@8.3.4: dependencies: - pascal-case: 3.1.2 - tslib: 2.6.0 + acorn: 8.15.0 - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + acorn@5.7.4: {} - /camelcase@5.0.0: - resolution: {integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==} - engines: {node: '>=6'} + acorn@7.4.1: {} - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + acorn@8.15.0: {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + address@1.2.2: {} - /camelcase@7.0.0: - resolution: {integrity: sha512-JToIvOmz6nhGsUhAYScbo2d6Py5wojjNfoxoc2mEVLUdJ70gJK2gnd+ABY1Tc3sVMyK7QDPtN0T/XdlCQWITyQ==} - engines: {node: '>=14.16'} + adjust-sourcemap-loader@4.0.0: + dependencies: + loader-utils: 2.0.4 + regex-parser: 2.3.1 - /caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + agent-base@6.0.2: dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001509 - lodash.memoize: 4.1.2 - lodash.uniq: 4.5.0 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color - /caniuse-lite@1.0.30001509: - resolution: {integrity: sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==} + agent-base@7.1.4: {} - /ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + ajv-formats@2.1.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 + ajv: 6.12.6 - /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + ajv-keywords@5.1.0(ajv@8.17.1): dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 + ajv: 8.17.1 + fast-deep-equal: 3.1.3 - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + ajv@6.12.6: dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - - /character-entities-html4@1.1.4: - resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==} + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 - /character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.6 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 - /character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + amdefine@1.0.1: {} - /character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + ansi-colors@4.1.3: {} - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + ansi-escapes@4.3.2: dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 + type-fest: 0.21.3 - /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} + ansi-html-community@0.0.8: {} - /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /cipher-base@1.0.4: - resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} + ansi-styles@3.2.1: dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - - /cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} + color-convert: 1.9.3 - /classnames@2.2.6: - resolution: {integrity: sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==} + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 - /classnames@2.3.1: - resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + ansi-styles@5.2.0: {} - /clean-css@5.3.2: - resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==} - engines: {node: '>= 10.0'} + anymatch@3.1.3: dependencies: - source-map: 0.6.1 + normalize-path: 3.0.0 + picomatch: 2.3.1 - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + argparse@1.0.10: dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 + sprintf-js: 1.0.3 - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + argparse@2.0.1: + optional: true + + args@5.0.3: dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 + camelcase: 5.0.0 + chalk: 2.4.2 + leven: 2.1.0 + mri: 1.1.4 - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + aria-query@4.2.2: + dependencies: + '@babel/runtime': 7.20.0 + '@babel/runtime-corejs3': 7.28.0 - /collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + aria-query@5.1.3: + dependencies: + deep-equal: 2.2.3 - /collect-v8-coverage@1.0.1: - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} + aria-query@5.3.2: {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + array-buffer-byte-length@1.0.2: dependencies: - color-name: 1.1.3 + call-bound: 1.0.4 + is-array-buffer: 3.0.5 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - dependencies: - color-name: 1.1.4 + array-flatten@1.1.1: {} - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + array-includes@3.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + array-timsort@1.0.3: {} - /colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + array-union@2.1.0: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + array.prototype.flatmap@1.3.3: dependencies: - delayed-stream: 1.0.0 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 - /comlink@4.3.1: - resolution: {integrity: sha512-+YbhUdNrpBZggBAHWcgQMLPLH1KDF3wJpeqrCKieWQ8RL7atmgsgTQko1XEBK6PsecfopWNntopJ+ByYG1lRaA==} + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 - /comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + asap@2.0.6: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + asn1.js@4.10.1: + dependencies: + bn.js: 4.12.2 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + assert@2.0.0: + dependencies: + es6-object-assign: 1.1.0 + is-nan: 1.3.2 + object-is: 1.1.6 + util: 0.12.3 - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + ast-types-flow@0.0.7: {} - /comment-json@4.2.3: - resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==} - engines: {node: '>= 6'} + ast-types@0.13.4: dependencies: - array-timsort: 1.0.3 - core-util-is: 1.0.3 - esprima: 4.0.1 - has-own-prop: 2.0.0 - repeat-string: 1.6.1 + tslib: 2.8.1 + optional: true - /common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + ast-types@0.9.6: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + astral-regex@2.0.0: {} - /commoner@0.10.8: - resolution: {integrity: sha512-3/qHkNMM6o/KGXHITA14y78PcfmXh4+AOCJpSoF73h4VY1JpdGv3CHMS5+JW6SwLhfJt4RhNmLAa7+RRX/62EQ==} - engines: {node: '>= 0.8'} - hasBin: true - dependencies: - commander: 2.20.3 - detective: 4.7.1 - glob: 5.0.15 - graceful-fs: 4.2.11 - iconv-lite: 0.4.24 - mkdirp: 0.5.6 - private: 0.1.8 - q: 1.5.1 - recast: 0.11.23 + async-function@1.0.0: {} - /component-props@1.1.1: - resolution: {integrity: sha512-69pIRJs9fCCHRqCz3390YF2LV1Lu6iEMZ5zuVqqUn+G20V9BNXlMs0cWawWeW9g4Ynmg29JmkG6R7/lUJoGd1Q==} + async@3.2.6: {} - /component-xor@0.0.4: - resolution: {integrity: sha512-ZIt6sla8gfo+AFVRZoZOertcnD5LJaY2T9CKE2j13NJxQt/mUafD69Bl7/Y4AnpI2LGjiXH7cOfJDx/n2G9edA==} + asynckit@0.4.0: {} - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} - dependencies: - mime-db: 1.52.0 + at-least-node@1.0.0: {} - /compression-webpack-plugin@10.0.0(webpack@5.84.1): - resolution: {integrity: sha512-wLXLIBwpul/ALcm7Aj+69X0pYT3BYt6DdPn3qrgBIh9YejV9Bju9ShhlAsjujLyWMo6SAweFIWaUoFmXZNuNrg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + autoprefixer@10.4.21(postcss@8.4.19): dependencies: - schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.84.1 + browserslist: 4.25.1 + caniuse-lite: 1.0.30001727 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + available-typed-arrays@1.0.7: dependencies: - accepts: 1.3.8 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + possible-typed-array-names: 1.1.0 - /connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} + axe-core@4.10.3: {} - /constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + axobject-query@2.2.0: {} - /contains-path@0.1.0: - resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==} - engines: {node: '>=0.10.0'} + b4a@1.6.7: + optional: true - /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + babel-jest@29.7.0(@babel/core@7.28.0): dependencies: - safe-buffer: 5.2.1 - - /content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + '@babel/core': 7.28.0 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.28.0) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + babel-loader@9.1.0(@babel/core@7.12.9)(webpack@5.84.1): + dependencies: + '@babel/core': 7.12.9 + find-cache-dir: 3.3.2 + schema-utils: 4.3.2 + webpack: 5.84.1(esbuild@0.14.28) - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + babel-loader@9.1.0(@babel/core@7.19.6)(webpack@5.84.1): + dependencies: + '@babel/core': 7.19.6 + find-cache-dir: 3.3.2 + schema-utils: 4.3.2 + webpack: 5.84.1(esbuild@0.14.28) - /cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + babel-loader@9.1.0(@babel/core@7.28.0)(webpack@5.84.1): + dependencies: + '@babel/core': 7.28.0 + find-cache-dir: 3.3.2 + schema-utils: 4.3.2 + webpack: 5.84.1(esbuild@0.14.28) - /cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} + babel-plugin-apply-mdx-type-prop@1.6.21(@babel/core@7.11.6): + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.10.4 + '@mdx-js/util': 1.6.21 - /copy-to-clipboard@3.3.3: - resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + babel-plugin-extract-import-names@1.6.21: dependencies: - toggle-selection: 1.0.6 + '@babel/helper-plugin-utils': 7.10.4 - /core-js-compat@3.31.0: - resolution: {integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==} + babel-plugin-istanbul@6.1.1: dependencies: - browserslist: 4.21.9 + '@babel/helper-plugin-utils': 7.27.1 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color - /core-js-pure@3.31.0: - resolution: {integrity: sha512-/AnE9Y4OsJZicCzIe97JP5XoPKQJfTuEG43aEVLFJGOJpyqELod+pE6LEl63DfG1Mp8wX97LDaDpy1GmLEUxlg==} - requiresBuild: true + babel-plugin-jest-hoist@29.6.3: + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.1 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.7 - /core-js@1.2.7: - resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.20.0 + cosmiconfig: 7.1.0 + resolve: 1.22.10 - /core-js@3.31.0: - resolution: {integrity: sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==} - requiresBuild: true + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.12.9): + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.12.9 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.19.6): + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.2): dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.28.0): dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /create-ecdh@4.0.4: - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.19.6): dependencies: - bn.js: 4.12.0 - elliptic: 6.5.4 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /create-hash@1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.19.6): dependencies: - cipher-base: 1.0.4 - inherits: 2.0.4 - md5.js: 1.3.5 - ripemd160: 2.0.2 - sha.js: 2.4.11 + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) + core-js-compat: 3.44.0 + transitivePeerDependencies: + - supports-color - /create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.12.9): dependencies: - cipher-base: 1.0.4 - create-hash: 1.2.0 - inherits: 2.0.4 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 + '@babel/core': 7.12.9 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) + core-js-compat: 3.44.0 + transitivePeerDependencies: + - supports-color - /cross-fetch@3.1.6: - resolution: {integrity: sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==} + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.19.6): dependencies: - node-fetch: 2.6.11 + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) + core-js-compat: 3.44.0 transitivePeerDependencies: - - encoding + - supports-color - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.2): dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) + core-js-compat: 3.44.0 + transitivePeerDependencies: + - supports-color - /crypto-browserify@3.12.0: - resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} + babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.28.0): dependencies: - browserify-cipher: 1.0.1 - browserify-sign: 4.2.1 - create-ecdh: 4.0.4 - create-hash: 1.2.0 - create-hmac: 1.1.7 - diffie-hellman: 5.0.3 - inherits: 2.0.4 - pbkdf2: 3.1.2 - public-encrypt: 4.0.3 - randombytes: 2.1.0 - randomfill: 1.0.4 + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) + core-js-compat: 3.44.0 + transitivePeerDependencies: + - supports-color - /css-blank-pseudo@3.0.3(postcss@8.4.19): - resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.12.9): dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + '@babel/core': 7.12.9 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color - /css-declaration-sorter@6.4.0(postcss@8.4.19): - resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.19.6): dependencies: - postcss: 8.4.19 + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color - /css-has-pseudo@3.0.4(postcss@8.4.19): - resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.2): dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color - /css-loader@6.7.1(webpack@5.84.1): - resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.28.0): dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.24) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.24) - postcss-modules-scope: 3.0.0(postcss@8.4.24) - postcss-modules-values: 4.0.0(postcss@8.4.24) - postcss-value-parser: 4.2.0 - semver: 7.5.3 - webpack: 5.84.1 + '@babel/core': 7.28.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) + transitivePeerDependencies: + - supports-color - /css-loader@6.7.2(webpack@5.84.1): - resolution: {integrity: sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.19.6): dependencies: - icss-utils: 5.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.19) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.19) - postcss-modules-scope: 3.0.0(postcss@8.4.19) - postcss-modules-values: 4.0.0(postcss@8.4.19) - postcss-value-parser: 4.2.0 - semver: 7.5.3 - webpack: 5.84.1(esbuild@0.14.28) + '@babel/core': 7.19.6 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) + transitivePeerDependencies: + - supports-color - /css-minimizer-webpack-plugin@3.0.2(webpack@5.84.1): - resolution: {integrity: sha512-B3I5e17RwvKPJwsxjjWcdgpU/zqylzK1bPVghcmpFHRL48DXiBgrtqz1BJsn68+t/zzaLp9kYAaEDvQ7GyanFQ==} - engines: {node: '>= 12.13.0'} - peerDependencies: - clean-css: '*' - csso: '*' - webpack: '*' - peerDependenciesMeta: - clean-css: - optional: true - csso: - optional: true - webpack: - optional: true + babel-plugin-transform-react-remove-prop-types@0.4.24: {} + + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0): dependencies: - cssnano: 5.1.15(postcss@8.4.19) - jest-worker: 27.5.1 - p-limit: 3.1.0 - postcss: 8.4.19 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - source-map: 0.6.1 - webpack: 5.84.1(esbuild@0.14.28) + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.27.1 + optionalDependencies: + '@babel/traverse': 7.28.0 - /css-prefers-color-scheme@6.0.3(postcss@8.4.19): - resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + babel-preset-current-node-syntax@1.1.0(@babel/core@7.20.2): dependencies: - postcss: 8.4.19 + '@babel/core': 7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.20.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + babel-preset-current-node-syntax@1.1.0(@babel/core@7.28.0): + dependencies: + '@babel/core': 7.28.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0) + + babel-preset-jest@29.2.0(@babel/core@7.20.2): dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 4.3.1 - domutils: 2.8.0 - nth-check: 2.1.1 + '@babel/core': 7.20.2 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.20.2) - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + babel-preset-jest@29.6.3(@babel/core@7.28.0): dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 + '@babel/core': 7.28.0 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.0) - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + babel-preset-react-app@10.0.1: + dependencies: + '@babel/core': 7.19.6 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.19.6) + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.19.6) + '@babel/plugin-transform-runtime': 7.28.0(@babel/core@7.19.6) + '@babel/preset-env': 7.20.2(@babel/core@7.19.6) + '@babel/preset-react': 7.18.6(@babel/core@7.19.6) + '@babel/preset-typescript': 7.27.1(@babel/core@7.19.6) + '@babel/runtime': 7.20.0 + babel-plugin-macros: 3.1.0 + babel-plugin-transform-react-remove-prop-types: 0.4.24 + transitivePeerDependencies: + - supports-color - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + backo2@1.0.2: {} - /cssdb@7.6.0: - resolution: {integrity: sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==} + bail@1.0.5: {} - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true + balanced-match@1.0.2: {} - /cssnano-preset-default@5.2.14(postcss@8.4.19): - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - css-declaration-sorter: 6.4.0(postcss@8.4.19) - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-calc: 8.2.4(postcss@8.4.19) - postcss-colormin: 5.3.1(postcss@8.4.19) - postcss-convert-values: 5.1.3(postcss@8.4.19) - postcss-discard-comments: 5.1.2(postcss@8.4.19) - postcss-discard-duplicates: 5.1.0(postcss@8.4.19) - postcss-discard-empty: 5.1.1(postcss@8.4.19) - postcss-discard-overridden: 5.1.0(postcss@8.4.19) - postcss-merge-longhand: 5.1.7(postcss@8.4.19) - postcss-merge-rules: 5.1.4(postcss@8.4.19) - postcss-minify-font-values: 5.1.0(postcss@8.4.19) - postcss-minify-gradients: 5.1.1(postcss@8.4.19) - postcss-minify-params: 5.1.4(postcss@8.4.19) - postcss-minify-selectors: 5.2.1(postcss@8.4.19) - postcss-normalize-charset: 5.1.0(postcss@8.4.19) - postcss-normalize-display-values: 5.1.0(postcss@8.4.19) - postcss-normalize-positions: 5.1.1(postcss@8.4.19) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.19) - postcss-normalize-string: 5.1.0(postcss@8.4.19) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.19) - postcss-normalize-unicode: 5.1.1(postcss@8.4.19) - postcss-normalize-url: 5.1.0(postcss@8.4.19) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.19) - postcss-ordered-values: 5.1.3(postcss@8.4.19) - postcss-reduce-initial: 5.1.2(postcss@8.4.19) - postcss-reduce-transforms: 5.1.0(postcss@8.4.19) - postcss-svgo: 5.1.0(postcss@8.4.19) - postcss-unique-selectors: 5.1.1(postcss@8.4.19) + bare-events@2.6.0: + optional: true - /cssnano-utils@3.1.0(postcss@8.4.19): - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + bare-fs@4.1.6: dependencies: - postcss: 8.4.19 + bare-events: 2.6.0 + bare-path: 3.0.0 + bare-stream: 2.6.5(bare-events@2.6.0) + optional: true - /cssnano@5.1.15(postcss@8.4.19): - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + bare-os@3.6.1: + optional: true + + bare-path@3.0.0: dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.19) - lilconfig: 2.1.0 - postcss: 8.4.19 - yaml: 1.10.2 + bare-os: 3.6.1 + optional: true - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + bare-stream@2.6.5(bare-events@2.6.0): dependencies: - css-tree: 1.1.3 + streamx: 2.22.1 + optionalDependencies: + bare-events: 2.6.0 + optional: true - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + base62@1.2.8: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + base64-js@1.5.1: {} - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} - dependencies: - cssom: 0.3.8 + basic-ftp@5.0.5: + optional: true - /cssstyle@3.0.0: - resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} - engines: {node: '>=14'} + batch@0.6.1: {} + + better-path-resolve@1.0.0: dependencies: - rrweb-cssom: 0.6.0 + is-windows: 1.0.2 - /csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + big.js@5.2.2: {} - /d@1.0.1: - resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} + binary-extensions@2.3.0: {} + + bn.js@4.12.2: {} + + bn.js@5.2.2: {} + + body-parser@1.20.0: dependencies: - es5-ext: 0.10.62 - type: 1.2.0 + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.10.3 + raw-body: 2.5.1 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + body-parser@1.20.1: + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.1 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + body-parser@1.20.3: dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.13.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /data-urls@4.0.0: - resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} - engines: {node: '>=14'} + bonjour-service@1.3.0: dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 12.0.1 + fast-deep-equal: 3.1.3 + multicast-dns: 7.2.5 - /date-format@0.0.2: - resolution: {integrity: sha512-M4obuJx8jU5T91lcbwi0+QPNVaWOY1DQYz5xUuKYWO93osVzB2ZPqyDUc5T+mDjbA1X8VOb4JDZ+8r2MrSOp7Q==} - deprecated: 0.x is no longer supported. Please upgrade to 4.x or higher. + boolbase@1.0.0: {} - /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + brace-expansion@2.0.2: dependencies: - ms: 2.0.0 + balanced-match: 1.0.2 - /debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + braces@3.0.3: dependencies: - ms: 2.1.3 + fill-range: 7.1.1 - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + brorand@1.1.0: {} + + browserify-aes@1.2.0: dependencies: - ms: 2.1.2 + buffer-xor: 1.0.3 + cipher-base: 1.0.6 + create-hash: 1.2.0 + evp_bytestokey: 1.0.3 + inherits: 2.0.4 + safe-buffer: 5.2.1 - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + browserify-cipher@1.0.1: + dependencies: + browserify-aes: 1.2.0 + browserify-des: 1.0.2 + evp_bytestokey: 1.0.3 - /decamelize@2.0.0: - resolution: {integrity: sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==} - engines: {node: '>=4'} + browserify-des@1.0.2: dependencies: - xregexp: 4.0.0 + cipher-base: 1.0.6 + des.js: 1.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + browserify-rsa@4.1.1: + dependencies: + bn.js: 5.2.2 + randombytes: 2.1.0 + safe-buffer: 5.2.1 - /dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + browserify-sign@4.2.3: + dependencies: + bn.js: 5.2.2 + browserify-rsa: 4.1.1 + create-hash: 1.2.0 + create-hmac: 1.1.7 + elliptic: 6.6.1 + hash-base: 3.0.5 + inherits: 2.0.4 + parse-asn1: 5.1.7 + readable-stream: 2.3.8 + safe-buffer: 5.2.1 - /deep-equal@2.2.1: - resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==} + browserify-zlib@0.2.0: dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.2 - es-get-iterator: 1.1.3 - get-intrinsic: 1.2.1 - is-arguments: 1.1.1 - is-array-buffer: 3.0.2 - is-date-object: 1.0.5 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - isarray: 2.0.5 - object-is: 1.1.5 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - side-channel: 1.0.4 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.1 - which-typed-array: 1.1.9 - - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + pako: 1.0.11 - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + browserslist@4.21.4: + dependencies: + caniuse-lite: 1.0.30001727 + electron-to-chromium: 1.5.183 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.21.4) - /default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + browserslist@4.25.1: dependencies: - execa: 5.1.1 + caniuse-lite: 1.0.30001727 + electron-to-chromium: 1.5.183 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.1) - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + bser@2.1.1: + dependencies: + node-int64: 0.4.0 - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} + buble@0.19.6: dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 + chalk: 2.4.2 + magic-string: 0.25.9 + minimist: 1.2.8 + os-homedir: 1.0.2 + regexpu-core: 4.8.0 + vlq: 1.0.1 - /defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + buffer-crc32@0.2.13: + optional: true - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + buffer-from@1.1.2: {} - /depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + buffer-xor@1.0.3: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 - /dequal@1.0.0: - resolution: {integrity: sha512-/Nd1EQbQbI9UbSHrMiKZjFLrXSnU328iQdZKPQf78XQI6C+gutkFUeoHpG5J08Ioa6HeRbRNFpSIclh1xyG0mw==} - engines: {node: '>=6'} + builtin-status-codes@3.0.0: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + bytes@3.1.2: {} - /des.js@1.1.0: - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + call-bind-apply-helpers@1.0.2: dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + es-errors: 1.3.0 + function-bind: 1.1.2 - /detab@2.0.3: - resolution: {integrity: sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==} + call-bind@1.0.8: dependencies: - repeat-string: 1.6.1 + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 - /detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + callsites@3.1.0: {} - /detect-port-alt@1.1.6: - resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} - engines: {node: '>= 4.2.1'} - hasBin: true + camel-case@4.1.2: dependencies: - address: 1.2.2 - debug: 2.6.9 - transitivePeerDependencies: - - supports-color + pascal-case: 3.1.2 + tslib: 2.8.1 - /detective@4.7.1: - resolution: {integrity: sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==} - dependencies: - acorn: 5.7.4 - defined: 1.0.1 + camelcase-css@2.0.1: {} - /diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - dev: true + camelcase@5.0.0: {} - /diff-sequences@29.4.3: - resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + camelcase@5.3.1: {} - /diffie-hellman@5.0.3: - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} - dependencies: - bn.js: 4.12.0 - miller-rabin: 4.0.1 - randombytes: 2.1.0 + camelcase@6.3.0: {} - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + camelcase@7.0.0: {} + + caniuse-api@3.0.0: dependencies: - path-type: 4.0.0 + browserslist: 4.21.4 + caniuse-lite: 1.0.30001727 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 - /dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + caniuse-lite@1.0.30001727: {} - /dns-packet@5.6.0: - resolution: {integrity: sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==} - engines: {node: '>=6'} - dependencies: - '@leichtgewicht/ip-codec': 2.0.4 + ccount@1.1.0: {} - /doctrine@1.5.0: - resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==} - engines: {node: '>=0.10.0'} + chalk@2.4.2: dependencies: - esutils: 2.0.3 - isarray: 1.0.0 + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + chalk@3.0.0: dependencies: - esutils: 2.0.3 + ansi-styles: 4.3.0 + supports-color: 7.2.0 - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + chalk@4.1.2: dependencies: - esutils: 2.0.3 - - /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + ansi-styles: 4.3.0 + supports-color: 7.2.0 - /dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} - dependencies: - utila: 0.4.0 + char-regex@1.0.2: {} - /dom-iterator@1.0.0: - resolution: {integrity: sha512-7dsMOQI07EMU98gQM8NSB3GsAiIeBYIPKpnxR3c9xOvdvBjChAcOM0iJ222I3p5xyiZO9e5oggkNaCusuTdYig==} - dependencies: - component-props: 1.1.1 - component-xor: 0.0.4 + character-entities-html4@1.1.4: {} - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 + character-entities-legacy@1.1.4: {} - /domain-browser@4.19.0: - resolution: {integrity: sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==} - engines: {node: '>=10'} + character-entities@1.2.4: {} - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + character-reference-invalid@1.1.4: {} - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + chokidar@3.6.0: dependencies: - webidl-conversions: 7.0.0 + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - dependencies: - domelementtype: 2.3.0 + chrome-trace-event@1.0.4: {} - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + chromium-bidi@7.1.0(devtools-protocol@0.0.1464554): dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 + devtools-protocol: 0.0.1464554 + mitt: 3.0.1 + zod: 3.25.76 + optional: true - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + ci-info@3.9.0: {} + + cipher-base@1.0.6: dependencies: - no-case: 3.0.4 - tslib: 2.6.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + cjs-module-lexer@1.4.3: {} - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + classnames@2.2.6: {} - /electron-to-chromium@1.4.442: - resolution: {integrity: sha512-RkrZF//Ya+0aJq2NM3OdisNh5ZodZq1rdXOS96G8DdDgpDKqKE81yTbbQ3F/4CKm1JBPsGu1Lp/akkna2xO06Q==} + classnames@2.3.1: {} - /elliptic@6.5.4: - resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} + clean-css@5.3.3: dependencies: - bn.js: 4.12.0 - brorand: 1.1.0 - hash.js: 1.1.7 - hmac-drbg: 1.0.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 + source-map: 0.6.1 - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + co@4.6.0: {} - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + collapse-white-space@1.0.6: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + collect-v8-coverage@1.0.2: {} - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + color-convert@1.9.3: dependencies: - once: 1.4.0 + color-name: 1.1.3 - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} + color-convert@2.0.1: dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 + color-name: 1.1.4 - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} - dependencies: - ansi-colors: 4.1.3 + color-name@1.1.3: {} - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + color-name@1.1.4: {} - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + colord@2.9.3: {} - /envify@3.4.1: - resolution: {integrity: sha512-XLiBFsLtNF0MOZl+vWU59yPb3C2JtrQY2CNJn22KH75zPlHWY5ChcAQuf4knJeWT/lLkrx3sqvhP/J349bt4Bw==} - hasBin: true - dependencies: - jstransform: 11.0.3 - through: 2.3.8 + colorette@2.0.20: {} - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true + combined-stream@1.0.8: dependencies: - prr: 1.0.1 + delayed-stream: 1.0.0 - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - dependencies: - is-arrayish: 0.2.1 + comlink@4.3.1: {} - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} - dependencies: - stackframe: 1.3.4 + comma-separated-tokens@1.0.8: {} - /es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} - engines: {node: '>= 0.4'} - dependencies: - array-buffer-byte-length: 1.0.0 - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.5 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.12.3 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 - - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - has-symbols: 1.0.3 - is-arguments: 1.1.1 - is-map: 2.0.2 - is-set: 2.0.2 - is-string: 1.0.7 - isarray: 2.0.5 - stop-iteration-iterator: 1.0.0 + commander@2.20.3: {} - /es-module-lexer@0.7.1: - resolution: {integrity: sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==} + commander@7.2.0: {} - /es-module-lexer@1.3.0: - resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} + commander@8.3.0: {} - /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: '>= 0.4'} + comment-json@4.2.3: dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 - has-tostringtag: 1.0.0 + array-timsort: 1.0.3 + core-util-is: 1.0.3 + esprima: 4.0.1 + has-own-prop: 2.0.0 + repeat-string: 1.6.1 - /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} - dependencies: - has: 1.0.3 + common-path-prefix@3.0.0: {} - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 + commondir@1.0.1: {} - /es5-ext@0.10.62: - resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} - engines: {node: '>=0.10'} - requiresBuild: true + commoner@0.10.8: dependencies: - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 - next-tick: 1.1.0 + commander: 2.20.3 + detective: 4.7.1 + glob: 5.0.15 + graceful-fs: 4.2.11 + iconv-lite: 0.4.24 + mkdirp: 0.5.6 + private: 0.1.8 + q: 1.5.1 + recast: 0.11.23 - /es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-symbol: 3.1.3 + component-props@1.1.1: {} - /es6-object-assign@1.1.0: - resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} + component-xor@0.0.4: {} - /es6-symbol@3.1.3: - resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==} + compressible@2.0.18: dependencies: - d: 1.0.1 - ext: 1.7.0 + mime-db: 1.54.0 - /es6-weak-map@2.0.3: - resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} + compression-webpack-plugin@10.0.0(webpack@5.84.1): dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + webpack: 5.84.1(esbuild@0.14.28) - /esbuild-android-64@0.14.28: - resolution: {integrity: sha512-A52C3zq+9tNwCqZ+4kVLBxnk/WnrYM8P2+QNvNE9B6d2OVPs214lp3g6UyO+dKDhUdefhfPCuwkP8j2A/+szNA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true + compression@1.8.0: + dependencies: + bytes: 3.1.2 + compressible: 2.0.18 + debug: 2.6.9 + negotiator: 0.6.4 + on-headers: 1.0.2 + safe-buffer: 5.2.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color - /esbuild-android-arm64@0.14.28: - resolution: {integrity: sha512-sm0fDEGElZhMC3HLZeECI2juE4aG7uPfMBMqNUhy9CeX399Pz8rC6e78OXMXInGjSdEAwQmCOHmfsP7uv3Q8rA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true + concat-map@0.0.1: {} - /esbuild-darwin-64@0.14.28: - resolution: {integrity: sha512-nzDd7mQ44FvsFHtOafZdBgn3Li5SMsnMnoz1J2MM37xJmR3wGNTFph88KypjHgWqwbxCI7MXS1U+sN4qDeeW6Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + confusing-browser-globals@1.0.11: {} - /esbuild-darwin-arm64@0.14.28: - resolution: {integrity: sha512-XEq/bLR/glsUl+uGrBimQzOVs/CmwI833fXUhP9xrLI3IJ+rKyrZ5IA8u+1crOEf1LoTn8tV+hInmX6rGjbScw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + connect-history-api-fallback@2.0.0: {} - /esbuild-freebsd-64@0.14.28: - resolution: {integrity: sha512-rTKLgUj/HEcPeE5XZ7IZwWpFx7IWMfprN7QRk/TUJE1s1Ipb58esboIesUpjirJz/BwrgHq+FDG9ChAI8dZAtQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true + constants-browserify@1.0.0: {} - /esbuild-freebsd-arm64@0.14.28: - resolution: {integrity: sha512-sBffxD1UMOsB7aWMoExmipycjcy3HJGwmqE4GQZUTZvdiH4GhjgUiVdtPyt7kSCdL40JqnWQJ4b1l8Y51oCF4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true + contains-path@0.1.0: {} - /esbuild-linux-32@0.14.28: - resolution: {integrity: sha512-+Wxidh3fBEQ9kHcCsD4etlBTMb1n6QY2uXv3rFhVn88CY/JP782MhA57/ipLMY4kOLeSKEuFGN4rtjHuhmRMig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 - /esbuild-linux-64@0.14.28: - resolution: {integrity: sha512-7+xgsC4LvR6cnzaBdiljNnPDjbkwzahogN+S9uy9AoYw7ZjPnnXc6sjQAVCbqGb7MEgrWdpa6u/Tao79i4lWxg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + content-type@1.0.5: {} - /esbuild-linux-arm64@0.14.28: - resolution: {integrity: sha512-EjRHgwg+kgXABzyoPGPOPg4d5wZqRnZ/ZAxBDzLY+i6DS8OUfTSlZHWIOZzU4XF7125WxRBg9ULbrFJBl+57Eg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + convert-source-map@1.9.0: {} - /esbuild-linux-arm@0.14.28: - resolution: {integrity: sha512-L5isjmlLbh9E0WVllXiVETbScgMbth/+XkXQii1WwgO1RvLIfaGrVFz8d2n6EH/ImtgYxPYGx+OcvIKQBc91Rg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true + convert-source-map@2.0.0: {} - /esbuild-linux-mips64le@0.14.28: - resolution: {integrity: sha512-krx9SSg7yfiUKk64EmjefOyiEF6nv2bRE4um/LiTaQ6Y/6FP4UF3/Ou/AxZVyR154uSRq63xejcAsmswXAYRsw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true + cookie-signature@1.0.6: {} - /esbuild-linux-ppc64le@0.14.28: - resolution: {integrity: sha512-LD0Xxu9g+DNuhsEBV5QuVZ4uKVBMup0xPIruLweuAf9/mHXFnaCuNXUBF5t0DxKl7GQ5MSioKtnb92oMo+QXEw==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true + cookie@0.5.0: {} - /esbuild-linux-riscv64@0.14.28: - resolution: {integrity: sha512-L/DWfRh2P0vxq4Y+qieSNXKGdMg+e9Qe8jkbN2/8XSGYDTPzO2OcAxSujob4qIh7iSl+cknbXV+BvH0YFR0jbg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true + cookie@0.7.1: {} - /esbuild-linux-s390x@0.14.28: - resolution: {integrity: sha512-rrgxmsbmL8QQknWGnAL9bGJRQYLOi2AzXy5OTwfhxnj9eqjo5mSVbJXjgiq5LPUAMQZGdPH5yaNK0obAXS81Zw==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true + copy-anything@2.0.6: + dependencies: + is-what: 3.14.1 - /esbuild-netbsd-64@0.14.28: - resolution: {integrity: sha512-h8wntIyOR8/xMVVM6TvJxxWKh4AjmLK87IPKpuVi8Pq0kyk0RMA+eo4PFGk5j2XK0D7dj8PcSF5NSlP9kN/j0A==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true + copy-to-clipboard@3.3.3: + dependencies: + toggle-selection: 1.0.6 - /esbuild-openbsd-64@0.14.28: - resolution: {integrity: sha512-HBv18rVapbuDx52/fhZ/c/w6TXyaQAvRxiDDn5Hz/pBcwOs3cdd2WxeIKlWmDoqm2JMx5EVlq4IWgoaRX9mVkw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true + core-js-compat@3.44.0: + dependencies: + browserslist: 4.25.1 - /esbuild-sunos-64@0.14.28: - resolution: {integrity: sha512-zlIxePhZxKYheR2vBCgPVvTixgo/ozOfOMoP6RZj8dxzquU1NgeyhjkcRXucbLCtmoNJ+i4PtWwPZTLuDd3bGg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true + core-js-pure@3.44.0: {} - /esbuild-windows-32@0.14.28: - resolution: {integrity: sha512-am9DIJxXlld1BOAY/VlvBQHMUCPL7S3gB/lnXIY3M4ys0gfuRqPf4EvMwZMzYUbFKBY+/Qb8SRgPRRGhwnJ8Kg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true + core-js@1.2.7: {} - /esbuild-windows-64@0.14.28: - resolution: {integrity: sha512-78PhySDnmRZlsPNp/W/5Fim8iivlBQQxfhBFIqR7xwvfDmCFUSByyMKP7LCHgNtb04yNdop8nJJkJaQ8Xnwgiw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true + core-js@3.44.0: {} - /esbuild-windows-arm64@0.14.28: - resolution: {integrity: sha512-VhXGBTo6HELD8zyHXynV6+L2jWx0zkKnGx4TmEdSBK7UVFACtOyfUqpToG0EtnYyRZ0HESBhzPSVpP781ovmvA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true + core-util-is@1.0.3: {} - /esbuild@0.14.28: - resolution: {integrity: sha512-YLNprkCcMVKQ5sekmCKEQ3Obu/L7s6+iij38xNKyBeSmSsTWur4Ky/9zB3XIGT8SCJITG/bZwAR2l7YOAXch4Q==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - esbuild-android-64: 0.14.28 - esbuild-android-arm64: 0.14.28 - esbuild-darwin-64: 0.14.28 - esbuild-darwin-arm64: 0.14.28 - esbuild-freebsd-64: 0.14.28 - esbuild-freebsd-arm64: 0.14.28 - esbuild-linux-32: 0.14.28 - esbuild-linux-64: 0.14.28 - esbuild-linux-arm: 0.14.28 - esbuild-linux-arm64: 0.14.28 - esbuild-linux-mips64le: 0.14.28 - esbuild-linux-ppc64le: 0.14.28 - esbuild-linux-riscv64: 0.14.28 - esbuild-linux-s390x: 0.14.28 - esbuild-netbsd-64: 0.14.28 - esbuild-openbsd-64: 0.14.28 - esbuild-sunos-64: 0.14.28 - esbuild-windows-32: 0.14.28 - esbuild-windows-64: 0.14.28 - esbuild-windows-arm64: 0.14.28 + cosmiconfig@6.0.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.1 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.1 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + cosmiconfig@9.0.0(typescript@4.9.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 4.9.3 + optional: true - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + cosmiconfig@9.0.0(typescript@5.8.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.8.3 + optional: true - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + create-ecdh@4.0.4: + dependencies: + bn.js: 4.12.2 + elliptic: 6.6.1 - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + create-hash@1.1.3: + dependencies: + cipher-base: 1.0.6 + inherits: 2.0.4 + ripemd160: 2.0.1 + sha.js: 2.4.12 - /escodegen@2.0.0: - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} - engines: {node: '>=6.0'} - hasBin: true + create-hash@1.2.0: dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionator: 0.8.3 - optionalDependencies: - source-map: 0.6.1 + cipher-base: 1.0.6 + inherits: 2.0.4 + md5.js: 1.3.5 + ripemd160: 2.0.2 + sha.js: 2.4.12 - /eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.1)(eslint@7.32.0): - resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} - engines: {node: '>= 6'} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - peerDependenciesMeta: - eslint: - optional: true - eslint-plugin-import: - optional: true + create-hmac@1.1.7: dependencies: - confusing-browser-globals: 1.0.11 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(eslint@7.32.0) - object.assign: 4.1.4 - object.entries: 1.1.6 + cipher-base: 1.0.6 + create-hash: 1.2.0 + inherits: 2.0.4 + ripemd160: 2.0.2 + safe-buffer: 5.2.1 + sha.js: 2.4.12 - /eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@4.13.0)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1): - resolution: {integrity: sha512-TUCVru1Z09eKnVAX5i3XoNzjcCOU3nDQz2/jQGkg1jVYm+25fKClveziSl16celfCq+npU0MBPW/ZnXdGFZ9lw==} - peerDependencies: - '@typescript-eslint/eslint-plugin': '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true + create-jest@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): dependencies: - '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0) - '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) - eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1) - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.32.0) + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + jest-util: 29.7.0 + prompts: 2.4.2 transitivePeerDependencies: - - eslint - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks + - '@types/node' + - babel-plugin-macros - supports-color - - typescript - dev: false + - ts-node - /eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@5.35.1)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-TUCVru1Z09eKnVAX5i3XoNzjcCOU3nDQz2/jQGkg1jVYm+25fKClveziSl16celfCq+npU0MBPW/ZnXdGFZ9lw==} - peerDependencies: - '@typescript-eslint/eslint-plugin': '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true + create-jest@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): dependencies: - '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1)(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) - eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0) - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.32.0) + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-util: 29.7.0 + prompts: 2.4.2 transitivePeerDependencies: - - eslint - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks + - '@types/node' + - babel-plugin-macros - supports-color - - typescript + - ts-node - /eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react-hooks@4.2.0)(eslint-plugin-react@7.22.0)(eslint@7.32.0): - resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} - engines: {node: '>= 6'} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - eslint-plugin-jsx-a11y: '*' - eslint-plugin-react: '*' - eslint-plugin-react-hooks: '*' - peerDependenciesMeta: - eslint: - optional: true - eslint-plugin-import: - optional: true - eslint-plugin-jsx-a11y: - optional: true - eslint-plugin-react: - optional: true - eslint-plugin-react-hooks: - optional: true + cross-fetch@3.2.0: dependencies: - eslint: 7.32.0 - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.32.0) - eslint-plugin-import: 2.22.1(eslint@7.32.0) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - object.assign: 4.1.4 - object.entries: 1.1.6 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding - /eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.4.1)(eslint-plugin-react@7.25.1): - resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} - engines: {node: '>= 6'} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - eslint-plugin-jsx-a11y: '*' - eslint-plugin-react: '*' - eslint-plugin-react-hooks: '*' - peerDependenciesMeta: - eslint: - optional: true - eslint-plugin-import: - optional: true - eslint-plugin-jsx-a11y: - optional: true - eslint-plugin-react: - optional: true - eslint-plugin-react-hooks: - optional: true + cross-spawn@7.0.6: dependencies: - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.32.0) - eslint-plugin-import: 2.22.1(eslint@7.32.0) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-react: 7.25.1 - object.assign: 4.1.4 - object.entries: 1.1.6 - dev: false + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 - /eslint-config-prettier@8.5.0(eslint@7.32.0): - resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} - hasBin: true - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + crypto-browserify@3.12.0: dependencies: - eslint: 7.32.0 + browserify-cipher: 1.0.1 + browserify-sign: 4.2.3 + create-ecdh: 4.0.4 + create-hash: 1.2.0 + create-hmac: 1.1.7 + diffie-hellman: 5.0.3 + inherits: 2.0.4 + pbkdf2: 3.1.3 + public-encrypt: 4.0.3 + randombytes: 2.1.0 + randomfill: 1.0.4 - /eslint-import-resolver-node@0.3.6: - resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + css-blank-pseudo@3.0.3(postcss@8.4.19): dependencies: - debug: 3.2.7 - resolve: 1.22.2 - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /eslint-mdx@1.17.1(eslint@7.32.0): - resolution: {integrity: sha512-ihkTZCYipPUpzZgTeTwRajj3ZFYQAMWUm/ajscLWjXPVA2+ZQoLRreVNETRZ1znCnE3OAGbwmA1vd0uxtSk2wg==} - engines: {node: '>=10.0.0'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + css-declaration-sorter@6.4.1(postcss@8.4.19): dependencies: - cosmiconfig: 7.1.0 - eslint: 7.32.0 - remark-mdx: 1.6.22 - remark-parse: 8.0.3 - remark-stringify: 8.1.1 - tslib: 2.6.0 - unified: 9.2.2 - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 - /eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.6)(eslint@7.32.0): - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + css-has-pseudo@3.0.4(postcss@8.4.19): dependencies: - debug: 3.2.7 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.6 - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /eslint-plugin-import@2.22.1(eslint@7.32.0): - resolution: {integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true + css-loader@6.7.1(webpack@5.84.1): dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - contains-path: 0.1.0 - debug: 2.6.9 - doctrine: 1.5.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.6)(eslint@7.32.0) - has: 1.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - read-pkg-up: 2.0.0 - resolve: 1.22.2 - tsconfig-paths: 3.14.2 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color + icss-utils: 5.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.6) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.6) + postcss-modules-scope: 3.2.1(postcss@8.5.6) + postcss-modules-values: 4.0.0(postcss@8.5.6) + postcss-value-parser: 4.2.0 + semver: 7.7.2 + webpack: 5.84.1(esbuild@0.14.28) + + css-loader@6.7.2(webpack@5.84.1): + dependencies: + icss-utils: 5.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.19) + postcss-modules-local-by-default: 4.2.0(postcss@8.4.19) + postcss-modules-scope: 3.2.1(postcss@8.4.19) + postcss-modules-values: 4.0.0(postcss@8.4.19) + postcss-value-parser: 4.2.0 + semver: 7.7.2 + webpack: 5.84.1(esbuild@0.14.28) + + css-minimizer-webpack-plugin@3.0.2(webpack@5.84.1): + dependencies: + cssnano: 5.1.15(postcss@8.4.19) + jest-worker: 27.5.1 + p-limit: 3.1.0 + postcss: 8.4.19 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + source-map: 0.6.1 + webpack: 5.84.1(esbuild@0.14.28) + + css-prefers-color-scheme@6.0.3(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@6.2.2: {} + + css.escape@1.5.1: {} + + cssdb@7.11.2: {} + + cssesc@3.0.0: {} + + cssnano-preset-default@5.2.14(postcss@8.4.19): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.4.19) + cssnano-utils: 3.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-calc: 8.2.4(postcss@8.4.19) + postcss-colormin: 5.3.1(postcss@8.4.19) + postcss-convert-values: 5.1.3(postcss@8.4.19) + postcss-discard-comments: 5.1.2(postcss@8.4.19) + postcss-discard-duplicates: 5.1.0(postcss@8.4.19) + postcss-discard-empty: 5.1.1(postcss@8.4.19) + postcss-discard-overridden: 5.1.0(postcss@8.4.19) + postcss-merge-longhand: 5.1.7(postcss@8.4.19) + postcss-merge-rules: 5.1.4(postcss@8.4.19) + postcss-minify-font-values: 5.1.0(postcss@8.4.19) + postcss-minify-gradients: 5.1.1(postcss@8.4.19) + postcss-minify-params: 5.1.4(postcss@8.4.19) + postcss-minify-selectors: 5.2.1(postcss@8.4.19) + postcss-normalize-charset: 5.1.0(postcss@8.4.19) + postcss-normalize-display-values: 5.1.0(postcss@8.4.19) + postcss-normalize-positions: 5.1.1(postcss@8.4.19) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.19) + postcss-normalize-string: 5.1.0(postcss@8.4.19) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.19) + postcss-normalize-unicode: 5.1.1(postcss@8.4.19) + postcss-normalize-url: 5.1.0(postcss@8.4.19) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.19) + postcss-ordered-values: 5.1.3(postcss@8.4.19) + postcss-reduce-initial: 5.1.2(postcss@8.4.19) + postcss-reduce-transforms: 5.1.0(postcss@8.4.19) + postcss-svgo: 5.1.0(postcss@8.4.19) + postcss-unique-selectors: 5.1.1(postcss@8.4.19) - /eslint-plugin-jest@24.1.5(eslint@7.32.0)(typescript@4.9.3): - resolution: {integrity: sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==} - engines: {node: '>=10'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + cssnano-utils@3.1.0(postcss@8.4.19): dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 - transitivePeerDependencies: - - supports-color - - typescript + postcss: 8.4.19 - /eslint-plugin-jest@24.4.0(@typescript-eslint/eslint-plugin@4.29.3): - resolution: {integrity: sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==} - engines: {node: '>=10'} - peerDependencies: - '@typescript-eslint/eslint-plugin': '*' - eslint: '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - eslint: - optional: true + cssnano@5.1.15(postcss@8.4.19): dependencies: - '@typescript-eslint/eslint-plugin': 4.29.3 - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) - transitivePeerDependencies: - - supports-color - - typescript - dev: false + cssnano-preset-default: 5.2.14(postcss@8.4.19) + lilconfig: 2.1.0 + postcss: 8.4.19 + yaml: 1.10.2 - /eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0): - resolution: {integrity: sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + csso@4.2.0: dependencies: - '@babel/runtime': 7.20.0 - aria-query: 4.2.2 - array-includes: 3.1.6 - ast-types-flow: 0.0.7 - axe-core: 4.7.2 - axobject-query: 2.2.0 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 7.32.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - language-tags: 1.0.8 + css-tree: 1.1.3 - /eslint-plugin-markdown@2.2.1(eslint@7.32.0): - resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} - engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true - dependencies: - eslint: 7.32.0 - mdast-util-from-markdown: 0.8.5 - transitivePeerDependencies: - - supports-color + cssom@0.3.8: {} - /eslint-plugin-mdx@1.13.0(eslint@7.32.0): - resolution: {integrity: sha512-oZ/R9OmSx1gZs52CO58HTHlJXRKoZtF6ZMaWP+sOcSGMFxoddoPr9PDgpP52ab5TWu5yVl5guR9D+GMfzkR2Uw==} - engines: {node: '>=10.0.0'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + cssom@0.5.0: {} + + cssstyle@2.3.0: dependencies: - cosmiconfig: 7.1.0 - eslint: 7.32.0 - eslint-mdx: 1.17.1(eslint@7.32.0) - eslint-plugin-markdown: 2.2.1(eslint@7.32.0) - remark-mdx: 1.6.22 - remark-parse: 8.0.3 - remark-stringify: 8.1.1 - synckit: 0.1.6 - tslib: 2.6.0 - unified: 9.2.2 - vfile: 4.2.1 - transitivePeerDependencies: - - supports-color + cssom: 0.3.8 - /eslint-plugin-mdx@1.15.0: - resolution: {integrity: sha512-3NF/tp6MgdJL+28i+Qzg60loiHqgPWb35NUtDQvhocUOK2afRD0YR1+ep7JFUZ5mys2CTkpbd8Gc/GrXgsBVNA==} - engines: {node: '>=10.0.0'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + cssstyle@4.6.0: dependencies: - eslint-mdx: 1.17.1(eslint@7.32.0) - eslint-plugin-markdown: 2.2.1(eslint@7.32.0) - synckit: 0.3.4 - tslib: 2.6.0 - vfile: 4.2.1 - transitivePeerDependencies: - - supports-color - dev: false + '@asamuzakjp/css-color': 3.2.0 + rrweb-cssom: 0.8.0 - /eslint-plugin-react-hooks@4.2.0(eslint@7.32.0): - resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + csstype@3.1.3: {} + + d@1.0.2: dependencies: - eslint: 7.32.0 + es5-ext: 0.10.64 + type: 2.7.3 - /eslint-plugin-react@7.22.0(eslint@7.32.0): - resolution: {integrity: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==} - engines: {node: '>=4'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + damerau-levenshtein@1.0.8: {} + + data-uri-to-buffer@6.0.2: + optional: true + + data-urls@3.0.2: dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - doctrine: 2.1.0 - eslint: 7.32.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 1.22.2 - string.prototype.matchall: 4.0.8 + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 - /eslint-plugin-react@7.25.1: - resolution: {integrity: sha512-P4j9K1dHoFXxDNP05AtixcJEvIT6ht8FhYKsrkY0MPCPaUMYijhpWwNiRDZVtA8KFuZOkGSeft6QwH8KuVpJug==} - engines: {node: '>=4'} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + data-urls@5.0.0: dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - doctrine: 2.1.0 - estraverse: 5.3.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - string.prototype.matchall: 4.0.8 - dev: false + whatwg-mimetype: 4.0.0 + whatwg-url: 14.2.0 - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + data-view-buffer@1.0.2: dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 - /eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} + data-view-byte-length@1.0.2: dependencies: - eslint-visitor-keys: 1.3.0 + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 - /eslint-utils@3.0.0(eslint@7.32.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '*' - peerDependenciesMeta: - eslint: - optional: true + data-view-byte-offset@1.0.1: dependencies: - eslint: 7.32.0 - eslint-visitor-keys: 2.1.0 + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 - /eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} + date-format@0.0.2: {} - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + dateformat@3.0.3: {} - /eslint-visitor-keys@3.4.1: - resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + debug@2.6.9: + dependencies: + ms: 2.0.0 - /eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - hasBin: true + debug@3.2.7: dependencies: - '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.4.3 - '@humanwhocodes/config-array': 0.5.0 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 - enquirer: 2.3.6 - escape-string-regexp: 4.0.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 - esquery: 1.5.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: 13.20.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - js-yaml: 3.14.1 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.5.3 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - table: 6.8.1 - text-table: 0.2.0 - v8-compile-cache: 2.3.0 - transitivePeerDependencies: - - supports-color + ms: 2.1.3 - /espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} + debug@4.4.1: dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 + ms: 2.1.3 - /esprima-fb@15001.1.0-dev-harmony-fb: - resolution: {integrity: sha512-59dDGQo2b3M/JfKIws0/z8dcXH2mnVHkfSPRhCYS91JNGfGNwr7GsSF6qzWZuOGvw5Ii0w9TtylrX07MGmlOoQ==} - engines: {node: '>=0.4.0'} - hasBin: true + decamelize@1.2.0: {} - /esprima@3.1.3: - resolution: {integrity: sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==} - engines: {node: '>=4'} - hasBin: true + decamelize@2.0.0: + dependencies: + xregexp: 4.0.0 - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + decimal.js@10.6.0: {} - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + dedent@1.6.0(babel-plugin-macros@3.1.0): + optionalDependencies: + babel-plugin-macros: 3.1.0 + + deep-equal@2.2.3: dependencies: - estraverse: 5.3.0 + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + es-get-iterator: 1.1.3 + get-intrinsic: 1.3.0 + is-arguments: 1.2.0 + is-array-buffer: 3.0.5 + is-date-object: 1.1.0 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + isarray: 2.0.5 + object-is: 1.1.6 + object-keys: 1.1.1 + object.assign: 4.1.7 + regexp.prototype.flags: 1.5.4 + side-channel: 1.1.0 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + deep-is@0.1.4: {} + + deepmerge@4.3.1: {} + + default-gateway@6.0.3: dependencies: - estraverse: 5.3.0 + execa: 5.1.1 - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + define-lazy-prop@2.0.0: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + defined@1.0.1: {} - /event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + degenerator@5.0.1: dependencies: - d: 1.0.1 - es5-ext: 0.10.62 + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + optional: true - /eventemitter3@3.1.2: - resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} - dev: false + delayed-stream@1.0.0: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + depd@1.1.2: {} - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + depd@2.0.0: {} - /evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} - dependencies: - md5.js: 1.3.5 - safe-buffer: 5.2.1 + dequal@2.0.3: {} - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + des.js@1.1.0: + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + destroy@1.2.0: {} - /expect@29.5.0: - resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + detab@2.0.3: dependencies: - '@jest/expect-utils': 29.5.0 - jest-get-type: 29.4.3 - jest-matcher-utils: 29.5.0 - jest-message-util: 29.5.0 - jest-util: 29.5.0 + repeat-string: 1.6.1 - /express@4.18.1: - resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} - engines: {node: '>= 0.10.0'} + detect-newline@3.1.0: {} + + detect-node@2.1.0: {} + + detect-port-alt@1.1.6: dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.0 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 + address: 1.2.2 debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.10.3 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 transitivePeerDependencies: - supports-color - /express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: '>= 0.10.0'} + detective@4.7.1: dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.1 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.11.0 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color + acorn: 5.7.4 + defined: 1.0.1 - /ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + devtools-protocol@0.0.1464554: + optional: true + + diff-sequences@26.6.2: {} + + diff-sequences@29.6.3: {} + + diffie-hellman@5.0.3: dependencies: - type: 2.7.2 + bn.js: 4.12.2 + miller-rabin: 4.0.1 + randombytes: 2.1.0 - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + dir-glob@3.0.1: dependencies: - is-extendable: 0.1.1 + path-type: 4.0.0 - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dns-packet@5.6.1: + dependencies: + '@leichtgewicht/ip-codec': 2.0.5 - /extract-files@9.0.0: - resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==} - engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0} + doctrine@1.5.0: + dependencies: + esutils: 2.0.3 + isarray: 1.0.0 - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 - /fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} - engines: {node: '>=8.6.0'} + doctrine@3.0.0: dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 + esutils: 2.0.3 - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dom-accessibility-api@0.5.16: {} - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dom-converter@0.2.0: + dependencies: + utila: 0.4.0 - /fast-safe-stringify@2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + dom-iterator@1.0.2: + dependencies: + component-props: 1.1.1 + component-xor: 0.0.4 - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + dom-serializer@1.4.1: dependencies: - reusify: 1.0.4 + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 - /fault@1.0.4: - resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + domain-browser@4.19.0: {} + + domelementtype@2.3.0: {} + + domexception@4.0.0: dependencies: - format: 0.2.2 + webidl-conversions: 7.0.0 - /faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} + domhandler@4.3.1: dependencies: - websocket-driver: 0.7.4 + domelementtype: 2.3.0 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + domutils@2.8.0: dependencies: - bser: 2.1.1 + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 - /fbjs@0.6.1: - resolution: {integrity: sha512-4KW7tT33ytfazK3Ekvesbsa4A5J79hUrdXONQGZ0wM6i3PFc70YknF9kj1eyx3mDupgJ7Z+ifFhcMJ+ps2eZIw==} + dot-case@3.0.4: dependencies: - core-js: 1.2.7 - loose-envify: 1.4.0 - promise: 7.3.1 - ua-parser-js: 0.7.35 - whatwg-fetch: 0.9.0 + no-case: 3.0.4 + tslib: 2.8.1 - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + dunder-proto@1.0.1: dependencies: - flat-cache: 3.0.4 + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 - /filesize@8.0.7: - resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} - engines: {node: '>= 0.4.0'} + duplexer@0.1.2: {} - /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + ee-first@1.1.1: {} + + electron-to-chromium@1.5.183: {} + + elliptic@6.6.1: dependencies: - to-regex-range: 5.0.1 + bn.js: 4.12.2 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 - /finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + emittery@0.13.1: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + emojis-list@3.0.0: {} + + encodeurl@1.0.2: {} + + encodeurl@2.0.0: {} + + end-of-stream@1.4.5: dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + once: 1.4.0 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + enhanced-resolve@5.18.2: dependencies: - commondir: 1.0.1 - make-dir: 3.1.0 - pkg-dir: 4.2.0 + graceful-fs: 4.2.11 + tapable: 2.2.2 - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + entities@2.2.0: {} + + entities@4.5.0: {} + + entities@6.0.1: {} + + env-paths@2.2.1: + optional: true + + envify@3.4.1: dependencies: - locate-path: 2.0.0 + jstransform: 11.0.3 + through: 2.3.8 - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + errno@0.1.8: dependencies: - locate-path: 3.0.0 + prr: 1.0.1 - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + error-ex@1.3.2: dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 + is-arrayish: 0.2.1 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + error-stack-parser@2.1.4: dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 + stackframe: 1.3.4 - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-get-iterator@1.1.3: + dependencies: + call-bind: 1.0.8 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + is-arguments: 1.2.0 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.1.1 + isarray: 2.0.5 + stop-iteration-iterator: 1.1.0 + + es-module-lexer@0.7.1: {} + + es-module-lexer@1.7.0: {} + + es-object-atoms@1.1.1: dependencies: - flatted: 3.2.7 - rimraf: 3.0.2 + es-errors: 1.3.0 - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 - /follow-redirects@1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + es-to-primitive@1.3.0: dependencies: is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 - /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '*' - typescript: '*' - vue-template-compiler: '*' - webpack: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true - vue-template-compiler: - optional: true - webpack: - optional: true + es5-ext@0.10.64: dependencies: - '@babel/code-frame': 7.22.5 - '@types/json-schema': 7.0.12 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 6.0.0 - deepmerge: 4.3.1 - eslint: 7.32.0 - fs-extra: 9.1.0 - glob: 7.2.3 - memfs: 3.5.3 - minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.5.3 - tapable: 1.1.3 - typescript: 4.9.3 - webpack: 5.84.1(esbuild@0.14.28) + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + esniff: 2.0.1 + next-tick: 1.1.0 - /form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + es6-iterator@2.0.3: dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 + d: 1.0.2 + es5-ext: 0.10.64 + es6-symbol: 3.1.4 + + es6-object-assign@1.1.0: {} + + es6-symbol@3.1.4: + dependencies: + d: 1.0.2 + ext: 1.7.0 - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + es6-weak-map@2.0.3: dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 + d: 1.0.2 + es5-ext: 0.10.64 + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 - /format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} + esbuild-android-64@0.14.28: + optional: true - /forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} + esbuild-android-arm64@0.14.28: + optional: true - /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + esbuild-darwin-64@0.14.28: + optional: true - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + esbuild-darwin-arm64@0.14.28: + optional: true - /fs-extra@10.0.0: - resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==} - engines: {node: '>=12'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 + esbuild-freebsd-64@0.14.28: + optional: true - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 + esbuild-freebsd-arm64@0.14.28: + optional: true - /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} - dependencies: - at-least-node: 1.0.0 - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 + esbuild-linux-32@0.14.28: + optional: true - /fs-monkey@1.0.4: - resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==} + esbuild-linux-64@0.14.28: + optional: true - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + esbuild-linux-arm64@0.14.28: + optional: true - /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + esbuild-linux-arm@0.14.28: optional: true - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + esbuild-linux-mips64le@0.14.28: + optional: true - /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - functions-have-names: 1.2.3 + esbuild-linux-ppc64le@0.14.28: + optional: true - /functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + esbuild-linux-riscv64@0.14.28: + optional: true - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + esbuild-linux-s390x@0.14.28: + optional: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + esbuild-netbsd-64@0.14.28: + optional: true - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + esbuild-openbsd-64@0.14.28: + optional: true - /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-proto: 1.0.1 - has-symbols: 1.0.3 + esbuild-sunos-64@0.14.28: + optional: true - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + esbuild-windows-32@0.14.28: + optional: true - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + esbuild-windows-64@0.14.28: + optional: true - /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + esbuild-windows-arm64@0.14.28: + optional: true - /get-tsconfig@4.2.0: - resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==} + esbuild@0.14.28: + optionalDependencies: + esbuild-android-64: 0.14.28 + esbuild-android-arm64: 0.14.28 + esbuild-darwin-64: 0.14.28 + esbuild-darwin-arm64: 0.14.28 + esbuild-freebsd-64: 0.14.28 + esbuild-freebsd-arm64: 0.14.28 + esbuild-linux-32: 0.14.28 + esbuild-linux-64: 0.14.28 + esbuild-linux-arm: 0.14.28 + esbuild-linux-arm64: 0.14.28 + esbuild-linux-mips64le: 0.14.28 + esbuild-linux-ppc64le: 0.14.28 + esbuild-linux-riscv64: 0.14.28 + esbuild-linux-s390x: 0.14.28 + esbuild-netbsd-64: 0.14.28 + esbuild-openbsd-64: 0.14.28 + esbuild-sunos-64: 0.14.28 + esbuild-windows-32: 0.14.28 + esbuild-windows-64: 0.14.28 + esbuild-windows-arm64: 0.14.28 - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - dependencies: - is-glob: 4.0.3 + escalade@3.2.0: {} - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + escape-html@1.0.3: {} - /glob@5.0.15: - resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} - dependencies: - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + escape-string-regexp@1.0.5: {} - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + escape-string-regexp@2.0.0: {} - /global-modules@2.0.0: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} - engines: {node: '>=6'} - dependencies: - global-prefix: 3.0.0 + escape-string-regexp@4.0.0: {} - /global-prefix@3.0.0: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} - engines: {node: '>=6'} + escodegen@2.1.0: dependencies: - ini: 1.3.8 - kind-of: 6.0.3 - which: 1.3.1 + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0): + dependencies: + confusing-browser-globals: 1.0.11 + eslint: 7.32.0 + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + object.assign: 4.1.7 + object.entries: 1.1.9 - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} - engines: {node: '>=8'} + eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3): dependencies: - type-fest: 0.20.2 + '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + transitivePeerDependencies: + - eslint + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3): dependencies: - define-properties: 1.2.0 + '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + transitivePeerDependencies: + - eslint + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0): dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 3.0.0 + eslint: 7.32.0 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-react: 7.22.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + object.assign: 4.1.7 + object.entries: 1.1.9 - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0): dependencies: - get-intrinsic: 1.2.1 + eslint: 7.32.0 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) + eslint-plugin-react: 7.25.1(eslint@7.32.0) + eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + object.assign: 4.1.7 + object.entries: 1.1.9 - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + eslint-config-prettier@8.5.0(eslint@7.32.0): + dependencies: + eslint: 7.32.0 - /graphql-request@4.3.0(graphql@14.7.0): - resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==} - peerDependencies: - graphql: '*' - peerDependenciesMeta: - graphql: - optional: true + eslint-import-resolver-node@0.3.6: dependencies: - cross-fetch: 3.1.6 - extract-files: 9.0.0 - form-data: 3.0.1 - graphql: 14.7.0 + debug: 3.2.7 + resolve: 1.22.10 transitivePeerDependencies: - - encoding + - supports-color - /graphql-tag@2.12.6(graphql@14.7.0): - resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: '>=10'} - peerDependencies: - graphql: '*' - peerDependenciesMeta: - graphql: - optional: true + eslint-mdx@1.17.1(eslint@7.32.0): dependencies: - graphql: 14.7.0 - tslib: 2.6.0 - dev: false + cosmiconfig: 7.1.0 + eslint: 7.32.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-stringify: 8.1.1 + tslib: 2.8.1 + unified: 9.2.2 + transitivePeerDependencies: + - supports-color - /graphql@14.7.0: - resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} - engines: {node: '>= 6.x'} + eslint-module-utils@2.12.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.6)(eslint@7.32.0): dependencies: - iterall: 1.3.0 + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.6 + transitivePeerDependencies: + - supports-color - /gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} + eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0): dependencies: - duplexer: 0.1.2 - - /handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + array-includes: 3.1.9 + array.prototype.flat: 1.3.3 + contains-path: 0.1.0 + debug: 2.6.9 + doctrine: 1.5.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.12.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.6)(eslint@7.32.0) + has: 1.0.4 + minimatch: 3.1.2 + object.values: 1.2.1 + read-pkg-up: 2.0.0 + resolve: 1.22.10 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color - /harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + eslint-plugin-jest@24.1.5(eslint@7.32.0)(typescript@4.9.3): + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) + eslint: 7.32.0 + transitivePeerDependencies: + - supports-color + - typescript - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + eslint-plugin-jest@24.4.0(@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3): + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) + eslint: 7.32.0 + optionalDependencies: + '@typescript-eslint/eslint-plugin': 4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + transitivePeerDependencies: + - supports-color + - typescript - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0): + dependencies: + '@babel/runtime': 7.20.0 + aria-query: 4.2.2 + array-includes: 3.1.9 + ast-types-flow: 0.0.7 + axe-core: 4.10.3 + axobject-query: 2.2.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 7.32.0 + has: 1.0.4 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + eslint-plugin-markdown@2.2.1(eslint@7.32.0): + dependencies: + eslint: 7.32.0 + mdast-util-from-markdown: 0.8.5 + transitivePeerDependencies: + - supports-color - /has-own-prop@2.0.0: - resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} - engines: {node: '>=8'} + eslint-plugin-mdx@1.13.0(eslint@7.32.0): + dependencies: + cosmiconfig: 7.1.0 + eslint: 7.32.0 + eslint-mdx: 1.17.1(eslint@7.32.0) + eslint-plugin-markdown: 2.2.1(eslint@7.32.0) + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-stringify: 8.1.1 + synckit: 0.1.6 + tslib: 2.8.1 + unified: 9.2.2 + vfile: 4.2.1 + transitivePeerDependencies: + - supports-color - /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + eslint-plugin-mdx@1.15.0(eslint@7.32.0): dependencies: - get-intrinsic: 1.2.1 - - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + eslint: 7.32.0 + eslint-mdx: 1.17.1(eslint@7.32.0) + eslint-plugin-markdown: 2.2.1(eslint@7.32.0) + synckit: 0.3.4 + tslib: 2.8.1 + vfile: 4.2.1 + transitivePeerDependencies: + - supports-color - /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + eslint-plugin-react-hooks@4.2.0(eslint@7.32.0): dependencies: - has-symbols: 1.0.3 + eslint: 7.32.0 - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} + eslint-plugin-react@7.22.0(eslint@7.32.0): dependencies: - function-bind: 1.1.1 + array-includes: 3.1.9 + array.prototype.flatmap: 1.3.3 + doctrine: 2.1.0 + eslint: 7.32.0 + has: 1.0.4 + jsx-ast-utils: 3.3.5 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 1.22.10 + string.prototype.matchall: 4.0.12 - /hash-base@3.1.0: - resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} - engines: {node: '>=4'} + eslint-plugin-react@7.25.1(eslint@7.32.0): dependencies: - inherits: 2.0.4 - readable-stream: 3.6.2 - safe-buffer: 5.2.1 + array-includes: 3.1.9 + array.prototype.flatmap: 1.3.3 + doctrine: 2.1.0 + eslint: 7.32.0 + estraverse: 5.3.0 + has: 1.0.4 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + string.prototype.matchall: 4.0.12 - /hash.js@1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + eslint-scope@5.1.1: dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 + esrecurse: 4.3.0 + estraverse: 4.3.0 - /hast-to-hyperscript@9.0.1: - resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + eslint-utils@2.1.0: dependencies: - '@types/unist': 2.0.6 - comma-separated-tokens: 1.0.8 - property-information: 5.6.0 - space-separated-tokens: 1.1.5 - style-to-object: 0.3.0 - unist-util-is: 4.1.0 - web-namespaces: 1.1.4 + eslint-visitor-keys: 1.3.0 - /hast-util-from-parse5@5.0.3: - resolution: {integrity: sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==} + eslint-utils@3.0.0(eslint@7.32.0): dependencies: - ccount: 1.1.0 - hastscript: 5.1.2 - property-information: 5.6.0 - web-namespaces: 1.1.4 - xtend: 4.0.2 + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 - /hast-util-from-parse5@6.0.1: - resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} - dependencies: - '@types/parse5': 5.0.3 - hastscript: 6.0.0 - property-information: 5.6.0 - vfile: 4.2.0 - vfile-location: 3.2.0 - web-namespaces: 1.1.4 + eslint-visitor-keys@1.3.0: {} - /hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + eslint-visitor-keys@2.1.0: {} - /hast-util-raw@6.0.1: - resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} - dependencies: - '@types/hast': 2.3.4 - hast-util-from-parse5: 6.0.1 - hast-util-to-parse5: 6.0.0 - html-void-elements: 1.0.5 - parse5: 6.0.1 - unist-util-position: 3.1.0 - vfile: 4.2.0 - web-namespaces: 1.1.4 - xtend: 4.0.2 - zwitch: 1.0.5 + eslint-visitor-keys@3.4.3: {} - /hast-util-to-parse5@6.0.0: - resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + eslint@7.32.0: dependencies: - hast-to-hyperscript: 9.0.1 - property-information: 5.6.0 - web-namespaces: 1.1.4 - xtend: 4.0.2 - zwitch: 1.0.5 + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + doctrine: 3.0.0 + enquirer: 2.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.6.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: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.7.2 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.9.0 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color - /hastscript@5.1.2: - resolution: {integrity: sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==} + esniff@2.0.1: dependencies: - comma-separated-tokens: 1.0.8 - hast-util-parse-selector: 2.2.5 - property-information: 5.6.0 - space-separated-tokens: 1.1.5 + d: 1.0.2 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + type: 2.7.3 - /hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + espree@7.3.1: dependencies: - '@types/hast': 2.3.4 - comma-separated-tokens: 1.0.8 - hast-util-parse-selector: 2.2.5 - property-information: 5.6.0 - space-separated-tokens: 1.1.5 + acorn: 7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) + eslint-visitor-keys: 1.3.0 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true + esprima-fb@15001.1.0-dev-harmony-fb: {} - /highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + esprima@3.1.3: {} - /hmac-drbg@1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + esprima@4.0.1: {} + + esquery@1.6.0: dependencies: - hash.js: 1.1.7 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 + estraverse: 5.3.0 - /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + esrecurse@4.3.0: dependencies: - react-is: 16.13.1 - dev: false + estraverse: 5.3.0 - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + estraverse@4.3.0: {} - /hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - dependencies: - inherits: 2.0.4 - obuf: 1.1.2 - readable-stream: 2.3.8 - wbuf: 1.7.3 + estraverse@5.3.0: {} - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + esutils@2.0.3: {} + + etag@1.8.1: {} + + event-emitter@0.3.5: dependencies: - whatwg-encoding: 2.0.0 + d: 1.0.2 + es5-ext: 0.10.64 - /html-entities@2.4.0: - resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==} + eventemitter3@3.1.2: {} - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + eventemitter3@4.0.7: {} - /html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true - dependencies: - camel-case: 4.1.2 - clean-css: 5.3.2 - commander: 8.3.0 - he: 1.2.0 - param-case: 3.0.4 - relateurl: 0.2.7 - terser: 5.18.2 + events@3.3.0: {} - /html-void-elements@1.0.5: - resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + evp_bytestokey@1.0.3: + dependencies: + md5.js: 1.3.5 + safe-buffer: 5.2.1 - /html-webpack-plugin@5.5.0(webpack@5.84.1): - resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} - engines: {node: '>=10.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + execa@5.1.1: dependencies: - '@types/html-minifier-terser': 6.1.0 - html-minifier-terser: 6.1.0 - lodash: 4.17.21 - pretty-error: 4.0.0 - tapable: 2.2.1 - webpack: 5.84.1 + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 - /htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + exit@0.1.2: {} + + expect@29.7.0: dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - domutils: 2.8.0 - entities: 2.2.0 + '@jest/expect-utils': 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 - /http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + express@4.18.1: + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.0 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.10.3 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color - /http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} + express@4.18.2: dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.0 - statuses: 1.5.0 + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.1 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.11.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + express@4.21.2: dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.3 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.7.1 + cookie-signature: 1.0.6 + debug: 2.6.9 depd: 2.0.0 - inherits: 2.0.4 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.3.1 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.3 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.12 + proxy-addr: 2.0.7 + qs: 6.13.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.19.0 + serve-static: 1.16.2 setprototypeof: 1.2.0 statuses: 2.0.1 - toidentifier: 1.0.1 - - /http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 2.0.0 - agent-base: 6.0.2 - debug: 4.3.4 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 transitivePeerDependencies: - supports-color - /http-proxy-middleware@2.0.6(@types/express@4.17.17): - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': '*' - peerDependenciesMeta: - '@types/express': - optional: true + ext@1.7.0: dependencies: - '@types/express': 4.17.17 - '@types/http-proxy': 1.17.11 - http-proxy: 1.18.1 - is-glob: 4.0.3 - is-plain-obj: 3.0.0 - micromatch: 4.0.5 - transitivePeerDependencies: - - debug + type: 2.7.3 - /http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} + extend-shallow@2.0.1: dependencies: - eventemitter3: 4.0.7 - follow-redirects: 1.15.2 - requires-port: 1.0.0 - transitivePeerDependencies: - - debug + is-extendable: 0.1.1 - /https-browserify@1.0.0: - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} + extend@3.0.2: {} - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + extract-files@9.0.0: {} + + extract-zip@2.0.1: dependencies: - agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.4.1 + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color + optional: true - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + fast-deep-equal@3.1.3: {} - /humanize-string@2.1.0: - resolution: {integrity: sha512-sQ+hqmxyXW8Cj7iqxcQxD7oSy3+AXnIZXdUF9lQMkzaG8dtbKAB8U7lCtViMnwQ+MpdCKsO2Kiij3G6UUXq/Xg==} - engines: {node: '>=6'} + fast-fifo@1.3.2: + optional: true + + fast-glob@3.3.3: dependencies: - decamelize: 2.0.0 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-safe-stringify@2.1.1: {} + + fast-uri@3.0.6: {} + + fastq@1.19.1: dependencies: - safer-buffer: 2.1.2 + reusify: 1.1.0 - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + fault@1.0.4: dependencies: - safer-buffer: 2.1.2 + format: 0.2.2 - /icss-utils@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + faye-websocket@0.11.4: dependencies: - postcss: 8.4.19 + websocket-driver: 0.7.4 - /icss-utils@5.1.0(postcss@8.4.24): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + fb-watchman@2.0.2: dependencies: - postcss: 8.4.24 + bser: 2.1.1 - /identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + fbjs@0.6.1: dependencies: - harmony-reflect: 1.6.2 + core-js: 1.2.7 + loose-envify: 1.4.0 + promise: 7.3.1 + ua-parser-js: 0.7.40 + whatwg-fetch: 0.9.0 - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + optional: true - /ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} + file-entry-cache@6.0.1: + dependencies: + flat-cache: 3.2.0 - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} + filesize@8.0.7: {} - /immer@9.0.21: - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 - /immutable@4.3.0: - resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==} + finalhandler@1.2.0: + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + finalhandler@1.3.1: dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 + debug: 2.6.9 + encodeurl: 2.0.0 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + find-cache-dir@3.3.2: dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + find-root@1.1.0: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + find-up@2.1.0: dependencies: - once: 1.4.0 - wrappy: 1.0.2 - - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - - /inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + locate-path: 2.0.0 - /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: '>= 0.4'} + find-up@3.0.0: dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 - side-channel: 1.0.4 - - /ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - - /ipaddr.js@2.1.0: - resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} - engines: {node: '>= 10'} - - /is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - - /is-alphanumeric@1.0.0: - resolution: {integrity: sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==} - engines: {node: '>=0.10.0'} + locate-path: 3.0.0 - /is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + find-up@4.1.0: dependencies: - is-alphabetical: 1.0.4 - is-decimal: 1.0.4 + locate-path: 5.0.0 + path-exists: 4.0.0 - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + find-up@5.0.0: dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 + locate-path: 6.0.0 + path-exists: 4.0.0 - /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + flat-cache@3.2.0: dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-typed-array: 1.1.10 + flatted: 3.3.3 + keyv: 4.5.4 + rimraf: 3.0.2 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + flatted@3.2.7: {} - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - dependencies: - has-bigints: 1.0.2 + flatted@3.3.3: {} - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - dependencies: - binary-extensions: 2.2.0 + follow-redirects@1.15.9: {} - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + for-each@0.3.5: dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + is-callable: 1.2.7 - /is-core-module@2.12.1: - resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): dependencies: - has: 1.0.3 + '@babel/code-frame': 7.27.1 + '@types/json-schema': 7.0.15 + chalk: 4.1.2 + chokidar: 3.6.0 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.5.3 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.7.2 + tapable: 1.1.3 + typescript: 4.9.3 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + eslint: 7.32.0 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1): dependencies: - has-tostringtag: 1.0.0 + '@babel/code-frame': 7.27.1 + '@types/json-schema': 7.0.15 + chalk: 4.1.2 + chokidar: 3.6.0 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.5.3 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.7.2 + tapable: 1.1.3 + typescript: 5.8.3 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + eslint: 7.32.0 - /is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + form-data@3.0.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + mime-types: 2.1.35 - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true + form-data@4.0.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + format@0.2.2: {} - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + forwarded@0.2.0: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + fraction.js@4.3.7: {} - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + fresh@0.5.2: {} - /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + fs-extra@10.0.0: dependencies: - has-tostringtag: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + fs-extra@10.1.0: dependencies: - is-extglob: 2.1.1 - - /is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} - - /is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 - /is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + fs-extra@11.3.0: dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - - /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + fs-extra@9.1.0: dependencies: - has-tostringtag: 1.0.0 + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + fs-monkey@1.0.6: {} - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + fs.realpath@1.0.0: {} - /is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} + fsevents@2.3.3: + optional: true - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: dependencies: - isobject: 3.0.1 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + functional-red-black-tree@1.0.1: {} - /is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + functions-have-names@1.2.3: {} - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-intrinsic@1.3.0: dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 - /is-root@2.1.0: - resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} - engines: {node: '>=6'} + get-package-type@0.1.0: {} - /is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 - /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + get-stream@5.2.0: dependencies: - call-bind: 1.0.2 + pump: 3.0.3 + optional: true - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + get-stream@6.0.1: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + get-symbol-description@1.1.0: dependencies: - has-tostringtag: 1.0.0 + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + get-tsconfig@4.2.0: {} + + get-uri@6.0.5: dependencies: - has-symbols: 1.0.3 + basic-ftp: 5.0.5 + data-uri-to-buffer: 6.0.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + optional: true - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} + glob-parent@5.1.2: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 + is-glob: 4.0.3 - /is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + glob-to-regexp@0.4.1: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + glob@5.0.15: dependencies: - call-bind: 1.0.2 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 - /is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + glob@7.2.3: dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - - /is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 - /is-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + global-modules@2.0.0: + dependencies: + global-prefix: 3.0.0 - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + global-prefix@3.0.0: dependencies: - is-docker: 2.2.1 + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + globals@13.24.0: + dependencies: + type-fest: 0.20.2 - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + gopd@1.2.0: {} - /istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} - engines: {node: '>=8'} + graceful-fs@4.2.11: {} - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + graphql-request@4.3.0(graphql@14.7.0): dependencies: - '@babel/core': 7.22.5 - '@babel/parser': 7.22.5 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 6.3.0 + cross-fetch: 3.2.0 + extract-files: 9.0.0 + form-data: 3.0.3 + graphql: 14.7.0 transitivePeerDependencies: - - supports-color + - encoding - /istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} - engines: {node: '>=8'} + graphql-tag@2.12.6(graphql@14.7.0): dependencies: - istanbul-lib-coverage: 3.2.0 - make-dir: 3.1.0 - supports-color: 7.2.0 + graphql: 14.7.0 + tslib: 2.8.1 - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + graphql@14.7.0: dependencies: - debug: 4.3.4 - istanbul-lib-coverage: 3.2.0 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color + iterall: 1.3.0 - /istanbul-reports@3.1.5: - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} - engines: {node: '>=8'} + gzip-size@6.0.0: dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 + duplexer: 0.1.2 - /iterall@1.3.0: - resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} + handle-thing@2.0.1: {} - /jest-changed-files@29.5.0: - resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - execa: 5.1.1 - p-limit: 3.1.0 + harmony-reflect@1.6.2: {} - /jest-circus@29.5.0: - resolution: {integrity: sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.5.0 - '@jest/expect': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - is-generator-fn: 2.1.0 - jest-each: 29.5.0 - jest-matcher-utils: 29.5.0 - jest-message-util: 29.5.0 - jest-runtime: 29.5.0 - jest-snapshot: 29.5.0 - jest-util: 29.5.0 - p-limit: 3.1.0 - pretty-format: 29.5.0 - pure-rand: 6.0.2 - slash: 3.0.0 - stack-utils: 2.0.6 - transitivePeerDependencies: - - supports-color + has-bigints@1.1.0: {} - /jest-cli@29.5.0(@types/node@12.20.4): - resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/types': 29.5.0 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - import-local: 3.1.0 - jest-config: 29.5.0(@types/node@12.20.4) - jest-util: 29.5.0 - jest-validate: 29.5.0 - prompts: 2.4.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - dev: false + has-flag@3.0.0: {} - /jest-cli@29.5.0(@types/node@16.18.37): - resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/types': 29.5.0 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - import-local: 3.1.0 - jest-config: 29.5.0(@types/node@16.18.37) - jest-util: 29.5.0 - jest-validate: 29.5.0 - prompts: 2.4.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node + has-flag@4.0.0: {} - /jest-config@29.5.0(@types/node@12.20.4): - resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '*' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': 7.22.5 - '@jest/test-sequencer': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 12.20.4 - babel-jest: 29.5.0(@babel/core@7.22.5) - chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.5.0 - jest-environment-node: 29.5.0 - jest-get-type: 29.4.3 - jest-regex-util: 29.4.3 - jest-resolve: 29.5.0 - jest-runner: 29.5.0 - jest-util: 29.5.0 - jest-validate: 29.5.0 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.5.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: false + has-own-prop@2.0.0: {} - /jest-config@29.5.0(@types/node@16.18.37): - resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '*' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + has-property-descriptors@1.0.2: dependencies: - '@babel/core': 7.22.5 - '@jest/test-sequencer': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - babel-jest: 29.5.0(@babel/core@7.22.5) - chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.5.0 - jest-environment-node: 29.5.0 - jest-get-type: 29.4.3 - jest-regex-util: 29.4.3 - jest-resolve: 29.5.0 - jest-runner: 29.5.0 - jest-util: 29.5.0 - jest-validate: 29.5.0 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.5.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color + es-define-property: 1.0.1 - /jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} + has-proto@1.2.0: dependencies: - chalk: 4.1.2 - diff-sequences: 26.6.2 - jest-get-type: 26.3.0 - pretty-format: 26.6.2 - dev: true + dunder-proto: 1.0.1 - /jest-diff@29.5.0: - resolution: {integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: dependencies: - chalk: 4.1.2 - diff-sequences: 29.4.3 - jest-get-type: 29.4.3 - pretty-format: 29.5.0 + has-symbols: 1.1.0 - /jest-docblock@29.4.3: - resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + has@1.0.4: {} + + hash-base@2.0.2: dependencies: - detect-newline: 3.1.0 + inherits: 2.0.4 - /jest-each@29.5.0: - resolution: {integrity: sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hash-base@3.0.5: dependencies: - '@jest/types': 29.5.0 - chalk: 4.1.2 - jest-get-type: 29.4.3 - jest-util: 29.5.0 - pretty-format: 29.5.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 - /jest-environment-jsdom@29.3.1: - resolution: {integrity: sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: '*' - peerDependenciesMeta: - canvas: - optional: true + hash-base@3.1.0: dependencies: - '@jest/environment': 29.5.0 - '@jest/fake-timers': 29.5.0 - '@jest/types': 29.5.0 - '@types/jsdom': 20.0.1 - '@types/node': 16.18.37 - jest-mock: 29.5.0 - jest-util: 29.5.0 - jsdom: 20.0.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + inherits: 2.0.4 + readable-stream: 3.6.2 + safe-buffer: 5.2.1 - /jest-environment-node@29.5.0: - resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hash.js@1.1.7: dependencies: - '@jest/environment': 29.5.0 - '@jest/fake-timers': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - jest-mock: 29.5.0 - jest-util: 29.5.0 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 - /jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - dev: true + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 - /jest-get-type@29.4.3: - resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hast-to-hyperscript@9.0.1: + dependencies: + '@types/unist': 2.0.11 + comma-separated-tokens: 1.0.8 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + style-to-object: 0.3.0 + unist-util-is: 4.1.0 + web-namespaces: 1.1.4 - /jest-haste-map@29.5.0: - resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hast-util-from-parse5@5.0.3: dependencies: - '@jest/types': 29.5.0 - '@types/graceful-fs': 4.1.6 - '@types/node': 16.18.37 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.11 - jest-regex-util: 29.4.3 - jest-util: 29.5.0 - jest-worker: 29.5.0 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.2 + ccount: 1.1.0 + hastscript: 5.1.2 + property-information: 5.6.0 + web-namespaces: 1.1.4 + xtend: 4.0.2 - /jest-leak-detector@29.5.0: - resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hast-util-from-parse5@6.0.1: dependencies: - jest-get-type: 29.4.3 - pretty-format: 29.5.0 + '@types/parse5': 5.0.3 + hastscript: 6.0.0 + property-information: 5.6.0 + vfile: 4.2.0 + vfile-location: 3.2.0 + web-namespaces: 1.1.4 - /jest-matcher-utils@29.5.0: - resolution: {integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hast-util-parse-selector@2.2.5: {} + + hast-util-raw@6.0.1: dependencies: - chalk: 4.1.2 - jest-diff: 29.5.0 - jest-get-type: 29.4.3 - pretty-format: 29.5.0 + '@types/hast': 2.3.10 + hast-util-from-parse5: 6.0.1 + hast-util-to-parse5: 6.0.0 + html-void-elements: 1.0.5 + parse5: 6.0.1 + unist-util-position: 3.1.0 + vfile: 4.2.0 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 - /jest-message-util@29.3.1: - resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hast-util-to-parse5@6.0.0: dependencies: - '@babel/code-frame': 7.22.5 - '@jest/types': 29.5.0 - '@types/stack-utils': 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - pretty-format: 29.5.0 - slash: 3.0.0 - stack-utils: 2.0.6 + hast-to-hyperscript: 9.0.1 + property-information: 5.6.0 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 - /jest-message-util@29.5.0: - resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hastscript@5.1.2: dependencies: - '@babel/code-frame': 7.22.5 - '@jest/types': 29.5.0 - '@types/stack-utils': 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - pretty-format: 29.5.0 - slash: 3.0.0 - stack-utils: 2.0.6 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 - /jest-mock@29.5.0: - resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hastscript@6.0.0: dependencies: - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - jest-util: 29.5.0 + '@types/hast': 2.3.10 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 - /jest-pnp-resolver@1.2.3(jest-resolve@29.5.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 29.5.0 + he@1.2.0: {} - /jest-regex-util@29.4.3: - resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + highlight.js@10.7.3: {} - /jest-resolve-dependencies@29.5.0: - resolution: {integrity: sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hmac-drbg@1.0.1: dependencies: - jest-regex-util: 29.4.3 - jest-snapshot: 29.5.0 - transitivePeerDependencies: - - supports-color + hash.js: 1.1.7 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 - /jest-resolve@29.5.0: - resolution: {integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hoist-non-react-statics@3.3.2: dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.11 - jest-haste-map: 29.5.0 - jest-pnp-resolver: 1.2.3(jest-resolve@29.5.0) - jest-util: 29.5.0 - jest-validate: 29.5.0 - resolve: 1.22.2 - resolve.exports: 2.0.2 - slash: 3.0.0 + react-is: 16.13.1 - /jest-runner@29.5.0: - resolution: {integrity: sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hosted-git-info@2.8.9: {} + + hpack.js@2.1.6: dependencies: - '@jest/console': 29.5.0 - '@jest/environment': 29.5.0 - '@jest/test-result': 29.5.0 - '@jest/transform': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - chalk: 4.1.2 - emittery: 0.13.1 - graceful-fs: 4.2.11 - jest-docblock: 29.4.3 - jest-environment-node: 29.5.0 - jest-haste-map: 29.5.0 - jest-leak-detector: 29.5.0 - jest-message-util: 29.5.0 - jest-resolve: 29.5.0 - jest-runtime: 29.5.0 - jest-util: 29.5.0 - jest-watcher: 29.5.0 - jest-worker: 29.5.0 - p-limit: 3.1.0 - source-map-support: 0.5.13 - transitivePeerDependencies: - - supports-color + inherits: 2.0.4 + obuf: 1.1.2 + readable-stream: 2.3.8 + wbuf: 1.7.3 - /jest-runtime@29.5.0: - resolution: {integrity: sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + html-encoding-sniffer@3.0.0: dependencies: - '@jest/environment': 29.5.0 - '@jest/fake-timers': 29.5.0 - '@jest/globals': 29.5.0 - '@jest/source-map': 29.4.3 - '@jest/test-result': 29.5.0 - '@jest/transform': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - chalk: 4.1.2 - cjs-module-lexer: 1.2.3 - collect-v8-coverage: 1.0.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-haste-map: 29.5.0 - jest-message-util: 29.5.0 - jest-mock: 29.5.0 - jest-regex-util: 29.4.3 - jest-resolve: 29.5.0 - jest-snapshot: 29.5.0 - jest-util: 29.5.0 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color + whatwg-encoding: 2.0.0 - /jest-snapshot@29.5.0: - resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + html-encoding-sniffer@4.0.0: dependencies: - '@babel/core': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.5) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.5) - '@babel/traverse': 7.22.5 - '@babel/types': 7.22.5 - '@jest/expect-utils': 29.5.0 - '@jest/transform': 29.5.0 - '@jest/types': 29.5.0 - '@types/babel__traverse': 7.20.1 - '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.5) - chalk: 4.1.2 - expect: 29.5.0 - graceful-fs: 4.2.11 - jest-diff: 29.5.0 - jest-get-type: 29.4.3 - jest-matcher-utils: 29.5.0 - jest-message-util: 29.5.0 - jest-util: 29.5.0 - natural-compare: 1.4.0 - pretty-format: 29.5.0 - semver: 7.5.3 - transitivePeerDependencies: - - supports-color + whatwg-encoding: 3.1.1 - /jest-util@29.5.0: - resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + html-entities@2.6.0: {} + + html-escaper@2.0.2: {} + + html-minifier-terser@6.1.0: dependencies: - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - chalk: 4.1.2 - ci-info: 3.8.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 + camel-case: 4.1.2 + clean-css: 5.3.3 + commander: 8.3.0 + he: 1.2.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 5.43.1 - /jest-validate@29.5.0: - resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + html-void-elements@1.0.5: {} + + html-webpack-plugin@5.5.0(webpack@5.84.1): dependencies: - '@jest/types': 29.5.0 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 29.4.3 - leven: 3.1.0 - pretty-format: 29.5.0 + '@types/html-minifier-terser': 6.1.0 + html-minifier-terser: 6.1.0 + lodash: 4.17.21 + pretty-error: 4.0.0 + tapable: 2.2.2 + webpack: 5.84.1(esbuild@0.14.28) - /jest-watcher@29.5.0: - resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + htmlparser2@6.1.0: dependencies: - '@jest/test-result': 29.5.0 - '@jest/types': 29.5.0 - '@types/node': 16.18.37 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.13.1 - jest-util: 29.5.0 - string-length: 4.0.2 + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 2.2.0 - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + http-deceiver@1.2.7: {} + + http-errors@1.6.3: dependencies: - '@types/node': 16.18.37 - merge-stream: 2.0.0 - supports-color: 8.1.1 + depd: 1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: 1.5.0 - /jest-worker@29.5.0: - resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + http-errors@2.0.0: dependencies: - '@types/node': 16.18.37 - jest-util: 29.5.0 - merge-stream: 2.0.0 - supports-color: 8.1.1 + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 - /jest@29.3.1(@types/node@12.20.4): - resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true + http-parser-js@0.5.10: {} + + http-proxy-agent@5.0.0: dependencies: - '@jest/core': 29.5.0 - '@jest/types': 29.5.0 - import-local: 3.1.0 - jest-cli: 29.5.0(@types/node@12.20.4) + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.4.1 transitivePeerDependencies: - - '@types/node' - supports-color - - ts-node - dev: false - /jest@29.3.1(@types/node@16.18.37): - resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: '*' - peerDependenciesMeta: - node-notifier: - optional: true + http-proxy-agent@7.0.2: dependencies: - '@jest/core': 29.5.0 - '@jest/types': 29.5.0 - import-local: 3.1.0 - jest-cli: 29.5.0(@types/node@16.18.37) + agent-base: 7.1.4 + debug: 4.4.1 transitivePeerDependencies: - - '@types/node' - supports-color - - ts-node - - /jmespath@0.15.0: - resolution: {integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==} - engines: {node: '>= 0.6.0'} - - /joycon@2.2.5: - resolution: {integrity: sha512-YqvUxoOcVPnCp0VU1/56f+iKSdvIRJYPznH22BdXV3xMk75SFXhWeJkZ8C9XxUWt1b5x2X1SxuFygW1U0FmkEQ==} - engines: {node: '>=6'} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + http-proxy-middleware@2.0.9(@types/express@4.17.23): + dependencies: + '@types/http-proxy': 1.17.16 + http-proxy: 1.18.1 + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.8 + optionalDependencies: + '@types/express': 4.17.23 + transitivePeerDependencies: + - debug - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + http-proxy@1.18.1: dependencies: - argparse: 1.0.10 - esprima: 4.0.1 + eventemitter3: 4.0.7 + follow-redirects: 1.15.9 + requires-port: 1.0.0 + transitivePeerDependencies: + - debug - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: '*' - peerDependenciesMeta: - canvas: - optional: true + https-browserify@1.0.0: {} + + https-proxy-agent@5.0.1: dependencies: - abab: 2.0.6 - acorn: 8.9.0 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 - decimal.js: 10.4.3 - domexception: 4.0.0 - escodegen: 2.0.0 - form-data: 4.0.0 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.5 - parse5: 7.1.2 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.3 - w3c-xmlserializer: 4.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - ws: 8.13.0 - xml-name-validator: 4.0.0 + agent-base: 6.0.2 + debug: 4.4.1 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - /jsdom@22.1.0: - resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} - engines: {node: '>=16'} - peerDependencies: - canvas: '*' - peerDependenciesMeta: - canvas: - optional: true + https-proxy-agent@7.0.6: dependencies: - abab: 2.0.6 - cssstyle: 3.0.0 - data-urls: 4.0.0 - decimal.js: 10.4.3 - domexception: 4.0.0 - form-data: 4.0.0 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.5 - parse5: 7.1.2 - rrweb-cssom: 0.6.0 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.3 - w3c-xmlserializer: 4.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 12.0.1 - ws: 8.13.0 - xml-name-validator: 4.0.0 + agent-base: 7.1.4 + debug: 4.4.1 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - /json-stringify-pretty-compact@1.2.0: - resolution: {integrity: sha512-/11Pj1OyX814QMKO7K8l85SHPTr/KsFxHp8GE2zVa0BtJgGimDjXHfM3FhC7keQdWDea7+nXf+f1de7ATZcZkQ==} + human-signals@2.1.0: {} - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true + humanize-string@2.1.0: dependencies: - minimist: 1.2.8 - - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true + decamelize: 2.0.0 - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + iconv-lite@0.4.24: dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.11 + safer-buffer: 2.1.2 - /jstransform@11.0.3: - resolution: {integrity: sha512-LGm87w0A8E92RrcXt94PnNHkFqHmgDy3mKHvNZOG7QepKCTCH/VB6S+IEN+bT4uLN3gVpOT0vvOOVd96osG71g==} - engines: {node: '>=0.8.8'} - hasBin: true + iconv-lite@0.6.3: dependencies: - base62: 1.2.8 - commoner: 0.10.8 - esprima-fb: 15001.1.0-dev-harmony-fb - object-assign: 2.1.1 - source-map: 0.4.4 + safer-buffer: 2.1.2 - /jsx-ast-utils@3.3.3: - resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} - engines: {node: '>=4.0'} + icss-utils@5.1.0(postcss@8.4.19): dependencies: - array-includes: 3.1.6 - object.assign: 4.1.4 + postcss: 8.4.19 - /jsx-to-string@1.4.0: - resolution: {integrity: sha512-BmDM0gMngtBcjET7iEDuMxU+ZA4fTFWhMWAfbJeZP0X0VIaN7+At3wa64v48hzuE9rf77VAwlI/aMJrR+9LEZA==} + icss-utils@5.1.0(postcss@8.5.6): dependencies: - immutable: 4.3.0 - json-stringify-pretty-compact: 1.2.0 - react: 0.14.10 + postcss: 8.5.6 - /junit-report-builder@3.0.0: - resolution: {integrity: sha512-aW7DnfLddUb51T+V08bJyecexaLomy5ID/0FXvhwsRXs9E0abvDaDT024U99J2agU3dt4q0ppzfKxSwrIIgXWg==} - engines: {node: '>=8'} + identity-obj-proxy@3.0.0: dependencies: - date-format: 0.0.2 - lodash: 4.17.21 - make-dir: 1.3.0 - xmlbuilder: 15.1.1 + harmony-reflect: 1.6.2 - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + ieee754@1.2.1: {} + + ignore@4.0.6: {} + + ignore@5.3.2: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + image-size@0.5.5: + optional: true - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + immer@9.0.21: {} - /language-subtag-registry@0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + immutable@4.3.7: {} - /language-tags@1.0.8: - resolution: {integrity: sha512-aWAZwgPLS8hJ20lNPm9HNVs4inexz6S2sQa3wx/+ycuutMNE5/IfYxiWYBbi+9UWCQVaXYCOPUl6gFrPR7+jGg==} + import-fresh@3.3.1: dependencies: - language-subtag-registry: 0.3.22 + parent-module: 1.0.1 + resolve-from: 4.0.0 - /launch-editor@2.6.0: - resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==} + import-local@3.2.0: dependencies: - picocolors: 1.0.0 - shell-quote: 1.8.1 + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 - /less-loader@11.1.0(webpack@5.84.1): - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: '*' - webpack: '*' - peerDependenciesMeta: - less: - optional: true - webpack: - optional: true + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + inflight@1.0.6: dependencies: - klona: 2.0.6 - webpack: 5.84.1(esbuild@0.14.28) + once: 1.4.0 + wrappy: 1.0.2 - /leven@2.1.0: - resolution: {integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==} - engines: {node: '>=0.10.0'} + inherits@2.0.3: {} - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + inherits@2.0.4: {} - /levn@0.3.0: - resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} - engines: {node: '>= 0.8.0'} + ini@1.3.8: {} + + inline-style-parser@0.1.1: {} + + internal-slot@1.1.0: dependencies: - prelude-ls: 1.1.2 - type-check: 0.3.2 + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + ip-address@9.0.5: dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 + jsbn: 1.1.0 + sprintf-js: 1.1.3 + optional: true - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + ipaddr.js@1.9.1: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + ipaddr.js@2.2.0: {} - /load-json-file@2.0.0: - resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==} - engines: {node: '>=4'} - dependencies: - graceful-fs: 4.2.11 - parse-json: 2.2.0 - pify: 2.3.0 - strip-bom: 3.0.0 + is-alphabetical@1.0.4: {} - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + is-alphanumeric@1.0.0: {} - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + is-alphanumerical@1.0.4: dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - - /loader-utils@3.2.1: - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} - engines: {node: '>= 12.13.0'} + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + is-arguments@1.2.0: dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + is-array-buffer@3.0.5: dependencies: - p-locate: 3.0.0 - path-exists: 3.0.0 + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + is-arrayish@0.2.1: {} + + is-async-function@2.1.1: dependencies: - p-locate: 4.1.0 + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + is-bigint@1.1.0: dependencies: - p-locate: 5.0.0 + has-bigints: 1.1.0 - /lockfile@1.0.4: - resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==} + is-binary-path@2.1.0: dependencies: - signal-exit: 3.0.7 + binary-extensions: 2.3.0 - /lodash.compact@3.0.1: - resolution: {integrity: sha512-2ozeiPi+5eBXW1CLtzjk8XQFhQOEMwwfxblqeq6EGyTxZJ1bPATqilY0e6g2SLQpP4KuMeuioBhEnWz5Pr7ICQ==} + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + is-buffer@2.0.5: {} - /lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + is-callable@1.2.7: {} - /lodash.has@4.5.2: - resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==} + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - /lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + is-decimal@1.0.4: {} - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + is-docker@2.2.1: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + is-extendable@0.1.1: {} - /longest-streak@2.0.4: - resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==} + is-extglob@2.1.1: {} - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + is-finalizationregistry@1.1.1: dependencies: - js-tokens: 4.0.0 + call-bound: 1.0.4 - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - dependencies: - tslib: 2.6.0 + is-fullwidth-code-point@3.0.0: {} - /lowlight@1.20.0: - resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} - dependencies: - fault: 1.0.4 - highlight.js: 10.7.3 + is-generator-fn@2.1.0: {} - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + is-generator-function@1.1.0: dependencies: - yallist: 3.1.1 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + is-glob@4.0.3: dependencies: - yallist: 4.0.0 + is-extglob: 2.1.1 - /lru-queue@0.1.0: - resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} - dependencies: - es5-ext: 0.10.62 + is-hexadecimal@1.0.4: {} - /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true + is-map@2.0.3: {} - /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + is-nan@1.3.2: dependencies: - sourcemap-codec: 1.4.8 + call-bind: 1.0.8 + define-properties: 1.2.1 - /make-dir@1.3.0: - resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} - engines: {node: '>=4'} + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: dependencies: - pify: 3.0.0 + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + is-number@7.0.0: {} + + is-plain-obj@2.1.0: {} + + is-plain-obj@3.0.0: {} + + is-plain-object@2.0.4: dependencies: - semver: 6.3.0 + isobject: 3.0.1 - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + is-potential-custom-element-name@1.0.1: {} + + is-promise@2.2.2: {} + + is-regex@1.2.1: dependencies: - tmpl: 1.0.5 + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 - /markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + is-root@2.1.0: {} - /markdown-table@2.0.0: - resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: dependencies: - repeat-string: 1.6.1 + call-bound: 1.0.4 - /md5.js@1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + is-stream@2.0.1: {} + + is-string@1.1.1: dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - /mdast-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + is-symbol@1.1.1: dependencies: - unist-util-remove: 2.0.1 + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 - /mdast-util-compact@2.0.1: - resolution: {integrity: sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==} + is-typed-array@1.1.15: dependencies: - unist-util-visit: 2.0.3 + which-typed-array: 1.1.19 - /mdast-util-definitions@3.0.1: - resolution: {integrity: sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA==} + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: dependencies: - unist-util-visit: 2.0.3 + call-bound: 1.0.4 - /mdast-util-from-markdown@0.8.5: - resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + is-weakset@2.0.4: dependencies: - '@types/mdast': 3.0.11 - mdast-util-to-string: 2.0.0 - micromark: 2.11.4 - parse-entities: 2.0.0 - unist-util-stringify-position: 2.0.3 - transitivePeerDependencies: - - supports-color + call-bound: 1.0.4 + get-intrinsic: 1.3.0 - /mdast-util-to-hast@9.1.2: - resolution: {integrity: sha512-OpkFLBC2VnNAb2FNKcKWu9FMbJhQKog+FCT8nuKmQNIKXyT1n3SIskE7uWDep6x+cA20QXlK5AETHQtYmQmxtQ==} + is-what@3.14.1: {} + + is-whitespace-character@1.0.4: {} + + is-windows@1.0.2: {} + + is-word-character@1.0.4: {} + + is-wsl@2.2.0: dependencies: - '@types/mdast': 3.0.11 - '@types/unist': 2.0.6 - mdast-util-definitions: 3.0.1 - mdurl: 1.0.1 - unist-builder: 2.0.3 - unist-util-generated: 1.1.6 - unist-util-position: 3.1.0 - unist-util-visit: 2.0.3 + is-docker: 2.2.1 - /mdast-util-to-string@2.0.0: - resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} + isarray@1.0.0: {} - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + isarray@2.0.5: {} - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + isexe@2.0.0: {} - /media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} + isobject@3.0.1: {} - /memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-instrument@5.2.1: dependencies: - fs-monkey: 1.0.4 + '@babel/core': 7.28.0 + '@babel/parser': 7.28.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /memoizee@0.4.15: - resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} + istanbul-lib-instrument@6.0.3: dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-weak-map: 2.0.3 - event-emitter: 0.3.5 - is-promise: 2.2.2 - lru-queue: 0.1.0 - next-tick: 1.1.0 - timers-ext: 0.1.7 + '@babel/core': 7.28.0 + '@babel/parser': 7.28.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color - /memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + istanbul-lib-report@3.0.1: dependencies: - errno: 0.1.8 - readable-stream: 2.3.8 + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 - /merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + istanbul-lib-source-maps@4.0.1: + dependencies: + debug: 4.4.1 + istanbul-lib-coverage: 3.2.2 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + iterall@1.3.0: {} - /methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} + jest-changed-files@29.7.0: + dependencies: + execa: 5.1.1 + jest-util: 29.7.0 + p-limit: 3.1.0 - /micromark@2.11.4: - resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} + jest-circus@29.7.0(babel-plugin-macros@3.1.0): dependencies: - debug: 4.3.4 - parse-entities: 2.0.0 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + chalk: 4.1.2 + co: 4.6.0 + dedent: 1.6.0(babel-plugin-macros@3.1.0) + is-generator-fn: 2.1.0 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + p-limit: 3.1.0 + pretty-format: 29.7.0 + pure-rand: 6.1.0 + slash: 3.0.0 + stack-utils: 2.0.6 transitivePeerDependencies: + - babel-plugin-macros - supports-color - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + jest-cli@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): dependencies: - braces: 3.0.2 - picomatch: 2.3.1 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /miller-rabin@4.0.1: - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} - hasBin: true + jest-cli@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): dependencies: - bn.js: 4.12.0 - brorand: 1.1.0 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + jest-config@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): + dependencies: + '@babel/core': 7.28.0 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.0) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 12.20.4 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + jest-config@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): + dependencies: + '@babel/core': 7.28.0 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.0) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 16.18.126 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-diff@26.6.2: + dependencies: + chalk: 4.1.2 + diff-sequences: 26.6.2 + jest-get-type: 26.3.0 + pretty-format: 26.6.2 + + jest-diff@29.7.0: dependencies: - mime-db: 1.52.0 + chalk: 4.1.2 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true + jest-docblock@29.7.0: + dependencies: + detect-newline: 3.1.0 - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + jest-each@29.7.0: + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + jest-get-type: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + jest-environment-jsdom@29.3.1: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/jsdom': 20.0.1 + '@types/node': 16.18.126 + jest-mock: 29.7.0 + jest-util: 29.7.0 + jsdom: 20.0.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate - /mini-css-extract-plugin@2.7.0(webpack@5.84.1): - resolution: {integrity: sha512-auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + jest-environment-node@29.7.0: dependencies: - schema-utils: 4.2.0 - webpack: 5.84.1(esbuild@0.14.28) + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + jest-mock: 29.7.0 + jest-util: 29.7.0 - /minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + jest-get-type@26.3.0: {} - /minimalistic-crypto-utils@1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + jest-get-type@29.6.3: {} - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + jest-haste-map@29.7.0: dependencies: - brace-expansion: 1.1.11 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 16.18.126 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 + micromatch: 4.0.8 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 - /minimatch@5.1.0: - resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} - engines: {node: '>=10'} + jest-leak-detector@29.7.0: dependencies: - brace-expansion: 2.0.1 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + jest-matcher-utils@29.7.0: + dependencies: + chalk: 4.1.2 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + jest-message-util@29.3.1: dependencies: - minimist: 1.2.8 + '@babel/code-frame': 7.27.1 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 - /mri@1.1.4: - resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==} - engines: {node: '>=4'} + jest-message-util@29.7.0: + dependencies: + '@babel/code-frame': 7.27.1 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + jest-mock@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + jest-util: 29.7.0 - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: + jest-resolve: 29.7.0 - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + jest-regex-util@29.6.3: {} - /multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true + jest-resolve-dependencies@29.7.0: dependencies: - dns-packet: 5.6.0 - thunky: 1.1.0 - - /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + jest-regex-util: 29.6.3 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} + jest-resolve@29.7.0: + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.10 + resolve.exports: 2.0.3 + slash: 3.0.0 - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + jest-runner@29.7.0: + dependencies: + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + chalk: 4.1.2 + emittery: 0.13.1 + graceful-fs: 4.2.11 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color - /new-url-loader@0.1.1(webpack@5.84.1): - resolution: {integrity: sha512-e7v5Q3uFk2jXgnL1JSVCszPTg9MYkbNIpKI6azeNlAa1bAwboA63aBsC63jlTEWlTacNL45tqWPx0Nm0SkCxCQ==} - engines: {node: '>=10.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + jest-runtime@29.7.0: dependencies: - webpack: 5.84.1(esbuild@0.14.28) + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + chalk: 4.1.2 + cjs-module-lexer: 1.4.3 + collect-v8-coverage: 1.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color - /next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + jest-snapshot@29.7.0: + dependencies: + '@babel/core': 7.28.0 + '@babel/generator': 7.28.0 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0) + '@babel/types': 7.28.1 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.0) + chalk: 4.1.2 + expect: 29.7.0 + graceful-fs: 4.2.11 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + natural-compare: 1.4.0 + pretty-format: 29.7.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + jest-util@29.7.0: dependencies: - lower-case: 2.0.2 - tslib: 2.6.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 - /node-fetch@2.6.11: - resolution: {integrity: sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: '*' - peerDependenciesMeta: - encoding: - optional: true + jest-validate@29.7.0: dependencies: - whatwg-url: 5.0.0 + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} + jest-watcher@29.7.0: + dependencies: + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 16.18.126 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.7.0 + string-length: 4.0.2 - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + jest-worker@27.5.1: + dependencies: + '@types/node': 16.18.126 + merge-stream: 2.0.0 + supports-color: 8.1.1 - /node-releases@2.0.12: - resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} + jest-worker@29.7.0: + dependencies: + '@types/node': 16.18.126 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 - /node-source-walk@5.0.2: - resolution: {integrity: sha512-Y4jr/8SRS5hzEdZ7SGuvZGwfORvNsSsNRwDXx5WisiqzsVfeftDvRgfeqWNgZvWSJbgubTRVRYBzK6UO+ErqjA==} - engines: {node: '>=12'} + jest@29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0): dependencies: - '@babel/parser': 7.22.5 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + jest@29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0): dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.2 - semver: 5.7.1 - validate-npm-package-license: 3.0.4 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + jmespath@0.15.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + joycon@2.2.5: {} - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} + js-tokens@4.0.0: {} - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + js-yaml@3.14.1: dependencies: - path-key: 3.1.1 + argparse: 1.0.10 + esprima: 4.0.1 - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + js-yaml@4.1.0: dependencies: - boolbase: 1.0.0 - - /nwsapi@2.2.5: - resolution: {integrity: sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==} + argparse: 2.0.1 + optional: true - /object-assign@2.1.1: - resolution: {integrity: sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==} - engines: {node: '>=0.10.0'} + jsbn@1.1.0: + optional: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + jsdom@20.0.3: + dependencies: + abab: 2.0.6 + acorn: 8.15.0 + acorn-globals: 7.0.1 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.6.0 + domexception: 4.0.0 + escodegen: 2.1.0 + form-data: 4.0.3 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.20 + parse5: 7.3.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.18.3 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate - /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + jsdom@26.1.0: + dependencies: + cssstyle: 4.6.0 + data-urls: 5.0.0 + decimal.js: 10.6.0 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.20 + parse5: 7.3.0 + rrweb-cssom: 0.8.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 5.1.2 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.2.0 + ws: 8.18.3 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate - /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + jsesc@0.5.0: {} - /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + jsesc@3.0.2: {} - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + jsesc@3.1.0: {} - /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - has-symbols: 1.0.3 - object-keys: 1.1.1 + json-buffer@3.0.1: {} - /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + json-parse-better-errors@1.0.2: {} - /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + json-parse-even-better-errors@2.3.1: {} - /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + json-schema-traverse@0.4.1: {} - /obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + json-schema-traverse@1.0.0: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - dependencies: - ee-first: 1.1.1 + json-stable-stringify-without-jsonify@1.0.1: {} - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} + json-stringify-pretty-compact@1.2.0: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + json5@1.0.2: dependencies: - wrappy: 1.0.2 + minimist: 1.2.8 - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + json5@2.2.3: {} + + jsonfile@6.1.0: dependencies: - mimic-fn: 2.1.0 + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + jstransform@11.0.3: dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 + base62: 1.2.8 + commoner: 0.10.8 + esprima-fb: 15001.1.0-dev-harmony-fb + object-assign: 2.1.1 + source-map: 0.4.4 - /optimism@0.16.2: - resolution: {integrity: sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==} + jsx-ast-utils@3.3.5: dependencies: - '@wry/context': 0.7.3 - '@wry/trie': 0.3.2 - dev: false + array-includes: 3.1.9 + array.prototype.flat: 1.3.3 + object.assign: 4.1.7 + object.values: 1.2.1 - /optionator@0.8.3: - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} - engines: {node: '>= 0.8.0'} + jsx-to-string@1.4.0: dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.3.0 - prelude-ls: 1.1.2 - type-check: 0.3.2 - word-wrap: 1.2.3 + immutable: 4.3.7 + json-stringify-pretty-compact: 1.2.0 + react: 0.14.10 - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + junit-report-builder@3.0.0: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 + date-format: 0.0.2 + lodash: 4.17.21 + make-dir: 1.3.0 + xmlbuilder: 15.1.1 - /os-browserify@0.3.0: - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 - /os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + kind-of@6.0.3: {} - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - dependencies: - p-try: 1.0.0 + kleur@3.0.3: {} - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - dependencies: - p-try: 2.2.0 + klona@2.0.6: {} - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - dependencies: - yocto-queue: 0.1.0 + language-subtag-registry@0.3.23: {} - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + language-tags@1.0.9: dependencies: - p-limit: 1.3.0 + language-subtag-registry: 0.3.23 - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + launch-editor@2.10.0: dependencies: - p-limit: 2.3.0 + picocolors: 1.1.1 + shell-quote: 1.8.3 - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + less-loader@11.1.0(less@4.3.0)(webpack@5.84.1): dependencies: - p-limit: 2.3.0 + klona: 2.0.6 + less: 4.3.0 + webpack: 5.84.1(esbuild@0.14.28) - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + less@4.3.0: dependencies: - p-limit: 3.1.0 + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.8.1 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.3.1 + source-map: 0.6.1 - /p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} + leven@2.1.0: {} - /p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} + leven@3.1.0: {} + + levn@0.4.1: dependencies: - '@types/retry': 0.12.0 - retry: 0.13.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} + lilconfig@2.1.0: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + lines-and-columns@1.2.4: {} - /pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + load-json-file@2.0.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 2.2.0 + pify: 2.3.0 + strip-bom: 3.0.0 - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + loader-runner@4.3.0: {} + + loader-utils@2.0.4: dependencies: - dot-case: 3.0.4 - tslib: 2.6.0 + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + loader-utils@3.3.1: {} + + locate-path@2.0.0: dependencies: - callsites: 3.1.0 + p-locate: 2.0.0 + path-exists: 3.0.0 - /parse-asn1@5.1.6: - resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==} + locate-path@3.0.0: dependencies: - asn1.js: 5.4.1 - browserify-aes: 1.2.0 - evp_bytestokey: 1.0.3 - pbkdf2: 3.1.2 - safe-buffer: 5.2.1 + p-locate: 3.0.0 + path-exists: 3.0.0 - /parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + locate-path@5.0.0: dependencies: - character-entities: 1.2.4 - character-entities-legacy: 1.1.4 - character-reference-invalid: 1.1.4 - is-alphanumerical: 1.0.4 - is-decimal: 1.0.4 - is-hexadecimal: 1.0.4 + p-locate: 4.1.0 - /parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} + locate-path@6.0.0: dependencies: - error-ex: 1.3.2 + p-locate: 5.0.0 - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + lockfile@1.0.4: dependencies: - '@babel/code-frame': 7.22.5 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 + signal-exit: 3.0.7 - /parse5@5.1.1: - resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + lodash.compact@3.0.1: {} - /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + lodash.debounce@4.0.8: {} + + lodash.get@4.4.2: {} + + lodash.has@4.5.2: {} + + lodash.memoize@4.1.2: {} + + lodash.merge@4.6.2: {} + + lodash.truncate@4.4.2: {} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + lodash.uniq@4.5.0: {} + + lodash@4.17.21: {} + + longest-streak@2.0.4: {} + + loose-envify@1.4.0: dependencies: - entities: 4.5.0 + js-tokens: 4.0.0 - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} + lower-case@2.0.2: + dependencies: + tslib: 2.8.1 - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + lowlight@1.20.0: dependencies: - no-case: 3.0.4 - tslib: 2.6.0 + fault: 1.0.4 + highlight.js: 10.7.3 - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + lru-cache@10.4.3: {} - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + lru-cache@7.18.3: + optional: true - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + lru-queue@0.1.0: + dependencies: + es5-ext: 0.10.64 - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + lz-string@1.5.0: {} - /path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + magic-string@0.25.9: + dependencies: + sourcemap-codec: 1.4.8 - /path-type@2.0.0: - resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==} - engines: {node: '>=4'} + make-dir@1.3.0: dependencies: - pify: 2.3.0 + pify: 3.0.0 - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + optional: true - /pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} - engines: {node: '>=0.12'} + make-dir@3.1.0: dependencies: - create-hash: 1.2.0 - create-hmac: 1.1.7 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 + semver: 6.3.1 - /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + make-dir@4.0.0: + dependencies: + semver: 7.7.2 - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + makeerror@1.0.12: + dependencies: + tmpl: 1.0.5 - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + markdown-escapes@1.0.4: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + markdown-table@2.0.0: + dependencies: + repeat-string: 1.6.1 - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + math-intrinsics@1.1.0: {} - /pino-pretty@4.5.0: - resolution: {integrity: sha512-TtIzAq3JrPT4cYMZcXHypAXYV+MTE7ncAPUFoaz/1enVD2Loj+hV6RZsypYo85dm7SbBolW6fcIydOF28iGjsg==} - hasBin: true + md5.js@1.3.5: dependencies: - '@hapi/bourne': 2.1.0 - args: 5.0.3 - chalk: 4.1.2 - dateformat: 3.0.3 - fast-safe-stringify: 2.1.1 - jmespath: 0.15.0 - joycon: 2.2.5 - pump: 3.0.0 - readable-stream: 3.6.2 - split2: 3.2.2 - strip-json-comments: 3.1.1 + hash-base: 3.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + mdast-squeeze-paragraphs@4.0.0: + dependencies: + unist-util-remove: 2.0.1 - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + mdast-util-compact@2.0.1: dependencies: - find-up: 4.1.0 + unist-util-visit: 2.0.3 - /pkg-up@3.1.0: - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} - engines: {node: '>=8'} + mdast-util-definitions@3.0.1: dependencies: - find-up: 3.0.0 + unist-util-visit: 2.0.3 - /portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} + mdast-util-from-markdown@0.8.5: dependencies: - async: 2.6.4 - debug: 3.2.7 - mkdirp: 0.5.6 + '@types/mdast': 3.0.15 + mdast-util-to-string: 2.0.0 + micromark: 2.11.4 + parse-entities: 2.0.0 + unist-util-stringify-position: 2.0.3 transitivePeerDependencies: - supports-color - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.19): - resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + mdast-util-to-hast@9.1.2: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + mdast-util-definitions: 3.0.1 + mdurl: 1.0.1 + unist-builder: 2.0.3 + unist-util-generated: 1.1.6 + unist-util-position: 3.1.0 + unist-util-visit: 2.0.3 - /postcss-browser-comments@4.0.0(browserslist@4.21.4)(postcss@8.4.19): - resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} - engines: {node: '>=8'} - peerDependencies: - browserslist: '*' - postcss: '*' - peerDependenciesMeta: - browserslist: - optional: true - postcss: - optional: true - dependencies: - browserslist: 4.21.4 - postcss: 8.4.19 + mdast-util-to-string@2.0.0: {} - /postcss-calc@8.2.4(postcss@8.4.19): - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 + mdn-data@2.0.14: {} - /postcss-clamp@4.1.0(postcss@8.4.19): - resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} - engines: {node: '>=7.6.0'} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + mdurl@1.0.1: {} - /postcss-color-functional-notation@4.2.4(postcss@8.4.19): - resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + media-typer@0.3.0: {} + + memfs@3.5.3: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + fs-monkey: 1.0.6 - /postcss-color-hex-alpha@8.0.4(postcss@8.4.19): - resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + memoizee@0.4.15: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + d: 1.0.2 + es5-ext: 0.10.64 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.8 - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.19): - resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + memory-fs@0.5.0: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + errno: 0.1.8 + readable-stream: 2.3.8 - /postcss-colormin@5.3.1(postcss@8.4.19): - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + merge-descriptors@1.0.1: {} + + merge-descriptors@1.0.3: {} + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + methods@1.1.2: {} + + micromark@2.11.4: dependencies: - browserslist: 4.21.9 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + debug: 4.4.1 + parse-entities: 2.0.0 + transitivePeerDependencies: + - supports-color - /postcss-convert-values@5.1.3(postcss@8.4.19): - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + micromatch@4.0.8: dependencies: - browserslist: 4.21.9 - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + braces: 3.0.3 + picomatch: 2.3.1 - /postcss-custom-media@8.0.2(postcss@8.4.19): - resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + miller-rabin@4.0.1: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + bn.js: 4.12.2 + brorand: 1.1.0 - /postcss-custom-properties@12.1.11(postcss@8.4.19): - resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + mime-db@1.52.0: {} + + mime-db@1.54.0: {} + + mime-types@2.1.35: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + mime-db: 1.52.0 - /postcss-custom-selectors@6.0.3(postcss@8.4.19): - resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + mime@1.6.0: {} + + mimic-fn@2.1.0: {} + + min-indent@1.0.1: {} + + mini-css-extract-plugin@2.7.0(webpack@5.84.1): dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + schema-utils: 4.3.2 + webpack: 5.84.1(esbuild@0.14.28) - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.19): - resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + minimalistic-assert@1.0.1: {} + + minimalistic-crypto-utils@1.0.1: {} + + minimatch@3.1.2: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + brace-expansion: 1.1.12 - /postcss-discard-comments@5.1.2(postcss@8.4.19): - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + minimatch@5.1.0: dependencies: - postcss: 8.4.19 + brace-expansion: 2.0.2 - /postcss-discard-duplicates@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + minimist@1.2.8: {} + + mitt@3.0.1: + optional: true + + mkdirp@0.5.6: dependencies: - postcss: 8.4.19 + minimist: 1.2.8 - /postcss-discard-empty@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + mri@1.1.4: {} + + ms@2.0.0: {} + + ms@2.1.3: {} + + multicast-dns@7.2.5: dependencies: - postcss: 8.4.19 + dns-packet: 5.6.1 + thunky: 1.1.0 - /postcss-discard-overridden@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + nanoid@3.3.11: {} + + natural-compare@1.4.0: {} + + needle@3.3.1: dependencies: - postcss: 8.4.19 + iconv-lite: 0.6.3 + sax: 1.4.1 + optional: true - /postcss-double-position-gradients@3.1.2(postcss@8.4.19): - resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + negotiator@0.6.3: {} + + negotiator@0.6.4: {} + + neo-async@2.6.2: {} + + netmask@2.0.2: + optional: true + + new-url-loader@0.1.1(webpack@5.84.1): dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + webpack: 5.84.1(esbuild@0.14.28) - /postcss-env-function@4.0.6(postcss@8.4.19): - resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + next-tick@1.1.0: {} + + no-case@3.0.4: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + lower-case: 2.0.2 + tslib: 2.8.1 - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.19): - resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + node-fetch@2.7.0: dependencies: - postcss: 8.4.19 + whatwg-url: 5.0.0 - /postcss-focus-visible@6.0.4(postcss@8.4.19): - resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + node-forge@1.3.1: {} + + node-int64@0.4.0: {} + + node-releases@2.0.19: {} + + node-source-walk@5.0.2: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + '@babel/parser': 7.28.0 - /postcss-focus-within@5.0.4(postcss@8.4.19): - resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + normalize-package-data@2.5.0: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 - /postcss-font-variant@5.0.0(postcss@8.4.19): - resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + normalize-path@3.0.0: {} + + normalize-range@0.1.2: {} + + normalize-url@6.1.0: {} + + npm-run-path@4.0.1: dependencies: - postcss: 8.4.19 + path-key: 3.1.1 - /postcss-gap-properties@3.0.5(postcss@8.4.19): - resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + nth-check@2.1.1: dependencies: - postcss: 8.4.19 + boolbase: 1.0.0 - /postcss-image-set-function@4.0.7(postcss@8.4.19): - resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + nwsapi@2.2.20: {} + + object-assign@2.1.1: {} + + object-assign@4.1.1: {} + + object-hash@3.0.0: {} + + object-inspect@1.13.4: {} + + object-is@1.1.6: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + call-bind: 1.0.8 + define-properties: 1.2.1 - /postcss-initial@4.0.1(postcss@8.4.19): - resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + object-keys@1.1.1: {} + + object.assign@4.1.7: dependencies: - postcss: 8.4.19 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 - /postcss-lab-function@4.2.1(postcss@8.4.19): - resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + object.entries@1.1.9: dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 - /postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.84.1): - resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - postcss: '*' - webpack: '*' - peerDependenciesMeta: - postcss: - optional: true - webpack: - optional: true + object.fromentries@2.0.8: dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.6 - postcss: 8.4.19 - semver: 7.5.3 - webpack: 5.84.1(esbuild@0.14.28) + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 - /postcss-logical@5.0.4(postcss@8.4.19): - resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + object.values@1.2.1: dependencies: - postcss: 8.4.19 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 - /postcss-media-minmax@5.0.0(postcss@8.4.19): - resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + obuf@1.1.2: {} + + on-finished@2.4.1: dependencies: - postcss: 8.4.19 + ee-first: 1.1.1 - /postcss-merge-longhand@5.1.7(postcss@8.4.19): - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + on-headers@1.0.2: {} + + once@1.4.0: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.19) + wrappy: 1.0.2 - /postcss-merge-rules@5.1.4(postcss@8.4.19): - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + onetime@5.1.2: dependencies: - browserslist: 4.21.9 - caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + mimic-fn: 2.1.0 - /postcss-minify-font-values@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + open@8.4.2: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 - /postcss-minify-gradients@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + optimism@0.16.2: dependencies: - colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@wry/context': 0.7.4 + '@wry/trie': 0.3.2 - /postcss-minify-params@5.1.4(postcss@8.4.19): - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + optionator@0.9.4: dependencies: - browserslist: 4.21.9 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 - /postcss-minify-selectors@5.2.1(postcss@8.4.19): - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + os-browserify@0.3.0: {} + + os-homedir@1.0.2: {} + + own-keys@1.0.1: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 - /postcss-modules-extract-imports@3.0.0(postcss@8.4.19): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-limit@1.3.0: dependencies: - postcss: 8.4.19 + p-try: 1.0.0 - /postcss-modules-extract-imports@3.0.0(postcss@8.4.24): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-limit@2.3.0: dependencies: - postcss: 8.4.24 + p-try: 2.2.0 - /postcss-modules-local-by-default@4.0.3(postcss@8.4.19): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-limit@3.1.0: dependencies: - icss-utils: 5.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 + yocto-queue: 0.1.0 - /postcss-modules-local-by-default@4.0.3(postcss@8.4.24): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-locate@2.0.0: dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 - postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 + p-limit: 1.3.0 - /postcss-modules-scope@3.0.0(postcss@8.4.19): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-locate@3.0.0: dependencies: - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + p-limit: 2.3.0 - /postcss-modules-scope@3.0.0(postcss@8.4.24): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-locate@4.1.0: dependencies: - postcss: 8.4.24 - postcss-selector-parser: 6.0.13 + p-limit: 2.3.0 - /postcss-modules-values@4.0.0(postcss@8.4.19): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-locate@5.0.0: dependencies: - icss-utils: 5.1.0(postcss@8.4.19) - postcss: 8.4.19 + p-limit: 3.1.0 - /postcss-modules-values@4.0.0(postcss@8.4.24): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-map-series@2.1.0: {} + + p-retry@4.6.2: dependencies: - icss-utils: 5.1.0(postcss@8.4.24) - postcss: 8.4.24 + '@types/retry': 0.12.0 + retry: 0.13.1 - /postcss-nesting@10.2.0(postcss@8.4.19): - resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + p-try@1.0.0: {} + + p-try@2.2.0: {} + + pac-proxy-agent@7.2.0: dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.4 + debug: 4.4.1 + get-uri: 6.0.5 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + pac-resolver: 7.0.1 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + optional: true - /postcss-normalize-charset@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + pac-resolver@7.0.1: dependencies: - postcss: 8.4.19 + degenerator: 5.0.1 + netmask: 2.0.2 + optional: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + pako@1.0.11: {} + + param-case@3.0.4: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + dot-case: 3.0.4 + tslib: 2.8.1 - /postcss-normalize-positions@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parent-module@1.0.1: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + callsites: 3.1.0 - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parse-asn1@5.1.7: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + asn1.js: 4.10.1 + browserify-aes: 1.2.0 + evp_bytestokey: 1.0.3 + hash-base: 3.0.5 + pbkdf2: 3.1.3 + safe-buffer: 5.2.1 - /postcss-normalize-string@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parse-entities@2.0.0: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parse-json@2.2.0: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + error-ex: 1.3.2 - /postcss-normalize-unicode@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parse-json@5.2.0: dependencies: - browserslist: 4.21.9 - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@babel/code-frame': 7.27.1 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 - /postcss-normalize-url@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parse-node-version@1.0.1: {} + + parse5@5.1.1: {} + + parse5@6.0.1: {} + + parse5@7.3.0: dependencies: - normalize-url: 6.1.0 - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + entities: 6.0.1 - /postcss-normalize-whitespace@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + parseurl@1.3.3: {} + + pascal-case@3.1.2: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + no-case: 3.0.4 + tslib: 2.8.1 - /postcss-normalize@10.0.1(browserslist@4.21.4)(postcss@8.4.19): - resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} - engines: {node: '>= 12'} - peerDependencies: - browserslist: '*' - postcss: '*' - peerDependenciesMeta: - browserslist: - optional: true - postcss: - optional: true + path-browserify@1.0.1: {} + + path-exists@3.0.0: {} + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-to-regexp@0.1.12: {} + + path-to-regexp@0.1.7: {} + + path-type@2.0.0: dependencies: - '@csstools/normalize.css': 12.0.0 - browserslist: 4.21.4 - postcss: 8.4.19 - postcss-browser-comments: 4.0.0(browserslist@4.21.4)(postcss@8.4.19) - sanitize.css: 13.0.0 + pify: 2.3.0 - /postcss-opacity-percentage@1.1.3(postcss@8.4.19): - resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + path-type@4.0.0: {} + + pbkdf2@3.1.3: dependencies: - postcss: 8.4.19 + create-hash: 1.1.3 + create-hmac: 1.1.7 + ripemd160: 2.0.1 + safe-buffer: 5.2.1 + sha.js: 2.4.12 + to-buffer: 1.2.1 - /postcss-ordered-values@5.1.3(postcss@8.4.19): - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + pend@1.2.0: + optional: true + + performance-now@2.1.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@4.0.1: + optional: true + + pino-pretty@4.5.0: dependencies: - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@hapi/bourne': 2.1.0 + args: 5.0.3 + chalk: 4.1.2 + dateformat: 3.0.3 + fast-safe-stringify: 2.1.1 + jmespath: 0.15.0 + joycon: 2.2.5 + pump: 3.0.3 + readable-stream: 3.6.2 + split2: 3.2.2 + strip-json-comments: 3.1.1 - /postcss-overflow-shorthand@3.0.4(postcss@8.4.19): - resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + pirates@4.0.7: {} + + pkg-dir@4.2.0: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + find-up: 4.1.0 - /postcss-page-break@3.0.4(postcss@8.4.19): - resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + pkg-up@3.1.0: dependencies: - postcss: 8.4.19 + find-up: 3.0.0 - /postcss-place@7.0.5(postcss@8.4.19): - resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + portfinder@1.0.37: dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + async: 3.2.6 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color - /postcss-preset-env@7.8.3(postcss@8.4.19): - resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + possible-typed-array-names@1.1.0: {} + + postcss-attribute-case-insensitive@5.0.2(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 + + postcss-browser-comments@4.0.0(browserslist@4.21.4)(postcss@8.4.19): dependencies: - '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.19) - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.19) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.19) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.19) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.19) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.19) - '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.19) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.19) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.19) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.19) - '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.19) - '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.19) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.19) - autoprefixer: 10.4.14(postcss@8.4.19) browserslist: 4.21.4 - css-blank-pseudo: 3.0.3(postcss@8.4.19) - css-has-pseudo: 3.0.4(postcss@8.4.19) - css-prefers-color-scheme: 6.0.3(postcss@8.4.19) - cssdb: 7.6.0 postcss: 8.4.19 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.19) - postcss-clamp: 4.1.0(postcss@8.4.19) - postcss-color-functional-notation: 4.2.4(postcss@8.4.19) - postcss-color-hex-alpha: 8.0.4(postcss@8.4.19) - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.19) - postcss-custom-media: 8.0.2(postcss@8.4.19) - postcss-custom-properties: 12.1.11(postcss@8.4.19) - postcss-custom-selectors: 6.0.3(postcss@8.4.19) - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.19) - postcss-double-position-gradients: 3.1.2(postcss@8.4.19) - postcss-env-function: 4.0.6(postcss@8.4.19) - postcss-focus-visible: 6.0.4(postcss@8.4.19) - postcss-focus-within: 5.0.4(postcss@8.4.19) - postcss-font-variant: 5.0.0(postcss@8.4.19) - postcss-gap-properties: 3.0.5(postcss@8.4.19) - postcss-image-set-function: 4.0.7(postcss@8.4.19) - postcss-initial: 4.0.1(postcss@8.4.19) - postcss-lab-function: 4.2.1(postcss@8.4.19) - postcss-logical: 5.0.4(postcss@8.4.19) - postcss-media-minmax: 5.0.0(postcss@8.4.19) - postcss-nesting: 10.2.0(postcss@8.4.19) - postcss-opacity-percentage: 1.1.3(postcss@8.4.19) - postcss-overflow-shorthand: 3.0.4(postcss@8.4.19) - postcss-page-break: 3.0.4(postcss@8.4.19) - postcss-place: 7.0.5(postcss@8.4.19) - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.19) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.19) - postcss-selector-not: 6.0.1(postcss@8.4.19) + + postcss-calc@8.2.4(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.19): - resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-clamp@4.1.0(postcss@8.4.19): dependencies: postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + postcss-value-parser: 4.2.0 - /postcss-reduce-initial@5.1.2(postcss@8.4.19): - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-color-functional-notation@4.2.4(postcss@8.4.19): dependencies: - browserslist: 4.21.9 - caniuse-api: 3.0.0 postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /postcss-reduce-transforms@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-color-hex-alpha@8.0.4(postcss@8.4.19): dependencies: postcss: 8.4.19 postcss-value-parser: 4.2.0 - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.19): - resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-color-rebeccapurple@7.1.1(postcss@8.4.19): dependencies: postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /postcss-selector-not@6.0.1(postcss@8.4.19): - resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-colormin@5.3.1(postcss@8.4.19): dependencies: + browserslist: 4.21.4 + caniuse-api: 3.0.0 + colord: 2.9.3 postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + postcss-value-parser: 4.2.0 - /postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} - engines: {node: '>=4'} + postcss-convert-values@5.1.3(postcss@8.4.19): dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 + browserslist: 4.21.4 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /postcss-svgo@5.1.0(postcss@8.4.19): - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-custom-media@8.0.2(postcss@8.4.19): dependencies: postcss: 8.4.19 postcss-value-parser: 4.2.0 - svgo: 2.8.0 - /postcss-unique-selectors@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true + postcss-custom-properties@12.1.11(postcss@8.4.19): dependencies: postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + postcss-value-parser: 4.2.0 - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss-custom-selectors@6.0.3(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /postcss@8.4.19: - resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} - engines: {node: ^10 || ^12 || >=14} + postcss-dir-pseudo-class@6.0.5(postcss@8.4.19): dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /postcss@8.4.24: - resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==} - engines: {node: ^10 || ^12 || >=14} + postcss-discard-comments@5.1.2(postcss@8.4.19): dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 + postcss: 8.4.19 - /prelude-ls@1.1.2: - resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} - engines: {node: '>= 0.8.0'} + postcss-discard-duplicates@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + postcss-discard-empty@5.1.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /prettier@2.7.1: - resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} - engines: {node: '>=10.13.0'} - hasBin: true + postcss-discard-overridden@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + postcss-double-position-gradients@3.1.2(postcss@8.4.19): dependencies: - lodash: 4.17.21 - renderkid: 3.0.0 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} + postcss-env-function@4.0.6(postcss@8.4.19): dependencies: - '@jest/types': 26.6.2 - ansi-regex: 5.0.1 - ansi-styles: 4.3.0 - react-is: 17.0.2 - dev: true + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + postcss-flexbugs-fixes@5.0.2(postcss@8.4.19): dependencies: - ansi-regex: 5.0.1 - ansi-styles: 5.2.0 - react-is: 17.0.2 + postcss: 8.4.19 - /pretty-format@29.5.0: - resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + postcss-focus-visible@6.0.4(postcss@8.4.19): dependencies: - '@jest/schemas': 29.4.3 - ansi-styles: 5.2.0 - react-is: 18.2.0 + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /prism-react-renderer@1.3.5(react@18.2.0): - resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + postcss-focus-within@5.0.4(postcss@8.4.19): dependencies: - react: 18.2.0 + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /prismjs@1.27.0: - resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} - engines: {node: '>=6'} + postcss-font-variant@5.0.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} + postcss-gap-properties@3.0.5(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} + postcss-image-set-function@4.0.7(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + postcss-initial@4.0.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + postcss-lab-function@4.2.1(postcss@8.4.19): + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} + postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.84.1): + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.4.19 + semver: 7.7.2 + webpack: 5.84.1(esbuild@0.14.28) - /promise-limit@2.7.0: - resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} + postcss-logical@5.0.4(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + postcss-media-minmax@5.0.0(postcss@8.4.19): dependencies: - asap: 2.0.6 + postcss: 8.4.19 - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + postcss-merge-longhand@5.1.7(postcss@8.4.19): dependencies: - asap: 2.0.6 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.4.19) - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + postcss-merge-rules@5.1.4(postcss@8.4.19): dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 + browserslist: 4.21.4 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + postcss-minify-font-values@5.1.0(postcss@8.4.19): dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + postcss-minify-gradients@5.1.1(postcss@8.4.19): dependencies: - xtend: 4.0.2 + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + postcss-minify-params@5.1.4(postcss@8.4.19): dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 + browserslist: 4.21.4 + cssnano-utils: 3.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + postcss-minify-selectors@5.2.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + postcss-modules-extract-imports@3.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /public-encrypt@4.0.3: - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + postcss-modules-extract-imports@3.1.0(postcss@8.5.6): dependencies: - bn.js: 4.12.0 - browserify-rsa: 4.1.0 - create-hash: 1.2.0 - parse-asn1: 5.1.6 - randombytes: 2.1.0 - safe-buffer: 5.2.1 + postcss: 8.5.6 - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + postcss-modules-local-by-default@4.2.0(postcss@8.4.19): dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 + icss-utils: 5.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 - /punycode@1.3.2: - resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} + postcss-modules-local-by-default@4.2.0(postcss@8.5.6): + dependencies: + icss-utils: 5.1.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 - /punycode@2.1.1: - resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} - engines: {node: '>=6'} + postcss-modules-scope@3.2.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 7.1.0 - /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} + postcss-modules-scope@3.2.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 7.1.0 - /pure-rand@6.0.2: - resolution: {integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==} + postcss-modules-values@4.0.0(postcss@8.4.19): + dependencies: + icss-utils: 5.1.0(postcss@8.4.19) + postcss: 8.4.19 - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + postcss-modules-values@4.0.0(postcss@8.5.6): + dependencies: + icss-utils: 5.1.0(postcss@8.5.6) + postcss: 8.5.6 - /qs@6.10.3: - resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} - engines: {node: '>=0.6'} + postcss-nesting@10.2.0(postcss@8.4.19): dependencies: - side-channel: 1.0.4 + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + postcss-normalize-charset@5.1.0(postcss@8.4.19): dependencies: - side-channel: 1.0.4 + postcss: 8.4.19 - /querystring-es3@0.2.1: - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} - engines: {node: '>=0.4.x'} + postcss-normalize-display-values@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /querystring@0.2.0: - resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + postcss-normalize-positions@5.1.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + postcss-normalize-repeat-style@5.1.1(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + postcss-normalize-string@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + postcss-normalize-timing-functions@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + postcss-normalize-unicode@5.1.1(postcss@8.4.19): dependencies: - performance-now: 2.1.0 + browserslist: 4.21.4 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + postcss-normalize-url@5.1.0(postcss@8.4.19): dependencies: - safe-buffer: 5.2.1 + normalize-url: 6.1.0 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /randomfill@1.0.4: - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + postcss-normalize-whitespace@5.1.1(postcss@8.4.19): dependencies: - randombytes: 2.1.0 - safe-buffer: 5.2.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} + postcss-normalize@10.0.1(browserslist@4.21.4)(postcss@8.4.19): + dependencies: + '@csstools/normalize.css': 12.1.1 + browserslist: 4.21.4 + postcss: 8.4.19 + postcss-browser-comments: 4.0.0(browserslist@4.21.4)(postcss@8.4.19) + sanitize.css: 13.0.0 - /raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} + postcss-opacity-percentage@1.1.3(postcss@8.4.19): dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 + postcss: 8.4.19 - /react-app-polyfill@3.0.0: - resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} - engines: {node: '>=14'} + postcss-ordered-values@5.1.3(postcss@8.4.19): dependencies: - core-js: 3.31.0 - object-assign: 4.1.1 - promise: 8.3.0 - raf: 3.4.1 - regenerator-runtime: 0.13.11 - whatwg-fetch: 3.6.2 + cssnano-utils: 3.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): - resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} - engines: {node: '>=14'} - peerDependencies: - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - webpack: - optional: true + postcss-overflow-shorthand@3.0.4(postcss@8.4.19): dependencies: - '@babel/code-frame': 7.22.5 - address: 1.2.2 - browserslist: 4.21.4 - chalk: 4.1.2 - cross-spawn: 7.0.3 - detect-port-alt: 1.1.6 - escape-string-regexp: 4.0.0 - filesize: 8.0.7 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - global-modules: 2.0.0 - globby: 11.1.0 - gzip-size: 6.0.0 - immer: 9.0.21 - is-root: 2.1.0 - loader-utils: 3.2.1 - open: 8.4.2 - pkg-up: 3.1.0 - prompts: 2.4.2 - react-error-overlay: 6.0.11 - recursive-readdir: 2.2.3 - shell-quote: 1.8.1 - strip-ansi: 6.0.1 - text-table: 0.2.0 - typescript: 4.9.3 - webpack: 5.84.1(esbuild@0.14.28) - transitivePeerDependencies: - - eslint - - supports-color - - vue-template-compiler + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + postcss-page-break@3.0.4(postcss@8.4.19): dependencies: - loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 + postcss: 8.4.19 - /react-error-boundary@3.1.4(react@18.2.0): - resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + postcss-place@7.0.5(postcss@8.4.19): dependencies: - '@babel/runtime': 7.20.0 - react: 18.2.0 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /react-error-overlay@6.0.11: - resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} + postcss-preset-env@7.8.3(postcss@8.4.19): + dependencies: + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.19) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.19) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.19) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.19) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.19) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.19) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.19) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.19) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.19) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.19) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.19) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.19) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.19) + autoprefixer: 10.4.21(postcss@8.4.19) + browserslist: 4.21.4 + css-blank-pseudo: 3.0.3(postcss@8.4.19) + css-has-pseudo: 3.0.4(postcss@8.4.19) + css-prefers-color-scheme: 6.0.3(postcss@8.4.19) + cssdb: 7.11.2 + postcss: 8.4.19 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.19) + postcss-clamp: 4.1.0(postcss@8.4.19) + postcss-color-functional-notation: 4.2.4(postcss@8.4.19) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.19) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.19) + postcss-custom-media: 8.0.2(postcss@8.4.19) + postcss-custom-properties: 12.1.11(postcss@8.4.19) + postcss-custom-selectors: 6.0.3(postcss@8.4.19) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.19) + postcss-double-position-gradients: 3.1.2(postcss@8.4.19) + postcss-env-function: 4.0.6(postcss@8.4.19) + postcss-focus-visible: 6.0.4(postcss@8.4.19) + postcss-focus-within: 5.0.4(postcss@8.4.19) + postcss-font-variant: 5.0.0(postcss@8.4.19) + postcss-gap-properties: 3.0.5(postcss@8.4.19) + postcss-image-set-function: 4.0.7(postcss@8.4.19) + postcss-initial: 4.0.1(postcss@8.4.19) + postcss-lab-function: 4.2.1(postcss@8.4.19) + postcss-logical: 5.0.4(postcss@8.4.19) + postcss-media-minmax: 5.0.0(postcss@8.4.19) + postcss-nesting: 10.2.0(postcss@8.4.19) + postcss-opacity-percentage: 1.1.3(postcss@8.4.19) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.19) + postcss-page-break: 3.0.4(postcss@8.4.19) + postcss-place: 7.0.5(postcss@8.4.19) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.19) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.19) + postcss-selector-not: 6.0.1(postcss@8.4.19) + postcss-value-parser: 4.2.0 - /react-error-overlay@6.0.9: - resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==} + postcss-pseudo-class-any-link@7.1.6(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + postcss-reduce-initial@5.1.2(postcss@8.4.19): + dependencies: + browserslist: 4.21.4 + caniuse-api: 3.0.0 + postcss: 8.4.19 - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + postcss-reduce-transforms@5.1.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + postcss-replace-overflow-wrap@4.0.0(postcss@8.4.19): + dependencies: + postcss: 8.4.19 - /react-live@2.4.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-r+32f7oV/kBs3QZBRvaT+9vOkQW47UZrDpgwUe5FiIMOl7sdo5pmISgb7Zpj5PGHgY6XQaiXs3FEh+IWw3KbRg==} - engines: {node: '>= 0.12.0', npm: '>= 2.0.0'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + postcss-selector-not@6.0.1(postcss@8.4.19): dependencies: - '@types/buble': 0.20.1 - buble: 0.19.6 - core-js: 3.31.0 - dom-iterator: 1.0.0 - prism-react-renderer: 1.3.5(react@18.2.0) - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-simple-code-editor: 0.11.3(react-dom@18.2.0)(react@18.2.0) - unescape: 1.0.1 + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 - /react-router-dom@6.8.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==} - engines: {node: '>=14'} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + postcss-selector-parser@7.1.0: dependencies: - '@remix-run/router': 1.3.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-router: 6.8.1(react@18.2.0) + cssesc: 3.0.0 + util-deprecate: 1.0.2 - /react-router@6.8.1(react@18.2.0): - resolution: {integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==} - engines: {node: '>=14'} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + postcss-svgo@5.1.0(postcss@8.4.19): dependencies: - '@remix-run/router': 1.3.2 - react: 18.2.0 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 - /react-simple-code-editor@0.11.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-7bVI4Yd1aNCeuldErXUt8ksaAG5Fi+GZ6vp3mtFBnckKdzsQtrgkDvdwMFXIhwTGG+mUYmk5ZpMo0axSW9JBzA==} - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + postcss-unique-selectors@5.1.1(postcss@8.4.19): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /react-syntax-highlighter@13.5.3(react@18.2.0): - resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + postcss-value-parser@4.2.0: {} + + postcss@8.4.19: dependencies: - '@babel/runtime': 7.20.0 - highlight.js: 10.7.3 - lowlight: 1.20.0 - prismjs: 1.29.0 - react: 18.2.0 - refractor: 3.6.0 + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /react-use-dimensions@1.2.1(@types/react@17.0.62)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha512-XL+Rup9Hosxx3Ap9xpyQMbVwuUa4BSqiOjfBb2zDuGs4uv2FesFV+m8Z/huRx2BNptMd9ARPqFuSNA62zhCozg==} - peerDependencies: - '@types/react': '*' - react: '*' - typescript: '*' - peerDependenciesMeta: - '@types/react': - optional: true - react: - optional: true - typescript: - optional: true + postcss@8.5.6: dependencies: - '@types/react': 17.0.62 - react: 18.2.0 - typescript: 4.9.3 - dev: false + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /react-use-dimensions@1.2.1(@types/react@18.2.14)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha512-XL+Rup9Hosxx3Ap9xpyQMbVwuUa4BSqiOjfBb2zDuGs4uv2FesFV+m8Z/huRx2BNptMd9ARPqFuSNA62zhCozg==} - peerDependencies: - '@types/react': '*' - react: '*' - typescript: '*' - peerDependenciesMeta: - '@types/react': - optional: true - react: - optional: true - typescript: - optional: true + prelude-ls@1.2.1: {} + + prettier@2.7.1: {} + + pretty-error@4.0.0: dependencies: - '@types/react': 18.2.14 - react: 18.2.0 - typescript: 4.9.3 + lodash: 4.17.21 + renderkid: 3.0.0 - /react@0.14.10: - resolution: {integrity: sha512-yxMw5aorZG4qsLVBfjae4wGFvd5708DhcxaXLJ3IOTgr1TCs8k9+ZheGgLGr5OfwWMhSahNbGvvoEDzrxVWouA==} - engines: {node: '>=0.10.0'} + pretty-format@26.6.2: dependencies: - envify: 3.4.1 - fbjs: 0.6.1 + '@jest/types': 26.6.2 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + react-is: 17.0.2 - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + pretty-format@27.5.1: dependencies: - loose-envify: 1.4.0 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 - /read-pkg-up@2.0.0: - resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==} - engines: {node: '>=4'} + pretty-format@29.7.0: dependencies: - find-up: 2.1.0 - read-pkg: 2.0.0 + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.3.1 - /read-pkg@2.0.0: - resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==} - engines: {node: '>=4'} + prism-react-renderer@1.3.5(react@18.3.1): dependencies: - load-json-file: 2.0.0 - normalize-package-data: 2.5.0 - path-type: 2.0.0 + react: 18.3.1 - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + prismjs@1.27.0: {} + + prismjs@1.30.0: {} + + private@0.1.8: {} + + process-nextick-args@2.0.1: {} + + process@0.11.10: {} + + progress@2.0.3: {} + + promise-limit@2.7.0: {} + + promise@7.3.1: dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 + asap: 2.0.6 - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + promise@8.3.0: dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 + asap: 2.0.6 - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + prompts@2.4.2: dependencies: - picomatch: 2.3.1 + kleur: 3.0.3 + sisteransi: 1.0.5 - /recast@0.11.23: - resolution: {integrity: sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==} - engines: {node: '>= 0.8'} + prop-types@15.8.1: dependencies: - ast-types: 0.9.6 - esprima: 3.1.3 - private: 0.1.8 - source-map: 0.5.7 + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 - /recursive-readdir@2.2.3: - resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} - engines: {node: '>=6.0.0'} + property-information@5.6.0: dependencies: - minimatch: 3.1.2 + xtend: 4.0.2 - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + proxy-addr@2.0.7: dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 + forwarded: 0.2.0 + ipaddr.js: 1.9.1 - /refractor@3.6.0: - resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + proxy-agent@6.5.0: dependencies: - hastscript: 6.0.0 - parse-entities: 2.0.0 - prismjs: 1.27.0 + agent-base: 7.1.4 + debug: 4.4.1 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + lru-cache: 7.18.3 + pac-proxy-agent: 7.2.0 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + optional: true - /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} - engines: {node: '>=4'} + proxy-from-env@1.1.0: + optional: true + + prr@1.0.1: {} + + psl@1.15.0: dependencies: - regenerate: 1.4.2 + punycode: 2.3.1 - /regenerate-unicode-properties@9.0.0: - resolution: {integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==} - engines: {node: '>=4'} + public-encrypt@4.0.3: dependencies: - regenerate: 1.4.2 + bn.js: 4.12.2 + browserify-rsa: 4.1.1 + create-hash: 1.2.0 + parse-asn1: 5.1.7 + randombytes: 2.1.0 + safe-buffer: 5.2.1 - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + pump@3.0.3: + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + punycode@1.3.2: {} + + punycode@2.1.1: {} - /regenerator-transform@0.15.1: - resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} + punycode@2.3.1: {} + + puppeteer-core@24.13.0: dependencies: - '@babel/runtime': 7.20.0 + '@puppeteer/browsers': 2.10.5 + chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) + debug: 4.4.1 + devtools-protocol: 0.0.1464554 + typed-query-selector: 2.12.0 + ws: 8.18.3 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - utf-8-validate + optional: true - /regex-parser@2.2.11: - resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} + puppeteer@24.13.0(typescript@4.9.3): + dependencies: + '@puppeteer/browsers': 2.10.5 + chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) + cosmiconfig: 9.0.0(typescript@4.9.3) + devtools-protocol: 0.0.1464554 + puppeteer-core: 24.13.0 + typed-query-selector: 2.12.0 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - typescript + - utf-8-validate + optional: true - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} - engines: {node: '>= 0.4'} + puppeteer@24.13.0(typescript@5.8.3): dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + '@puppeteer/browsers': 2.10.5 + chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) + cosmiconfig: 9.0.0(typescript@5.8.3) + devtools-protocol: 0.0.1464554 + puppeteer-core: 24.13.0 + typed-query-selector: 2.12.0 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - typescript + - utf-8-validate + optional: true - /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + pure-rand@6.1.0: {} - /regexpu-core@4.8.0: - resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==} - engines: {node: '>=4'} + q@1.5.1: {} + + qs@6.10.3: dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 9.0.0 - regjsgen: 0.5.2 - regjsparser: 0.7.0 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + side-channel: 1.1.0 - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + qs@6.11.0: dependencies: - '@babel/regjsgen': 0.8.0 - regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + side-channel: 1.1.0 - /regjsgen@0.5.2: - resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==} + qs@6.13.0: + dependencies: + side-channel: 1.1.0 - /regjsparser@0.7.0: - resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==} - hasBin: true + querystring-es3@0.2.1: {} + + querystring@0.2.0: {} + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + raf@3.4.1: dependencies: - jsesc: 0.5.0 + performance-now: 2.1.0 - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true + randombytes@2.1.0: dependencies: - jsesc: 0.5.0 + safe-buffer: 5.2.1 - /rehype-parse@6.0.2: - resolution: {integrity: sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==} + randomfill@1.0.4: dependencies: - hast-util-from-parse5: 5.0.3 - parse5: 5.1.1 - xtend: 4.0.2 + randombytes: 2.1.0 + safe-buffer: 5.2.1 - /relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} + range-parser@1.2.1: {} - /remark-admonitions@1.2.1: - resolution: {integrity: sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow==} + raw-body@2.5.1: dependencies: - rehype-parse: 6.0.2 - unified: 8.4.2 - unist-util-visit: 2.0.3 - - /remark-footnotes@2.0.0: - resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 - /remark-frontmatter@2.0.0: - resolution: {integrity: sha512-uNOQt4tO14qBFWXenF0MLC4cqo3dv8qiHPGyjCl1rwOT0LomSHpcElbjjVh5CwzElInB38HD8aSRVugKQjeyHA==} + raw-body@2.5.2: dependencies: - fault: 1.0.4 + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 - /remark-mdx@1.6.21: - resolution: {integrity: sha512-IGb3l46a6NFi62egT+WXeTT3T8wYTunmPCEGTfDO6oRAfuss9VAb/3InVCKKGXXoiNi0mTuplI0EFusdCLGk3A==} + react-app-polyfill@3.0.0: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-object-rest-spread': 7.11.0(@babel/core@7.11.6) - '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) - '@mdx-js/util': 1.6.21 - is-alphabetical: 1.0.4 - remark-parse: 8.0.3 - unified: 9.2.0 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + object-assign: 4.1.1 + promise: 8.3.0 + raf: 3.4.1 + regenerator-runtime: 0.13.11 + whatwg-fetch: 3.6.20 - /remark-mdx@1.6.22: - resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9) - '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) - '@mdx-js/util': 1.6.22 - is-alphabetical: 1.0.4 - remark-parse: 8.0.3 - unified: 9.2.0 + '@babel/code-frame': 7.27.1 + address: 1.2.2 + browserslist: 4.21.4 + chalk: 4.1.2 + cross-spawn: 7.0.6 + detect-port-alt: 1.1.6 + escape-string-regexp: 4.0.0 + filesize: 8.0.7 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + global-modules: 2.0.0 + globby: 11.1.0 + gzip-size: 6.0.0 + immer: 9.0.21 + is-root: 2.1.0 + loader-utils: 3.3.1 + open: 8.4.2 + pkg-up: 3.1.0 + prompts: 2.4.2 + react-error-overlay: 6.1.0 + recursive-readdir: 2.2.3 + shell-quote: 1.8.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + typescript: 4.9.3 transitivePeerDependencies: + - eslint - supports-color + - vue-template-compiler - /remark-parse@8.0.3: - resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1): dependencies: - ccount: 1.1.0 - collapse-white-space: 1.0.6 - is-alphabetical: 1.0.4 - is-decimal: 1.0.4 - is-whitespace-character: 1.0.4 - is-word-character: 1.0.4 - markdown-escapes: 1.0.4 - parse-entities: 2.0.0 - repeat-string: 1.6.1 - state-toggle: 1.0.3 - trim: 0.0.1 - trim-trailing-lines: 1.1.4 - unherit: 1.1.3 - unist-util-remove-position: 2.0.1 - vfile-location: 3.2.0 - xtend: 4.0.2 + '@babel/code-frame': 7.27.1 + address: 1.2.2 + browserslist: 4.21.4 + chalk: 4.1.2 + cross-spawn: 7.0.6 + detect-port-alt: 1.1.6 + escape-string-regexp: 4.0.0 + filesize: 8.0.7 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + global-modules: 2.0.0 + globby: 11.1.0 + gzip-size: 6.0.0 + immer: 9.0.21 + is-root: 2.1.0 + loader-utils: 3.3.1 + open: 8.4.2 + pkg-up: 3.1.0 + prompts: 2.4.2 + react-error-overlay: 6.1.0 + recursive-readdir: 2.2.3 + shell-quote: 1.8.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler - /remark-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + react-dom@17.0.2(react@17.0.2): dependencies: - mdast-squeeze-paragraphs: 4.0.0 + loose-envify: 1.4.0 + object-assign: 4.1.1 + react: 17.0.2 + scheduler: 0.20.2 - /remark-stringify@8.1.1: - resolution: {integrity: sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==} + react-dom@18.3.1(react@17.0.2): dependencies: - ccount: 1.1.0 - is-alphanumeric: 1.0.0 - is-decimal: 1.0.4 - is-whitespace-character: 1.0.4 - longest-streak: 2.0.4 - markdown-escapes: 1.0.4 - markdown-table: 2.0.0 - mdast-util-compact: 2.0.1 - parse-entities: 2.0.0 - repeat-string: 1.6.1 - state-toggle: 1.0.3 - stringify-entities: 3.1.0 - unherit: 1.1.3 - xtend: 4.0.2 + loose-envify: 1.4.0 + react: 17.0.2 + scheduler: 0.23.2 - /renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + react-dom@18.3.1(react@18.3.1): dependencies: - css-select: 4.3.0 - dom-converter: 0.2.0 - htmlparser2: 6.1.0 - lodash: 4.17.21 - strip-ansi: 6.0.1 + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 - /repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + react-error-boundary@3.1.4(react@18.3.1): + dependencies: + '@babel/runtime': 7.20.0 + react: 18.3.1 - /replace-ext@1.0.0: - resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} - engines: {node: '>= 0.10'} + react-error-overlay@6.0.9: {} - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + react-error-overlay@6.1.0: {} - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + react-is@16.13.1: {} - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + react-is@17.0.2: {} - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + react-is@18.3.1: {} + + react-live@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - resolve-from: 5.0.0 + '@types/buble': 0.20.5 + buble: 0.19.6 + core-js: 3.44.0 + dom-iterator: 1.0.2 + prism-react-renderer: 1.3.5(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-simple-code-editor: 0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + unescape: 1.0.1 - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + react-refresh@0.14.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + react-router-dom@6.8.1(react-dom@17.0.2(react@17.0.2))(react@18.3.1): + dependencies: + '@remix-run/router': 1.3.2 + react: 18.3.1 + react-dom: 17.0.2(react@17.0.2) + react-router: 6.8.1(react@18.3.1) - /resolve-url-loader@5.0.0: - resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==} - engines: {node: '>=12'} + react-router-dom@6.8.1(react-dom@18.3.1(react@17.0.2))(react@17.0.2): dependencies: - adjust-sourcemap-loader: 4.0.0 - convert-source-map: 1.9.0 - loader-utils: 2.0.4 - postcss: 8.4.19 - source-map: 0.6.1 + '@remix-run/router': 1.3.2 + react: 17.0.2 + react-dom: 18.3.1(react@17.0.2) + react-router: 6.8.1(react@17.0.2) - /resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} + react-router-dom@6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@remix-run/router': 1.3.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.8.1(react@18.3.1) - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} - hasBin: true + react-router@6.8.1(react@17.0.2): dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 + '@remix-run/router': 1.3.2 + react: 17.0.2 - /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} - hasBin: true + react-router@6.8.1(react@18.3.1): dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: false + '@remix-run/router': 1.3.2 + react: 18.3.1 - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} + react-simple-code-editor@0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + react-syntax-highlighter@13.5.3(react@18.3.1): + dependencies: + '@babel/runtime': 7.20.0 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.30.0 + react: 18.3.1 + refractor: 3.6.0 - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true + react-use-dimensions@1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3): dependencies: - glob: 7.2.3 + '@types/react': 17.0.87 + react: 18.3.1 + typescript: 4.9.3 - /ripemd160@2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + react-use-dimensions@1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3): dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 + '@types/react': 17.0.87 + react: 18.3.1 + typescript: 5.8.3 - /rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + react-use-dimensions@1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3): + dependencies: + '@types/react': 18.3.23 + react: 18.3.1 + typescript: 4.9.3 - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + react@0.14.10: dependencies: - queue-microtask: 1.2.3 + envify: 3.4.1 + fbjs: 0.6.1 - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + react@17.0.2: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + react@18.2.0: + dependencies: + loose-envify: 1.4.0 - /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + react@18.3.1: dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-regex: 1.1.4 + loose-envify: 1.4.0 - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + read-pkg-up@2.0.0: + dependencies: + find-up: 2.1.0 + read-pkg: 2.0.0 - /sanitize.css@13.0.0: - resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} + read-pkg@2.0.0: + dependencies: + load-json-file: 2.0.0 + normalize-package-data: 2.5.0 + path-type: 2.0.0 - /sass-loader@13.2.0(sass@1.56.1)(webpack@5.84.1): - resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - fibers: '*' - node-sass: '*' - sass: '*' - sass-embedded: '*' - webpack: '*' - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true - webpack: - optional: true + readable-stream@2.3.8: dependencies: - klona: 2.0.6 - neo-async: 2.6.2 - sass: 1.56.1 - webpack: 5.84.1(esbuild@0.14.28) + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 - /sass@1.56.1: - resolution: {integrity: sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==} - engines: {node: '>=12.0.0'} - hasBin: true + readable-stream@3.6.2: dependencies: - chokidar: 3.5.3 - immutable: 4.3.0 - source-map-js: 1.0.2 + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + readdirp@3.6.0: dependencies: - xmlchars: 2.2.0 + picomatch: 2.3.1 - /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + recast@0.11.23: dependencies: - loose-envify: 1.4.0 + ast-types: 0.9.6 + esprima: 3.1.3 + private: 0.1.8 + source-map: 0.5.7 - /schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} + recursive-readdir@2.2.3: dependencies: - '@types/json-schema': 7.0.12 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) + minimatch: 3.1.2 - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + redent@3.0.0: dependencies: - '@types/json-schema': 7.0.12 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) + indent-string: 4.0.0 + strip-indent: 3.0.0 - /schema-utils@4.0.0: - resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} - engines: {node: '>= 12.13.0'} + reflect.getprototypeof@1.0.10: dependencies: - '@types/json-schema': 7.0.12 - ajv: 8.12.0 - ajv-formats: 2.1.1 - ajv-keywords: 5.1.0(ajv@8.12.0) + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 - /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + refractor@3.6.0: dependencies: - '@types/json-schema': 7.0.12 - ajv: 8.12.0 - ajv-formats: 2.1.1 - ajv-keywords: 5.1.0(ajv@8.12.0) + hastscript: 6.0.0 + parse-entities: 2.0.0 + prismjs: 1.27.0 - /select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + regenerate-unicode-properties@10.2.0: + dependencies: + regenerate: 1.4.2 - /selfsigned@2.1.1: - resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} - engines: {node: '>=10'} + regenerate-unicode-properties@9.0.0: dependencies: - node-forge: 1.3.1 + regenerate: 1.4.2 - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true + regenerate@1.4.2: {} - /semver@6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} - hasBin: true + regenerator-runtime@0.13.11: {} - /semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true + regex-parser@2.3.1: {} + + regexp.prototype.flags@1.5.4: dependencies: - lru-cache: 6.0.0 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 - /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true + regexpp@3.2.0: {} + + regexpu-core@4.8.0: dependencies: - lru-cache: 6.0.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 9.0.0 + regjsgen: 0.5.2 + regjsparser: 0.7.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.2.0 - /send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + regexpu-core@6.2.0: dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.2.0 - /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + regjsgen@0.5.2: {} + + regjsgen@0.8.0: {} + + regjsparser@0.12.0: dependencies: - randombytes: 2.1.0 + jsesc: 3.0.2 - /serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} + regjsparser@0.7.0: dependencies: - accepts: 1.3.8 - batch: 0.6.1 - debug: 2.6.9 - escape-html: 1.0.3 - http-errors: 1.6.3 - mime-types: 2.1.35 - parseurl: 1.3.3 - transitivePeerDependencies: - - supports-color + jsesc: 0.5.0 - /serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + rehype-parse@6.0.2: dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.18.0 + hast-util-from-parse5: 5.0.3 + parse5: 5.1.1 + xtend: 4.0.2 + + relateurl@0.2.7: {} + + remark-admonitions@1.2.1: + dependencies: + rehype-parse: 6.0.2 + unified: 8.4.2 + unist-util-visit: 2.0.3 + + remark-footnotes@2.0.0: {} + + remark-frontmatter@2.0.0: + dependencies: + fault: 1.0.4 + + remark-mdx@1.6.21: + dependencies: + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-proposal-object-rest-spread': 7.11.0(@babel/core@7.11.6) + '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) + '@mdx-js/util': 1.6.21 + is-alphabetical: 1.0.4 + remark-parse: 8.0.3 + unified: 9.2.0 transitivePeerDependencies: - supports-color - /setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - - /setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + remark-mdx@1.6.22: + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + is-alphabetical: 1.0.4 + remark-parse: 8.0.3 + unified: 9.2.0 + transitivePeerDependencies: + - supports-color - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + remark-parse@8.0.3: + dependencies: + ccount: 1.1.0 + collapse-white-space: 1.0.6 + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + is-word-character: 1.0.4 + markdown-escapes: 1.0.4 + parse-entities: 2.0.0 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + trim: 0.0.1 + trim-trailing-lines: 1.1.4 + unherit: 1.1.3 + unist-util-remove-position: 2.0.1 + vfile-location: 3.2.0 + xtend: 4.0.2 - /sha.js@2.4.11: - resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} - hasBin: true + remark-squeeze-paragraphs@4.0.0: dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 + mdast-squeeze-paragraphs: 4.0.0 - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + remark-stringify@8.1.1: dependencies: - kind-of: 6.0.3 + ccount: 1.1.0 + is-alphanumeric: 1.0.0 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + longest-streak: 2.0.4 + markdown-escapes: 1.0.4 + markdown-table: 2.0.0 + mdast-util-compact: 2.0.1 + parse-entities: 2.0.0 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + stringify-entities: 3.1.0 + unherit: 1.1.3 + xtend: 4.0.2 - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + rename-overwrite@5.0.4: dependencies: - shebang-regex: 3.0.0 + '@zkochan/rimraf': 2.1.3 + fs-extra: 10.1.0 - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + renderkid@3.0.0: + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 6.0.1 - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + repeat-string@1.6.1: {} - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + replace-ext@1.0.0: {} - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + require-directory@2.1.1: {} - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + require-from-string@2.0.2: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + requires-port@1.0.0: {} - /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + resolve-cwd@3.0.0: dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + resolve-from: 5.0.0 - /sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - dependencies: - faye-websocket: 0.11.4 - uuid: 8.3.2 - websocket-driver: 0.7.4 + resolve-from@4.0.0: {} - /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolve-from@5.0.0: {} - /source-map-loader@4.0.1(webpack@5.84.1): - resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + resolve-link-target@1.0.1: dependencies: - abab: 2.0.6 - iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.84.1(esbuild@0.14.28) + graceful-fs: 4.2.11 - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + resolve-url-loader@5.0.0: dependencies: - buffer-from: 1.1.2 + adjust-sourcemap-loader: 4.0.0 + convert-source-map: 1.9.0 + loader-utils: 2.0.4 + postcss: 8.4.19 source-map: 0.6.1 - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 + resolve.exports@2.0.3: {} - /source-map@0.4.4: - resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==} - engines: {node: '>=0.8.0'} + resolve@1.22.10: dependencies: - amdefine: 1.0.1 + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + resolve@2.0.0-next.5: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + retry@0.13.1: {} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + reusify@1.1.0: {} - /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead + rimraf@3.0.2: + dependencies: + glob: 7.2.3 - /space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + ripemd160@2.0.1: + dependencies: + hash-base: 2.0.2 + inherits: 2.0.4 - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + ripemd160@2.0.2: dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + hash-base: 3.1.0 + inherits: 2.0.4 - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + rrweb-cssom@0.8.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + run-parallel@1.2.0: dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 - - /spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + queue-microtask: 1.2.3 - /spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + safe-array-concat@1.1.3: dependencies: - debug: 4.3.4 - detect-node: 2.1.0 - hpack.js: 2.1.6 - obuf: 1.1.2 - readable-stream: 3.6.2 - wbuf: 1.7.3 - transitivePeerDependencies: - - supports-color + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 - /spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: dependencies: - debug: 4.3.4 - handle-thing: 2.0.1 - http-deceiver: 1.2.7 - select-hose: 2.0.0 - spdy-transport: 3.0.0 - transitivePeerDependencies: - - supports-color + es-errors: 1.3.0 + isarray: 2.0.5 - /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + safe-regex-test@1.1.0: dependencies: - readable-stream: 3.6.2 + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + safer-buffer@2.1.2: {} - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + sanitize.css@13.0.0: {} - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + sass-loader@13.2.0(sass@1.56.1)(webpack@5.84.1): dependencies: - escape-string-regexp: 2.0.0 + klona: 2.0.6 + neo-async: 2.6.2 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + sass: 1.56.1 - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + sass@1.56.1: + dependencies: + chokidar: 3.6.0 + immutable: 4.3.7 + source-map-js: 1.2.1 - /state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + sax@1.4.1: + optional: true - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + scheduler@0.20.2: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 - /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + scheduler@0.23.2: dependencies: - internal-slot: 1.0.5 + loose-envify: 1.4.0 - /stoppable@1.1.0: - resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} - engines: {node: '>=4', npm: '>=6'} + schema-utils@2.7.0: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - /stream-browserify@3.0.0: - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + schema-utils@3.3.0: dependencies: - inherits: 2.0.4 - readable-stream: 3.6.2 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - /stream-http@3.2.0: - resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} + schema-utils@4.0.0: dependencies: - builtin-status-codes: 3.0.0 - inherits: 2.0.4 - readable-stream: 3.6.2 - xtend: 4.0.2 + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + schema-utils@4.2.0: dependencies: - char-regex: 1.0.2 - strip-ansi: 6.0.1 + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + schema-utils@4.3.2: dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) - /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} + select-hose@2.0.0: {} + + selfsigned@2.4.1: dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.1 - has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 - side-channel: 1.0.4 + '@types/node-forge': 1.3.13 + node-forge: 1.3.1 - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} - engines: {node: '>= 0.4'} + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.3.4: + dependencies: + lru-cache: 6.0.0 + + semver@7.7.2: {} + + send@0.18.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + + send@0.19.0: dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + serialize-javascript@6.0.2: dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + randombytes: 2.1.0 - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + serve-index@1.9.1: dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 + accepts: 1.3.8 + batch: 0.6.1 + debug: 2.6.9 + escape-html: 1.0.3 + http-errors: 1.6.3 + mime-types: 2.1.35 + parseurl: 1.3.3 + transitivePeerDependencies: + - supports-color - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + serve-static@1.15.0: dependencies: - safe-buffer: 5.1.2 + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + transitivePeerDependencies: + - supports-color - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + serve-static@1.16.2: dependencies: - safe-buffer: 5.2.1 + encodeurl: 2.0.0 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.19.0 + transitivePeerDependencies: + - supports-color - /stringify-entities@3.1.0: - resolution: {integrity: sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==} + set-function-length@1.2.2: dependencies: - character-entities-html4: 1.1.4 - character-entities-legacy: 1.1.4 - xtend: 4.0.2 + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 - /strip-ansi@6.0.0: - resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} - engines: {node: '>=8'} + set-function-name@2.0.2: dependencies: - ansi-regex: 5.0.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + set-proto@1.0.0: dependencies: - ansi-regex: 5.0.1 + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + setimmediate@1.0.5: {} - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} + setprototypeof@1.1.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + setprototypeof@1.2.0: {} - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + sha.js@2.4.12: dependencies: - min-indent: 1.0.1 - - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + inherits: 2.0.4 + safe-buffer: 5.2.1 + to-buffer: 1.2.1 - /style-loader@3.3.1(webpack@5.84.1): - resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + shallow-clone@3.0.1: dependencies: - webpack: 5.84.1(esbuild@0.14.28) + kind-of: 6.0.3 - /style-to-object@0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + shebang-command@2.0.0: dependencies: - inline-style-parser: 0.1.1 + shebang-regex: 3.0.0 - /stylehacks@5.1.1(postcss@8.4.19): - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: '*' - peerDependenciesMeta: - postcss: - optional: true - dependencies: - browserslist: 4.21.9 - postcss: 8.4.19 - postcss-selector-parser: 6.0.13 + shebang-regex@3.0.0: {} - /subscriptions-transport-ws@0.11.0(graphql@14.7.0): - resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} - deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md - peerDependencies: - graphql: '*' - peerDependenciesMeta: - graphql: - optional: true - dependencies: - backo2: 1.0.2 - eventemitter3: 3.1.2 - graphql: 14.7.0 - iterall: 1.3.0 - symbol-observable: 1.2.0 - ws: 7.5.9 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false + shell-quote@1.8.3: {} - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + side-channel-list@1.0.0: dependencies: - has-flag: 3.0.0 + es-errors: 1.3.0 + object-inspect: 1.13.4 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + side-channel-map@1.0.1: dependencies: - has-flag: 4.0.0 + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + side-channel-weakmap@1.0.2: dependencies: - has-flag: 4.0.0 - - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - /svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 - /svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true + side-channel@1.1.0: dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 4.3.0 - css-tree: 1.1.3 - csso: 4.2.0 - picocolors: 1.0.0 - stable: 0.1.8 + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 - /symbol-observable@1.2.0: - resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} - engines: {node: '>=0.10.0'} - dev: false + signal-exit@3.0.7: {} - /symbol-observable@4.0.0: - resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} - engines: {node: '>=0.10'} - dev: false + sisteransi@1.0.5: {} - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + slash@3.0.0: {} - /synckit@0.1.6: - resolution: {integrity: sha512-5pk9meINInVUZ4nKn5942/x/mY5OE9SVzkOFIxiCDnellaz1cwTd4m7Xl1ibz1F3AxnZ8NxQMEbF7eMWMGECGg==} - engines: {node: '>=4.0'} + slice-ansi@4.0.0: dependencies: - tslib: 2.6.0 - uuid: 8.3.2 + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 - /synckit@0.3.4: - resolution: {integrity: sha512-t6qVl+gzR6qMkrP5pW+sxGe0mVx/O7vj29ir9k4Lw9BacPBE/cKHMvcROJlFBgNHFW94etQL/sBYFq4uur6C6A==} - engines: {node: '>=8.10'} + smart-buffer@4.2.0: + optional: true + + sockjs@0.3.24: dependencies: - tslib: 2.6.0 + faye-websocket: 0.11.4 uuid: 8.3.2 - dev: false + websocket-driver: 0.7.4 - /table@6.8.1: - resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} - engines: {node: '>=10.0.0'} + socks-proxy-agent@8.0.5: dependencies: - ajv: 8.12.0 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 + agent-base: 7.1.4 + debug: 4.4.1 + socks: 2.8.6 + transitivePeerDependencies: + - supports-color + optional: true - /tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} + socks@2.8.6: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + optional: true - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + source-map-js@1.2.1: {} - /terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.51.1): - resolution: {integrity: sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: '*' - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - webpack: - optional: true + source-map-loader@4.0.1(webpack@5.84.1): dependencies: - esbuild: 0.14.28 - jest-worker: 27.5.1 - p-limit: 3.1.0 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - source-map: 0.6.1 - terser: 5.18.2 - webpack: 5.51.1(esbuild@0.14.28) + abab: 2.0.6 + iconv-lite: 0.6.3 + source-map-js: 1.2.1 + webpack: 5.84.1(esbuild@0.14.28) - /terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.84.1): - resolution: {integrity: sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: '*' - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - webpack: - optional: true + source-map-support@0.5.13: dependencies: - esbuild: 0.14.28 - jest-worker: 27.5.1 - p-limit: 3.1.0 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 + buffer-from: 1.1.2 source-map: 0.6.1 - terser: 5.18.2 - webpack: 5.84.1(esbuild@0.14.28) - /terser-webpack-plugin@5.2.0(webpack@5.84.1): - resolution: {integrity: sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: '*' - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - webpack: - optional: true + source-map-support@0.5.21: dependencies: - jest-worker: 27.5.1 - p-limit: 3.1.0 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 + buffer-from: 1.1.2 source-map: 0.6.1 - terser: 5.18.2 - webpack: 5.84.1 - /terser-webpack-plugin@5.3.9(esbuild@0.14.28)(webpack@5.84.1): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: '*' - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - webpack: - optional: true + source-map@0.4.4: dependencies: - '@jridgewell/trace-mapping': 0.3.18 - esbuild: 0.14.28 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.18.2 - webpack: 5.84.1(esbuild@0.14.28) + amdefine: 1.0.1 - /terser-webpack-plugin@5.3.9(webpack@5.84.1): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: '*' - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - webpack: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.18 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.18.2 - webpack: 5.84.1 + source-map@0.5.7: {} - /terser@5.18.2: - resolution: {integrity: sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==} - engines: {node: '>=10'} - hasBin: true + source-map@0.6.1: {} + + source-map@0.7.4: {} + + sourcemap-codec@1.4.8: {} + + space-separated-tokens@1.1.5: {} + + spdx-correct@3.2.0: dependencies: - '@jridgewell/source-map': 0.3.3 - acorn: 8.9.0 - commander: 2.20.3 - source-map-support: 0.5.21 + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.21 - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: dependencies: - '@istanbuljs/schema': 0.1.3 - glob: 7.2.3 - minimatch: 3.1.2 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.21 - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + spdx-license-ids@3.0.21: {} - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + spdy-transport@3.0.0: + dependencies: + debug: 4.4.1 + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color - /thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + spdy@4.0.2: + dependencies: + debug: 4.4.1 + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color - /timers-browserify@2.0.12: - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} - engines: {node: '>=0.6.0'} + split2@3.2.2: dependencies: - setimmediate: 1.0.5 + readable-stream: 3.6.2 - /timers-ext@0.1.7: - resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} - dependencies: - es5-ext: 0.10.62 - next-tick: 1.1.0 + sprintf-js@1.0.3: {} - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + sprintf-js@1.1.3: + optional: true - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + stable@0.1.8: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + stack-utils@2.0.6: dependencies: - is-number: 7.0.0 + escape-string-regexp: 2.0.0 - /toggle-selection@1.0.6: - resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} + stackframe@1.3.4: {} - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + state-toggle@1.0.3: {} - /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} + statuses@1.5.0: {} + + statuses@2.0.1: {} + + stop-iteration-iterator@1.1.0: dependencies: - psl: 1.9.0 - punycode: 2.3.0 - universalify: 0.2.0 - url-parse: 1.5.10 + es-errors: 1.3.0 + internal-slot: 1.1.0 - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + stoppable@1.1.0: {} - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + stream-browserify@3.0.0: dependencies: - punycode: 2.3.0 + inherits: 2.0.4 + readable-stream: 3.6.2 - /tr46@4.1.1: - resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} - engines: {node: '>=14'} + stream-http@3.2.0: dependencies: - punycode: 2.3.0 + builtin-status-codes: 3.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + xtend: 4.0.2 - /trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + streamx@2.22.1: + dependencies: + fast-fifo: 1.3.2 + text-decoder: 1.2.3 + optionalDependencies: + bare-events: 2.6.0 + optional: true - /trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} - deprecated: Use String.prototype.trim() instead + string-length@4.0.2: + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 - /trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 - /ts-deepmerge@6.1.0: - resolution: {integrity: sha512-YVJBhdIwYAZv6QoYz/mihpgbv+r0+QfQazTcSS6WXhQkbCxjTRoV+IOLtyArtz3au7xb+fPQVp1d7o5Qw1f1fg==} - engines: {node: '>=14.13.1'} + string.prototype.matchall@4.0.12: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.4 + set-function-name: 2.0.2 + side-channel: 1.1.0 - /ts-invariant@0.10.3: - resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==} - engines: {node: '>=8'} + string.prototype.trim@1.2.10: dependencies: - tslib: 2.6.0 - dev: false + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 - /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + string.prototype.trimend@1.0.9: dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 - /tslib@2.6.0: - resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 - /tsutils@3.21.0(typescript@4.9.3): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + string_decoder@1.3.0: dependencies: - tslib: 1.14.1 - typescript: 4.9.3 + safe-buffer: 5.2.1 - /tty-browserify@0.0.1: - resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} + stringify-entities@3.1.0: + dependencies: + character-entities-html4: 1.1.4 + character-entities-legacy: 1.1.4 + xtend: 4.0.2 - /type-check@0.3.2: - resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} - engines: {node: '>= 0.8.0'} + strip-ansi@6.0.0: dependencies: - prelude-ls: 1.1.2 + ansi-regex: 5.0.1 - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + strip-ansi@6.0.1: dependencies: - prelude-ls: 1.2.1 + ansi-regex: 5.0.1 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + strip-bom@3.0.0: {} - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + strip-bom@4.0.0: {} - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + strip-final-newline@2.0.0: {} - /type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + strip-indent@3.0.0: dependencies: - media-typer: 0.3.0 - mime-types: 2.1.35 + min-indent: 1.0.1 - /type@1.2.0: - resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==} + strip-json-comments@3.1.1: {} - /type@2.7.2: - resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + style-loader@3.3.1(webpack@5.84.1): + dependencies: + webpack: 5.84.1(esbuild@0.14.28) - /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + style-to-object@0.3.0: dependencies: - call-bind: 1.0.2 - for-each: 0.3.3 - is-typed-array: 1.1.10 + inline-style-parser: 0.1.1 - /typescript@4.9.3: - resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} - engines: {node: '>=4.2.0'} - hasBin: true + stylehacks@5.1.1(postcss@8.4.19): + dependencies: + browserslist: 4.21.4 + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - /ua-parser-js@0.7.35: - resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} + subscriptions-transport-ws@0.11.0(graphql@14.7.0): + dependencies: + backo2: 1.0.2 + eventemitter3: 3.1.2 + graphql: 14.7.0 + iterall: 1.3.0 + symbol-observable: 1.2.0 + ws: 7.5.10 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + supports-color@5.5.0: dependencies: - call-bind: 1.0.2 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 + has-flag: 3.0.0 - /unescape@1.0.1: - resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==} - engines: {node: '>=0.10.0'} + supports-color@7.2.0: dependencies: - extend-shallow: 2.0.1 + has-flag: 4.0.0 - /unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + supports-color@8.1.1: dependencies: - inherits: 2.0.4 - xtend: 4.0.2 + has-flag: 4.0.0 - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + supports-preserve-symlinks-flag@1.0.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + svg-parser@2.0.4: {} + + svgo@2.8.0: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.1.0 + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.1.1 + stable: 0.1.8 - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + symbol-observable@1.2.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + symbol-observable@4.0.0: {} - /unified@8.4.2: - resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==} + symbol-tree@3.2.4: {} + + symlink-dir@5.2.1: dependencies: - '@types/unist': 2.0.6 - bail: 1.0.5 - extend: 3.0.2 - is-plain-obj: 2.1.0 - trough: 1.0.5 - vfile: 4.2.0 + better-path-resolve: 1.0.0 + rename-overwrite: 5.0.4 - /unified@9.2.0: - resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + synckit@0.1.6: dependencies: - '@types/unist': 2.0.6 - bail: 1.0.5 - extend: 3.0.2 - is-buffer: 2.0.5 - is-plain-obj: 2.1.0 - trough: 1.0.5 - vfile: 4.2.1 + tslib: 2.8.1 + uuid: 8.3.2 - /unified@9.2.2: - resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} + synckit@0.3.4: dependencies: - '@types/unist': 2.0.6 - bail: 1.0.5 - extend: 3.0.2 - is-buffer: 2.0.5 - is-plain-obj: 2.1.0 - trough: 1.0.5 - vfile: 4.2.1 + tslib: 2.8.1 + uuid: 8.3.2 - /unist-builder@2.0.3: - resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + table@6.9.0: + dependencies: + ajv: 8.17.1 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 - /unist-util-generated@1.1.6: - resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + tapable@1.1.3: {} - /unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + tapable@2.2.2: {} - /unist-util-position@3.1.0: - resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + tar-fs@3.1.0: + dependencies: + pump: 3.0.3 + tar-stream: 3.1.7 + optionalDependencies: + bare-fs: 4.1.6 + bare-path: 3.0.0 + transitivePeerDependencies: + - bare-buffer + optional: true - /unist-util-remove-position@2.0.1: - resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + tar-stream@3.1.7: dependencies: - unist-util-visit: 2.0.3 + b4a: 1.6.7 + fast-fifo: 1.3.2 + streamx: 2.22.1 + optional: true - /unist-util-remove@2.0.1: - resolution: {integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==} + terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.51.1(esbuild@0.14.28)): dependencies: - unist-util-is: 4.1.0 + jest-worker: 27.5.1 + p-limit: 3.1.0 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + source-map: 0.6.1 + terser: 5.43.1 + webpack: 5.51.1(esbuild@0.14.28) + optionalDependencies: + esbuild: 0.14.28 - /unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.84.1): dependencies: - '@types/unist': 2.0.6 + jest-worker: 27.5.1 + p-limit: 3.1.0 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + source-map: 0.6.1 + terser: 5.43.1 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + esbuild: 0.14.28 - /unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + terser-webpack-plugin@5.3.14(esbuild@0.14.28)(webpack@5.84.1): dependencies: - '@types/unist': 2.0.6 - unist-util-is: 4.1.0 + '@jridgewell/trace-mapping': 0.3.29 + jest-worker: 27.5.1 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + terser: 5.43.1 + webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + esbuild: 0.14.28 - /unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + terser@5.43.1: dependencies: - '@types/unist': 2.0.6 - unist-util-is: 4.1.0 - unist-util-visit-parents: 3.1.1 + '@jridgewell/source-map': 0.3.10 + acorn: 8.15.0 + commander: 2.20.3 + source-map-support: 0.5.21 - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + test-exclude@6.0.0: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 - /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} + text-decoder@1.2.3: + dependencies: + b4a: 1.6.7 + optional: true - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + text-table@0.2.0: {} - /update-browserslist-db@1.0.11(browserslist@4.21.4): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} - hasBin: true - peerDependencies: - browserslist: '*' - peerDependenciesMeta: - browserslist: - optional: true - dependencies: - browserslist: 4.21.4 - escalade: 3.1.1 - picocolors: 1.0.0 + through@2.3.8: {} - /update-browserslist-db@1.0.11(browserslist@4.21.9): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} - hasBin: true - peerDependencies: - browserslist: '*' - peerDependenciesMeta: - browserslist: - optional: true + thunky@1.1.0: {} + + timers-browserify@2.0.12: dependencies: - browserslist: 4.21.9 - escalade: 3.1.1 - picocolors: 1.0.0 + setimmediate: 1.0.5 - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + timers-ext@0.1.8: dependencies: - punycode: 2.3.0 + es5-ext: 0.10.64 + next-tick: 1.1.0 - /url-join@4.0.0: - resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} + tldts-core@6.1.86: {} - /url-parse@1.5.1: - resolution: {integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==} + tldts@6.1.86: dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 + tldts-core: 6.1.86 - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 + tmpl@1.0.5: {} - /url@0.11.0: - resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} + to-buffer@1.2.1: dependencies: - punycode: 1.3.2 - querystring: 0.2.0 + isarray: 2.0.5 + safe-buffer: 5.2.1 + typed-array-buffer: 1.0.3 - /use-debounce@3.4.3(react@18.2.0): - resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + to-fast-properties@2.0.0: {} + + to-regex-range@5.0.1: dependencies: - react: 18.2.0 + is-number: 7.0.0 - /use-deep-compare@1.1.0(react@18.2.0): - resolution: {integrity: sha512-6yY3zmKNCJ1jjIivfZMZMReZjr8e6iC6Uqtp701jvWJ6ejC/usXD+JjmslZDPJQgX8P4B1Oi5XSLHkOLeYSJsA==} - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + toggle-selection@1.0.6: {} + + toidentifier@1.0.1: {} + + tough-cookie@4.1.4: + dependencies: + psl: 1.15.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + + tough-cookie@5.1.2: dependencies: - dequal: 1.0.0 - react: 18.2.0 + tldts: 6.1.86 - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + tr46@0.0.3: {} - /util@0.12.3: - resolution: {integrity: sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==} + tr46@3.0.0: dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.10 - safe-buffer: 5.2.1 - which-typed-array: 1.1.9 + punycode: 2.3.1 - /utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + tr46@5.1.1: + dependencies: + punycode: 2.3.1 - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} + trim-trailing-lines@1.1.4: {} - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true + trim@0.0.1: {} - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + trough@1.0.5: {} - /v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} - engines: {node: '>=10.12.0'} + ts-deepmerge@6.2.1: {} + + ts-invariant@0.10.3: dependencies: - '@jridgewell/trace-mapping': 0.3.18 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.9.0 + tslib: 2.8.1 - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + tsconfig-paths@3.15.0: dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} + tslib@1.14.1: {} - /vfile-location@3.2.0: - resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} + tslib@2.8.1: {} - /vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + tsutils@3.21.0(typescript@4.9.3): dependencies: - '@types/unist': 2.0.6 - unist-util-stringify-position: 2.0.3 + tslib: 1.14.1 + typescript: 4.9.3 - /vfile@4.2.0: - resolution: {integrity: sha512-a/alcwCvtuc8OX92rqqo7PflxiCgXRFjdyoGVuYV+qbgCb0GgZJRvIgCD4+U/Kl1yhaRsaTwksF88xbPyGsgpw==} - dependencies: - '@types/unist': 2.0.6 - is-buffer: 2.0.5 - replace-ext: 1.0.0 - unist-util-stringify-position: 2.0.3 - vfile-message: 2.0.4 + tty-browserify@0.0.1: {} - /vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + type-check@0.4.0: dependencies: - '@types/unist': 2.0.6 - is-buffer: 2.0.5 - unist-util-stringify-position: 2.0.3 - vfile-message: 2.0.4 + prelude-ls: 1.2.1 - /vlq@1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + type-detect@4.0.8: {} - /vm-browserify@1.1.2: - resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} + type-fest@0.20.2: {} - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + type-fest@0.21.3: {} + + type-is@1.6.18: dependencies: - xml-name-validator: 4.0.0 + media-typer: 0.3.0 + mime-types: 2.1.35 - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + type@2.7.3: {} + + typed-array-buffer@1.0.3: dependencies: - makeerror: 1.0.12 + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + typed-array-byte-length@1.0.3: dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 - /wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + typed-array-byte-offset@1.0.4: dependencies: - minimalistic-assert: 1.0.1 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 - /web-namespaces@1.1.4: - resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + typed-query-selector@2.12.0: + optional: true - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + typescript@4.9.3: {} - /webpack-assets-manifest@5.1.0(webpack@5.84.1): - resolution: {integrity: sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==} - engines: {node: '>=10.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - dependencies: - chalk: 4.1.2 - deepmerge: 4.3.1 - lockfile: 1.0.4 - lodash.get: 4.4.2 - lodash.has: 4.5.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - webpack: 5.84.1 + typescript@5.8.3: {} - /webpack-dev-middleware@5.3.3(webpack@5.84.1): - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true + ua-parser-js@0.7.40: {} + + unbox-primitive@1.1.0: dependencies: - colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.84.1 + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 - /webpack-dev-server@4.15.0(webpack@5.84.1): - resolution: {integrity: sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: '*' - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true + unescape@1.0.1: dependencies: - '@types/bonjour': 3.5.10 - '@types/connect-history-api-fallback': 1.5.0 - '@types/express': 4.17.17 - '@types/serve-index': 1.9.1 - '@types/serve-static': 1.15.2 - '@types/sockjs': 0.3.33 - '@types/ws': 8.5.5 - ansi-html-community: 0.0.8 - bonjour-service: 1.1.1 - chokidar: 3.5.3 - colorette: 2.0.20 - compression: 1.7.4 - connect-history-api-fallback: 2.0.0 - default-gateway: 6.0.3 - express: 4.18.2 - graceful-fs: 4.2.11 - html-entities: 2.4.0 - http-proxy-middleware: 2.0.6(@types/express@4.17.17) - ipaddr.js: 2.1.0 - launch-editor: 2.6.0 - open: 8.4.2 - p-retry: 4.6.2 - rimraf: 3.0.2 - schema-utils: 4.2.0 - selfsigned: 2.1.1 - serve-index: 1.9.1 - sockjs: 0.3.24 - spdy: 4.0.2 - webpack: 5.84.1 - webpack-dev-middleware: 5.3.3(webpack@5.84.1) - ws: 8.13.0 - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate + extend-shallow: 2.0.1 - /webpack-merge@5.8.0: - resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} - engines: {node: '>=10.0.0'} + unherit@1.1.3: dependencies: - clone-deep: 4.0.1 - wildcard: 2.0.1 + inherits: 2.0.4 + xtend: 4.0.2 - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + unicode-canonical-property-names-ecmascript@2.0.1: {} - /webpack@5.51.1(esbuild@0.14.28): - resolution: {integrity: sha512-xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + unicode-match-property-ecmascript@2.0.0: dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 0.0.50 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.9.0 - acorn-import-assertions: 1.9.0(acorn@8.9.0) - browserslist: 4.21.9 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 0.7.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-better-errors: 1.0.2 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.51.1) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js + unicode-canonical-property-names-ecmascript: 2.0.1 + unicode-property-aliases-ecmascript: 2.1.0 - /webpack@5.84.1: - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.9.0 - acorn-import-assertions: 1.9.0(acorn@8.9.0) - browserslist: 4.21.9 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(webpack@5.84.1) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js + unicode-match-property-value-ecmascript@2.2.0: {} - /webpack@5.84.1(esbuild@0.14.28): - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.9.0 - acorn-import-assertions: 1.9.0(acorn@8.9.0) - browserslist: 4.21.9 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(esbuild@0.14.28)(webpack@5.84.1) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js + unicode-property-aliases-ecmascript@2.1.0: {} - /websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} + unified@8.4.2: dependencies: - http-parser-js: 0.5.8 - safe-buffer: 5.2.1 - websocket-extensions: 0.1.4 + '@types/unist': 2.0.11 + bail: 1.0.5 + extend: 3.0.2 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.0 - /websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} + unified@9.2.0: + dependencies: + '@types/unist': 2.0.11 + bail: 1.0.5 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.1 - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + unified@9.2.2: dependencies: - iconv-lite: 0.6.3 + '@types/unist': 2.0.11 + bail: 1.0.5 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.1 - /whatwg-fetch@0.9.0: - resolution: {integrity: sha512-DIuh7/cloHxHYwS/oRXGgkALYAntijL63nsgMQsNSnBj825AysosAqA2ZbYXGRqpPRiNH7335dTqV364euRpZw==} + unist-builder@2.0.3: {} - /whatwg-fetch@3.6.2: - resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} + unist-util-generated@1.1.6: {} - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + unist-util-is@4.1.0: {} - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} - dependencies: - tr46: 3.0.0 - webidl-conversions: 7.0.0 + unist-util-position@3.1.0: {} - /whatwg-url@12.0.1: - resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} - engines: {node: '>=14'} + unist-util-remove-position@2.0.1: dependencies: - tr46: 4.1.1 - webidl-conversions: 7.0.0 + unist-util-visit: 2.0.3 - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + unist-util-remove@2.0.1: dependencies: - tr46: 0.0.3 - webidl-conversions: 3.0.1 + unist-util-is: 4.1.0 - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + unist-util-stringify-position@2.0.3: dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 + '@types/unist': 2.0.11 - /which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + unist-util-visit-parents@3.1.1: dependencies: - is-map: 2.0.2 - is-set: 2.0.2 - is-weakmap: 2.0.1 - is-weakset: 2.0.2 + '@types/unist': 2.0.11 + unist-util-is: 4.1.0 - /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} + unist-util-visit@2.0.3: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 + '@types/unist': 2.0.11 + unist-util-is: 4.1.0 + unist-util-visit-parents: 3.1.1 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + universalify@0.2.0: {} + + universalify@2.0.1: {} + + unpipe@1.0.0: {} + + update-browserslist-db@1.1.3(browserslist@4.21.4): dependencies: - isexe: 2.0.0 + browserslist: 4.21.4 + escalade: 3.2.0 + picocolors: 1.1.1 - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + update-browserslist-db@1.1.3(browserslist@4.25.1): dependencies: - isexe: 2.0.0 + browserslist: 4.25.1 + escalade: 3.2.0 + picocolors: 1.1.1 - /wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 - /word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} + url-join@4.0.0: {} - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + url-parse@1.5.1: dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 + querystringify: 2.2.0 + requires-port: 1.0.0 - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + url@0.11.0: dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 + punycode: 1.3.2 + querystring: 0.2.0 - /ws@7.5.9: - resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: '*' - utf-8-validate: '*' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: false + use-debounce@3.4.3(react@18.3.1): + dependencies: + react: 18.3.1 - /ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: '*' - utf-8-validate: '*' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + use-deep-compare@1.3.0(react@18.3.1): + dependencies: + dequal: 2.0.3 + react: 18.3.1 - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + util-deprecate@1.0.2: {} - /xmlbuilder@15.1.1: - resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} - engines: {node: '>=8.0'} + util@0.12.3: + dependencies: + inherits: 2.0.4 + is-arguments: 1.2.0 + is-generator-function: 1.1.0 + is-typed-array: 1.1.15 + safe-buffer: 5.2.1 + which-typed-array: 1.1.19 - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + utila@0.4.0: {} - /xregexp@4.0.0: - resolution: {integrity: sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==} + utils-merge@1.0.1: {} - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + uuid@8.3.2: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + v8-compile-cache@2.4.0: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + v8-to-istanbul@9.3.0: + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + vary@1.1.2: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + vfile-location@3.2.0: {} - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + vfile-message@2.0.4: dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 + '@types/unist': 2.0.11 + unist-util-stringify-position: 2.0.3 - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + vfile@4.2.0: + dependencies: + '@types/unist': 2.0.11 + is-buffer: 2.0.5 + replace-ext: 1.0.0 + unist-util-stringify-position: 2.0.3 + vfile-message: 2.0.4 - /zen-observable-ts@1.2.5: - resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==} + vfile@4.2.1: dependencies: - zen-observable: 0.8.15 - dev: false + '@types/unist': 2.0.11 + is-buffer: 2.0.5 + unist-util-stringify-position: 2.0.3 + vfile-message: 2.0.4 - /zen-observable@0.8.15: - resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} - dev: false + vlq@1.0.1: {} - /zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + vm-browserify@1.1.2: {} - file:scope-name/envs/my-react-env(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14): - resolution: {directory: scope-name/envs/my-react-env, type: directory} - id: file:scope-name/envs/my-react-env - name: '@org/scope-name.envs.my-react-env' + w3c-xmlserializer@4.0.0: dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.2.0) - '@teambit/defender.eslint-linter': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/defender.jest-tester': 0.0.10(@teambit/legacy@node_modules+@teambit+legacy)(@types/node@16.18.37) - '@teambit/defender.prettier-formatter': 0.0.6(@teambit/legacy@node_modules+@teambit+legacy) - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.2.0) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.2.0)(react@18.2.0) - '@teambit/preview.react-preview': 0.0.35(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/react@18.2.14)(eslint@7.32.0)(graphql@14.7.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@teambit/legacy@node_modules+@teambit+legacy)(@testing-library/react@13.4.0)(@types/node@16.18.37)(@types/react@18.2.14) - '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3(@teambit/legacy@node_modules+@teambit+legacy) - core-js: 3.31.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.37) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-router-dom: 6.8.1(react-dom@18.2.0)(react@18.2.0) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@teambit/legacy' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - dev: false + xml-name-validator: 4.0.0 - file:scope-name/get-hello-world: - resolution: {directory: scope-name/get-hello-world, type: directory} - name: '@org/scope-name.get-hello-world' - dev: false + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 - file:scope-name/hello-world-app(react-dom@18.2.0): - resolution: {directory: scope-name/hello-world-app, type: directory} - id: file:scope-name/hello-world-app - name: '@org/scope-name.hello-world-app' - peerDependencies: - react-dom: '*' - peerDependenciesMeta: - react-dom: - optional: true + walker@1.0.8: dependencies: - react-dom: 18.2.0(react@18.2.0) - dev: false + makeerror: 1.0.12 - file:scope-name/ui/hello-world(react@18.2.0): - resolution: {directory: scope-name/ui/hello-world, type: directory} - id: file:scope-name/ui/hello-world - name: '@org/scope-name.ui.hello-world' - peerDependencies: - react: '*' - peerDependenciesMeta: - react: - optional: true + watchpack@2.4.4: dependencies: - react: 18.2.0 - dev: false + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 - registry.npmjs.org/@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-6hC8vHh0PmHU8fOUM81NXLML7rx9SYpzKkEMz1eS5sIrY/cFIdhLKupo01sARPVwcWTQ0VkVYI1fOO3Q4vi3yg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.css-components.elevation/-/base-ui.css-components.elevation-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.css-components.elevation/1.0.0 - name: '@teambit/base-ui.css-components.elevation' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + wbuf@1.7.3: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + minimalistic-assert: 1.0.1 - registry.npmjs.org/@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-92TAw5Cs4wg2h+Ad9/XmY2p5yRlV8a4dIPL776A1OXw/JXR6NIePUl61VtCrW9v0EJanSJywBtka3AWG+PKOmg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.css-components.roundness/-/base-ui.css-components.roundness-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.css-components.roundness/1.0.0 - name: '@teambit/base-ui.css-components.roundness' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + web-namespaces@1.1.4: {} + + webidl-conversions@3.0.1: {} + + webidl-conversions@7.0.0: {} + + webpack-assets-manifest@5.1.0(webpack@5.84.1): dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + chalk: 4.1.2 + deepmerge: 4.3.1 + lockfile: 1.0.4 + lodash.get: 4.4.2 + lodash.has: 4.5.2 + schema-utils: 3.3.0 + tapable: 2.2.2 + webpack: 5.84.1(esbuild@0.14.28) - registry.npmjs.org/@teambit/base-ui.elements.icon@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-qaoHLbt6wNXzgST7N3oE+1hI/PttCzrSLQ9B7d/7yKKxUbHbhjoMX0+wViJxlQq3PYnb8LOHDzwvylfZoeBgKQ==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.elements.icon/-/base-ui.elements.icon-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.elements.icon/1.0.0 - name: '@teambit/base-ui.elements.icon' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + webpack-dev-middleware@5.3.4(webpack@5.84.1): dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + colorette: 2.0.20 + memfs: 3.5.3 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.3.2 + webpack: 5.84.1(esbuild@0.14.28) - registry.npmjs.org/@teambit/base-ui.input.error@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-jgIob/7MGmKLXm4tQCJnV+v2Izm6M+Sbl+oy9Dwj60IAOVSkLThMw/C9szX5OSYjgBItYOcXy2AK1YPDrXLkqw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.input.error/-/base-ui.input.error-1.0.1.tgz} - id: registry.npmjs.org/@teambit/base-ui.input.error/1.0.1 - name: '@teambit/base-ui.input.error' - version: 1.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + webpack-dev-server@4.15.0(webpack@5.84.1): dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.23 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.8 + '@types/sockjs': 0.3.36 + '@types/ws': 8.18.1 + ansi-html-community: 0.0.8 + bonjour-service: 1.3.0 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.8.0 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.21.2 + graceful-fs: 4.2.11 + html-entities: 2.6.0 + http-proxy-middleware: 2.0.9(@types/express@4.17.23) + ipaddr.js: 2.2.0 + launch-editor: 2.10.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.3.2 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 5.3.4(webpack@5.84.1) + ws: 8.18.3 + optionalDependencies: + webpack: 5.84.1(esbuild@0.14.28) + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate - registry.npmjs.org/@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-F7+aHFncCH4iHtClKX9i7Yj6+SBQjQTQkrzxX9Jq4/r4QGEIVVbJ6Tjwa+abI2ef8Ww0fpPpLCP+ithPJWHQtA==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.layout.breakpoints/-/base-ui.layout.breakpoints-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.layout.breakpoints/1.0.0 - name: '@teambit/base-ui.layout.breakpoints' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + webpack-merge@5.8.0: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + clone-deep: 4.0.1 + wildcard: 2.0.1 + + webpack-sources@3.3.3: {} + + webpack@5.51.1(esbuild@0.14.28): + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 0.0.50 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.15.0 + acorn-import-assertions: 1.9.0(acorn@8.15.0) + browserslist: 4.21.4 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.18.2 + es-module-lexer: 0.7.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-better-errors: 1.0.2 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.2 + terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.51.1(esbuild@0.14.28)) + watchpack: 2.4.4 + webpack-sources: 3.3.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + webpack@5.84.1(esbuild@0.14.28): + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.8 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + acorn: 8.15.0 + acorn-import-assertions: 1.9.0(acorn@8.15.0) + browserslist: 4.25.1 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.18.2 + es-module-lexer: 1.7.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.2 + terser-webpack-plugin: 5.3.14(esbuild@0.14.28)(webpack@5.84.1) + watchpack: 2.4.4 + webpack-sources: 3.3.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js - registry.npmjs.org/@teambit/base-ui.routing.compare-url@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-57vlN0+yBZFGsX5JLo237OQ3Bu8eeJ+vEVbeQuioJsuvS0zEhI8EyobYssEfyaCMsbpDpbpL6HkfSvuQB0Vtmw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.routing.compare-url/-/base-ui.routing.compare-url-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.routing.compare-url/1.0.0 - name: '@teambit/base-ui.routing.compare-url' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + websocket-driver@0.7.4: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - url-parse: 1.5.1 + http-parser-js: 0.5.10 + safe-buffer: 5.2.1 + websocket-extensions: 0.1.4 - registry.npmjs.org/@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-kO9scMrQ5AI2+vi9Xc/VMQryBhlcR+RAAsM32mmPQ6cEbE4R1clN9SIASj2BZ2gTca+nQI37+sFvXdefviz4iw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.styles.flex-center/-/base-ui.styles.flex-center-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.styles.flex-center/1.0.0 - name: '@teambit/base-ui.styles.flex-center' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + websocket-extensions@0.1.4: {} - registry.npmjs.org/@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-VHPPrzqkHUiYkbief6QtxCbTXUcCh69xMtkbrAsIJXZjrAAN1GhNX2PrErEEaCRIXW1joo06zekyth0+vT1HUg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.background/-/base-ui.surfaces.background-1.0.1.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.background/1.0.1 - name: '@teambit/base-ui.surfaces.background' - version: 1.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + whatwg-encoding@2.0.0: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + iconv-lite: 0.6.3 - registry.npmjs.org/@teambit/base-ui.surfaces.card@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-taJIr7LqtuyIrERv9FeT3+91mSrY8WF+AbtfHttb6J8pE4xV0FaqxVXbKT9wRw06XDi5RUo6LXKMZOldkgR8Gw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.card/-/base-ui.surfaces.card-1.0.1.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.card/1.0.1 - name: '@teambit/base-ui.surfaces.card' - version: 1.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + whatwg-encoding@3.1.1: dependencies: - '@teambit/base-ui.css-components.elevation': registry.npmjs.org/@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.css-components.roundness': registry.npmjs.org/@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.background': registry.npmjs.org/@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + iconv-lite: 0.6.3 - registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sbN1AgGvc3lzoeWg7KQrYD9lCa4V9s0EctfZSrPCwy/UcHGePgMipBOWJkcNwuq8GGhzSTzH8rP8McWCLUGdew==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter/-/base-ui.surfaces.split-pane.hover-splitter-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter/1.0.0 - name: '@teambit/base-ui.surfaces.split-pane.hover-splitter' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.surfaces.split-pane.splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + whatwg-fetch@0.9.0: {} - registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Ib4sVeQYp3NU8zz6lhhvQ8B9AHb8bSGDaG5qZP36bXI8N+b9a0G+gCX2kFFmFPuAx74HOYnKz3B5xUPH5yTT0Q==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.layout/-/base-ui.surfaces.split-pane.layout-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.layout/1.0.0 - name: '@teambit/base-ui.surfaces.split-pane.layout' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + whatwg-fetch@3.6.20: {} - registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-OUzOlgCzt5pkAN9FcoXzlB+TUuH+5+Hh0EE/7X488rFTDHS6lW3pEgKPsqg1XUw30ivthOdVq7cwnpnB1seRhw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.pane/-/base-ui.surfaces.split-pane.pane-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.pane/1.0.0 - name: '@teambit/base-ui.surfaces.split-pane.pane' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.surfaces.split-pane.layout': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + whatwg-mimetype@3.0.0: {} - registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Zomx0m2Gsf9Dl+A3YwyZy1qJO3q6LtI7BTeEWsBLrub9fO0IXMTMjelsK918oAZ3xJ+LOXnEgYYVh+A9CQm2Qg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane/-/base-ui.surfaces.split-pane.split-pane-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane/1.0.0 - name: '@teambit/base-ui.surfaces.split-pane.split-pane' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@teambit/base-ui.surfaces.split-pane.layout': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.pane': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + whatwg-mimetype@4.0.0: {} - registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-5/oGHEUOQQnQUi2911fLb/rdFLLDoMy1G4fQ4DNkqoHcahi1a26tCtKlV+7FAI1LsFdk0V+wRp6WY+kX+Qbsxw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.splitter/-/base-ui.surfaces.split-pane.splitter-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.splitter/1.0.0 - name: '@teambit/base-ui.surfaces.split-pane.splitter' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + whatwg-url@11.0.0: dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + tr46: 3.0.0 + webidl-conversions: 7.0.0 - registry.npmjs.org/@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-mCoVLxG3Hm4hgeHJeNnde/4YxpUTvNPNsKbGozErigUrBTf5cKFvLnDYXlEzGOGwNrs9hqIG/nmm3um9E9/5bg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.text.text-sizes/-/base-ui.text.text-sizes-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.text.text-sizes/1.0.0 - name: '@teambit/base-ui.text.text-sizes' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + whatwg-url@14.2.0: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + tr46: 5.1.1 + webidl-conversions: 7.0.0 - registry.npmjs.org/@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-YG/xgNwXuFkTDopsmThwea4zHjHZ5yRlN43s81kdqKAjqouHEcNZzte39A/ZA398Cx+TUrlwbKuBHxMMiijv2w==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.text.themed-text/-/base-ui.text.themed-text-1.0.1.tgz} - id: registry.npmjs.org/@teambit/base-ui.text.themed-text/1.0.1 - name: '@teambit/base-ui.text.themed-text' - version: 1.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + whatwg-url@5.0.0: dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + tr46: 0.0.3 + webidl-conversions: 3.0.1 - registry.npmjs.org/@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-IASK1+zcJmULcWGbw57lm8kFH/SkKRZEsqYj/QaxyIKjvnrS/uBXUNDGRqgmkR/IC3Fl8rQlbFxELwASTiSNZg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.theme.accent-color/-/base-ui.theme.accent-color-1.1.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.theme.accent-color/1.1.0 - name: '@teambit/base-ui.theme.accent-color' - version: 1.1.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: dependencies: - '@teambit/base-ui.theme.colors': registry.npmjs.org/@teambit/base-ui.theme.colors@1.0.0(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 - registry.npmjs.org/@teambit/base-ui.theme.colors@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3lKvT0eFMwkOGydNHu8TU2xlRHWHQVzx2Uxk50sICGlIjAcEyIZ1E655qvF8B/KPSES81rj/nozWklslhVBMeQ==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.theme.colors/-/base-ui.theme.colors-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.theme.colors/1.0.0 - name: '@teambit/base-ui.theme.colors' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + which-typed-array@1.1.19: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 - registry.npmjs.org/@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-A2PoEhZ/8GYSeypqIMGK0Hu/bcpfDdquxQtkXZ34bIpXdYaYGn0tHIJTAuxJTInWM+qLMBAHQ32p3qkm86IuDQ==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.theme.sizes/-/base-ui.theme.sizes-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.theme.sizes/1.0.0 - name: '@teambit/base-ui.theme.sizes' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + which@1.3.1: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + isexe: 2.0.0 - registry.npmjs.org/@teambit/base-ui.utils.composer@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-2w+T+WdEJWxWbGcqRueoww08xeDrPyWxDnWFho4N7WsxKS6zaHp/u29b18KV34VDJV9hdHcrXzhUoaLXd8pFSA==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/base-ui.utils.composer/-/base-ui.utils.composer-1.0.0.tgz} - id: registry.npmjs.org/@teambit/base-ui.utils.composer/1.0.0 - name: '@teambit/base-ui.utils.composer' - version: 1.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + which@2.0.2: dependencies: - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + isexe: 2.0.0 - registry.npmjs.org/@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.62)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha512-ElhYSW8VpdOA9DOOE+l85TM1R5tH4K1Fz7ofmb1bWcwFOYqk7qIl4r+lTW+H5x9jyNONkn/kn3A8Vu6d+K+7kA==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/documenter.code.react-playground/-/documenter.code.react-playground-4.0.1.tgz} - id: registry.npmjs.org/@teambit/documenter.code.react-playground/4.0.1 - name: '@teambit/documenter.code.react-playground' - version: 4.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + wildcard@2.0.1: {} + + word-wrap@1.2.5: {} + + wrap-ansi@7.0.0: dependencies: - '@teambit/base-ui.input.error': registry.npmjs.org/@teambit/base-ui.input.error@1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.split-pane': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.2.6 - core-js: 3.31.0 - prism-react-renderer: 1.3.5(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-live: 2.4.1(react-dom@18.2.0)(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@17.0.62)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript - dev: false + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 - registry.npmjs.org/@teambit/documenter.code.react-playground@4.0.1(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): - resolution: {integrity: sha512-ElhYSW8VpdOA9DOOE+l85TM1R5tH4K1Fz7ofmb1bWcwFOYqk7qIl4r+lTW+H5x9jyNONkn/kn3A8Vu6d+K+7kA==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/documenter.code.react-playground/-/documenter.code.react-playground-4.0.1.tgz} - id: registry.npmjs.org/@teambit/documenter.code.react-playground/4.0.1 - name: '@teambit/documenter.code.react-playground' - version: 4.0.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + wrappy@1.0.2: {} + + write-file-atomic@4.0.2: dependencies: - '@teambit/base-ui.input.error': registry.npmjs.org/@teambit/base-ui.input.error@1.0.1(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.2.0)(react@18.2.0) - '@teambit/base-ui.surfaces.split-pane.split-pane': registry.npmjs.org/@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.2.0)(react@18.2.0) - classnames: 2.2.6 - core-js: 3.31.0 - prism-react-renderer: 1.3.5(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-live: 2.4.1(react-dom@18.2.0)(react@18.2.0) - react-use-dimensions: 1.2.1(@types/react@18.2.14)(react@18.2.0)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - typescript + imurmurhash: 0.1.4 + signal-exit: 3.0.7 - registry.npmjs.org/@teambit/documenter.ui.section@4.1.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-PwMUmernBbCKKHm4AdXfBTlanIrkF6bE/Uyjg2AobIMf5taLw0L9RiQ2lAjUnSn9Mq4VFId/TrcjdA1p7jqlmQ==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/documenter.ui.section/-/documenter.ui.section-4.1.1.tgz} - id: registry.npmjs.org/@teambit/documenter.ui.section/4.1.1 - name: '@teambit/documenter.ui.section' - version: 4.1.1 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + ws@7.5.10: {} + + ws@8.18.3: {} + + xml-name-validator@4.0.0: {} + + xml-name-validator@5.0.0: {} + + xmlbuilder@15.1.1: {} + + xmlchars@2.2.0: {} + + xregexp@4.0.0: {} + + xtend@4.0.2: {} + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yallist@4.0.0: {} + + yaml@1.10.2: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: dependencies: - classnames: 2.2.6 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 - registry.npmjs.org/@teambit/documenter.ui.table-column@4.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sGMLD+Lu2snQ1g1xUXYHqhbUcH3iOp0CUc69T76SNt3cQBabNGb5T9yg0A/7JYN4Ams1IKJ8Anws8+T64huSDg==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/documenter.ui.table-column/-/documenter.ui.table-column-4.0.0.tgz} - id: registry.npmjs.org/@teambit/documenter.ui.table-column/4.0.0 - name: '@teambit/documenter.ui.table-column' - version: 4.0.0 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + yauzl@2.10.0: dependencies: - classnames: 2.3.1 - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + optional: true - registry.npmjs.org/@teambit/evangelist.elements.icon@1.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-OoqGwKyhQDETfLYTebBOGUeISdix6eyj9cT3iQoVMtZlcIGOJlQqccDsFbjnhOUMFoI9IbtqTaGL7ymCGbA8rw==, registry: https://node-registry.bit.cloud/, tarball: https://registry.npmjs.org/@teambit/evangelist.elements.icon/-/evangelist.elements.icon-1.0.2.tgz} - id: registry.npmjs.org/@teambit/evangelist.elements.icon/1.0.2 - name: '@teambit/evangelist.elements.icon' - version: 1.0.2 - peerDependencies: - react: '*' - react-dom: '*' - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true + yocto-queue@0.1.0: {} + + zen-observable-ts@1.2.5: dependencies: - '@teambit/base-ui.elements.icon': registry.npmjs.org/@teambit/base-ui.elements.icon@1.0.0(react-dom@18.2.0)(react@18.2.0) - core-js: 3.31.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + zen-observable: 0.8.15 + + zen-observable@0.8.15: {} + + zod@3.25.76: + optional: true + + zwitch@1.0.5: {} From 75930f78e0ddf8a27c3fe9c5037cd39bc79d6a75 Mon Sep 17 00:00:00 2001 From: Ignacio Aldama Vicente Date: Tue, 15 Jul 2025 16:29:43 +0200 Subject: [PATCH 7/7] update test-data --- dist/index.js | 8 +- scripts/verify.ts | 8 +- test-data/.bitmap | 110 +- test-data/.eslintrc.js | 6 - test-data/.eslintrc.json | 6 + test-data/.gitignore | 107 - test-data/.prettierrc.cjs | 4 + test-data/.prettierrc.js | 4 - test-data/.vscode/launch.json | 25 - test-data/README.md | 7 - test-data/pnpm-lock.yaml | 18665 ++++++++-------- .../envs/my-react-env/config/jest.config.js | 24 - .../envs/my-react-env/config/tsconfig.json | 7 - .../my-react-env/config/webpack.config.ts | 9 - .../scope-name/envs/my-react-env/env.jsonc | 110 - .../scope-name/envs/my-react-env/index.ts | 3 - .../envs/my-react-env/my-react-env.bit-env.ts | 112 - .../my-react-env/preview/host-dependencies.ts | 10 - .../envs/my-react-env/types/asset.d.ts | 41 - .../envs/my-react-env/types/style.d.ts | 42 - .../get-hello-world.composition.tsx | 5 - .../get-hello-world/get-hello-world.docs.mdx | 10 - .../get-hello-world/get-hello-world.spec.ts | 5 - .../get-hello-world/get-hello-world.ts | 7 - test-data/scope-name/get-hello-world/index.ts | 1 - .../hello-world-app.app-root.tsx | 18 - .../hello-world-app.compositions.tsx | 5 - .../hello-world-app/hello-world-app.docs.mdx | 4 - .../hello-world-app.react-18-app.cjs | 6 - test-data/scope-name/hello-world-app/index.ts | 4 - .../hello-world/hello-world.composition.tsx | 6 - .../ui/hello-world/hello-world.docs.mdx | 4 - .../ui/hello-world/hello-world.spec.tsx | 9 - .../scope-name/ui/hello-world/hello-world.tsx | 10 - test-data/scope-name/ui/hello-world/index.ts | 1 - .../get-message/get-message.composition.tsx | 7 + .../scope/get-message/get-message.docs.mdx | 19 + .../scope/get-message/get-message.spec.tsx | 9 + test-data/scope/get-message/get-message.tsx | 16 + test-data/scope/get-message/index.ts | 2 + test-data/scope/my-app/index.html | 14 + test-data/scope/my-app/index.ts | 2 + test-data/scope/my-app/my-app.app-root.tsx | 33 + test-data/scope/my-app/my-app.bit-app.ts | 59 + test-data/scope/my-app/my-app.composition.tsx | 10 + test-data/scope/my-app/my-app.docs.mdx | 20 + test-data/scope/my-app/my-app.tsx | 10 + test-data/scope/my-app/server.app-root.tsx | 23 + test-data/scope/my-app/vite.config.js | 6 + test-data/scope/my-env/.eslintrc.json | 6 + .../my-env/config/eslintrc.cjs} | 4 +- .../my-env/config/prettier.config.cjs} | 4 +- test-data/scope/my-env/config/tsconfig.json | 8 + test-data/scope/my-env/config/vite.config.mjs | 4 + .../scope/my-env/config/vitest.config.mjs | 10 + .../scope/my-env/config/vitest.setup.mjs | 2 + test-data/scope/my-env/env.jsonc | 3 + test-data/scope/my-env/index.ts | 4 + test-data/scope/my-env/my-env.bit-env.ts | 43 + test-data/scope/my-env/my-env.docs.mdx | 58 + test-data/scope/my-env/preview/docs.tsx | 8 + .../my-env}/preview/mounter.tsx | 0 test-data/scope/my-env/tsconfig.json | 5 + test-data/scope/my-env/types/env.d.ts | 16 + test-data/tsconfig.json | 11 +- test-data/types/asset.d.ts | 27 - test-data/types/style.d.ts | 42 - test-data/workspace.jsonc | 97 +- 68 files changed, 10247 insertions(+), 9738 deletions(-) delete mode 100644 test-data/.eslintrc.js create mode 100644 test-data/.eslintrc.json delete mode 100644 test-data/.gitignore create mode 100644 test-data/.prettierrc.cjs delete mode 100644 test-data/.prettierrc.js delete mode 100644 test-data/.vscode/launch.json delete mode 100644 test-data/README.md delete mode 100644 test-data/scope-name/envs/my-react-env/config/jest.config.js delete mode 100644 test-data/scope-name/envs/my-react-env/config/tsconfig.json delete mode 100644 test-data/scope-name/envs/my-react-env/config/webpack.config.ts delete mode 100644 test-data/scope-name/envs/my-react-env/env.jsonc delete mode 100644 test-data/scope-name/envs/my-react-env/index.ts delete mode 100644 test-data/scope-name/envs/my-react-env/my-react-env.bit-env.ts delete mode 100644 test-data/scope-name/envs/my-react-env/preview/host-dependencies.ts delete mode 100644 test-data/scope-name/envs/my-react-env/types/asset.d.ts delete mode 100644 test-data/scope-name/envs/my-react-env/types/style.d.ts delete mode 100644 test-data/scope-name/get-hello-world/get-hello-world.composition.tsx delete mode 100644 test-data/scope-name/get-hello-world/get-hello-world.docs.mdx delete mode 100644 test-data/scope-name/get-hello-world/get-hello-world.spec.ts delete mode 100644 test-data/scope-name/get-hello-world/get-hello-world.ts delete mode 100644 test-data/scope-name/get-hello-world/index.ts delete mode 100644 test-data/scope-name/hello-world-app/hello-world-app.app-root.tsx delete mode 100644 test-data/scope-name/hello-world-app/hello-world-app.compositions.tsx delete mode 100644 test-data/scope-name/hello-world-app/hello-world-app.docs.mdx delete mode 100644 test-data/scope-name/hello-world-app/hello-world-app.react-18-app.cjs delete mode 100644 test-data/scope-name/hello-world-app/index.ts delete mode 100644 test-data/scope-name/ui/hello-world/hello-world.composition.tsx delete mode 100644 test-data/scope-name/ui/hello-world/hello-world.docs.mdx delete mode 100644 test-data/scope-name/ui/hello-world/hello-world.spec.tsx delete mode 100644 test-data/scope-name/ui/hello-world/hello-world.tsx delete mode 100644 test-data/scope-name/ui/hello-world/index.ts create mode 100644 test-data/scope/get-message/get-message.composition.tsx create mode 100644 test-data/scope/get-message/get-message.docs.mdx create mode 100644 test-data/scope/get-message/get-message.spec.tsx create mode 100644 test-data/scope/get-message/get-message.tsx create mode 100644 test-data/scope/get-message/index.ts create mode 100644 test-data/scope/my-app/index.html create mode 100644 test-data/scope/my-app/index.ts create mode 100644 test-data/scope/my-app/my-app.app-root.tsx create mode 100644 test-data/scope/my-app/my-app.bit-app.ts create mode 100644 test-data/scope/my-app/my-app.composition.tsx create mode 100644 test-data/scope/my-app/my-app.docs.mdx create mode 100644 test-data/scope/my-app/my-app.tsx create mode 100644 test-data/scope/my-app/server.app-root.tsx create mode 100644 test-data/scope/my-app/vite.config.js create mode 100644 test-data/scope/my-env/.eslintrc.json rename test-data/{scope-name/envs/my-react-env/config/eslintrc.js => scope/my-env/config/eslintrc.cjs} (50%) rename test-data/{scope-name/envs/my-react-env/config/prettier.config.js => scope/my-env/config/prettier.config.cjs} (55%) create mode 100644 test-data/scope/my-env/config/tsconfig.json create mode 100644 test-data/scope/my-env/config/vite.config.mjs create mode 100644 test-data/scope/my-env/config/vitest.config.mjs create mode 100644 test-data/scope/my-env/config/vitest.setup.mjs create mode 100644 test-data/scope/my-env/env.jsonc create mode 100644 test-data/scope/my-env/index.ts create mode 100644 test-data/scope/my-env/my-env.bit-env.ts create mode 100644 test-data/scope/my-env/my-env.docs.mdx create mode 100644 test-data/scope/my-env/preview/docs.tsx rename test-data/{scope-name/envs/my-react-env => scope/my-env}/preview/mounter.tsx (100%) create mode 100644 test-data/scope/my-env/tsconfig.json create mode 100644 test-data/scope/my-env/types/env.d.ts delete mode 100644 test-data/types/asset.d.ts delete mode 100644 test-data/types/style.d.ts diff --git a/dist/index.js b/dist/index.js index 639e604..feab9f1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6697,10 +6697,10 @@ const exec_1 = __nccwpck_require__(1514); const semver_1 = __importDefault(__nccwpck_require__(1383)); const run = (wsdir) => __awaiter(void 0, void 0, void 0, function* () { const version = yield (0, exec_1.getExecOutput)("bit -v", [], { cwd: wsdir }); - // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 - // or upgrade Bit to ^1.11.43 - if (semver_1.default.lt(version.stdout.trim(), "1.11.43")) { - throw new Error("Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43"); + // If the version is lower than 1.11.42, throw an error recommending to downgrade the action version to v1 + // or upgrade Bit to ^1.11.42 + if (semver_1.default.lt(version.stdout.trim(), "1.11.42")) { + throw new Error("Bit version is lower than 1.11.42. Please downgrade the action version to v1, or upgrade Bit to ^1.11.42"); } yield (0, exec_1.exec)("bit ci verify", [], { cwd: wsdir }); }); diff --git a/scripts/verify.ts b/scripts/verify.ts index f9ea15d..124e7fa 100644 --- a/scripts/verify.ts +++ b/scripts/verify.ts @@ -4,11 +4,11 @@ import semver from "semver"; const run = async (wsdir: string) => { const version = await getExecOutput("bit -v", [], { cwd: wsdir }); - // If the version is lower than 1.11.43, throw an error recommending to downgrade the action version to v1 - // or upgrade Bit to ^1.11.43 - if (semver.lt(version.stdout.trim(), "1.11.43")) { + // If the version is lower than 1.11.42, throw an error recommending to downgrade the action version to v1 + // or upgrade Bit to ^1.11.42 + if (semver.lt(version.stdout.trim(), "1.11.42")) { throw new Error( - "Bit version is lower than 1.11.43. Please downgrade the action version to v1, or upgrade Bit to ^1.11.43" + "Bit version is lower than 1.11.42. Please downgrade the action version to v1, or upgrade Bit to ^1.11.42" ); } diff --git a/test-data/.bitmap b/test-data/.bitmap index 68f5626..519c95d 100644 --- a/test-data/.bitmap +++ b/test-data/.bitmap @@ -9,119 +9,47 @@ */ { - "envs/my-react-env": { - "name": "envs/my-react-env", + "get-message": { + "name": "get-message", "scope": "", "version": "", - "defaultScope": "org.scope-name", + "defaultScope": "acme.scope", "mainFile": "index.ts", - "rootDir": "scope-name/envs/my-react-env", + "rootDir": "scope/get-message", "config": { - "teambit.dependencies/dependency-resolver": { - "policy": { - "dependencies": { - "@teambit/react.react-env": "^0.0.68" - } - } - }, + "bitdev.react/react-env@4.1.9": {}, "teambit.envs/envs": { - "env": "teambit.envs/env" - }, - "teambit.compositions/compositions": {}, - "teambit.docs/docs": {}, - "teambit.preview/preview": {}, - "teambit.component/dev-files": {}, - "teambit.pipelines/builder": {}, - "teambit.component/forking": { - "forkedFrom": { - "scope": "learnbit.hello-world", - "name": "envs/my-react-env", - "version": "0.0.3" - } + "env": "bitdev.react/react-env" } } }, - "get-hello-world": { - "name": "get-hello-world", + "my-app": { + "name": "my-app", "scope": "", "version": "", - "defaultScope": "org.scope-name", + "defaultScope": "acme.scope", "mainFile": "index.ts", - "rootDir": "scope-name/get-hello-world", + "rootDir": "scope/my-app", "config": { - "teambit.node/node@0.0.38": {}, + "bitdev.react/react-env@4.1.9": {}, "teambit.envs/envs": { - "env": "teambit.node/node" - }, - "teambit.dependencies/dependency-resolver": {}, - "teambit.compositions/compositions": {}, - "teambit.docs/docs": {}, - "teambit.preview/preview": {}, - "teambit.component/dev-files": {}, - "teambit.pipelines/builder": {}, - "teambit.component/forking": { - "forkedFrom": { - "scope": "learnbit.hello-world", - "name": "get-hello-world", - "version": "0.0.7" - } + "env": "bitdev.react/react-env" } } }, - "hello-world-app": { - "name": "hello-world-app", + "my-env": { + "name": "my-env", "scope": "", "version": "", - "defaultScope": "org.scope-name", + "defaultScope": "acme.scope", "mainFile": "index.ts", - "rootDir": "scope-name/hello-world-app", + "rootDir": "scope/my-env", "config": { - "learnbit.hello-world/envs/my-react-env@0.0.3": {}, + "bitdev.general/envs/bit-env@3.0.4": {}, "teambit.envs/envs": { - "env": "learnbit.hello-world/envs/my-react-env" - }, - "teambit.dependencies/dependency-resolver": {}, - "teambit.harmony/application": {}, - "teambit.compositions/compositions": {}, - "teambit.docs/docs": {}, - "teambit.preview/preview": {}, - "teambit.component/dev-files": {}, - "teambit.pipelines/builder": {}, - "teambit.component/forking": { - "forkedFrom": { - "scope": "learnbit.hello-world", - "name": "hello-world-app", - "version": "0.0.8" - } + "env": "bitdev.general/envs/bit-env" } } }, - "ui/hello-world": { - "name": "ui/hello-world", - "scope": "", - "version": "", - "defaultScope": "org.scope-name", - "mainFile": "index.ts", - "rootDir": "scope-name/ui/hello-world", - "config": { - "learnbit.hello-world/envs/my-react-env@0.0.3": {}, - "teambit.envs/envs": { - "env": "learnbit.hello-world/envs/my-react-env" - }, - "teambit.dependencies/dependency-resolver": {}, - "teambit.compositions/compositions": {}, - "teambit.docs/docs": {}, - "teambit.preview/preview": {}, - "teambit.component/dev-files": {}, - "teambit.pipelines/builder": {}, - "teambit.component/forking": { - "forkedFrom": { - "scope": "learnbit.hello-world", - "name": "ui/hello-world", - "version": "0.0.8" - } - } - } - }, - "$schema-version": "15.0.0" + "$schema-version": "17.0.0" } \ No newline at end of file diff --git a/test-data/.eslintrc.js b/test-data/.eslintrc.js deleted file mode 100644 index b35f1a0..0000000 --- a/test-data/.eslintrc.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - extends: ['@teambit/eslint-config-bit-react'], - parserOptions: { - project: './tsconfig.json' - }, -} \ No newline at end of file diff --git a/test-data/.eslintrc.json b/test-data/.eslintrc.json new file mode 100644 index 0000000..c034da1 --- /dev/null +++ b/test-data/.eslintrc.json @@ -0,0 +1,6 @@ +// bit-generated-eslint-config +{ + "extends": [ + "./node_modules/.cache/.eslintrc.bit.98149e638981eac26fcb8f58e238cc3a974f3f36.json" + ] +} \ No newline at end of file diff --git a/test-data/.gitignore b/test-data/.gitignore deleted file mode 100644 index f0af396..0000000 --- a/test-data/.gitignore +++ /dev/null @@ -1,107 +0,0 @@ -# Bit -.bit -public - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# Next.js build output -.next - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -.history diff --git a/test-data/.prettierrc.cjs b/test-data/.prettierrc.cjs new file mode 100644 index 0000000..426b388 --- /dev/null +++ b/test-data/.prettierrc.cjs @@ -0,0 +1,4 @@ +// bit-generated-prettier-config +module.exports = { + ...require('./node_modules/.cache/.prettierrc.bit.e4882af8861bcf5b0147891d8b70b40a10428881.cjs') +} \ No newline at end of file diff --git a/test-data/.prettierrc.js b/test-data/.prettierrc.js deleted file mode 100644 index e1f983c..0000000 --- a/test-data/.prettierrc.js +++ /dev/null @@ -1,4 +0,0 @@ -const baseConfig = require("@teambit/react/prettier/prettier.config"); -module.exports = { - ...baseConfig, -}; diff --git a/test-data/.vscode/launch.json b/test-data/.vscode/launch.json deleted file mode 100644 index 0b85deb..0000000 --- a/test-data/.vscode/launch.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "test", - "program": "${workspaceFolder}/node_modules/@teambit/bit/dist/app.js", - "args": ["test"], - "resolveSourceMapLocations": [ - "${workspaceFolder}/node_modules/@teambit/**/*.js" - ], - "outFiles": [ - "${workspaceFolder}/node_modules/@teambit/**/*.js" - ], - "console": "integratedTerminal", - "sourceMaps": true, - "internalConsoleOptions": "neverOpen", - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file diff --git a/test-data/README.md b/test-data/README.md deleted file mode 100644 index f7cc74d..0000000 --- a/test-data/README.md +++ /dev/null @@ -1,7 +0,0 @@ -## bit.dev - - Start bit.bit: - ```js - bit run bit-dev - ``` - \ No newline at end of file diff --git a/test-data/pnpm-lock.yaml b/test-data/pnpm-lock.yaml index ff43fde..8eb5949 100644 --- a/test-data/pnpm-lock.yaml +++ b/test-data/pnpm-lock.yaml @@ -9,412 +9,896 @@ importers: .: dependencies: '@apollo/client': - specifier: 3.6.9 - version: 3.6.9(graphql@14.7.0)(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@14.7.0)) - '@babel/runtime': - specifier: 7.20.0 - version: 7.20.0 + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/node.node-env': + specifier: 4.0.27 + version: 4.0.27(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3) + '@bitdev/react.app-types.vite-react': + specifier: ^2.1.7 + version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@bitdev/react.preview.react-docs-template': + specifier: ^0.0.7 + version: 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@bitdev/react.react-env': + specifier: ^4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': - specifier: 0.0.10 - version: 0.0.10 - '@teambit/defender.jest-tester': - specifier: 0.0.10 - version: 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': - specifier: 0.0.6 - version: 0.0.6 - '@teambit/dependencies.modules.packages-excluder': - specifier: 0.0.70 - version: 0.0.70(react@18.3.1) - '@teambit/eslint-config-bit-react': - specifier: ~0.0.367 - version: 0.0.367(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/node.node': - specifier: 0.0.38 - version: 0.0.38(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/preview.react-preview': - specifier: 0.0.35 - version: 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) '@teambit/react.mounter': - specifier: 0.0.10 - version: 0.0.10 - '@teambit/react.react-env': - specifier: 0.0.68 - version: 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': - specifier: 2.0.16 - version: 2.0.16 + specifier: ^1.0.49 + version: 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 '@testing-library/react': - specifier: ^12.1.5 - version: 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react-hooks': - specifier: ^8.0.0 - version: 8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 + '@types/jest': + specifier: ^29.2.2 + version: 29.5.14 + '@types/node': + specifier: 20.12.10 + version: 20.12.10 + '@types/react': + specifier: 19.0.2 + version: 19.0.2 + '@types/react-dom': + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) '@typescript-eslint/eslint-plugin': - specifier: 4.29.3 - version: 4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) - core-js: - specifier: ^3.0.0 - version: 3.44.0 - eslint-import-resolver-node: - specifier: 0.3.6 - version: 0.3.6 + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': + specifier: ^4.6.0 + version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-v8': + specifier: ^2.0.4 + version: 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 eslint-plugin-import: - specifier: 2.22.1 - version: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) eslint-plugin-jest: - specifier: 24.4.0 - version: 24.4.0(@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) eslint-plugin-jsx-a11y: - specifier: 6.4.1 - version: 6.4.1(eslint@7.32.0) + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) eslint-plugin-mdx: - specifier: 1.15.0 - version: 1.15.0(eslint@7.32.0) + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) eslint-plugin-react: - specifier: 7.25.1 - version: 7.25.1(eslint@7.32.0) + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) graphql: - specifier: ^14.3.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 react: - specifier: ^18.0.0 - version: 18.3.1 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) react-router-dom: - specifier: ^6.0.0 - version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - subscriptions-transport-ws: - specifier: ^0.11.0 - version: 0.11.0(graphql@14.7.0) + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) devDependencies: - '@learnbit/hello-world.envs.my-react-env': - specifier: 0.0.3 - version: 0.0.3(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@types/jest': - specifier: '>=29.2.2 <30.0.0' - version: 29.5.14 - '@types/node': - specifier: '>=16.18.11 <17.0.0' - version: 16.18.126 - '@types/react': - specifier: '>=18.0.0 <19.0.0' - version: 18.3.23 - '@types/react-dom': - specifier: '>=18.0.0 <19.0.0' - version: 18.3.7(@types/react@18.3.23) - '@types/testing-library__jest-dom': - specifier: 5.9.5 - version: 5.9.5 + '@bitdev/general.envs.bit-env': + specifier: 3.0.4 + version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) - node_modules/.bit_roots/learnbit.hello-world_envs_my-react-env@0.0.3: + node_modules/.bit_roots/acme.scope_my-app: dependencies: - '@learnbit/hello-world.envs.my-react-env': - specifier: 0.0.3 - version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@mdx-js/react': - specifier: 1.6.22 - version: 1.6.22(react@18.3.1) - '@org/scope-name.envs.my-react-env': - specifier: workspace:* - version: file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@org/scope-name.get-hello-world': + '@acme/scope.get-message': specifier: workspace:* - version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@org/scope-name.hello-world-app': + version: file:scope/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3) + '@acme/scope.my-app': specifier: workspace:* - version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1)) - '@org/scope-name.ui.hello-world': + version: file:scope/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@acme/scope.my-env': specifier: workspace:* - version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) + version: file:scope/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3) + '@apollo/client': + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/react.app-types.vite-react': + specifier: ^2.1.7 + version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 + '@mdx-js/react': + specifier: 1.6.22 + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 + '@testing-library/react': + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 + '@types/jest': + specifier: ^29.2.2 + version: 29.5.14 + '@types/node': + specifier: 20.12.10 + version: 20.12.10 + '@types/react': + specifier: 19.0.2 + version: 19.0.2 + '@types/react-dom': + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': + specifier: ^4.6.0 + version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) graphql: - specifier: 14.7.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 react: - specifier: ^18.0.0 - version: 18.3.1 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) dependenciesMeta: - '@org/scope-name.envs.my-react-env': + '@acme/scope.get-message': injected: true - '@org/scope-name.get-hello-world': + '@acme/scope.my-app': injected: true - '@org/scope-name.hello-world-app': - injected: true - '@org/scope-name.ui.hello-world': + '@acme/scope.my-env': injected: true + devDependencies: + '@bitdev/react.react-env': + specifier: ^4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) - node_modules/.bit_roots/teambit.envs_env: + node_modules/.bit_roots/bitdev.general_envs_bit-env@3.0.4: dependencies: - '@org/scope-name.envs.my-react-env': + '@acme/scope.get-message': specifier: workspace:* - version: file:scope-name/envs/my-react-env(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@org/scope-name.get-hello-world': + version: file:scope/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3) + '@acme/scope.my-app': specifier: workspace:* - version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@org/scope-name.hello-world-app': + version: file:scope/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@acme/scope.my-env': specifier: workspace:* - version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@17.0.2(react@17.0.2)) - '@org/scope-name.ui.hello-world': - specifier: workspace:* - version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@17.0.2) + version: file:scope/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3) + '@bitdev/general.envs.bit-env': + specifier: 3.0.4 + version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@mdx-js/mdx': + specifier: ^1.6.22 + version: 1.6.22 + '@mdx-js/react': + specifier: 1.6.22 + version: 1.6.22(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-v8': + specifier: ^2.0.4 + version: 2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) react: - specifier: ^16.8.0 || ^17.0.0 - version: 17.0.2 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^16.8.0 || ^17.0.0 - version: 17.0.2(react@17.0.2) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + vitest: + specifier: 1.3.1 + version: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) dependenciesMeta: - '@org/scope-name.envs.my-react-env': + '@acme/scope.get-message': injected: true - '@org/scope-name.get-hello-world': + '@acme/scope.my-app': injected: true - '@org/scope-name.hello-world-app': - injected: true - '@org/scope-name.ui.hello-world': + '@acme/scope.my-env': injected: true - node_modules/.bit_roots/teambit.node_node@0.0.38: + node_modules/.bit_roots/bitdev.react_react-env@4.1.9: dependencies: - '@mdx-js/react': - specifier: 1.6.22 - version: 1.6.22(react@18.3.1) - '@org/scope-name.envs.my-react-env': - specifier: workspace:* - version: file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@org/scope-name.get-hello-world': + '@acme/scope.get-message': specifier: workspace:* - version: file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@org/scope-name.hello-world-app': + version: file:scope/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3) + '@acme/scope.my-app': specifier: workspace:* - version: file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1)) - '@org/scope-name.ui.hello-world': + version: file:scope/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@acme/scope.my-env': specifier: workspace:* - version: file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) + version: file:scope/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3) + '@apollo/client': + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@bitdev/react.react-env': + specifier: 4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 + '@mdx-js/react': + specifier: 1.6.22 + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/node.node': - specifier: 0.0.38 - version: 0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 + '@testing-library/react': + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 + '@types/jest': + specifier: ^29.2.2 + version: 29.5.14 + '@types/node': + specifier: 20.12.10 + version: 20.12.10 + '@types/react': + specifier: 19.0.2 + version: 19.0.2 + '@types/react-dom': + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) + graphql: + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 react: - specifier: ^18.0.0 - version: 18.3.1 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) + react-router-dom: + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) dependenciesMeta: - '@org/scope-name.envs.my-react-env': + '@acme/scope.get-message': injected: true - '@org/scope-name.get-hello-world': + '@acme/scope.my-app': injected: true - '@org/scope-name.hello-world-app': - injected: true - '@org/scope-name.ui.hello-world': + '@acme/scope.my-env': injected: true - scope-name/envs/my-react-env: + scope/get-message: dependencies: - '@babel/runtime': - specifier: 7.20.0 - version: 7.20.0 + '@apollo/client': + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': - specifier: 0.0.10 - version: 0.0.10 - '@teambit/defender.jest-tester': - specifier: 0.0.10 - version: 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': - specifier: 0.0.6 - version: 0.0.6 - '@teambit/dependencies.modules.packages-excluder': - specifier: 0.0.70 - version: 0.0.70(react@18.3.1) + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': - specifier: 0.0.35 - version: 0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3) - '@teambit/react.mounter': - specifier: 0.0.10 - version: 0.0.10 - '@teambit/react.react-env': - specifier: ^0.0.68 - version: 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@12.20.4)(@types/react@17.0.87)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/typescript.typescript-compiler': - specifier: 2.0.16 - version: 2.0.16 - core-js: - specifier: ^3.0.0 - version: 3.44.0 + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 + '@testing-library/react': + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 + '@types/jest': + specifier: ^29.2.2 + version: 29.5.14 + '@types/node': + specifier: 20.12.10 + version: 20.12.10 + '@types/react': + specifier: 19.0.2 + version: 19.0.2 + '@types/react-dom': + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) graphql: - specifier: 14.7.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 react: - specifier: ^18.0.0 - version: 18.3.1 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) devDependencies: - '@types/jest': - specifier: ^26.0.0 - version: 26.0.24 - '@types/node': - specifier: 12.20.4 - version: 12.20.4 - '@types/react': - specifier: ^17.0.8 - version: 17.0.87 - '@types/react-dom': - specifier: ^17.0.5 - version: 17.0.26(@types/react@17.0.87) - '@types/testing-library__jest-dom': - specifier: 5.9.5 - version: 5.9.5 + '@bitdev/react.react-env': + specifier: ^4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) - scope-name/get-hello-world: + scope/my-app: dependencies: + '@apollo/client': + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/react.app-types.vite-react': + specifier: ^2.1.7 + version: 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.3.1) + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: - specifier: ^18.0.0 - version: 18.3.1 - react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) - devDependencies: - '@teambit/node.node': - specifier: 0.0.38 - version: 0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 + '@testing-library/react': + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 '@types/jest': specifier: ^29.2.2 version: 29.5.14 '@types/node': - specifier: ^16.18.11 - version: 16.18.126 - - scope-name/hello-world-app: - dependencies: - '@mdx-js/react': - specifier: 1.6.22 - version: 1.6.22(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 20.12.10 + version: 20.12.10 + '@types/react': + specifier: 19.0.2 + version: 19.0.2 + '@types/react-dom': + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': + specifier: ^4.6.0 + version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) graphql: - specifier: 14.7.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 react: - specifier: ^18.0.0 - version: 18.3.1 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) devDependencies: - '@learnbit/hello-world.envs.my-react-env': - specifier: 0.0.3 - version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) - '@types/jest': - specifier: ^29.2.2 - version: 29.5.14 - '@types/react': - specifier: ^18.0.0 - version: 18.3.23 - '@types/react-dom': - specifier: ^18.0.0 - version: 18.3.7(@types/react@18.3.23) + '@bitdev/react.react-env': + specifier: ^4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) - scope-name/ui/hello-world: + scope/my-env: dependencies: + '@apollo/client': + specifier: ^3.8.8 + version: 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': + specifier: 7.26.9 + version: 7.26.9 + '@bitdev/react.preview.react-docs-app': + specifier: ^0.0.5 + version: 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@bitdev/react.preview.react-docs-template': + specifier: ^0.0.7 + version: 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@bitdev/react.react-env': + specifier: ^4.1.9 + version: 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) + '@mdx-js/mdx': + specifier: 1.6.22 + version: 1.6.22 '@mdx-js/react': specifier: 1.6.22 - version: 1.6.22(react@18.3.1) + version: 1.6.22(react@19.0.0) '@teambit/mdx.ui.mdx-scope-context': - specifier: 0.0.496 - version: 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - graphql: - specifier: 14.7.0 - version: 14.7.0 - jest: - specifier: 29.3.1 - version: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: - specifier: ^18.0.0 - version: 18.3.1 - react-dom: - specifier: ^18.0.0 - version: 18.3.1(react@18.3.1) - react-router-dom: - specifier: 6.8.1 - version: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - devDependencies: - '@learnbit/hello-world.envs.my-react-env': - specifier: 0.0.3 - version: 0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3) + specifier: 1.0.7 + version: 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@teambit/react.mounter': + specifier: ^1.0.49 + version: 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/dom': + specifier: 10.4.0 + version: 10.4.0 + '@testing-library/jest-dom': + specifier: 6.4.8 + version: 6.4.8 '@testing-library/react': - specifier: ^13.4.0 - version: 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^16.0.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': + specifier: 8.56.0 + version: 8.56.0 + '@types/find-root': + specifier: ^1.1.4 + version: 1.1.4 '@types/jest': specifier: ^29.2.2 version: 29.5.14 + '@types/node': + specifier: 20.12.10 + version: 20.12.10 '@types/react': - specifier: ^18.0.0 - version: 18.3.23 + specifier: 19.0.2 + version: 19.0.2 '@types/react-dom': - specifier: ^18.0.0 - version: 18.3.7(@types/react@18.3.23) + specifier: 19.0.2 + version: 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': + specifier: 6.19.1 + version: 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: 6.19.1 + version: 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': + specifier: ^4.6.0 + version: 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': + specifier: ^3.1.1 + version: 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-v8': + specifier: ^2.0.4 + version: 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: + specifier: 4.23.0 + version: 4.23.0 + eslint: + specifier: 8.56.0 + version: 8.56.0 + eslint-plugin-import: + specifier: 2.29.1 + version: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: + specifier: 27.6.3 + version: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: + specifier: 6.8.0 + version: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: + specifier: ^1.17.1 + version: 1.17.1(eslint@8.56.0) + eslint-plugin-react: + specifier: 7.33.2 + version: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: + specifier: 4.6.2 + version: 4.6.2(eslint@8.56.0) + graphql: + specifier: ^16.8.1 + version: 16.11.0 + jsdom: + specifier: ^24.0.0 + version: 24.1.3 + pino-pretty: + specifier: 4.5.0 + version: 4.5.0 + react: + specifier: 19.0.0 + version: 19.0.0 + react-dom: + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) + react-helmet: + specifier: 6.1.0 + version: 6.1.0(react@19.0.0) + react-router-dom: + specifier: ^6.26.0 + version: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: + specifier: 4.22.0 + version: 4.22.0 + sass: + specifier: ^1.69.5 + version: 1.89.2 + vite: + specifier: ^5.3.5 + version: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: + specifier: ^3.1.1 + version: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: + specifier: ^5.88.2 + version: 5.100.2(esbuild@0.14.29) + devDependencies: + '@bitdev/general.envs.bit-env': + specifier: 3.0.4 + version: 3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) packages: + '@acme/scope.get-message@file:scope/get-message': + resolution: {directory: scope/get-message, type: directory} + peerDependencies: + '@testing-library/react': ^16.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@acme/scope.my-app@file:scope/my-app': + resolution: {directory: scope/my-app, type: directory} + peerDependencies: + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-router-dom: ^6.26.0 + vite: ^5.3.5 + + '@acme/scope.my-env@file:scope/my-env': + resolution: {directory: scope/my-env, type: directory} + '@adobe/css-tools@4.4.3': resolution: {integrity: sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==} @@ -422,27 +906,27 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@apollo/client@3.6.9': - resolution: {integrity: sha512-Y1yu8qa2YeaCUBVuw08x8NHenFi0sw2I3KCu7Kw9mDSu86HmmtHJkCAifKVrN2iPgDTW/BbP3EpSV8/EQCcxZA==} + '@apollo/client@3.13.8': + resolution: {integrity: sha512-YM9lQpm0VfVco4DSyKooHS/fDTiKQcCHfxr7i3iL6a0kP/jNO5+4NFK6vtRDxaYisd5BrwOZHLJpPBnvRVpKPg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-ws: ^5.5.5 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + graphql: ^15.0.0 || ^16.0.0 + graphql-ws: ^5.5.5 || ^6.0.3 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc subscriptions-transport-ws: ^0.9.0 || ^0.11.0 peerDependenciesMeta: graphql-ws: optional: true react: optional: true + react-dom: + optional: true subscriptions-transport-ws: optional: true '@asamuzakjp/css-color@3.2.0': resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} - '@babel/code-frame@7.12.11': - resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - '@babel/code-frame@7.27.1': resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} engines: {node: '>=6.9.0'} @@ -459,12 +943,8 @@ packages: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} - '@babel/core@7.19.6': - resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.20.2': - resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} + '@babel/core@7.26.9': + resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} engines: {node: '>=6.9.0'} '@babel/core@7.28.0': @@ -495,20 +975,21 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-define-polyfill-provider@0.3.3': - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + '@babel/helper-define-polyfill-provider@0.4.4': + resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-define-polyfill-provider@0.5.0': + resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==} peerDependencies: - '@babel/core': ^7.4.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 '@babel/helper-define-polyfill-provider@0.6.5': resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-environment-visitor@7.24.7': - resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-globals@7.28.0': resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} engines: {node: '>=6.9.0'} @@ -550,10 +1031,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-simple-access@7.27.1': - resolution: {integrity: sha512-OU4zVQrJgFBNXMjrHs1yFSdlTgufO4tefcUZoqNhukVfw0p8x1Asht/gcGZ3bpHbi8gu/76m4JhrlKPqkrs/WQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.27.1': resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} engines: {node: '>=6.9.0'} @@ -582,47 +1059,40 @@ packages: resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.9': - resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} - engines: {node: '>=6.9.0'} - '@babel/parser@7.28.0': resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': - resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1': + resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': - resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1': + resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 + '@babel/core': ^7.0.0 - '@babel/plugin-proposal-async-generator-functions@7.20.7': - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 - '@babel/plugin-proposal-class-properties@7.18.6': - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.13.0 - '@babel/plugin-proposal-class-static-block@7.21.0': - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1': + resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead. peerDependencies: - '@babel/core': ^7.12.0 + '@babel/core': ^7.0.0 '@babel/plugin-proposal-decorators@7.20.2': resolution: {integrity: sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw==} @@ -636,48 +1106,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-dynamic-import@7.18.6': - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-export-namespace-from@7.18.9': - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-json-strings@7.18.6': - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-logical-assignment-operators@7.20.7': - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-numeric-separator@7.18.6': - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-object-rest-spread@7.11.0': resolution: {integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. @@ -690,45 +1118,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-proposal-object-rest-spread@7.20.2': - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-optional-catch-binding@7.18.6': - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-optional-chaining@7.21.0': - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-methods@7.18.6': - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-property-in-object@7.21.11': - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} - engines: {node: '>=6.9.0'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-unicode-property-regex@7.18.6': - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 @@ -769,12 +1161,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-flow@7.27.1': - resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.27.1': resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} engines: {node: '>=6.9.0'} @@ -861,12 +1247,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-transform-arrow-functions@7.27.1': resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.28.0': + resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.27.1': resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} engines: {node: '>=6.9.0'} @@ -885,6 +1283,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.22.5': + resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.27.1': + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.27.1': + resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + '@babel/plugin-transform-classes@7.28.0': resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==} engines: {node: '>=6.9.0'} @@ -915,14 +1331,32 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-dynamic-import@7.27.1': + resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-explicit-resource-management@7.28.0': + resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.27.1': resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-flow-strip-types@7.27.1': - resolution: {integrity: sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==} + '@babel/plugin-transform-export-namespace-from@7.27.1': + resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -939,26 +1373,32 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.27.1': + resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.27.1': resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.27.1': - resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} + '@babel/plugin-transform-logical-assignment-operators@7.27.1': + resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.27.1': - resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.19.6': - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -993,12 +1433,42 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': + resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.27.1': + resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.22.15': + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.28.0': + resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.27.1': resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.27.1': + resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.27.1': resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} engines: {node: '>=6.9.0'} @@ -1011,6 +1481,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.27.1': + resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.27.1': + resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.27.1': resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} engines: {node: '>=6.9.0'} @@ -1035,6 +1517,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.27.1': resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} engines: {node: '>=6.9.0'} @@ -1053,14 +1547,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.27.1': - resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} + '@babel/plugin-transform-regexp-modifiers@7.27.1': + resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 - '@babel/plugin-transform-runtime@7.28.0': - resolution: {integrity: sha512-dGopk9nZrtCs2+nfIem25UuHyt5moSJamArzIoh9/vezUQPmYDOzjaHDCkAzuGJibCIkPup8rMT2+wYB6S73cA==} + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1107,49 +1601,79 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.27.1': + resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.27.1': resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-env@7.20.2': - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + '@babel/plugin-transform-unicode-sets-regex@7.27.1': + resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.22.15': + resolution: {integrity: sha512-tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-env@7.23.2': + resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-env@7.28.0': + resolution: {integrity: sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-modules@0.1.6': - resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - '@babel/preset-react@7.18.6': - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + '@babel/preset-react@7.22.15': + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-typescript@7.18.6': - resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + '@babel/preset-react@7.27.1': + resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-typescript@7.27.1': - resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} + '@babel/preset-typescript@7.22.15': + resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime-corejs3@7.28.0': - resolution: {integrity: sha512-nlIXnSqLcBij8K8TtkxbBJgfzfvi75V1pAKSM7dUXejGw12vJAqez74jZrHTsJ3Z+Aczc5Q/6JgNjKRMsVU44g==} + '@babel/preset-typescript@7.27.1': + resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 '@babel/runtime@7.20.0': resolution: {integrity: sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.27.6': + resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==} + engines: {node: '>=6.9.0'} + '@babel/template@7.27.2': resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} @@ -1158,10 +1682,6 @@ packages: resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==} engines: {node: '>=6.9.0'} - '@babel/types@7.20.0': - resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} - engines: {node: '>=6.9.0'} - '@babel/types@7.28.1': resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==} engines: {node: '>=6.9.0'} @@ -1169,6 +1689,61 @@ packages: '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@bitdev/general.envs.bit-env@3.0.4': + resolution: {integrity: sha512-ckH0MPUH3dwbM509fMn8ns3Yblbacj7ychD2zWtrPfcJLhVfq+XQWWfDI3m57JcPkYXWgF/6Tuw1mjY8K5a7Qw==} + + '@bitdev/node.generators.node-starters@0.0.11': + resolution: {integrity: sha512-q/5Y9NkYQtJS+au/hKp8tZcZdF6/7/wU6c8oEQt43+vql8/uOsd7FcO1Tod5Ur9ZvSUIEhXHZ35ZnaTRIN0fuA==} + + '@bitdev/node.generators.node-templates@4.0.1': + resolution: {integrity: sha512-0HWNK/EeIr6n+89Mu3RIxyXIjUYwjWpBAa6l53NeGT42S38Lou119TZff48Tl0tjbKmvWzzNAb0SlOvks5LVCg==} + + '@bitdev/node.node-env@4.0.27': + resolution: {integrity: sha512-8r9vK5UZc/+yE187NmnH3kWCubHQ7wtuASXzrUDbSejcQAp8oxGkKzrYKAC3k6swGVb4zzUTlEvSRQJkvHJ7GQ==} + + '@bitdev/react.app-types.vite-react@2.1.7': + resolution: {integrity: sha512-NEC23gROq6TSKyrPczf9Q8DK4twRM0gpW+TaRdlf5QJ1i/yQLXIfkd/z3WEpKGzcB6POFA6PYkHzKUeF3qAJ7Q==} + peerDependencies: + vite: ^5.3.5 + + '@bitdev/react.eslint.eslint-config-bit-react@1.1.14': + resolution: {integrity: sha512-/bKeb1BE6rzs+NJvTweaHFpBODXTmrfjLFJmef0wLGmkHsACZuCM77acn7++Ty427tKkmyAQkTaw+4C6Aksgng==} + peerDependencies: + '@typescript-eslint/parser': ^6.19.1 + eslint: '> 7.0.0' + eslint-plugin-mdx: ^1.17.1 + + '@bitdev/react.eslint.eslint-config-bit-react@1.1.15': + resolution: {integrity: sha512-s4QtA9c1EhS3LBhoFOKBDs0uEJg6J+81jh39G84prScUxHXJ9PPBKsc569EShjONgdVJutVR3+bHC6+SbjByxQ==} + peerDependencies: + '@typescript-eslint/parser': ^6.19.1 + eslint: '> 7.0.0' + eslint-plugin-mdx: ^1.17.1 + + '@bitdev/react.generators.react-starters@1.1.1': + resolution: {integrity: sha512-LQzLiB1tI26pVHcH1xLc91zLg42aaPd+hNq5OiS7JeDsR5FZoz59s4fqS1UlbDtc/T3RJO3IyNBFwFeY+j6inQ==} + + '@bitdev/react.generators.react-templates@4.0.2': + resolution: {integrity: sha512-hG8I2rA6K0xXA8tohFwLAd1e4IdiBD2nVv1hZPjmn4Y3wPxKIdvGYINtMAtOy2bnC9vNsb19KEiP2y+J+cFBMg==} + + '@bitdev/react.preview.react-docs-app@0.0.5': + resolution: {integrity: sha512-kDzFvU4gwlnAi16RIg31yFSDF8l9XpaYf04PT5mpicrfkKlwS+k7Pav01bqlZtLmvTLw0QBTK7VzplLyvW6x8w==} + + '@bitdev/react.preview.react-docs-template@0.0.7': + resolution: {integrity: sha512-0rRy5lR8XLeDEb5vDaGczWo8hSjl3dKnyeL78XbFbEAPabz3qDPlSearW82AnOaaGz8gLJzSHNmglyHCR2DhSg==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@bitdev/react.react-env@4.1.9': + resolution: {integrity: sha512-8WCTDswHgarrYnaqDw8cODd0W3pzxGhEBskuzaJhblyGUlrrhtw9QLYQYwzVn2obpjWBg1YcLlP5ZyQMEw38DA==} + + '@bitdev/react.webpack.refresh-overlay@0.0.5': + resolution: {integrity: sha512-/Z6WyK0Y8emzZHG41n9qfxUlt/UGC1RVP8xEE0u/MepDj4/wLLLLEzfh55+AWCBfqkmS6URnGVNb67NyvNWOPg==} + + '@bitdev/react.webpack.refresh-overlay@0.0.6': + resolution: {integrity: sha512-1LdQRTehylsvYhRY8t9MgXuGK0Yzx3BYngjarKQ7tPILJsbcP7TjbNV5QimgNJQRIAy65UAyezxtVrAoc8UDMg==} + '@csstools/color-helpers@5.0.2': resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==} engines: {node: '>=18'} @@ -1290,9 +1865,173 @@ packages: peerDependencies: postcss-selector-parser: ^6.0.10 - '@eslint/eslintrc@0.4.3': - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.56.0': + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@floating-ui/core@0.7.3': + resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} + + '@floating-ui/dom@0.5.4': + resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} + + '@floating-ui/react-dom@0.7.2': + resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' '@graphql-typed-document-node/core@3.2.0': resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} @@ -1302,15 +2041,23 @@ packages: '@hapi/bourne@2.1.0': resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} - '@humanwhocodes/config-array@0.5.0': - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} deprecated: Use @eslint/config-array instead - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} deprecated: Use @eslint/object-schema instead + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + '@istanbuljs/load-nyc-config@1.1.0': resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -1385,10 +2132,6 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - '@jest/types@26.6.2': - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - '@jest/types@29.6.3': resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -1409,15 +2152,15 @@ packages: '@jridgewell/trace-mapping@0.3.29': resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==} - '@learnbit/hello-world.envs.my-react-env@0.0.3': - resolution: {integrity: sha512-c0HAz11815K2kUfKtDf3+XN7+ySI1Vb9DBQWAQXn0DjNgDPdleYYZIGEhU6/9C3XRrINDv15Ye3gclz3bMK+5Q==} - '@leichtgewicht/ip-codec@2.0.5': resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} '@mdx-js/mdx@1.6.21': resolution: {integrity: sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==} + '@mdx-js/mdx@1.6.22': + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + '@mdx-js/react@1.6.22': resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: @@ -1441,32 +2184,106 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env': - resolution: {directory: scope-name/envs/my-react-env, type: directory} + '@parcel/css@1.14.0': + resolution: {integrity: sha512-r5tJWe6NF6lesfPw1N3g7N7WUKpHqi2ONnw9wl5ccSGGIxkmgcPaPQxfvmhdjXvQnktSuIOR0HjQXVXu+/en/w==} + engines: {node: '>= 12.0.0'} - '@org/scope-name.get-hello-world@file:scope-name/get-hello-world': - resolution: {directory: scope-name/get-hello-world, type: directory} + '@parcel/watcher-android-arm64@2.5.1': + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] - '@org/scope-name.hello-world-app@file:scope-name/hello-world-app': - resolution: {directory: scope-name/hello-world-app, type: directory} - peerDependencies: - react-dom: ^17.0.0 || ^18.0.0 + '@parcel/watcher-darwin-arm64@2.5.1': + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] - '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world': - resolution: {directory: scope-name/ui/hello-world, type: directory} - peerDependencies: - react: ^17.0.0 || ^18.0.0 + '@parcel/watcher-darwin-x64@2.5.1': + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] - '@pmmmwh/react-refresh-webpack-plugin@0.5.9': - resolution: {integrity: sha512-7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <4.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x + '@parcel/watcher-freebsd-x64@2.5.1': + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.1': + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm-musl@2.5.1': + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.5.1': + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.5.1': + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.5.1': + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.5.1': + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.1': + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.1': + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.1': + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} + engines: {node: '>= 10.0.0'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pmmmwh/react-refresh-webpack-plugin@0.5.17': + resolution: {integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x || 5.x webpack-hot-middleware: 2.x webpack-plugin-serve: 0.x || 1.x peerDependenciesMeta: @@ -1483,35 +2300,95 @@ packages: webpack-plugin-serve: optional: true - '@prerenderer/prerenderer@1.2.5': - resolution: {integrity: sha512-rPNbSgupfZhtwxdhdlOxDRevEcxvRmKrPQfCrwQH+bMDeRvjPtTYZHt8ZUob7o67UmC9wjZrFGvzji9QOOe9rA==} - engines: {node: '>=8.0.0'} + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@prerenderer/renderer-jsdom@1.1.9': - resolution: {integrity: sha512-8PWlgZDImYTbCNjhLZhjE1GFk0lZbwix/aCPj4El7/T0smNMVxjYWERxrIp6xmsxpUFq24tZJJeDvKjd8qR+Zg==} - engines: {node: '>=12.0.0'} + '@remix-run/router@1.23.0': + resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==} + engines: {node: '>=14.0.0'} - '@prerenderer/renderer-puppeteer@1.2.4': - resolution: {integrity: sha512-S0LY0xYGnXLo/8DqkiT+pDLDd0X5msXSeaPzq5goqgmFfZOQEME3+A7j1T2iClrNzk4Rjgfu4KTA8o508GYXiQ==} - engines: {node: '>=8.0.0'} - peerDependencies: - puppeteer: '>= 2' + '@rolldown/pluginutils@1.0.0-beta.19': + resolution: {integrity: sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==} - '@prerenderer/webpack-plugin@5.3.10': - resolution: {integrity: sha512-j1ijUz6FXDsCnJheoU+x6XtY03ImFhfLXFCgiVX3ZekSi6f81NKW8o3lVaI/gCs9Xwo6/zs8ub+fW7cKnY7kuw==} - engines: {node: '>=10.13.0'} - peerDependencies: - html-webpack-plugin: ^5 - webpack: ^5 + '@rollup/rollup-android-arm-eabi@4.22.0': + resolution: {integrity: sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==} + cpu: [arm] + os: [android] - '@puppeteer/browsers@2.10.5': - resolution: {integrity: sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==} - engines: {node: '>=18'} - hasBin: true + '@rollup/rollup-android-arm64@4.22.0': + resolution: {integrity: sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==} + cpu: [arm64] + os: [android] - '@remix-run/router@1.3.2': - resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==} - engines: {node: '>=14'} + '@rollup/rollup-darwin-arm64@4.22.0': + resolution: {integrity: sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.22.0': + resolution: {integrity: sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.22.0': + resolution: {integrity: sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.22.0': + resolution: {integrity: sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.22.0': + resolution: {integrity: sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.22.0': + resolution: {integrity: sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.22.0': + resolution: {integrity: sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.22.0': + resolution: {integrity: sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.22.0': + resolution: {integrity: sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.22.0': + resolution: {integrity: sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.22.0': + resolution: {integrity: sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.22.0': + resolution: {integrity: sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.22.0': + resolution: {integrity: sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.22.0': + resolution: {integrity: sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==} + cpu: [x64] + os: [win32] '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -1522,9 +2399,9 @@ packages: '@sinonjs/fake-timers@10.3.0': resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - '@svgr/babel-plugin-add-jsx-attribute@6.5.1': - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} + '@svgr/babel-plugin-add-jsx-attribute@8.0.0': + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1540,70 +2417,152 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-plugin-svg-dynamic-title@6.5.1': - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} + '@svgr/babel-plugin-svg-dynamic-title@8.0.0': + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-plugin-svg-em-dimensions@6.5.1': - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} + '@svgr/babel-plugin-svg-em-dimensions@8.0.0': + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-plugin-transform-react-native-svg@6.5.1': - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} + '@svgr/babel-plugin-transform-react-native-svg@8.1.0': + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-plugin-transform-svg-component@6.5.1': - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + '@svgr/babel-plugin-transform-svg-component@8.0.0': + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/babel-preset@6.5.1': - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} + '@svgr/babel-preset@8.1.0': + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 - '@svgr/core@6.5.1': - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + '@svgr/core@8.1.0': + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} + + '@svgr/hast-util-to-babel-ast@8.0.0': + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} + + '@svgr/plugin-jsx@8.1.0': + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-svgo@8.1.0': + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/webpack@8.1.0': + resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} + engines: {node: '>=14'} + + '@swc/css-android-arm-eabi@0.0.20': + resolution: {integrity: sha512-z6cSxNTaahNYWhil14bxQY3sKiS0m0iLL5c/YQU6zs3Di3PpkpZphl76Mzifw5RJm5+GcxU1+3yOnJWHFcnOHQ==} engines: {node: '>=10'} + cpu: [arm] + os: [android] - '@svgr/hast-util-to-babel-ast@6.5.1': - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + '@swc/css-android-arm64@0.0.20': + resolution: {integrity: sha512-EfysJoC5jiFKC7U4HGH6698+HJjMZPur1HTOpxm92BcRilc6Ji1LfaAItrm9BA2ADIPhd9oWndI1h6KCD1vhHw==} engines: {node: '>=10'} + cpu: [arm64] + os: [android] - '@svgr/plugin-jsx@6.5.1': - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + '@swc/css-darwin-arm64@0.0.20': + resolution: {integrity: sha512-l/SwYaYCwdU5ZrsDRZdb9MzZnxpSF5EQJ4ztKjFOLAuLKd+RYzYvjh0Jv28oefCJ7VCRfIFFPzhgwFZ3ujlpWw==} engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 + cpu: [arm64] + os: [darwin] - '@svgr/plugin-svgo@6.5.1': - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + '@swc/css-darwin-x64@0.0.20': + resolution: {integrity: sha512-opIALntwRPedib/QSNuPNT0mbEahXa7WPdcD5847kOQisIBduoWBINSR/bxgcjpE3sYU58GpMM6Q2f/22fX6kw==} engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' + cpu: [x64] + os: [darwin] + + '@swc/css-freebsd-x64@0.0.20': + resolution: {integrity: sha512-LqdXOR1jUNg+ptXKV3oyX0ZKsSYTquaSNoirLnDU/Gl+4IA9qaG7ps9iqfixjwmHyc6A1EcfI73WyjjYPlszUw==} + engines: {node: '>=10'} + cpu: [x64] + os: [freebsd] + + '@swc/css-linux-arm-gnueabihf@0.0.20': + resolution: {integrity: sha512-8RQVGvfbYvl1Z5hs3m3gftaY9YykA2A3cSuVFrTb+B74dpdwnL1PkitKvdKRLLt0LWgQFseljUsgtDYyeyCn3A==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/css-linux-arm64-gnu@0.0.20': + resolution: {integrity: sha512-rGAA+7bc7s3tPfcicqwBUOlzOeZxc/Z8wQY455B+nQGOO3qj5L7P//ftXgnDlXWTKYq/XrpImjZGoIkD6tE/1g==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/css-linux-arm64-musl@0.0.20': + resolution: {integrity: sha512-hdGVrgfxoKoRH/CXpezS1g6pPZDTFz1EbHbK/kRMEAiB4BWjoIlrdeDnIxn4Gz9RNkupAkGK/41WDm0XR2g+mw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/css-linux-x64-gnu@0.0.20': + resolution: {integrity: sha512-HnAgJKEA74L3GI8EWD6l5BmksCQLmmOLbPpMBoNtluh0AA5gbnB4uB3Quh5xZqHDmqjFUEyZR3yoXFMhB+oVlg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/css-linux-x64-musl@0.0.20': + resolution: {integrity: sha512-W6mRvjMivjwT6ywn942nk3bQ/ItIJCbXqHhH6LB+X6LntYjdXv6O8XZxqbv+UGIFhkKN/lze0exR3KVyGvltHQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/css-win32-arm64-msvc@0.0.20': + resolution: {integrity: sha512-GiXSHZfQY8VZ9tZm5VCvlCoIMqh2grSKTgnhANOAEuaGSt2j9K6DPnHSIrl7tO42KftAZmExFhQiHHC9zMhXxw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/css-win32-ia32-msvc@0.0.20': + resolution: {integrity: sha512-p6Y65JPi28Y7OJbjbR1HLzoKS/48WS3IFNgpIvTSV4l43IwtjDchyCZsJ04gisrJ3H8tIx6Ct7GhXNEhLHj3ZA==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] - '@svgr/webpack@6.5.1': - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + '@swc/css-win32-x64-msvc@0.0.20': + resolution: {integrity: sha512-tkp2QvxqPRQch+BXSMd6HvE3nFqjamMjuNa0aBvzmNafF0SFywKXi6zIBSmwyX59nxpH+++D2zQdP6uVGH6aBg==} engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/css@0.0.20': + resolution: {integrity: sha512-SYmayNGfobESZtYx28WO6y18yTZ1J/tkPnDTHFNBW663fIMhzkkXZJVH5o4gCPkhjyc/GBonsjgFE3Y7OGr7sg==} + engines: {node: '>=14'} - '@teambit/base-react.navigation.link@2.0.27': - resolution: {integrity: sha1-ZCQxvK+jLOilJMnAnOZAAf9ya+w=} + '@teambit/base-react.navigation.link@2.0.31': + resolution: {integrity: sha512-XyW1orRKYcvaVw7M7orP0KolI7iilLuz4ebnLf7VPGkaDdv7GR4ghgVIx4rRTScZPGOfCq5/h6hKST6hz95sLw==} peerDependencies: - '@testing-library/react': ^12.0.0 + '@testing-library/react': ^12.1.5 '@types/react': ^17.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -1651,12 +2610,6 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/base-ui.input.error@1.0.1': - resolution: {integrity: sha512-jgIob/7MGmKLXm4tQCJnV+v2Izm6M+Sbl+oy9Dwj60IAOVSkLThMw/C9szX5OSYjgBItYOcXy2AK1YPDrXLkqw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/base-ui.input.error@1.0.3': resolution: {integrity: sha1-u786FrWekFm9ZXJNbAtguAA+wE0=} peerDependencies: @@ -1669,14 +2622,20 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/base-ui.layout.grid-component@1.0.1': - resolution: {integrity: sha1-s8B7uWwtKRVnglUSUuvOCkW7+HI=} + '@teambit/base-ui.layout.grid-component@1.0.2': + resolution: {integrity: sha512-/G/WOO98NHdLuEBAlctrgIWQuBMi96zLSyd55waivNFHm1RKgTzfLup/gdsnGbqhG1mYTfqboPUQI7OF1XmUQg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/base-ui.routing.compare-url@1.0.1': + resolution: {integrity: sha512-Ef+F8XwYaVPFAQwW0vER6YMf7N8aRG50geMmx+l8tPMYtoduPHvbkwUnHcoUmtLZnDYX8S6UONGg/ySVUlKjWA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/base-ui.routing.compare-url@1.0.0': - resolution: {integrity: sha512-57vlN0+yBZFGsX5JLo237OQ3Bu8eeJ+vEVbeQuioJsuvS0zEhI8EyobYssEfyaCMsbpDpbpL6HkfSvuQB0Vtmw==} + '@teambit/base-ui.routing.native-link@1.0.0': + resolution: {integrity: sha512-yrkm02UxkeCBWyLQC9MG7Jl6JbQrsIBz+9c57mZqAjEcVvQWY2mB3lEY+pNZAuIyOg55/DTqKR1bKQKl6ZAdzg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 @@ -1783,75 +2742,120 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/bit-error@0.0.402': - resolution: {integrity: sha512-hYIJQWD5UCiD35WAIy0YGySW63PP0GyNIpCDmAOYxRGpA0RMQD+zacKpG1SH6iAfsg8NF/Am8lWis1Lg9ihQtQ==} + '@teambit/base-ui.utils.string.affix@1.0.0': + resolution: {integrity: sha512-cuXL6MNfP7XPJtJZUVUCj50JJpzF/+pS0RRlnWE1B/rNB9tKyu+QfdZQ+kmSAGwQMT1ZfTufo50Gow/suzZavw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/bit-error@0.0.404': + resolution: {integrity: sha512-lGK6sZBk28H+MPuqIQp5+JRGw5xuE8MUTNoMQtWyda4/u6drNMgk4eYG1HWVcqbuJbGzrtfEDroDRx4ghBiUOQ==} engines: {node: '>=12.22.0'} '@teambit/community.constants.links@0.0.2': resolution: {integrity: sha1-cUo3bbFCwlI564kZTrREbBRp234=} - '@teambit/compilation.compiler-task@0.0.4': - resolution: {integrity: sha512-6zIyC1zn940E1HSsvRPJCUM8WZ5Cgojlj2lOZAw3cADYKyfxAzxFYoJttfs4C17XYj3zePSP5oi95fgaQVeTBg==} + '@teambit/community.ui.content-tabs@1.0.3': + resolution: {integrity: sha512-KE/uUNXEp6Z/ZyuBrLHuRNTrJKEGQhG+QFMA93yDZwQc+3WvvapFUZJhO5B6K3/IWUxPH//a6Bgw8jn6PBpBTA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + + '@teambit/compilation.compiler-task@1.0.12': + resolution: {integrity: sha512-DDi3ZhrnkFBEDymv4tN2j18F3+GgAp5/ak/kzqU1la1BsJFYbRUNMrs6EbJaoKHcsOIolFUaFu7JxXoD6F38xA==} + + '@teambit/component-id@1.2.0': + resolution: {integrity: sha512-rdOUec8IfdvPP1jqo/8JpCoLEp8TfTdWdkj5K0oEggSQd1kM9IY2vRoWUguqKAbVVFk7TEnOKGtESOp2mkbglw==} + engines: {node: '>=12.22.0'} + + '@teambit/component-id@1.2.2': + resolution: {integrity: sha512-rpbKjRHs/mB2HU+yK1T9/P/r1pS9PDSi5tU1+6AK6WjW6QRkqVlf+fyRNfRFX8t31/sdDqLSIEj49WT7TxDLNQ==} + engines: {node: '>=12.22.0'} + + '@teambit/component-id@1.2.4': + resolution: {integrity: sha512-9ekWPf076IUBwu38dm9tOXHnT1ZPy1ifAayeFL4M9lJX1aoSfg/vQqofijMmnrm19LCPGRUkn7iMk7FCvuB6RQ==} + engines: {node: '>=12.22.0'} - '@teambit/compilation.compiler-task@1.0.6': - resolution: {integrity: sha512-2Y+LaNBF8aWa2/ca8cdVvsYM+3WNIq0R1i/M8h/kXqf/OjkQ4hfPKDyhmzH4JtG5kuK39uClZMZbPvXmAgo7QA==} + '@teambit/component-version@1.0.3': + resolution: {integrity: sha512-0JColk4hcSIATal4DH4tKseeMRsw6Tyq6PhC6dTPYwiUj1CbW+TdJuEZUQmc8sqAnx14doQUw6jbibaUnBBMMg==} + engines: {node: '>=12.22.0'} - '@teambit/component-id@0.0.425': - resolution: {integrity: sha512-uG9lej8rfVogowZOBmDXBDYNqj8+AcR+fIMAXzWjfVmSW5Amt2rwnYiyaJEeU9yh+5f6F3BsuXjXbX/tEVZAfA==} + '@teambit/component-version@1.0.4': + resolution: {integrity: sha512-hh+shvnYks+rtsxCsQaA1l4gByVCF+KTFjDBmvjTCQa/elsV9o4ftIsKB9gHjISufTh/6XMB1KALIIabUbWvwA==} engines: {node: '>=12.22.0'} - '@teambit/component-version@0.0.406': - resolution: {integrity: sha512-fcqjqGhAblhIfzMgzuLchEq+8T3+fgTojaNmP97F1BAbj3nRtp7cXTyqB8C2My/gC9jJk1CQcTDn5q9xQCmvow==} + '@teambit/component.modules.component-url@0.0.169': + resolution: {integrity: sha512-aGFn9Bg/nFfZZtLl/wliI0r3VIGpRWUxTSt/28yVm1jhYOWnHw37mRGI1mEVrDsopnVnbUZZb26qmS/lxO1HPw==} engines: {node: '>=12.22.0'} + peerDependencies: + react: 17.0.2 - '@teambit/component.ui.hooks.use-fetch-docs@0.0.14': - resolution: {integrity: sha1-ilPirLwgHw2HY4GpKFHtFxutA/g=} + '@teambit/component.ui.hooks.use-fetch-docs@0.0.21': + resolution: {integrity: sha512-0s3gwLlDlBhiPY942JsGjgxOKigltrtRD0oamHSEHNqil4jcS3rhhNwmJDwxJlXr4BHbFUEv0wsK+T/Cc6L7ng==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/compositions.model.composition-id@0.0.496': - resolution: {integrity: sha1-j4ZHommJ0BDZF722wBrOWqcAGHg=} + '@teambit/compositions.model.composition-id@0.0.498': + resolution: {integrity: sha512-X3wg5dd3kOb2nVy+1InveWwwONkljOAWSm9cDehBaFhv4kFIjNlgPWf4VwUOH9asdzobq9tuztlz3uuhuD4M5A==} engines: {node: '>=12.22.0'} - '@teambit/compositions.model.composition-type@0.0.497': - resolution: {integrity: sha1-eXDEQ+gQrUk9lqcO8HE77OVROJ4=} + '@teambit/compositions.model.composition-type@0.0.499': + resolution: {integrity: sha512-UUsL6kF4x/ZjeSHWSLkuu5WEzdm/f+HdImmlwlC88FdHrTrZlu56ui1ImyeE7BFcnox+STl87dRwpUlaSEQ71Q==} engines: {node: '>=12.22.0'} peerDependencies: react: 17.0.2 - '@teambit/compositions.ui.composition-card@0.0.504': - resolution: {integrity: sha1-Ryd0RxCLOkxA+4lkH9aZxETTyDA=} + '@teambit/compositions.ui.composition-card@0.0.511': + resolution: {integrity: sha512-aqJ8wdWwtCUIvtNjsOxUpqfvhOGW6zlMJPnHwjBsp+PhARA/5fllTWkBXwxz6B3megz6E99YNUJTT7Ht06oiyA==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/compositions.ui.compositions-overview@0.0.3': - resolution: {integrity: sha1-DRu2BTsr/itbUQk8nm0vbNOcXRs=} + '@teambit/compositions.ui.composition-live-controls-react@0.0.3': + resolution: {integrity: sha512-ZSf6XfgInp7s0FiPb+KUpK9YxB3QMfVB/J8Ab9qB67QJsHy16449LrCVj+3UcME3pLGmmpECMRGhir/6L3n/Cg==} + peerDependencies: + '@types/react': ^18.2.12 + react: ^17.0.0 || ^18.0.0 + + '@teambit/compositions.ui.composition-live-controls@0.0.3': + resolution: {integrity: sha512-eOsSoZCQcs2LCYLUjwe+F6L7xywl8Jb8cEm+y7q6/sCZmjksMA/b3TMa1IKmIgqo04SU6xgrS+V20P7XBcpqLg==} + + '@teambit/compositions.ui.compositions-overview@0.0.10': + resolution: {integrity: sha512-Mzr6QQh0fw3quBjC21uNE2CSHrbSTJpzecgLe/kPEuos8pB4IhCQdSbq8NnSOBBpji7inHNXLDe0cQ+gF1WszQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/defender.eslint-linter@0.0.10': - resolution: {integrity: sha512-XCu/MUYqBwF9G3w46+9/zFrf3SrNvBQ6DTzXJtmMT9MfGE3QyAZV4OAmWBvHOK2LdjZIcO0xSYnHqn2ifgIKEQ==} + '@teambit/defender.coverage-report@0.1.0': + resolution: {integrity: sha512-dI8yzpp914tPCo8vKJhHKWEdMUX+9yi+510WvwOqR+PBQ0M40lyMPTWYGgbU8nxJ7mIP51x5ZqTBxHIcsQl7ow==} + + '@teambit/defender.eslint-linter@1.0.55': + resolution: {integrity: sha512-OEjQYPiDlJrxdfhRlAEaFRsfAxX7Co/y/Sj3wboGAkYgF+7TVPzEQ2rH8M9dGvuIQglz0zDaLZrLcERNELVXlw==} + peerDependencies: + eslint: '> 7.0.0 < 9.0.0' + react: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/defender.jest-tester@0.0.10': - resolution: {integrity: sha512-VoKG5/ZWorm3MNiAyKQ2oYH5VVw5mRkqO3SGhutoD6XXfCUbo7WBkmuNqO/oHws2BMG+cGSWdEqtiV1q4EaiIQ==} + '@teambit/defender.jest-tester@2.1.0': + resolution: {integrity: sha512-X/mwNM3BtI3H/FlkuOhxVR4XZT1Mkx1C6U4klF4jvA6gwV7+MHwAOLzleRC3hyqsxm6QaxcuTPEim1xDLjOHaQ==} + peerDependencies: + jest: 29.3.1 - '@teambit/defender.linter-task@0.0.5': - resolution: {integrity: sha512-g8AczzzR0ZjPR15LIFYUi6K/JEwM8XNs5yVGEGAEtb+7MoM4eXcTKBSI/9kOggUGgHsGq6mQC/9cQJiHsPI/Qg==} + '@teambit/defender.linter-task@1.0.8': + resolution: {integrity: sha512-sjqdIDHI3R9OHcjm/zXu+kCggOU2wzO+D3N0gwbG6CT9P+hGpOEWl7s3V+olGXBdhUG9cCJH4nfYJ5y6jNl7MA==} - '@teambit/defender.prettier-formatter@0.0.6': - resolution: {integrity: sha512-U/6p1+wsBGuBTlQhbvfrs1onftUg/DqONPP9KFbsU6ag0z8gFdkhNft5X8r42+rkoND+zxIVw1uOfGPT64EUwg==} + '@teambit/defender.prettier-formatter@1.0.23': + resolution: {integrity: sha512-BGvaNxNWovrFT+91XC6sxF6D1Wu1Gp2XW6fDRWVvrZOgUXcvek96pAKZF3MqIdSdqNitC/BXaKlUJ7OZ7St9WA==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/defender.tester-task@0.0.6': - resolution: {integrity: sha512-26TV25QkppXO8pjuFGsxvutnesF4yE1wVKoaqMyr74Ol9BQuBZnRnLW8m4oIh5ubPv6SxFQOlnN/Rp7YGlsjbg==} + '@teambit/defender.tester-task@1.0.14': + resolution: {integrity: sha512-zV4YSJfWXUfkfP9wPuIPByfTHPGJ22pOqXyp0jNURRN90WKSFH2ZLdHjDaxi8+czfQsVg5dr5dgHJCJBAIDYlg==} - '@teambit/dependencies.modules.packages-excluder@0.0.70': - resolution: {integrity: sha512-JAv9vIJ6UtaguT68GVjjB1IoljG9f8DLvzKas0gSOVhqgUyhj/J4G/3jaOLZ9Yu8AEX0XOzsFn/B8K7QDGlwYg==} + '@teambit/dependencies.modules.packages-excluder@1.0.8': + resolution: {integrity: sha512-PsA3S56Zw6mMKuUm+RkQ5HzxrgEC0XzBSlICjgejpjXqSA8eKFn4IJfhPCpH4KPeaCMvWIkaRoJ5FZZMDYSJqw==} engines: {node: '>=12.22.0'} peerDependencies: react: 17.0.2 @@ -1863,8 +2867,8 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/design.theme.icons-font@2.0.24': - resolution: {integrity: sha1-xHWuZM3zVSfkJwnOF6BBOWh6VII=} + '@teambit/design.theme.icons-font@2.0.29': + resolution: {integrity: sha512-FldFi4JQdFHdXv0ZlJ8eDCCJVac8qwqb5MQ00yQH6VPV8KEpAxPohKuXggx8T4YBN3b7dU4SbehoatXm7qohuA==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -1897,8 +2901,8 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/design.ui.error-page@0.0.364': - resolution: {integrity: sha1-vQV7Te5JyvHLSgtDRcCjbwF7v6E=} + '@teambit/design.ui.error-page@0.0.369': + resolution: {integrity: sha512-rsLJUVfwng7ckL2K2jOi3672AMUGohXdY9RwYHLVMRldixq1lUOj8n1h+QgurihnAD2d5FEEY10Fx+pzh1PRjg==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -1910,82 +2914,86 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/design.ui.pages.not-found@0.0.366': - resolution: {integrity: sha1-k9HJT7pUUTGpFWQC2Ofnv4D+Mec=} + '@teambit/design.ui.pages.not-found@0.0.371': + resolution: {integrity: sha512-goeGQAMMEfFtHUfyzk2bh0UvT2POisY+6PJ7+dOWczFmhl5ytrakVHsJQC/Ivzj/KAxBRxg5uqqOzSEzx7ouNw==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/design.ui.pages.server-error@0.0.366': - resolution: {integrity: sha1-23wJXHdEaXKFQtZr+SLOU9bbRng=} + '@teambit/design.ui.pages.server-error@0.0.368': + resolution: {integrity: sha512-D5t5bFLXF6b43/tUyZPhyVKhgOB4xmEpbI5u1Yt+2L4wUQ6XrUGt35YitbnokkB1KPFU0qyjkF9Ny6iumQURnQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/docs.docs-template@0.0.11': - resolution: {integrity: sha512-Y1RfmYRwMfq5TEB8HYASNvY9kVKrigx5TLSf42WVybLGrOxRjcFqPVRj6i+pdj1loIAJOXB5zvDuoPAWJNn0IQ==} + '@teambit/docs.docs-template@1.0.10': + resolution: {integrity: sha512-wM1v+sKZ2gChJOfoe+cSyLLgBujATHbpposUHhypdyuObH95hZtkzFk34fO3Q2N8+m5Y9PD22vxEvRzC29PfiQ==} + peerDependencies: + '@types/react': ^18.2.12 + '@types/react-dom': ^18.2.5 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 - '@teambit/documenter.code.react-playground@4.0.1': - resolution: {integrity: sha512-ElhYSW8VpdOA9DOOE+l85TM1R5tH4K1Fz7ofmb1bWcwFOYqk7qIl4r+lTW+H5x9jyNONkn/kn3A8Vu6d+K+7kA==} + '@teambit/documenter.code.react-playground@4.1.10': + resolution: {integrity: sha512-nQ6nQlIEOqas26zlDZRwuTRKcre+KBRhEgmQCnbTWkCcoz0rM3natNlILKey2vHE1FHGmhmnSlbpNSPukZEjcw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.code.react-playground@4.1.7': - resolution: {integrity: sha1-EzAHf8p3qGNfvHcMt3Ev9J6xiqQ=} + '@teambit/documenter.code.react-playground@4.1.9': + resolution: {integrity: sha512-2vdqb62ViMt8OwZTnp+ePAFZtJqZkUtuyyaAqOijoyHyDyzgz8VRJ5atok9PRRdmylJIvIGK0LT86LbxMouX/g==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.markdown.heading@0.1.8': - resolution: {integrity: sha1-nzm8nvmN4ZhYeKvSemUQ8QCkkmM=} + '@teambit/documenter.markdown.heading@0.1.10': + resolution: {integrity: sha512-zhzXtnddTcWeyv8GYYreswEkJMTlsH+3RT5DsnrmTT4rUAXYLYoKhgoaasmpWU/2ucT+jMq5xRAt46olaXdO9A==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10': - resolution: {integrity: sha1-+ukZl1tIe1fvYdNgc3jmbw3TobQ=} + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12': + resolution: {integrity: sha512-SiigPvNrOwnNwyFnyt+Vrc6yRnMJvqOw8rfQhL4GDaJuxwKusvzci6yTR5uQMhZXumS1fA6rhUexYPEAU2Lnuw==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.markdown.mdx@0.1.11': - resolution: {integrity: sha1-uT5XYysdIL/omRIx4bjge23mhDw=} + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14': + resolution: {integrity: sha512-O6TPt1gpYqiMDTVlNEt5CJbPuLpEaxZln3dWz+fZNTA9s7V611cFbZGxZaiXOT0HxBgN/VTHFkVFlFpXIuWrLw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.routing.external-link@4.1.2': - resolution: {integrity: sha1-x8BwO3dJWu6xpvFCmhyGxIBGUsk=} + '@teambit/documenter.markdown.mdx@0.1.16': + resolution: {integrity: sha512-HcX9DU97n+EYSIdONIfKor4jzCLb7wZIfRRqFJfmLREcU3P/um2BpZZqoCezr6LnRA7/5GNTWOtfn6Cjd+13bA==} peerDependencies: + '@mdx-js/react': ^1.6.22 react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.anchor@4.0.6': - resolution: {integrity: sha1-F/md7GOXvxkNRtlH5aNtoA7s/VY=} + '@teambit/documenter.routing.external-link@4.1.4': + resolution: {integrity: sha512-Y3i5aSKtI6GpQmlgJjYmNKcBblK/vsLISQq6/wqvpTZ8aT0UOAw79H8lskcLdcfLW8gQW+iN9IW/t7hLeA5fkw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.anchor@4.0.8': - resolution: {integrity: sha1-uCm/XjJzF/uAWNo0M0ZD+EqSK4w=} + '@teambit/documenter.ui.anchor@4.0.10': + resolution: {integrity: sha512-AnHP7uIruJrP7cr4jKW/YDyTRBoo5pXKJChR6REvaDZdtKC9CuPM3fmQsbeT+JmmXqtcwZ/ucWhDlRK+LSxfZA==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.block-quote@4.0.7': - resolution: {integrity: sha1-7+GPtKk6G3gN7oPmjt/F4b6F84I=} + '@teambit/documenter.ui.anchor@4.0.6': + resolution: {integrity: sha1-F/md7GOXvxkNRtlH5aNtoA7s/VY=} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.bold@4.0.7': - resolution: {integrity: sha1-9gJM/LIlweId0FfiXSfJe0b8P6Q=} + '@teambit/documenter.ui.block-quote@4.0.9': + resolution: {integrity: sha512-1DLt/R6/l0eRvOed4FSLv7R4WrC6dM/W2Vbf1BN30AVHtwg6sXp5H5xG76CuCrMsuwc4PPCaVvz5/Niw7YJbeA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + + '@teambit/documenter.ui.bold@4.0.9': + resolution: {integrity: sha512-UZVCWz8ng4mBsn8q5B8JxCKwKxFRUiYg9cEcbbK+skOza6hqxMjLh/LD1x7xAIKAr8Q/X69jCHsqKoFBudYV3w==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 '@teambit/documenter.ui.code-snippet@4.2.2': resolution: {integrity: sha1-dgCI6suKWJxi4A2jJFLa0UUESpQ=} @@ -1993,71 +3001,73 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 + '@teambit/documenter.ui.code-snippet@4.2.4': + resolution: {integrity: sha512-04SqHrqXUx+HWPWGR20NJE1nBcrE2impLuPUmG1PiHGaXm1oC1FG9ImWy1QLujyuQOG7umDMQjETUMHZVRMsfQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + '@teambit/documenter.ui.copied-message@4.1.6': resolution: {integrity: sha1-M5pctQny1uKI9T6rUQIR4Nv4iSE=} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 + '@teambit/documenter.ui.copied-message@4.1.8': + resolution: {integrity: sha512-pJUcMhiaAhtIjw9o80IEl+MtKLNoHU+K7OeVnmqFCCzFYUJuDHeSOXzFDLPDe0hpaTj1vV4KMHq/z2OEZqW2Lw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + '@teambit/documenter.ui.heading@4.1.4': resolution: {integrity: sha1-jENJgXMvwy825NKKTM8gP90faMc=} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.heading@4.1.6': - resolution: {integrity: sha1-nCoruiI/7n5xcXd4GEMdtuU5nIU=} + '@teambit/documenter.ui.heading@4.1.8': + resolution: {integrity: sha512-35h5VOs6LB/6Abfdz9z9mvQ4MofG4eNOl1vHaOzSMzR12CCw3dU/K+yJG5WxG2JzCz8ubBnYUESLFx1f89nDeg==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.image@4.0.2': - resolution: {integrity: sha1-lOGzakfJTF07HAYwkCYPeS3MKwI=} + '@teambit/documenter.ui.image@4.0.4': + resolution: {integrity: sha512-ezh4lWoYiREzL1K77M/N2kExnsy6GbFdzGU0B0xA41GNBruYhgTK9Oq264b8tNb4y/4eSaQKfgSynr+EAep3wQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.inline-code@0.1.5': - resolution: {integrity: sha1-ds6zetV22NrzIjAju0UoDBjePEY=} + '@teambit/documenter.ui.inline-code@0.1.7': + resolution: {integrity: sha512-2nQhyEwVpC1irAWMr9CEge2CFEk8SYROxOPdIhr61YzC+z1mbjSpjuzXg9WQrrprZaFJPuOd79wyYfq+sW0ziQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.italic@4.0.7': - resolution: {integrity: sha1-udDO1kKFVhbtzPHibq1fT3cAjtg=} + '@teambit/documenter.ui.italic@4.0.9': + resolution: {integrity: sha512-Or+8hnpriAiMbP0bZ6NfJlaqQzoZEC7XP2KMql5N9dKrq7cyEbh6XuY0kGHGMwKpT2Um4ovsBucqbEL67E2b2A==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.linked-heading@4.1.6': - resolution: {integrity: sha1-f24gfJKAIAD/V+cvUE/6Zk847U0=} + '@teambit/documenter.ui.linked-heading@4.1.10': + resolution: {integrity: sha512-thxwl51Y/xzWLTe64nRADC3YY13Nb29XBnvvkB1TZ3ncYeOPdCEwwV2exS5Qgv5b4DZueWDOQlrQJ9dHuhoabw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.linked-heading@4.1.8': - resolution: {integrity: sha1-LGpmPIXZSWsXbYgkS/WR1VxJcCg=} + '@teambit/documenter.ui.linked-heading@4.1.6': + resolution: {integrity: sha1-f24gfJKAIAD/V+cvUE/6Zk847U0=} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.ol@4.1.5': - resolution: {integrity: sha1-lapFqkqFsOmHSTE3otAHINSFdu8=} + '@teambit/documenter.ui.ol@4.1.7': + resolution: {integrity: sha512-XoozbsYB26uoaM8Cnw4m3fUDnovOwYseT8zX7IHr/SRbeDj7hiPkzpzA5CVy5SSyJlWZ1jQ/UUWdRaUbOt9MOw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.paragraph@4.1.5': - resolution: {integrity: sha1-w9jrNz9R2bIsMgLvjNgv9Ycmr3Y=} + '@teambit/documenter.ui.paragraph@4.1.8': + resolution: {integrity: sha512-TgJhHpcrWsqkdyQMNPszL+42w3Gp1STtyoSk9rdBNYKsCBmDukdGx2d7d9ruPe57nVcnVXSoLstbAdEegOq96g==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.property-table@4.1.3': - resolution: {integrity: sha1-JTxLbdTeNEeF6K1N9uOmUpclSYw=} + '@teambit/documenter.ui.property-table@4.1.10': + resolution: {integrity: sha512-kvQjO0SWvLC1TQNgkfjFOCcvPBi2KWZT25XfrQHpt43Q3pKvcwH9x557207LM2OCFa9pzSB8WKHXaWR8jC9fdg==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 '@teambit/documenter.ui.section@4.1.1': resolution: {integrity: sha512-PwMUmernBbCKKHm4AdXfBTlanIrkF6bE/Uyjg2AobIMf5taLw0L9RiQ2lAjUnSn9Mq4VFId/TrcjdA1p7jqlmQ==} @@ -2065,78 +3075,61 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.separator@4.1.5': - resolution: {integrity: sha1-xyOoVnbJEVVdAGegDDbr5EXrZH8=} + '@teambit/documenter.ui.separator@4.1.7': + resolution: {integrity: sha512-bJQby0KjoiZn6rtpeDV41+ONgKfS377hIRv7NDYQGAQEVruuu89fUjCr+2hY7AKxibEvN/L7z+Z/6UiY+8gwDg==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.sup@4.0.7': - resolution: {integrity: sha1-BsLXxuTjySkYTbpe2bxzPcbamVU=} + '@teambit/documenter.ui.sup@4.0.9': + resolution: {integrity: sha512-fJzvJ4MturVUdo9kCPJujRznuOU/xUyfjzshrmlK01LPwM0Kgp6ed5MmNjZSr6EPXsCBdzwA/C3UEXsooYJSDw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table-column@4.0.0': - resolution: {integrity: sha512-sGMLD+Lu2snQ1g1xUXYHqhbUcH3iOp0CUc69T76SNt3cQBabNGb5T9yg0A/7JYN4Ams1IKJ8Anws8+T64huSDg==} + '@teambit/documenter.ui.table-column@4.0.4': + resolution: {integrity: sha512-LoTPyZlkCeWKMlnf8uypwNMysZGlkXBn2uKDsy/SOar1ZAfmPrxJepMuSRmgRXZDK1/KGuDxzD8YtYtzWL7+uA==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table-heading-column@4.0.4': - resolution: {integrity: sha1-88YzrKFIcEPPln9jc6nKCGB69Qs=} + '@teambit/documenter.ui.table-heading-column@4.0.8': + resolution: {integrity: sha512-fTks9LHiI9/IEh2+qkWVENcIUWKU6kb73Xqy5BIXO7IdPniJoSHnIzrorbsFYuxcYOGmJDmHyp/t/Cs1873Vzw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table-heading-row@4.0.4': - resolution: {integrity: sha1-5Y0+Bx4PBE8oyFlUjczMJdil4ig=} + '@teambit/documenter.ui.table-heading-row@4.0.11': + resolution: {integrity: sha512-hhj3lndgE69sFxUIGVx2dJ4oyLC+828fR1/mCpduB9ZqdcKKDSQZ1RDITC7M+FQ13L3NWXBHsidaRlPFg7IuXg==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table-row@4.1.2': - resolution: {integrity: sha1-eWzMJmyZbLH5RL03UwVgy6xrZAs=} + '@teambit/documenter.ui.table-row@4.1.13': + resolution: {integrity: sha512-ZJ+/6C0uS6Ge9pbes6iO8cHW7VyioG99Bi4YBTBc9qFPLC9+bKHfAgMauuBeBba9tbl5cIOJD7vKq2PHOXYn6Q==} + engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table.base-table@4.1.5': - resolution: {integrity: sha1-bdqA6VoAdA2lDnRjrxeUUjk09UQ=} + '@teambit/documenter.ui.table.base-table@4.1.7': + resolution: {integrity: sha512-9UvxVRVbB3bIh1SnFQOXHD1aakBi253qpUAzE8zU7j8c+kkxiG9p/83ZoUMunKgz3u6Oz2mgnFLZr2vVrbUBMA==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table.td@4.1.5': - resolution: {integrity: sha1-G1IEysSy68nlR2OF+QHUU39HrEw=} + '@teambit/documenter.ui.table.td@4.1.7': + resolution: {integrity: sha512-eIqnHewPSO6gxDnGyGnE9rZwIXJXAO/NpRsHCIq7EEhI5uZCNP47i/hxY8bbTcY2OlktLYu9bQQe/x/VD9L+Iw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table.tr@4.1.5': - resolution: {integrity: sha1-jNAXpVn9c16u1xtdH/m1beo5TnQ=} + '@teambit/documenter.ui.table.tr@4.1.7': + resolution: {integrity: sha512-KTeUJxSHucTO3wJfOFyL/hF/JvhvdnBlyQnJYfJLiutlxMm5cWkB8GX0qMsCdIai+FGdAGFAsoPGAGbD76ocww==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.table@4.1.2': - resolution: {integrity: sha1-OIJesPzJ1bKWQTPMeEGAPT++8Eo=} + '@teambit/documenter.ui.table@4.1.9': + resolution: {integrity: sha512-XJFW1sCKI+6JgUi7HTWyRXfhe8c6fOj7zO5Pms34aqxM7NnoKVhYRWKTBSZk33HX9uMPc8t1XiViTGdRhDkTkw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/documenter.ui.ul@4.1.5': - resolution: {integrity: sha1-tRTv2mMIu1ulZTNVLUDzQsDBuyM=} + '@teambit/documenter.ui.ul@4.1.7': + resolution: {integrity: sha512-xsDbjjgd3enT96sCtB+SwbFsWYu+6kAVRcwn0F8Dc6VO/YiXHeYe7MivXXFdLPGbZtjZk8WifxojIOh9jutkmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@teambit/eslint-config-bit-react@0.0.367': - resolution: {integrity: sha512-d8N9+n/OSxaVpeFBkRhYm6QvqKbzaMf4bN8NJrLmPBuJh4on74U3z4xsqu8sLIphEO0fA2G8ISB9Mo+TINqbMw==} - peerDependencies: - eslint: '> 7.0.0' - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 '@teambit/evangelist.elements.icon@1.0.2': resolution: {integrity: sha512-OoqGwKyhQDETfLYTebBOGUeISdix6eyj9cT3iQoVMtZlcIGOJlQqccDsFbjnhOUMFoI9IbtqTaGL7ymCGbA8rw==} @@ -2150,6 +3143,9 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 + '@teambit/git.modules.git-ignore@1.0.2': + resolution: {integrity: sha512-0aLXxZQywXzuR2527KYd8JXRwIFFtRBqFtzhrpoxu2aWkadx5THYanG9wMXcDiXLtmuJCLW5h6WbrUmpPoWLvg==} + '@teambit/graphql.hooks.use-query-light@1.0.0': resolution: {integrity: sha1-FUGp8ZjK399H63okAGKoLjBGtIE=} peerDependencies: @@ -2157,189 +3153,266 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/legacy-bit-id@0.0.421': - resolution: {integrity: sha512-65a+uW3GK01vKHPnnX54PHKoLVgIDa9ajXME/4alskhw7VC32ohf1/O5M1EvBvm8f5ek/ply8WUhuqkUIihAzQ==} + '@teambit/html.modules.inject-html-element@0.0.5': + resolution: {integrity: sha512-b9iSQib0A+r2+TAtsmKIaE3x5zjRkGsPB9d2rOTNHnZdstrxdMj3FfGIe4uTNp9pAuDSKx6BXjhb94QxqHXmBg==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 + + '@teambit/legacy-bit-id@1.1.0': + resolution: {integrity: sha512-svFHTgVXh24nK3o1JauMs/z5JFmvduqjEYgX7KupBU7hR5+pbTL9ZYq+tZqUPRoueMaPEsPdjAwmhVYHwZ2nZA==} engines: {node: '>=12.22.0'} - '@teambit/mdx.modules.mdx-compiler@0.0.500': - resolution: {integrity: sha512-a5gcFfpF6HAXmA6h5JaN8slnNkCRY8Qf2lJgOMrLxPU6+1CUZkapQAUIQKdTF8WMx49IG/jIsLkPUbvZNKYlSw==} + '@teambit/legacy-bit-id@1.1.1': + resolution: {integrity: sha512-dVi0qU0cfS9ZziGHwIrRSXPWslo29zmMjoHS9mXLghCOsPYn1gS0cqDW8SnpfUN/YdYgzYl2WabtGZNgYLu2Ng==} engines: {node: '>=12.22.0'} - deprecated: No longer maintained, use teambit.mdx/compilers/mdx-transpiler - peerDependencies: - react: 17.0.2 - '@teambit/mdx.modules.mdx-loader@0.0.509': - resolution: {integrity: sha512-yc/6oG3eArL/BjF+P556rCzn4xviNoT4mAX5EsBqyJ0cZ0EQLBYClc5QHlWjeFRO4chdn5qllGs5ST+wvV01/w==} + '@teambit/legacy-bit-id@1.1.3': + resolution: {integrity: sha512-AqlS/ic91dP3U+Jty+WbLq6Hlzk8ou7HBgnos5OTvZorg/knU8CcE5BWP330/hRgY9WuVRtOtqas/T+xlUaD/g==} engines: {node: '>=12.22.0'} - '@teambit/mdx.ui.docs.link@0.0.497': - resolution: {integrity: sha1-24kqPZGV0Se3S3ghyYTIiazYb4A=} + '@teambit/mdx.compilers.mdx-transpiler@1.0.6': + resolution: {integrity: sha512-JDpQF9PgvLxEN3B0RIFVHAS0jRDTlg704KYZllWkLoezMHlTDW+/9QIIOtls/n37HE7aQzqBiR/03Cfc1r0Amw==} + + '@teambit/mdx.modules.mdx-loader@1.0.15': + resolution: {integrity: sha512-j2TMJxVvnL6L+c5F3mYO65qQMektKu76LbEkFNVVt1+dgrpiP1yhDBQRsAIDST+aP4arUpgYx5Iecfw0/AQ6rQ==} + engines: {node: '>=12.22.0'} + + '@teambit/mdx.ui.docs.link@0.0.505': + resolution: {integrity: sha512-r6R5rjw+d7HZAODxx6zyEOWTVZ1BUjcro6EZBI+a+gVle3KR3kQJa0lnjh7UVPlLNVf05rsc/V2MgBz+SF+luw==} engines: {node: '>=12.22.0'} peerDependencies: + '@testing-library/react': ^12.0.0 react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/mdx.ui.docs.snippet@0.0.499': - resolution: {integrity: sha1-6fWFOxK7E2C2KFa4PNMAQSuSmRA=} + '@teambit/mdx.ui.docs.snippet@0.0.509': + resolution: {integrity: sha512-ZS3V4tlZ8AwCyukZhaXrexakgVPJvLO+ZOBRv3ufHeJtq+RQq+yGe/OmOV6T033c85EbsH+mGOiUFtF84pgjwA==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/mdx.ui.mdx-layout@0.0.510': - resolution: {integrity: sha1-XFZX/GIYo7ydMaWBLLANslOFu6U=} + '@teambit/mdx.ui.mdx-layout@1.0.10': + resolution: {integrity: sha512-dKBTfSNHplpwKBYlMTO0lPEQzTeuv9R6T3nLF7kspDON91LJfMkHDDWpr/e202oZ/iyDHS0lNAcNhFoiYgiIRQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - '@teambit/mdx.ui.mdx-scope-context@0.0.496': - resolution: {integrity: sha1-+ie1660+VhKn+W5o7bhzIYSjNdM=} + '@teambit/mdx.ui.mdx-scope-context@1.0.5': + resolution: {integrity: sha512-5PdFKZPTLspoauN6pd8+uPjORdFWAwK1U/7NPAW//90q/jJFbtvD4NKnAk920qJurwR+B3FDTiLEbPfDtPJY+g==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 + '@teambit/mdx.ui.mdx-scope-context@1.0.7': + resolution: {integrity: sha512-I1Wzrln6aepdLNn0+zu+itDs9wHS+n+zbB1uNI+fSEOGIPPGuQIlUwu0NGPQX0s/TzpykMq/r+aIkVQ79I5cNw==} + engines: {node: '>=12.22.0'} + peerDependencies: + '@types/react': ^18.2.12 + react: ^17.0.0 || ^18.0.0 + '@teambit/node.deps-detectors.detective-es6@0.0.1': resolution: {integrity: sha512-wH9MRqL+zFnTyFIrYr5geTR80E79ecSQGmg2ezBI6wf7+Y0mM6KdRM4MRTFnvTXSDc4DQdC/oX3jdYhNGJTPlA==} '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': resolution: {integrity: sha512-vJrbAt/ci/vPU42f7HsNzYaeub0Okp99oJtAXiA58MwxmeG8oroqP4Z4kxVmAAbbpbI8d3Z4Q6rGBvpfh459CQ==} - '@teambit/node.generator.node-starters@0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894': - resolution: {integrity: sha512-5V1C9zihE43BqDkZZsFPz9d4BVGnwslmiV1MbacWmrCyeKoS/wCPGr/khiAbII2BYNZdiyZlZ4mbB8uefRwB5A==} - - '@teambit/node.generator.node-templates@0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d': - resolution: {integrity: sha512-XmAamGrZXFNHWNNZCKcc6yexpYTNE7ZzNwTC7CY01ubrUj8oC2GkVwBD13rH4R+Ig4uaM3qiTmzW0fD3f5vaCw==} - - '@teambit/node.node@0.0.38': - resolution: {integrity: sha512-Xp+Aim/bnK9V9daMxyg2wPwSwTIsjyGOsO3BmtdmlGurRkPHMaW5wGJohzbHmEFqGO12Nw2U0Y/PG636hBIzLw==} + '@teambit/preview.react-preview@1.0.91': + resolution: {integrity: sha512-EKctiSLhTENd4v/HYhKIWbNkKx50PxM/WCykxnxdm3qYhC7eGmi7M1JoiqOLF82LaI6pB2TdsR6JnKhjk6QRbg==} + peerDependencies: + '@types/react': ^18.2.12 + '@types/react-dom': ^18.2.5 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/preview.react-preview@0.0.35': - resolution: {integrity: sha512-aNJcGOKSFG7s0JeaNtFjldpYnYBo/udeYM4xL7sJdJV15pZSeEwF0Z8bg+US2LaF7LeEybQdp5Vfo7G1Uya9zg==} + '@teambit/preview.react-preview@1.0.93': + resolution: {integrity: sha512-YQZ220sn4L2YZdFXI3fy3YBDQG1+EBScWYzeb8/L7mhi+djuSi5p0lgfd7SX6xAAdau0BL/bUY0Q955qlFVYwQ==} peerDependencies: - react: 18.2.0 + '@types/react': ^18.2.12 + '@types/react-dom': ^18.2.5 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/react.apps.react-app-types@0.0.32': - resolution: {integrity: sha512-tdfsyQZ6j2UzS1ONgB/LyjuEoj5UCUuFOl5+S/7CtIEq22zibJmBnxfr/6ONIzPIxpS91JcjvERxxLZIcnP3ZA==} + '@teambit/react.apps.react-app-types@2.0.15': + resolution: {integrity: sha512-1hKAAxq3lED+nEk5cv4+WRUWPb0qS7IDF+ugPr6K7O6IS4xvoiogQH7iQArTHyiCpggizfV5wSVRETMdyZQ/9Q==} - '@teambit/react.babel.bit-react-transformer@0.0.525': - resolution: {integrity: sha1-Lp+xyzKieJ7xqXjacuRHWOrMoIM=} + '@teambit/react.babel.bit-react-transformer@1.0.34': + resolution: {integrity: sha512-u98RV02GSaFPnvPVS5+GQm5/3eq97C7J+OOBfL6oqA4KxXsrbL3MdNY/zIE2gMA94OUPLnWIY4/FBt4nTGw7MA==} engines: {node: '>=12.22.0'} - '@teambit/react.eslint-config-bit-react@0.0.794': - resolution: {integrity: sha512-ztBWBreeAmFF3tzp6tgvOsTpcuWFurQjZZ213pLf2gtxr0JntUmpoZMUqQ6yAXd/nr1O3pJGNOLI4JJlk/bWvQ==} + '@teambit/react.eslint-config-bit-react@1.0.242': + resolution: {integrity: sha512-m5SQIWBqnP06fwZqZVviUa42c5FWpOphgSyJK/1+tqSkvQ2ownZlGln8QRufhpOBiHPcCEKNuxKaNRHlJRq5qQ==} engines: {node: '>=12.22.0'} peerDependencies: - eslint: '> 7.0.0' + eslint: '> 8.0.0' + + '@teambit/react.generator.react-starters@1.0.9': + resolution: {integrity: sha512-HRCtVo4qi642kuh2Eg89ZnT5lqgmptCLnCeu/refjCwzTYhduHVF+v+Xszm2FzuOogmLSgQ2OVi0WMo8EgfhZQ==} + + '@teambit/react.generator.react-templates@1.0.13': + resolution: {integrity: sha512-U6jchBEwYMmFSTh7MJHiKIz1X+nkcNcJnF9lCsyEsWU9QYmPTl+x0A9fIMh2/69OL+5vrAaF+5lX4LZORJxlpA==} + + '@teambit/react.jest.react-jest@1.0.36': + resolution: {integrity: sha512-arCdauA/T+uc03/TSGlYQ7sp0f/y6MuIdfpqhNF0uemRv2K77EPTIWo2HwKVUsI0RFlFOcRyWw1jFNvYWCK7cA==} + + '@teambit/react.modules.dom-to-react@0.2.0': + resolution: {integrity: sha1-ovU1VeKi095JGMnSfCyc4GCW5xU=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.generator.react-starters@0.0.12': - resolution: {integrity: sha512-nVTNeBzfYzh1ElM6Jk5VAjZwpC8Vzk4EEul6XCtn+tSLzaWpM0rxmSeh02dAz/B0AHB1jsNUQWXJB5QBzYxH9w==} + '@teambit/react.mounter@1.0.47': + resolution: {integrity: sha512-mzUB7JJd/9ILk+qpvrG3kHwdftkv3wBVReXl7v/Y1dCp9oSuUNmQuMwnAskz7r8wvvGscGNSOA2NlVW5UEk3jg==} + peerDependencies: + '@types/react': ^18.2.12 + '@types/react-dom': ^18.2.5 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 - '@teambit/react.generator.react-templates@0.0.10': - resolution: {integrity: sha512-o7e7rXT9UaQa1d02v3pydtncTDMluWBhGa/KHBWrweZ1D395Tep0FWg08A/DPBJu0TmEGbSakI4lbXIbf7y9jw==} + '@teambit/react.mounter@1.0.49': + resolution: {integrity: sha512-pnFG0fpQ5XsaUeiWMpILN1ZOtYd45xCvzoIj34SdXkkoYdGBBtlMZsjvQn6lCWK6RczjzYAkl4DyqeTzvcx9ew==} + peerDependencies: + '@types/react': ^18.2.12 + '@types/react-dom': ^18.2.5 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 - '@teambit/react.jest.react-jest@0.0.6': - resolution: {integrity: sha512-akXvrs4dWvl2hlI8xr2qxuf0t6MlnHW2kN54ZY4LIFVUWKk18mXGjmTy2CQCs6/RZSsIOSi7TYo2I2ZEM9RqbA==} + '@teambit/react.react-env@1.0.131': + resolution: {integrity: sha512-CvSUdpiCICA8SH2JPm2iCAVbGkyzJud0USALcBaFLcEHfDGah3U+3913yhQvDmGzsrP6b112FHkFuzG0gu8jQg==} - '@teambit/react.mounter@0.0.10': - resolution: {integrity: sha512-ARdWzf+L8ryu7GzK7SV2kcIug+isV4S1wWaHV2kLBIC+zspAqUzuNHCWJ4fUsy8furDRoAqf4CXej8wGjBBSGQ==} + '@teambit/react.rendering.ssr@1.0.2': + resolution: {integrity: sha512-enLbLjRJ5H3wicrPhToRq3G5PzsFY0TMewIDoyFySLOcsbiZMAIZ6ljzNFZPFIncMjfE+jkrrK+yLHxVZaMcxw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.react-env@0.0.68': - resolution: {integrity: sha512-j3aMC0PLraM4LUfVJXSogqFcFWbQhaFxttxLBHP9VB4Jyd99nFFkVmLz+zoEbrmDM4vc9w9LUMDtukxaBx1qyg==} + '@teambit/react.ui.component-highlighter@0.2.4': + resolution: {integrity: sha512-PNQjVP0nsNRS/7/cPxmdHxi/ps/027ILshT6KwIdUYrAtyV9MPyvdw8CSM5CDh43u4/HEfFOe5wlchyLGqQM1Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.rendering.ssr@1.0.1': - resolution: {integrity: sha1-Wt4Y5BoIxJgeVaeJ16DRz1aojcc=} + '@teambit/react.ui.docs-app@1.0.24': + resolution: {integrity: sha512-0UWkfXPJbr7KFlaw6SbcQCWQ+OYJsVTF3ZpmBmnoorS9fAEygL1Cp3fk2Iz1lR98F0olKZHyEmJyf9sp7mAo/g==} + engines: {node: '>=12.22.0'} peerDependencies: + '@types/react': ^17.0.0 + '@types/react-dom': ^17.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.docs-app@0.0.200': - resolution: {integrity: sha1-VsWB8twknI6I+t2/RLyUWIYWpao=} + '@teambit/react.ui.docs.apply-providers@0.0.22': + resolution: {integrity: sha512-wKacgUMCheOZZkcWiQrbY0/JRZ7arADh6A9T4HaWkI7qGMrkWeyS9uCGVuYVPafGslueBgQFiADeXrJF1SOdTQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.docs.apply-providers@0.0.9': - resolution: {integrity: sha1-/uucZTxEpts5Vd+RTBmgUdB/ZHg=} + '@teambit/react.ui.docs.compositions-carousel@0.0.27': + resolution: {integrity: sha512-IpqA0RL2RyQGJP0fmGJwYJVoQs2bkXj+NfOGovoRrAd8Jyx4I36TGQn6XGI8jZMr2HAEQZ6RzYaCEU5TyBr59Q==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.docs.compositions-carousel@0.0.12': - resolution: {integrity: sha1-n0rroqYrv8eOj7p4W7/Y9i8FvqU=} + '@teambit/react.ui.docs.docs-content@0.0.32': + resolution: {integrity: sha512-KPcyxX2QdWNUCoFzvmCoOuaaii/lA5tqpH4L6iYO3PYjL6cCn6rINcmPw/EG6SVPPZfpPb4ZZTM6uY/BAcMrZA==} engines: {node: '>=12.22.0'} peerDependencies: + '@types/react': ^17.0.0 + '@types/react-dom': ^17.0.0 react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.docs.docs-content@0.0.11': - resolution: {integrity: sha1-72/vBTx8WnHwjFaJDAroTo1TMm0=} + '@teambit/react.ui.docs.properties-table@0.0.25': + resolution: {integrity: sha512-YSvrh7IrLHzC8EVSj96NuuAYnlY1QSMjuSibQjrxtjL5UIU8sFA4M+FE+IpnODZTpfsrAIH04Q6KJ/HSSEObmA==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.docs.properties-table@0.0.9': - resolution: {integrity: sha1-XmFJKOdmn3TKn0poeelp2/Nv0KA=} + '@teambit/react.ui.error-fallback@0.0.125': + resolution: {integrity: sha512-9jDDRivRavutCePgQZOnZBzT6cluwzTh9rSpIknmIxDoUrjK5Yz33Ck4aP0/q9O+w3Fi4LFmDCV0vVtxQ4Ec/A==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.error-fallback@0.0.118': - resolution: {integrity: sha1-4WqvFqd/1DnRh0cvwg4Nxfyss4Y=} + '@teambit/react.ui.error-fallback@0.0.131': + resolution: {integrity: sha512-weZ1l3VozsZtG7qNvlnoDAvqulbPiChUbWPBVU/htFdjP8lj8E+46EimBT7VfJIZyhEdF+QEsA44VX5tXQPb6w==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.29': - resolution: {integrity: sha1-2KCEkwOu4F8nvFJ4CL+b4Os4d1M=} + '@teambit/react.ui.highlighter-provider@0.0.215': + resolution: {integrity: sha512-ygCkN5rcYnZD1bI7XbWmSC8XKOxxRVv0VeiAlAT2Hv6jwzN3vkhzQoyum5liVFaC9fuzOYZ2juQPA1gRjl08TQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/react.webpack.react-webpack@0.0.28': - resolution: {integrity: sha512-h4UrOwNKxW2o9dAjw3S6kAuJ22GZ1tu/WCJfhTYC3yVlCDN5LaRu5G+pljIFzBG8broyps9dWl2mNUnDtMIGGQ==} + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.21': + resolution: {integrity: sha1-lsiO3ZqBVjilHb7RsycL/pe1mmo=} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 - '@teambit/tests-results@0.0.104': - resolution: {integrity: sha512-JuXh+pXR1O437N2lE9n/C5pIrlune7pRwPjPQ9ZviCV/+EZW3xPjJJX2ehLHkhkL6bNpuSpSyUSb34xkXTlKaw==} + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42': + resolution: {integrity: sha512-aTCsPSGKMOr87IV2BOT4JjGyCyoQqdFlm6VF3W9G6hGeVPRw/NVJnCkomNGU4tn14qtSxack7wPqz1HyTgkmJQ==} engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/react.ui.hover-selector@0.2.0': + resolution: {integrity: sha1-InitpXgCwfQW/Twb8FIsz6VOrDM=} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/react.webpack.react-webpack@1.0.48': + resolution: {integrity: sha512-X5NpkSzuxlgaL16+gF9oBwAcITd63qd4V/uh13h/N4JbVkuEtm1WGj7xXHD7ghZ2HogY/1ExfkPOJeM0UYVI6g==} + peerDependencies: + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@teambit/react.webpack.react-webpack@1.0.49': + resolution: {integrity: sha512-x9Gp3eM3mD/aQj3Y+gyejcAEzFfZUSDZVPOtmcr55zT/1zfXwCODryb4Tjtphkg2eDXo2t6p8BBtct8/ASdX9A==} + peerDependencies: + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/toolbox.fs.hard-link-directory@0.0.15': - resolution: {integrity: sha512-vuA+r0Iwx5seH/cyZ6qK5BhLB7yFT5Wge5BEWwu5LZyDHQnyY31G1qwK6QGJRRqcGJ8aYpRsFA9U2g56Nh1uLQ==} + '@teambit/tests-results@1.0.5': + resolution: {integrity: sha512-GReOOdEMm6v8C4xPUdf0qleC5lBQPFFGyRREhrpqXgMYB55hL4ZaKZTdii69BwAXC57yTBe86VOpyx6leiu2Kg==} engines: {node: '>=12.22.0'} - '@teambit/toolbox.fs.hard-link-directory@0.0.9': - resolution: {integrity: sha1-St+dQX5yyoZajHllbcoy69isL1I=} + '@teambit/toolbox.fs.hard-link-directory@0.0.23': + resolution: {integrity: sha512-7T7aVGcivRjURHY2NRKGxSI9Z84MfugHKE4UYN4rnyIqLSYmXuwlKB/5Mu9GeD6KN6seL8hCI1AvPEhqIPCS7Q==} engines: {node: '>=12.22.0'} - '@teambit/toolbox.network.get-port@0.0.121': - resolution: {integrity: sha1-XuOaoA9egIDH+nPU155/XvGTIV4=} + '@teambit/toolbox.network.get-port@1.0.6': + resolution: {integrity: sha512-aYcXCtwUe3p9a9GQkGrwgZJY8B1XICYRKEj9XCVMx+qj2waWHXO7ZpxVrM2ix7IMFfxVt7+fSOm2kcaEMDHlHQ==} engines: {node: '>=12.22.0'} - '@teambit/typescript.typescript-compiler@0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3': - resolution: {integrity: sha512-FTp8l04srk+IK4k/am6R5gdhh4Vj/jTa4wgntnlu/3EyCdOutvf63EPMPGELkz5+ovmOWOz1MaX9cTmpEIO/gA==} + '@teambit/toolbox.network.get-port@1.0.8': + resolution: {integrity: sha512-Z+Y8n22WGp11S7eiCkS4uMOuRBqMwiPShPg2tqk4lgtlNuStCIwxHbyLDip+jnx/IG6twHqoa/ZdyBQtAoZxuQ==} + engines: {node: '>=12.22.0'} - '@teambit/typescript.typescript-compiler@0.0.9': - resolution: {integrity: sha512-t6JEmy1Tax3WQVvDc5VvltM+275eZsQrraqJKy1yiKwdVRU7xyNWQRX7iNprX7ZjaD8NiRz8fIAnA1VDISV4Rg==} + '@teambit/toolbox.path.path@0.0.6': + resolution: {integrity: sha512-nck5tADjhIZmfWeacV75D/PIco+3m6p4Xd5iQrs9zMX+f90MqTQQz7LaHDBXKQfLiGct1YqYaps985hyC9v0QQ==} - '@teambit/typescript.typescript-compiler@2.0.16': - resolution: {integrity: sha512-o9onBfMpp2w1RMx8pbQ9xAiNAolNY3FKtScwmA7qVsqxWVovS/5hUzdUfQDoatqhJiSmyrhh1HbYnYWQ/Z/5TQ==} + '@teambit/typescript.typescript-compiler@2.0.58': + resolution: {integrity: sha512-LA0RTX58FlbbxFV65yv4Biwd9GCAkhM/OB7JLuPUmhNf0Gj5MRLpKpzt+m/Nax0Ogb2rrCs0QX2V0WbRRFPPlA==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.79': - resolution: {integrity: sha1-YIElSDziq2TTNw3L4u8Qz3LP1MI=} + '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.85': + resolution: {integrity: sha512-EvBsB+Ww5YJz8ELfJdXLQOchFQkKaer4dVr+ASLNM4hsr2d+C8xd7UOtdOcl725Byq1KBkn98hsPfEVSK/vEow==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/ui-foundation.ui.pages.static-error@0.0.86': - resolution: {integrity: sha1-GtGNKpFEb1NweBlDYujUkrg/Ybs=} + '@teambit/ui-foundation.ui.pages.static-error@0.0.106': + resolution: {integrity: sha512-rCtEnmWNDUR6kPmpBHQsXeaZ8UeZjt79pUshB55E5/BoPoP/8fiSNY0wyYJbxLAWF5Cgfk52yVnHsumtGzzf8Q==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -2352,31 +3425,64 @@ packages: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/ui-foundation.ui.rendering.html@0.0.80': - resolution: {integrity: sha1-ORPBHExFttraKEKYRouJ/4sMAiM=} + '@teambit/ui-foundation.ui.rendering.html@0.0.94': + resolution: {integrity: sha512-bb1R6wtKd/+2v+yZLgXXPS/53E4RzCEuYCpV//47Bqrx7a+d7SiFj/twbdFQSlIg7ZBHIwkxs+17tX3IPEYMvQ==} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/ui-foundation.ui.rendering.html@0.0.95': + resolution: {integrity: sha512-gmiGqXXRtA9rA3VES2fH+Gbx1Oxb+owJMsn9HbdJaez7DpvGqfZBUWNpIAAkKsotNdSyn6akeXrsLQpK8Kr7Lg==} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@teambit/ui-foundation.ui.use-box.tab@0.0.115': + resolution: {integrity: sha1-xN+W1U1vCBqIh69sG4yI6FDqLhM=} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 - '@teambit/webpack.modules.generate-style-loaders@0.0.110': - resolution: {integrity: sha1-5/UrCzkUflAvTtIr9rq0sCZyM4g=} + '@teambit/vite.vitest-tester@0.4.4': + resolution: {integrity: sha512-sG5up81JaN+3jmnmmRIBflPXByheiYSAXi6Q205NmfH93eNM4OKEKqdZtV5vWuEbZV04ltbNPaQjYzv4/EkUIg==} + peerDependencies: + '@vitest/coverage-istanbul': 3.2.2 + '@vitest/coverage-v8': ^3.1.3 + vite: ^5.3.5 + vitest: ^3.1.3 + + '@teambit/webpack.modules.config-mutator@0.0.172': + resolution: {integrity: sha512-3DKNJCgpgkFJF6hLGcWHp1RG0NZhdhFsHf1rgU4PGBmp5z2JkPC//0U7OVvMk3NarK5LKlStUoEr3jijJ0BbcA==} + engines: {node: '>=12.22.0'} + + '@teambit/webpack.modules.generate-style-loaders@1.0.13': + resolution: {integrity: sha512-RL89dZ9gu3LDWofpoafU6z3igquJb71I2lrwnKNpA33mCorByslc4UC6mUXhylJL0EEk9krAVKnw9JPTODy4GQ==} engines: {node: '>=12.22.0'} - '@teambit/webpack.modules.style-regexps@0.0.139': - resolution: {integrity: sha1-imtAG5V7pNn9DG/bocygmAT5DYw=} + '@teambit/webpack.modules.style-regexps@1.0.8': + resolution: {integrity: sha512-gVLOZQhkTrZaiOv7uu7DXm/MLYZfVBi6zfEXggaACguyFpzX15u+12BeQPmrAqrDLecY3ALJMt6A9H3Hcl7JRw==} engines: {node: '>=12.22.0'} - '@teambit/webpack.transformers.favicon-reload@0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb': - resolution: {integrity: sha512-l+9OalEqSoIbCYQaZUdRf8G+zUAm9lG18scw8SE49okrq/3p7pZrm/hdKb0846wNTtXrCPWMp8fAGjAVr5uzag==} + '@teambit/webpack.transformers.favicon-reload@1.0.0': + resolution: {integrity: sha512-FPKaTpT0G4/OTciVg0A+RRn7zWiJwFLgymB36vhaIt6URsc0V+7mxpVQOSw2+lXQ5Yp9/sRlRd9MjzEpLoTamw==} + + '@teambit/webpack.webpack-bundler@1.0.16': + resolution: {integrity: sha512-Do4SlqURVS7pLjk+dxO9kWEcctlRjUre6t+kcHQz3WRM+YxbdWfLAU9l2fGsSOY3KcBm2gBLpN9s2D3vQmQFtQ==} - '@teambit/webpack.webpack-bundler@0.0.9': - resolution: {integrity: sha512-BcSMCCw0amUdUi2KKCBp1KO5gmnCJ7hwFAOdWCNvqoCN284UVEya+8FUdLeSbI69X7FtC/VbEUDIhti2gT+avg==} + '@teambit/webpack.webpack-bundler@1.0.17': + resolution: {integrity: sha512-tT8E3HznxpW6xI7DgaqdX2FddxRLtv3LSMMoHkV7D6mIcdL4SWbl/EBKB5H8vfOkK3QDxPENYvTbTiE1YerU5g==} - '@teambit/webpack.webpack-dev-server@0.0.16': - resolution: {integrity: sha512-FdIsREDPJOMcCvW+gcGZxpI9N4GQ67Jirx8nwq13nq7ZI6of5ufocbBQnAJSD/ZmwkKWi4zpLbb8eqG1nsQMHA==} + '@teambit/webpack.webpack-dev-server@1.0.23': + resolution: {integrity: sha512-0wR6o8DgN6nxr/7/I8rv+EUYrzRwdFA9P99nPcas0/BUXg/27IjaDuzjVxTQoazsizcyFGKnvz4oUZHbqBFMEg==} peerDependencies: - webpack: 5.84.1 + webpack: ^5.88.2 + + '@testing-library/dom@10.4.0': + resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} + engines: {node: '>=18'} '@testing-library/dom@8.20.1': resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} @@ -2386,6 +3492,14 @@ packages: resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + '@testing-library/jest-dom@6.4.8': + resolution: {integrity: sha512-JD0G+Zc38f5MBHA4NgxQMR5XtO5Jx9g86jqturNTt2WUfRmLDIY7iKkWHDCCTiDuFMre6nxAD5wHw9W5kI4rGw==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + + '@testing-library/jest-dom@6.5.0': + resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + '@testing-library/react-hooks@8.0.1': resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} engines: {node: '>=12'} @@ -2402,13 +3516,6 @@ packages: react-test-renderer: optional: true - '@testing-library/react@12.1.5': - resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==} - engines: {node: '>=12'} - peerDependencies: - react: <18.0.0 - react-dom: <18.0.0 - '@testing-library/react@13.4.0': resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==} engines: {node: '>=12'} @@ -2416,13 +3523,31 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 + '@testing-library/react@16.3.0': + resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==} + engines: {node: '>=18'} + peerDependencies: + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@tippyjs/react@4.2.0': + resolution: {integrity: sha512-T6UcHtwtGkvgsBQ4bNp8BtXGxa2ujfOkWUogYkRtN4UVJ2QRgDdFoJeaPxdndnVYFEa2uTVxSFxs8QkSkZ2Gdw==} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + '@tootallnate/once@2.0.0': resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} - '@tootallnate/quickjs-emscripten@0.23.0': - resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - '@trysound/sax@0.2.0': resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} @@ -2448,8 +3573,8 @@ packages: '@types/bonjour@3.5.13': resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} - '@types/buble@0.20.5': - resolution: {integrity: sha512-CNpql2WPrZloamMweLkyM42nPsUVa10NDurkhTB5+tGu8SstDd568dothJi7tFSAsbqJK0rSb83W9ZwGt8My/A==} + '@types/chai@5.2.2': + resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} '@types/connect-history-api-fallback@1.5.4': resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} @@ -2457,14 +3582,17 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - '@types/eslint@9.6.1': - resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + '@types/eslint@8.56.0': + resolution: {integrity: sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==} - '@types/estree@0.0.50': - resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} @@ -2478,12 +3606,18 @@ packages: '@types/express@4.17.23': resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==} + '@types/find-root@1.1.4': + resolution: {integrity: sha512-2EXK/+gVhVgtt4JqThbEncORvpYJKzi9tQGmI3EkU2jTgMzQsrPm/hbd5xe5uPdeFzIW5gh2PRvvPjaUsI8vpg==} + '@types/graceful-fs@4.1.9': resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} '@types/hast@2.3.10': resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + '@types/html-minifier-terser@5.1.2': + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} + '@types/html-minifier-terser@6.1.0': resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} @@ -2502,18 +3636,12 @@ packages: '@types/istanbul-reports@3.0.4': resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - '@types/jest@26.0.24': - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} - '@types/jest@29.5.14': resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - '@types/jsdom@21.1.7': - resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -2529,11 +3657,8 @@ packages: '@types/node-forge@1.3.13': resolution: {integrity: sha512-zePQJSW5QkwSHKRApqWCVKeKoSOt4xvEnLENZPjyvm9Ezdf/EyDeJM7jqLzOwjVICQQzvLZ63T55MKdJB5H6ww==} - '@types/node@12.20.4': - resolution: {integrity: sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==} - - '@types/node@16.18.126': - resolution: {integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==} + '@types/node@20.12.10': + resolution: {integrity: sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw==} '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -2550,27 +3675,27 @@ packages: '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@17.0.26': - resolution: {integrity: sha512-Z+2VcYXJwOqQ79HreLU/1fyQ88eXSSFh6I3JdrEHQIfYSI0kCQpTGvOrbE6jFGGYXKsHuwY9tBa/w5Uo6KzrEg==} - peerDependencies: - '@types/react': ^17.0.0 - '@types/react-dom@18.3.7': resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} peerDependencies: '@types/react': ^18.0.0 - '@types/react@17.0.87': - resolution: {integrity: sha512-wpg9AbtJ6agjA+BKYmhG6dRWEU/2DHYwMzCaBzsz137ft6IyuqZ5fI4ic1DWL4DrI03Zy78IyVE6ucrXl0mu4g==} + '@types/react-dom@19.0.2': + resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} + peerDependencies: + '@types/react': ^19.0.0 '@types/react@18.3.23': resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==} + '@types/react@19.0.2': + resolution: {integrity: sha512-USU8ZI/xyKJwFTpjSVIrSeHBVAGagkHQKPNbxeWwql/vDmnTIBgx+TJnhFnj1NXgz8XfprU0egV2dROLGpsBEg==} + '@types/retry@0.12.0': resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - '@types/scheduler@0.16.8': - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + '@types/semver@7.7.0': + resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} '@types/send@0.17.5': resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==} @@ -2587,8 +3712,8 @@ packages: '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - '@types/testing-library__jest-dom@5.9.5': - resolution: {integrity: sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==} + '@types/testing-library__jest-dom@5.14.9': + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} '@types/tough-cookie@4.0.5': resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} @@ -2602,68 +3727,44 @@ packages: '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@types/yargs@15.0.19': - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - - '@typescript-eslint/eslint-plugin@4.13.0': - resolution: {integrity: sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/eslint-plugin@6.19.1': + resolution: {integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/eslint-plugin@4.29.3': - resolution: {integrity: sha512-tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/eslint-plugin@7.1.0': + resolution: {integrity: sha512-j6vT/kCulhG5wBmGtstKeiVr1rdXE4nk+DT1k6trYkwlrvW9eOF5ZbgKnd/YR6PcM4uTEXa0h6Fcvf6X7Dxl0w==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/eslint-plugin@5.35.1': - resolution: {integrity: sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/eslint-plugin@7.18.0': + resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/experimental-utils@4.13.0': - resolution: {integrity: sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - - '@typescript-eslint/experimental-utils@4.29.3': - resolution: {integrity: sha512-ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - - '@typescript-eslint/experimental-utils@4.33.0': - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - - '@typescript-eslint/parser@4.13.0': - resolution: {integrity: sha512-KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg==} + '@typescript-eslint/parser@4.4.1': + 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 @@ -2672,78 +3773,98 @@ packages: typescript: optional: true - '@typescript-eslint/parser@4.4.1': - resolution: {integrity: sha512-S0fuX5lDku28Au9REYUsV+hdJpW/rNW0gWlc4SXzF/kdrRaAVX9YCxKpziH7djeWT/HFAjLZcnY7NJD8xTeUEg==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/parser@6.19.1': + resolution: {integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/parser@5.35.1': - resolution: {integrity: sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/parser@7.1.0': + resolution: {integrity: sha512-V1EknKUubZ1gWFjiOZhDSNToOjs63/9O0puCgGS8aDOgpZY326fzFu15QAUjwaXzRZjf/qdsdBrckYdv9YxB8w==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/scope-manager@4.13.0': - resolution: {integrity: sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/scope-manager@4.29.3': - resolution: {integrity: sha512-x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/scope-manager@4.33.0': - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - '@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} - '@typescript-eslint/scope-manager@5.35.1': - resolution: {integrity: sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==} + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/type-utils@5.35.1': - resolution: {integrity: sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/scope-manager@6.19.1': + resolution: {integrity: sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/scope-manager@7.1.0': + resolution: {integrity: sha512-6TmN4OJiohHfoOdGZ3huuLhpiUgOGTpgXNUPJgeZOZR3DnIpdSgtt83RS35OYNNXxM4TScVlpVKC9jyQSETR1A==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/scope-manager@7.18.0': + resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/type-utils@6.19.1': + resolution: {integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - eslint: '*' + eslint: ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/types@4.13.0': - resolution: {integrity: sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/types@4.29.3': - resolution: {integrity: sha512-s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/type-utils@7.1.0': + resolution: {integrity: sha512-UZIhv8G+5b5skkcuhgvxYWHjk7FW7/JP5lPASMEUoliAPwIH/rxoUSQPia2cuOj9AmDZmwUl1usKm85t5VUMew==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true - '@typescript-eslint/types@4.33.0': - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/type-utils@7.18.0': + resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true '@typescript-eslint/types@4.4.1': resolution: {integrity: sha512-KNDfH2bCyax5db+KKIZT4rfA8rEk5N0EJ8P0T5AJjo5xrV26UAzaiqoJCxeaibqc0c/IvZxp7v2g3difn2Pn3w==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - '@typescript-eslint/types@5.35.1': - resolution: {integrity: sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==} + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/typescript-estree@4.13.0': - resolution: {integrity: sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg==} + '@typescript-eslint/types@6.19.1': + resolution: {integrity: sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/types@7.1.0': + resolution: {integrity: sha512-qTWjWieJ1tRJkxgZYXx6WUYtWlBc48YRxgY2JN1aGeVpkhmnopq+SUC8UEVGNXIvWH7XyuTjwALfG6bFEgCkQA==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/types@7.18.0': + resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@typescript-eslint/typescript-estree@4.4.1': + resolution: {integrity: sha512-wP/V7ScKzgSdtcY1a0pZYBoCxrCstLrgRQ2O9MmCUZDtmgxCO/TCqOTGRVwpP4/2hVfqMz/Vw1ZYrG8cVxvN3g==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: typescript: '*' @@ -2751,160 +3872,200 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@4.29.3': - resolution: {integrity: sha512-45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/typescript-estree@5.62.0': + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@4.33.0': - resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/typescript-estree@6.19.1': + resolution: {integrity: sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@4.4.1': - resolution: {integrity: sha512-wP/V7ScKzgSdtcY1a0pZYBoCxrCstLrgRQ2O9MmCUZDtmgxCO/TCqOTGRVwpP4/2hVfqMz/Vw1ZYrG8cVxvN3g==} - engines: {node: ^10.12.0 || >=12.0.0} + '@typescript-eslint/typescript-estree@7.1.0': + resolution: {integrity: sha512-k7MyrbD6E463CBbSpcOnwa8oXRdHzH1WiVzOipK3L5KSML92ZKgUBrTlehdi7PEIMT8k0bQixHUGXggPAlKnOQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@5.35.1': - resolution: {integrity: sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/typescript-estree@7.18.0': + resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/utils@5.35.1': - resolution: {integrity: sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==} + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@typescript-eslint/visitor-keys@4.13.0': - resolution: {integrity: sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/utils@6.19.1': + resolution: {integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/visitor-keys@4.29.3': - resolution: {integrity: sha512-MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/utils@7.1.0': + resolution: {integrity: sha512-WUFba6PZC5OCGEmbweGpnNJytJiLG7ZvDBJJoUcX4qZYf1mGZ97mO2Mps6O2efxJcJdRNpqweCistDbZMwIVHw==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^8.56.0 - '@typescript-eslint/visitor-keys@4.33.0': - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/utils@7.18.0': + resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 '@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} - '@typescript-eslint/visitor-keys@5.35.1': - resolution: {integrity: sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==} + '@typescript-eslint/visitor-keys@5.62.0': + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@webassemblyjs/ast@1.11.1': - resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} + '@typescript-eslint/visitor-keys@6.19.1': + resolution: {integrity: sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/visitor-keys@7.1.0': + resolution: {integrity: sha512-FhUqNWluiGNzlvnDZiXad4mZRhtghdoKW6e98GoEOYSu5cND+E39rG5KwJMUzeENwm1ztYBRqof8wMLP+wNPIA==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/visitor-keys@7.18.0': + resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} + engines: {node: ^18.18.0 || >=20.0.0} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + '@vitejs/plugin-react@4.6.0': + resolution: {integrity: sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + + '@vitest/coverage-istanbul@3.2.4': + resolution: {integrity: sha512-IDlpuFJiWU9rhcKLkpzj8mFu/lpe64gVgnV15ZOrYx1iFzxxrxCzbExiUEKtwwXRvEiEMUS6iZeYgnMxgbqbxQ==} + peerDependencies: + vitest: 3.2.4 + + '@vitest/coverage-v8@2.1.9': + resolution: {integrity: sha512-Z2cOr0ksM00MpEfyVE8KXIYPEcBFxdbLSs56L8PO0QQMxt/6bDj45uQfxoc96v05KW3clk7vvgP0qfDit9DmfQ==} + peerDependencies: + '@vitest/browser': 2.1.9 + vitest: 2.1.9 + peerDependenciesMeta: + '@vitest/browser': + optional: true + + '@vitest/expect@1.3.1': + resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==} + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/runner@1.3.1': + resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/snapshot@1.3.1': + resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + + '@vitest/spy@1.3.1': + resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/utils@1.3.1': + resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} '@webassemblyjs/ast@1.14.1': resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} - '@webassemblyjs/floating-point-hex-parser@1.11.1': - resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - '@webassemblyjs/floating-point-hex-parser@1.13.2': resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} - '@webassemblyjs/helper-api-error@1.11.1': - resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - '@webassemblyjs/helper-api-error@1.13.2': resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} - '@webassemblyjs/helper-buffer@1.11.1': - resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - '@webassemblyjs/helper-buffer@1.14.1': resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} - '@webassemblyjs/helper-numbers@1.11.1': - resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} - '@webassemblyjs/helper-numbers@1.13.2': resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} - '@webassemblyjs/helper-wasm-bytecode@1.11.1': - resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - '@webassemblyjs/helper-wasm-bytecode@1.13.2': resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} - '@webassemblyjs/helper-wasm-section@1.11.1': - resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} - '@webassemblyjs/helper-wasm-section@1.14.1': resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} - '@webassemblyjs/ieee754@1.11.1': - resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} - '@webassemblyjs/ieee754@1.13.2': resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} - '@webassemblyjs/leb128@1.11.1': - resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} - '@webassemblyjs/leb128@1.13.2': resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} - '@webassemblyjs/utf8@1.11.1': - resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} - '@webassemblyjs/utf8@1.13.2': resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} - '@webassemblyjs/wasm-edit@1.11.1': - resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} - '@webassemblyjs/wasm-edit@1.14.1': resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} - '@webassemblyjs/wasm-gen@1.11.1': - resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} - '@webassemblyjs/wasm-gen@1.14.1': resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} - '@webassemblyjs/wasm-opt@1.11.1': - resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} - '@webassemblyjs/wasm-opt@1.14.1': resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} - '@webassemblyjs/wasm-parser@1.11.1': - resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} - '@webassemblyjs/wasm-parser@1.14.1': resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} - '@webassemblyjs/wast-printer@1.11.1': - resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} - '@webassemblyjs/wast-printer@1.14.1': resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} - '@wry/context@0.6.1': - resolution: {integrity: sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==} + '@wry/caches@1.0.1': + resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==} engines: {node: '>=8'} '@wry/context@0.7.4': @@ -2915,8 +4076,8 @@ packages: resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==} engines: {node: '>=8'} - '@wry/trie@0.3.2': - resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==} + '@wry/trie@0.5.0': + resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==} engines: {node: '>=8'} '@xtuc/ieee754@1.2.0': @@ -2940,11 +4101,11 @@ packages: acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - deprecated: package has been renamed to acorn-import-attributes + acorn-import-phases@1.0.4: + resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} + engines: {node: '>=10.13.0'} peerDependencies: - acorn: ^8 + acorn: ^8.14.0 acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -2955,16 +4116,6 @@ packages: resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} engines: {node: '>=0.4.0'} - acorn@5.7.4: - resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.15.0: resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} engines: {node: '>=0.4.0'} @@ -3010,14 +4161,6 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - amdefine@1.0.1: - resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} - engines: {node: '>=0.4.2'} - - ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -3027,10 +4170,23 @@ packages: engines: {'0': node >= 0.8.0} hasBin: true + ansi-html@0.0.9: + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -3043,6 +4199,13 @@ packages: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} @@ -3057,13 +4220,12 @@ packages: resolution: {integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==} engines: {node: '>= 6.0.0'} - aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} - aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.2: resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} engines: {node: '>= 0.4'} @@ -3086,6 +4248,10 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + array.prototype.flat@1.3.3: resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} engines: {node: '>= 0.4'} @@ -3094,6 +4260,10 @@ packages: resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} engines: {node: '>= 0.4'} + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.4: resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} engines: {node: '>= 0.4'} @@ -3107,28 +4277,20 @@ packages: assert@2.0.0: resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==} - ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - - ast-types@0.13.4: - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} - engines: {node: '>=4'} + assertion-error@1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - ast-types@0.9.6: - resolution: {integrity: sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==} - engines: {node: '>= 0.8'} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} async-function@1.0.0: resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} engines: {node: '>= 0.4'} - async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -3147,15 +4309,13 @@ packages: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} - axe-core@4.10.3: - resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==} + axe-core@4.7.0: + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} engines: {node: '>=4'} - axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} - - b4a@1.6.7: - resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} + axobject-query@3.2.4: + resolution: {integrity: sha512-aPTElBrbifBU1krmZxGZOlBkslORe7Ll7+BDnI50Wy4LgOt69luMgevkDfTq1O/ZgprooPCtWpjCwKSZw/iZ4A==} + engines: {node: '>= 0.4'} babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} @@ -3170,14 +4330,29 @@ packages: '@babel/core': ^7.12.0 webpack: '>=5' + babel-loader@9.1.2: + resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + babel-plugin-apply-mdx-type-prop@1.6.21: resolution: {integrity: sha512-+vQarmm+g+kePH4CMp2iEN/HOx1oEvZeSKCdKCEZlnJOthXzkpaRAbM3ZNCiKqVr9WuoqPNfoXQ0EVppYpIwfg==} peerDependencies: '@babel/core': ^7.11.6 + babel-plugin-apply-mdx-type-prop@1.6.22: + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 + babel-plugin-extract-import-names@1.6.21: resolution: {integrity: sha512-mCjTry00HB/4xHGunxQNMOGZ7JEGJdEScNh7C1WJBto7nePyn9wCdYAZP61pGC6+z3ETH5btY20mqg0plcxZGA==} + babel-plugin-extract-import-names@1.6.22: + resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} @@ -3186,15 +4361,6 @@ packages: resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} - - babel-plugin-polyfill-corejs2@0.3.3: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - babel-plugin-polyfill-corejs2@0.4.14: resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==} peerDependencies: @@ -3205,24 +4371,21 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.6.0: - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + babel-plugin-polyfill-corejs3@0.8.7: + resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.4.1: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + babel-plugin-polyfill-regenerator@0.5.5: + resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-regenerator@0.6.5: resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} - babel-plugin-transform-typescript-metadata@0.3.2: resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: @@ -3249,58 +4412,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - babel-preset-react-app@10.0.1: - resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} - - backo2@1.0.2: - resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} - bail@1.0.5: resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - bare-events@2.6.0: - resolution: {integrity: sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg==} - - bare-fs@4.1.6: - resolution: {integrity: sha512-25RsLF33BqooOEFNdMcEhMpJy8EoR88zSMrnOQOaM3USnOK2VmaJ1uaQEwPA6AQjrv1lXChScosN6CzbwbO9OQ==} - engines: {bare: '>=1.16.0'} - peerDependencies: - bare-buffer: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - - bare-os@3.6.1: - resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} - engines: {bare: '>=1.14.0'} - - bare-path@3.0.0: - resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} - - bare-stream@2.6.5: - resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==} - peerDependencies: - bare-buffer: '*' - bare-events: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - bare-events: - optional: true - - base62@1.2.8: - resolution: {integrity: sha512-V6YHUbjLxN1ymqNLb1DPHoU1CpfdL7d2YTIp5W3U4hhoG4hhxNmsFDs66M9EXxBiSEke5Bt5dwdfMwwZF70iLA==} - base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - basic-ftp@5.0.5: - resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} - engines: {node: '>=10.0.0'} - batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} @@ -3321,14 +4441,6 @@ packages: bn.js@5.2.2: resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} - body-parser@1.20.0: - resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - body-parser@1.20.3: resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -3377,6 +4489,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.23.0: + resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + browserslist@4.25.1: resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -3385,13 +4502,6 @@ packages: bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - buble@0.19.6: - resolution: {integrity: sha512-9kViM6nJA1Q548Jrd06x0geh+BG2ru2+RMDkIHHgJY/8AcyCs34lTHwra9BX7YdPrZXd5aarkpr/SY8bmPgPdg==} - hasBin: true - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -3408,6 +4518,10 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + call-bind-apply-helpers@1.0.2: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} engines: {node: '>= 0.4'} @@ -3456,6 +4570,14 @@ packages: ccount@1.1.0: resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + chai@4.5.0: + resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} + engines: {node: '>=4'} + + chai@5.2.1: + resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==} + engines: {node: '>=18'} + chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -3484,19 +4606,25 @@ packages: character-reference-invalid@1.1.4: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + check-error@1.0.3: + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + chrome-trace-event@1.0.4: resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} engines: {node: '>=6.0'} - chromium-bidi@7.1.0: - resolution: {integrity: sha512-UVYuuZfwi7AIiV+OWIRePZD6kX1bSNxoWjEsYG+Xkb97hzQIt9qnV662I5A6BAcdKO4bcZQVrkK/VhNHzFjNDg==} - peerDependencies: - devtools-protocol: '*' - ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} @@ -3514,6 +4642,13 @@ packages: classnames@2.3.1: resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} + clean-css@5.3.3: resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} engines: {node: '>= 10.0'} @@ -3568,6 +4703,10 @@ packages: commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} @@ -3580,30 +4719,20 @@ packages: resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==} engines: {node: '>= 6'} - common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + comment-json@4.2.5: + resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==} + engines: {node: '>= 6'} commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - commoner@0.10.8: - resolution: {integrity: sha512-3/qHkNMM6o/KGXHITA14y78PcfmXh4+AOCJpSoF73h4VY1JpdGv3CHMS5+JW6SwLhfJt4RhNmLAa7+RRX/62EQ==} - engines: {node: '>= 0.8'} - hasBin: true - - component-props@1.1.1: - resolution: {integrity: sha512-69pIRJs9fCCHRqCz3390YF2LV1Lu6iEMZ5zuVqqUn+G20V9BNXlMs0cWawWeW9g4Ynmg29JmkG6R7/lUJoGd1Q==} - - component-xor@0.0.4: - resolution: {integrity: sha512-ZIt6sla8gfo+AFVRZoZOertcnD5LJaY2T9CKE2j13NJxQt/mUafD69Bl7/Y4AnpI2LGjiXH7cOfJDx/n2G9edA==} - compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} - compression-webpack-plugin@10.0.0: - resolution: {integrity: sha512-wLXLIBwpul/ALcm7Aj+69X0pYT3BYt6DdPn3qrgBIh9YejV9Bju9ShhlAsjujLyWMo6SAweFIWaUoFmXZNuNrg==} - engines: {node: '>= 14.15.0'} + compression-webpack-plugin@11.1.0: + resolution: {integrity: sha512-zDOQYp10+upzLxW+VRSjEpRRwBXJdsb5lBMlRxx1g8hckIFBpe3DTI0en2w7h+beuq89576RVzfiXrkdPGrHhA==} + engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.1.0 @@ -3614,6 +4743,9 @@ packages: concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + confbox@0.1.8: + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} @@ -3624,10 +4756,6 @@ packages: constants-browserify@1.0.0: resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - contains-path@0.1.0: - resolution: {integrity: sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==} - engines: {node: '>=0.10.0'} - content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -3645,10 +4773,6 @@ packages: cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} - cookie@0.7.1: resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} engines: {node: '>= 0.6'} @@ -3665,10 +4789,6 @@ packages: core-js-pure@3.44.0: resolution: {integrity: sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==} - core-js@1.2.7: - resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - core-js@3.44.0: resolution: {integrity: sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==} @@ -3683,8 +4803,8 @@ packages: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} - cosmiconfig@9.0.0: - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -3726,9 +4846,9 @@ packages: peerDependencies: postcss: ^8.4 - css-declaration-sorter@6.4.1: - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} + css-declaration-sorter@7.2.0: + resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.0.9 @@ -3751,18 +4871,55 @@ packages: peerDependencies: webpack: ^5.0.0 - css-minimizer-webpack-plugin@3.0.2: - resolution: {integrity: sha512-B3I5e17RwvKPJwsxjjWcdgpU/zqylzK1bPVghcmpFHRL48DXiBgrtqz1BJsn68+t/zzaLp9kYAaEDvQ7GyanFQ==} - engines: {node: '>= 12.13.0'} + css-minimizer-webpack-plugin@5.0.1: + resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + lightningcss: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@parcel/css': + optional: true + '@swc/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + lightningcss: + optional: true + + css-minimizer-webpack-plugin@6.0.0: + resolution: {integrity: sha512-BLpR9CCDkKvhO3i0oZQgad6v9pCxUuhSc5RT6iUEy9M8hBXi4TJb5vqF2GQ2deqYHmRi3O6IR9hgAZQWg0EBwA==} + engines: {node: '>= 18.12.0'} peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' clean-css: '*' csso: '*' + esbuild: '*' + lightningcss: '*' webpack: ^5.0.0 peerDependenciesMeta: + '@parcel/css': + optional: true + '@swc/css': + optional: true clean-css: optional: true csso: optional: true + esbuild: + optional: true + lightningcss: + optional: true css-prefers-color-scheme@6.0.3: resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} @@ -3774,9 +4931,16 @@ packages: css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} css-what@6.2.2: resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} @@ -3793,27 +4957,27 @@ packages: engines: {node: '>=4'} hasBin: true - cssnano-preset-default@5.2.14: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} + cssnano-preset-default@6.1.2: + resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - cssnano-utils@3.1.0: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} + cssnano-utils@4.0.2: + resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - cssnano@5.1.15: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} + cssnano@6.1.2: + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} @@ -3839,10 +5003,6 @@ packages: damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - data-uri-to-buffer@6.0.2: - resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} - engines: {node: '>= 14'} - data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} @@ -3863,9 +5023,9 @@ packages: resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} engines: {node: '>= 0.4'} - date-format@0.0.2: - resolution: {integrity: sha512-M4obuJx8jU5T91lcbwi0+QPNVaWOY1DQYz5xUuKYWO93osVzB2ZPqyDUc5T+mDjbA1X8VOb4JDZ+8r2MrSOp7Q==} - deprecated: 0.x is no longer supported. Please upgrade to 4.x or higher. + date-format@4.0.3: + resolution: {integrity: sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==} + engines: {node: '>=4.0'} dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} @@ -3906,6 +5066,13 @@ packages: decimal.js@10.6.0: resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dedent@1.6.0: resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==} peerDependencies: @@ -3914,6 +5081,14 @@ packages: babel-plugin-macros: optional: true + deep-eql@4.1.4: + resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} + engines: {node: '>=6'} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + deep-equal@2.2.3: resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} engines: {node: '>= 0.4'} @@ -3941,13 +5116,6 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} - defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} - - degenerator@5.0.1: - resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} - engines: {node: '>= 14'} - delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} @@ -3974,6 +5142,18 @@ packages: detab@2.0.3: resolution: {integrity: sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A==} + detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} @@ -3986,16 +5166,6 @@ packages: engines: {node: '>= 4.2.1'} hasBin: true - detective@4.7.1: - resolution: {integrity: sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==} - - devtools-protocol@0.0.1464554: - resolution: {integrity: sha512-CAoP3lYfwAGQTaAXYvA6JZR0fjGUb7qec1qf4mToyoH2TZgUFeIqYcjh6f9jNuhHfuZiEdH+PONHYrLhRQX6aw==} - - diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - diff-sequences@29.6.3: resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4011,10 +5181,6 @@ packages: resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} engines: {node: '>=6'} - doctrine@1.5.0: - resolution: {integrity: sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==} - engines: {node: '>=0.10.0'} - doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} @@ -4026,15 +5192,18 @@ packages: dom-accessibility-api@0.5.16: resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + dom-converter@0.2.0: resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} - dom-iterator@1.0.2: - resolution: {integrity: sha512-BMelEjhy08OpoWF3v/jrPtx7PZCyP1VM9yiB7rJk19UVmt7zTN5rqoC0Jea+EyT0M6v/VokL0LxIlGLUOBJZ2g==} - dom-serializer@1.4.1: resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + domain-browser@4.19.0: resolution: {integrity: sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==} engines: {node: '>=10'} @@ -4051,9 +5220,16 @@ packages: resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} engines: {node: '>= 4'} + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} @@ -4064,6 +5240,9 @@ packages: duplexer@0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -4102,10 +5281,6 @@ packages: resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} engines: {node: '>=10.13.0'} - enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} - entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} @@ -4117,14 +5292,6 @@ packages: resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} engines: {node: '>=0.12'} - env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - - envify@3.4.1: - resolution: {integrity: sha512-XLiBFsLtNF0MOZl+vWU59yPb3C2JtrQY2CNJn22KH75zPlHWY5ChcAQuf4knJeWT/lLkrx3sqvhP/J349bt4Bw==} - hasBin: true - errno@0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true @@ -4150,8 +5317,9 @@ packages: es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - es-module-lexer@0.7.1: - resolution: {integrity: sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==} + es-iterator-helpers@1.2.1: + resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} + engines: {node: '>= 0.4'} es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} @@ -4189,128 +5357,133 @@ packages: es6-weak-map@2.0.3: resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} - esbuild-android-64@0.14.28: - resolution: {integrity: sha512-A52C3zq+9tNwCqZ+4kVLBxnk/WnrYM8P2+QNvNE9B6d2OVPs214lp3g6UyO+dKDhUdefhfPCuwkP8j2A/+szNA==} + esbuild-android-64@0.14.29: + resolution: {integrity: sha512-tJuaN33SVZyiHxRaVTo1pwW+rn3qetJX/SRuc/83rrKYtyZG0XfsQ1ao1nEudIt9w37ZSNXR236xEfm2C43sbw==} engines: {node: '>=12'} cpu: [x64] os: [android] - esbuild-android-arm64@0.14.28: - resolution: {integrity: sha512-sm0fDEGElZhMC3HLZeECI2juE4aG7uPfMBMqNUhy9CeX399Pz8rC6e78OXMXInGjSdEAwQmCOHmfsP7uv3Q8rA==} + esbuild-android-arm64@0.14.29: + resolution: {integrity: sha512-D74dCv6yYnMTlofVy1JKiLM5JdVSQd60/rQfJSDP9qvRAI0laPXIG/IXY1RG6jobmFMUfL38PbFnCqyI/6fPXg==} engines: {node: '>=12'} cpu: [arm64] os: [android] - esbuild-darwin-64@0.14.28: - resolution: {integrity: sha512-nzDd7mQ44FvsFHtOafZdBgn3Li5SMsnMnoz1J2MM37xJmR3wGNTFph88KypjHgWqwbxCI7MXS1U+sN4qDeeW6Q==} + esbuild-darwin-64@0.14.29: + resolution: {integrity: sha512-+CJaRvfTkzs9t+CjGa0Oa28WoXa7EeLutQhxus+fFcu0MHhsBhlmeWHac3Cc/Sf/xPi1b2ccDFfzGYJCfV0RrA==} engines: {node: '>=12'} cpu: [x64] os: [darwin] - esbuild-darwin-arm64@0.14.28: - resolution: {integrity: sha512-XEq/bLR/glsUl+uGrBimQzOVs/CmwI833fXUhP9xrLI3IJ+rKyrZ5IA8u+1crOEf1LoTn8tV+hInmX6rGjbScw==} + esbuild-darwin-arm64@0.14.29: + resolution: {integrity: sha512-5Wgz/+zK+8X2ZW7vIbwoZ613Vfr4A8HmIs1XdzRmdC1kG0n5EG5fvKk/jUxhNlrYPx1gSY7XadQ3l4xAManPSw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] - esbuild-freebsd-64@0.14.28: - resolution: {integrity: sha512-rTKLgUj/HEcPeE5XZ7IZwWpFx7IWMfprN7QRk/TUJE1s1Ipb58esboIesUpjirJz/BwrgHq+FDG9ChAI8dZAtQ==} + esbuild-freebsd-64@0.14.29: + resolution: {integrity: sha512-VTfS7Bm9QA12JK1YXF8+WyYOfvD7WMpbArtDj6bGJ5Sy5xp01c/q70Arkn596aGcGj0TvQRplaaCIrfBG1Wdtg==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] - esbuild-freebsd-arm64@0.14.28: - resolution: {integrity: sha512-sBffxD1UMOsB7aWMoExmipycjcy3HJGwmqE4GQZUTZvdiH4GhjgUiVdtPyt7kSCdL40JqnWQJ4b1l8Y51oCF4Q==} + esbuild-freebsd-arm64@0.14.29: + resolution: {integrity: sha512-WP5L4ejwLWWvd3Fo2J5mlXvG3zQHaw5N1KxFGnUc4+2ZFZknP0ST63i0IQhpJLgEJwnQpXv2uZlU1iWZjFqEIg==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - esbuild-linux-32@0.14.28: - resolution: {integrity: sha512-+Wxidh3fBEQ9kHcCsD4etlBTMb1n6QY2uXv3rFhVn88CY/JP782MhA57/ipLMY4kOLeSKEuFGN4rtjHuhmRMig==} + esbuild-linux-32@0.14.29: + resolution: {integrity: sha512-4myeOvFmQBWdI2U1dEBe2DCSpaZyjdQtmjUY11Zu2eQg4ynqLb8Y5mNjNU9UN063aVsCYYfbs8jbken/PjyidA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] - esbuild-linux-64@0.14.28: - resolution: {integrity: sha512-7+xgsC4LvR6cnzaBdiljNnPDjbkwzahogN+S9uy9AoYw7ZjPnnXc6sjQAVCbqGb7MEgrWdpa6u/Tao79i4lWxg==} + esbuild-linux-64@0.14.29: + resolution: {integrity: sha512-iaEuLhssReAKE7HMwxwFJFn7D/EXEs43fFy5CJeA4DGmU6JHh0qVJD2p/UP46DvUXLRKXsXw0i+kv5TdJ1w5pg==} engines: {node: '>=12'} cpu: [x64] os: [linux] - esbuild-linux-arm64@0.14.28: - resolution: {integrity: sha512-EjRHgwg+kgXABzyoPGPOPg4d5wZqRnZ/ZAxBDzLY+i6DS8OUfTSlZHWIOZzU4XF7125WxRBg9ULbrFJBl+57Eg==} + esbuild-linux-arm64@0.14.29: + resolution: {integrity: sha512-KYf7s8wDfUy+kjKymW3twyGT14OABjGHRkm9gPJ0z4BuvqljfOOUbq9qT3JYFnZJHOgkr29atT//hcdD0Pi7Mw==} engines: {node: '>=12'} cpu: [arm64] os: [linux] - esbuild-linux-arm@0.14.28: - resolution: {integrity: sha512-L5isjmlLbh9E0WVllXiVETbScgMbth/+XkXQii1WwgO1RvLIfaGrVFz8d2n6EH/ImtgYxPYGx+OcvIKQBc91Rg==} + esbuild-linux-arm@0.14.29: + resolution: {integrity: sha512-OXa9D9QL1hwrAnYYAHt/cXAuSCmoSqYfTW/0CEY0LgJNyTxJKtqc5mlwjAZAvgyjmha0auS/sQ0bXfGf2wAokQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] - esbuild-linux-mips64le@0.14.28: - resolution: {integrity: sha512-krx9SSg7yfiUKk64EmjefOyiEF6nv2bRE4um/LiTaQ6Y/6FP4UF3/Ou/AxZVyR154uSRq63xejcAsmswXAYRsw==} + esbuild-linux-mips64le@0.14.29: + resolution: {integrity: sha512-05jPtWQMsZ1aMGfHOvnR5KrTvigPbU35BtuItSSWLI2sJu5VrM8Pr9Owym4wPvA4153DFcOJ1EPN/2ujcDt54g==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] - esbuild-linux-ppc64le@0.14.28: - resolution: {integrity: sha512-LD0Xxu9g+DNuhsEBV5QuVZ4uKVBMup0xPIruLweuAf9/mHXFnaCuNXUBF5t0DxKl7GQ5MSioKtnb92oMo+QXEw==} + esbuild-linux-ppc64le@0.14.29: + resolution: {integrity: sha512-FYhBqn4Ir9xG+f6B5VIQVbRuM4S6qwy29dDNYFPoxLRnwTEKToIYIUESN1qHyUmIbfO0YB4phG2JDV2JDN9Kgw==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] - esbuild-linux-riscv64@0.14.28: - resolution: {integrity: sha512-L/DWfRh2P0vxq4Y+qieSNXKGdMg+e9Qe8jkbN2/8XSGYDTPzO2OcAxSujob4qIh7iSl+cknbXV+BvH0YFR0jbg==} + esbuild-linux-riscv64@0.14.29: + resolution: {integrity: sha512-eqZMqPehkb4nZcffnuOpXJQdGURGd6GXQ4ZsDHSWyIUaA+V4FpMBe+5zMPtXRD2N4BtyzVvnBko6K8IWWr36ew==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] - esbuild-linux-s390x@0.14.28: - resolution: {integrity: sha512-rrgxmsbmL8QQknWGnAL9bGJRQYLOi2AzXy5OTwfhxnj9eqjo5mSVbJXjgiq5LPUAMQZGdPH5yaNK0obAXS81Zw==} + esbuild-linux-s390x@0.14.29: + resolution: {integrity: sha512-o7EYajF1rC/4ho7kpSG3gENVx0o2SsHm7cJ5fvewWB/TEczWU7teDgusGSujxCYcMottE3zqa423VTglNTYhjg==} engines: {node: '>=12'} cpu: [s390x] os: [linux] - esbuild-netbsd-64@0.14.28: - resolution: {integrity: sha512-h8wntIyOR8/xMVVM6TvJxxWKh4AjmLK87IPKpuVi8Pq0kyk0RMA+eo4PFGk5j2XK0D7dj8PcSF5NSlP9kN/j0A==} + esbuild-netbsd-64@0.14.29: + resolution: {integrity: sha512-/esN6tb6OBSot6+JxgeOZeBk6P8V/WdR3GKBFeFpSqhgw4wx7xWUqPrdx4XNpBVO7X4Ipw9SAqgBrWHlXfddww==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] - esbuild-openbsd-64@0.14.28: - resolution: {integrity: sha512-HBv18rVapbuDx52/fhZ/c/w6TXyaQAvRxiDDn5Hz/pBcwOs3cdd2WxeIKlWmDoqm2JMx5EVlq4IWgoaRX9mVkw==} + esbuild-openbsd-64@0.14.29: + resolution: {integrity: sha512-jUTdDzhEKrD0pLpjmk0UxwlfNJNg/D50vdwhrVcW/D26Vg0hVbthMfb19PJMatzclbK7cmgk1Nu0eNS+abzoHw==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] - esbuild-sunos-64@0.14.28: - resolution: {integrity: sha512-zlIxePhZxKYheR2vBCgPVvTixgo/ozOfOMoP6RZj8dxzquU1NgeyhjkcRXucbLCtmoNJ+i4PtWwPZTLuDd3bGg==} + esbuild-sunos-64@0.14.29: + resolution: {integrity: sha512-EfhQN/XO+TBHTbkxwsxwA7EfiTHFe+MNDfxcf0nj97moCppD9JHPq48MLtOaDcuvrTYOcrMdJVeqmmeQ7doTcg==} engines: {node: '>=12'} cpu: [x64] os: [sunos] - esbuild-windows-32@0.14.28: - resolution: {integrity: sha512-am9DIJxXlld1BOAY/VlvBQHMUCPL7S3gB/lnXIY3M4ys0gfuRqPf4EvMwZMzYUbFKBY+/Qb8SRgPRRGhwnJ8Kg==} + esbuild-windows-32@0.14.29: + resolution: {integrity: sha512-uoyb0YAJ6uWH4PYuYjfGNjvgLlb5t6b3zIaGmpWPOjgpr1Nb3SJtQiK4YCPGhONgfg2v6DcJgSbOteuKXhwqAw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] - esbuild-windows-64@0.14.28: - resolution: {integrity: sha512-78PhySDnmRZlsPNp/W/5Fim8iivlBQQxfhBFIqR7xwvfDmCFUSByyMKP7LCHgNtb04yNdop8nJJkJaQ8Xnwgiw==} + esbuild-windows-64@0.14.29: + resolution: {integrity: sha512-X9cW/Wl95QjsH8WUyr3NqbmfdU72jCp71cH3pwPvI4CgBM2IeOUDdbt6oIGljPu2bf5eGDIo8K3Y3vvXCCTd8A==} engines: {node: '>=12'} cpu: [x64] os: [win32] - esbuild-windows-arm64@0.14.28: - resolution: {integrity: sha512-VhXGBTo6HELD8zyHXynV6+L2jWx0zkKnGx4TmEdSBK7UVFACtOyfUqpToG0EtnYyRZ0HESBhzPSVpP781ovmvA==} + esbuild-windows-arm64@0.14.29: + resolution: {integrity: sha512-+O/PI+68fbUZPpl3eXhqGHTGK7DjLcexNnyJqtLZXOFwoAjaXlS5UBCvVcR3o2va+AqZTj8o6URaz8D2K+yfQQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] - esbuild@0.14.28: - resolution: {integrity: sha512-YLNprkCcMVKQ5sekmCKEQ3Obu/L7s6+iij38xNKyBeSmSsTWur4Ky/9zB3XIGT8SCJITG/bZwAR2l7YOAXch4Q==} + esbuild@0.14.29: + resolution: {integrity: sha512-SQS8cO8xFEqevYlrHt6exIhK853Me4nZ4aMW6ieysInLa0FMAL+AKs87HYNRtR2YWRcEIqoXAHh+Ytt5/66qpg==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} engines: {node: '>=12'} hasBin: true @@ -4366,8 +5539,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-import-resolver-node@0.3.6: - resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} eslint-mdx@1.17.1: resolution: {integrity: sha512-ihkTZCYipPUpzZgTeTwRajj3ZFYQAMWUm/ajscLWjXPVA2+ZQoLRreVNETRZ1znCnE3OAGbwmA1vd0uxtSk2wg==} @@ -4396,37 +5569,34 @@ packages: eslint-import-resolver-webpack: optional: true - eslint-plugin-import@2.22.1: - resolution: {integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==} + eslint-plugin-import@2.29.1: + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: '@typescript-eslint/parser': optional: true - eslint-plugin-jest@24.1.5: - resolution: {integrity: sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==} - engines: {node: '>=10'} - peerDependencies: - eslint: '>=5' - - eslint-plugin-jest@24.4.0: - resolution: {integrity: sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==} - engines: {node: '>=10'} + eslint-plugin-jest@27.6.3: + resolution: {integrity: sha512-+YsJFVH6R+tOiO3gCJon5oqn4KWc+mDq2leudk8mrp8RFubLOo9CVyi3cib4L7XMpxExmkmBZQTPDYVBzgpgOA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - '@typescript-eslint/eslint-plugin': '>= 4' - eslint: '>=5' + '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 + eslint: ^7.0.0 || ^8.0.0 + jest: '*' peerDependenciesMeta: '@typescript-eslint/eslint-plugin': optional: true + jest: + optional: true - eslint-plugin-jsx-a11y@6.4.1: - resolution: {integrity: sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==} + eslint-plugin-jsx-a11y@6.8.0: + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} engines: {node: '>=4.0'} peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-markdown@2.2.1: resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} @@ -4434,53 +5604,31 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-mdx@1.13.0: - resolution: {integrity: sha512-oZ/R9OmSx1gZs52CO58HTHlJXRKoZtF6ZMaWP+sOcSGMFxoddoPr9PDgpP52ab5TWu5yVl5guR9D+GMfzkR2Uw==} - engines: {node: '>=10.0.0'} - peerDependencies: - eslint: '>=5.0.0' - - eslint-plugin-mdx@1.15.0: - resolution: {integrity: sha512-3NF/tp6MgdJL+28i+Qzg60loiHqgPWb35NUtDQvhocUOK2afRD0YR1+ep7JFUZ5mys2CTkpbd8Gc/GrXgsBVNA==} + eslint-plugin-mdx@1.17.1: + resolution: {integrity: sha512-yOI2FmHCh+cgkMEkznxvWxfLC8AqZgco7509DjwMoCzXaxslv7YmGBKkvZyHxcbLmswnaMRBlYcd2BT7KPEnKw==} engines: {node: '>=10.0.0'} peerDependencies: eslint: '>=5.0.0' - eslint-plugin-react-hooks@4.2.0: - resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==} + eslint-plugin-react-hooks@4.6.2: + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} engines: {node: '>=10'} peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - - eslint-plugin-react@7.22.0: - resolution: {integrity: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - eslint-plugin-react@7.25.1: - resolution: {integrity: sha512-P4j9K1dHoFXxDNP05AtixcJEvIT6ht8FhYKsrkY0MPCPaUMYijhpWwNiRDZVtA8KFuZOkGSeft6QwH8KuVpJug==} + eslint-plugin-react@7.33.2: + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} - eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - - eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - - eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} @@ -4490,9 +5638,9 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} + eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true @@ -4500,19 +5648,9 @@ packages: resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} engines: {node: '>=0.10'} - espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} - - esprima-fb@15001.1.0-dev-harmony-fb: - resolution: {integrity: sha512-59dDGQo2b3M/JfKIws0/z8dcXH2mnVHkfSPRhCYS91JNGfGNwr7GsSF6qzWZuOGvw5Ii0w9TtylrX07MGmlOoQ==} - engines: {node: '>=0.4.0'} - hasBin: true - - esprima@3.1.3: - resolution: {integrity: sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==} - engines: {node: '>=4'} - hasBin: true + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -4535,6 +5673,9 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -4546,9 +5687,6 @@ packages: event-emitter@0.3.5: resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - eventemitter3@3.1.2: - resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} - eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} @@ -4563,22 +5701,22 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + engines: {node: '>=12.0.0'} + expect@29.7.0: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - express@4.18.1: - resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} - engines: {node: '>= 0.10.0'} - - express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: '>= 0.10.0'} - express@4.21.2: resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} engines: {node: '>= 0.10.0'} @@ -4586,10 +5724,6 @@ packages: ext@1.7.0: resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} @@ -4597,17 +5731,9 @@ packages: resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==} engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0} - extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true - fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - fast-glob@3.3.3: resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} @@ -4637,11 +5763,13 @@ packages: fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - fbjs@0.6.1: - resolution: {integrity: sha512-4KW7tT33ytfazK3Ekvesbsa4A5J79hUrdXONQGZ0wM6i3PFc70YknF9kj1eyx3mDupgJ7Z+ifFhcMJ+ps2eZIw==} - - fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} @@ -4655,9 +5783,9 @@ packages: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} finalhandler@1.3.1: resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} @@ -4670,10 +5798,6 @@ packages: find-root@1.1.0: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} @@ -4709,6 +5833,10 @@ packages: resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} engines: {node: '>= 0.4'} + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + fork-ts-checker-webpack-plugin@6.5.3: resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} @@ -4780,9 +5908,6 @@ packages: resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} engines: {node: '>= 0.4'} - functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -4794,6 +5919,9 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} + get-func-name@2.0.2: + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + get-intrinsic@1.3.0: resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} engines: {node: '>= 0.4'} @@ -4806,14 +5934,14 @@ packages: resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} engines: {node: '>= 0.4'} - get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + get-symbol-description@1.1.0: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} @@ -4821,20 +5949,23 @@ packages: get-tsconfig@4.2.0: resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==} - get-uri@6.0.5: - resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} - engines: {node: '>= 14'} + get-xpath@3.3.0: + resolution: {integrity: sha512-AKbHVEHSlSDS9AJDmjfSxV010xSVRFzkS4UkGCb8CaGvorp83GCuKwcmzF/64CVp3M5wjgy9tc6y1uR2V+c5Xw==} glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@5.0.15: - resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} - deprecated: Glob versions prior to v9 are no longer supported + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} @@ -4867,6 +5998,9 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + graphql-request@4.3.0: resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==} peerDependencies: @@ -4878,10 +6012,13 @@ packages: peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql@14.7.0: - resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} - engines: {node: '>= 6.x'} - deprecated: 'No longer supported; please update to a newer version. Details: https://github.com/graphql/graphql-js#version-support' + graphql@15.8.0: + resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} + engines: {node: '>= 10.x'} + + graphql@16.11.0: + resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} gzip-size@6.0.0: resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} @@ -4924,10 +6061,6 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} - has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} - hash-base@2.0.2: resolution: {integrity: sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==} @@ -4983,9 +6116,6 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} @@ -5003,6 +6133,11 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + html-minifier-terser@5.1.1: + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} + hasBin: true + html-minifier-terser@6.1.0: resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} engines: {node: '>=12'} @@ -5011,11 +6146,30 @@ packages: html-void-elements@1.0.5: resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} - html-webpack-plugin@5.5.0: - resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} + html-webpack-inject-plugin@5.3.1: + resolution: {integrity: sha512-0UKpYq1n9EW3Kex61bj5tba6arc9GqhEuSvoRFV5joIJqY2aIiO/ooeFb2fOZQnO4ZQMVkjfT3NIb7g/xwfD9Q==} + engines: {node: '>= 14'} + peerDependencies: + html-webpack-plugin: ^5.3.1 + webpack: ^5.26.3 + + html-webpack-plugin@5.3.2: + resolution: {integrity: sha512-HvB33boVNCz2lTyBsSiMffsJ+m0YLIQ+pskblXgN9fnjS1BgEcuAfdInfXfGrkdXV406k9FiDi86eVCDBgJOyQ==} + engines: {node: '>=10.13.0'} + peerDependencies: + webpack: ^5.20.0 + + html-webpack-plugin@5.6.3: + resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==} engines: {node: '>=10.13.0'} peerDependencies: + '@rspack/core': 0.x || 1.x webpack: ^5.20.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true htmlparser2@6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} @@ -5070,6 +6224,10 @@ packages: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + humanize-string@2.1.0: resolution: {integrity: sha512-sQ+hqmxyXW8Cj7iqxcQxD7oSy3+AXnIZXdUF9lQMkzaG8dtbKAB8U7lCtViMnwQ+MpdCKsO2Kiij3G6UUXq/Xg==} engines: {node: '>=6'} @@ -5095,10 +6253,6 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -5114,6 +6268,9 @@ packages: immutable@4.3.7: resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} + immutable@5.1.3: + resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==} + import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} @@ -5151,10 +6308,6 @@ packages: resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} engines: {node: '>= 0.4'} - ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} - ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -5228,10 +6381,6 @@ packages: engines: {node: '>=8'} hasBin: true - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -5279,6 +6428,10 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} @@ -5317,6 +6470,10 @@ packages: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-string@1.1.1: resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} engines: {node: '>= 0.4'} @@ -5391,12 +6548,20 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} + istanbul-lib-source-maps@5.0.6: + resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} + engines: {node: '>=10'} + istanbul-reports@3.1.7: resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} engines: {node: '>=8'} - iterall@1.3.0: - resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} jest-changed-files@29.7.0: resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} @@ -5428,10 +6593,6 @@ packages: ts-node: optional: true - jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} - jest-diff@29.7.0: resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5457,10 +6618,6 @@ packages: resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - jest-get-type@29.6.3: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5563,6 +6720,9 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true @@ -5571,9 +6731,6 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true - jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} @@ -5583,19 +6740,15 @@ packages: canvas: optional: true - jsdom@26.1.0: - resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==} + jsdom@24.1.3: + resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==} engines: {node: '>=18'} peerDependencies: - canvas: ^3.0.0 + canvas: ^2.11.2 peerDependenciesMeta: canvas: optional: true - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} @@ -5609,9 +6762,6 @@ packages: json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -5624,9 +6774,6 @@ packages: json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json-stringify-pretty-compact@1.2.0: - resolution: {integrity: sha512-/11Pj1OyX814QMKO7K8l85SHPTr/KsFxHp8GE2zVa0BtJgGimDjXHfM3FhC7keQdWDea7+nXf+f1de7ATZcZkQ==} - json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true @@ -5639,20 +6786,12 @@ packages: jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - jstransform@11.0.3: - resolution: {integrity: sha512-LGm87w0A8E92RrcXt94PnNHkFqHmgDy3mKHvNZOG7QepKCTCH/VB6S+IEN+bT4uLN3gVpOT0vvOOVd96osG71g==} - engines: {node: '>=0.8.8'} - hasBin: true - jsx-ast-utils@3.3.5: resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} engines: {node: '>=4.0'} - jsx-to-string@1.4.0: - resolution: {integrity: sha512-BmDM0gMngtBcjET7iEDuMxU+ZA4fTFWhMWAfbJeZP0X0VIaN7+At3wa64v48hzuE9rf77VAwlI/aMJrR+9LEZA==} - - junit-report-builder@3.0.0: - resolution: {integrity: sha512-aW7DnfLddUb51T+V08bJyecexaLomy5ID/0FXvhwsRXs9E0abvDaDT024U99J2agU3dt4q0ppzfKxSwrIIgXWg==} + junit-report-builder@3.2.1: + resolution: {integrity: sha512-IMCp5XyDQ4YESDE4Za7im3buM0/7cMnRfe17k2X8B05FnUl9vqnaliX6cgOEmPIeWKfJrEe/gANRq/XgqttCqQ==} engines: {node: '>=8'} keyv@4.5.4: @@ -5704,17 +6843,77 @@ packages: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} - lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + lightningcss-darwin-arm64@1.30.1: + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.30.1: + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.30.1: + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.30.1: + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.30.1: + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.30.1: + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-x64-gnu@1.30.1: + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.30.1: + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-win32-arm64-msvc@1.30.1: + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.30.1: + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.30.1: + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} + engines: {node: '>= 12.0.0'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - load-json-file@2.0.0: - resolution: {integrity: sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==} - engines: {node: '>=4'} - loader-runner@4.3.0: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} engines: {node: '>=6.11.5'} @@ -5727,9 +6926,9 @@ packages: resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} engines: {node: '>= 12.13.0'} - locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + local-pkg@0.5.1: + resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} + engines: {node: '>=14'} locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} @@ -5743,8 +6942,8 @@ packages: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} - lockfile@1.0.4: - resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==} + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} lodash.compact@3.0.1: resolution: {integrity: sha512-2ozeiPi+5eBXW1CLtzjk8XQFhQOEMwwfxblqeq6EGyTxZJ1bPATqilY0e6g2SLQpP4KuMeuioBhEnWz5Pr7ICQ==} @@ -5752,22 +6951,12 @@ packages: lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. - - lodash.has@4.5.2: - resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==} - lodash.memoize@4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} @@ -5781,6 +6970,12 @@ packages: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true + loupe@2.3.7: + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + + loupe@3.1.4: + resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==} + lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} @@ -5797,10 +6992,6 @@ packages: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - lru-queue@0.1.0: resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} @@ -5808,12 +6999,11 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - make-dir@1.3.0: - resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} - engines: {node: '>=4'} + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -5852,17 +7042,26 @@ packages: mdast-util-definitions@3.0.1: resolution: {integrity: sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA==} + mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + mdast-util-from-markdown@0.8.5: resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + mdast-util-to-hast@9.1.2: resolution: {integrity: sha512-OpkFLBC2VnNAb2FNKcKWu9FMbJhQKog+FCT8nuKmQNIKXyT1n3SIskE7uWDep6x+cA20QXlK5AETHQtYmQmxtQ==} mdast-util-to-string@2.0.0: resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} - mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} mdurl@1.0.1: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} @@ -5882,9 +7081,6 @@ packages: resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - merge-descriptors@1.0.3: resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} @@ -5931,12 +7127,16 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} - mini-css-extract-plugin@2.7.0: - resolution: {integrity: sha512-auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw==} + mini-css-extract-plugin@2.9.2: + resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 @@ -5954,15 +7154,23 @@ packages: resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} engines: {node: '>=10'} + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - mitt@3.0.1: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mlly@1.7.4: + resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} mri@1.1.4: resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==} @@ -5978,6 +7186,9 @@ packages: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + nanoid@3.3.11: resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -6002,10 +7213,6 @@ packages: neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - netmask@2.0.2: - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} - engines: {node: '>= 0.4.0'} - new-url-loader@0.1.1: resolution: {integrity: sha512-e7v5Q3uFk2jXgnL1JSVCszPTg9MYkbNIpKI6azeNlAa1bAwboA63aBsC63jlTEWlTacNL45tqWPx0Nm0SkCxCQ==} engines: {node: '>=10.13.0'} @@ -6018,6 +7225,9 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -6041,9 +7251,6 @@ packages: resolution: {integrity: sha512-Y4jr/8SRS5hzEdZ7SGuvZGwfORvNsSsNRwDXx5WisiqzsVfeftDvRgfeqWNgZvWSJbgubTRVRYBzK6UO+ErqjA==} engines: {node: '>=12'} - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} @@ -6052,24 +7259,20 @@ packages: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} - normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} nwsapi@2.2.20: resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} - object-assign@2.1.1: - resolution: {integrity: sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==} - engines: {node: '>=0.10.0'} - object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -6102,6 +7305,14 @@ packages: resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} engines: {node: '>= 0.4'} + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} + object.values@1.2.1: resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} engines: {node: '>= 0.4'} @@ -6124,12 +7335,16 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} - optimism@0.16.2: - resolution: {integrity: sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==} + optimism@0.18.1: + resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==} optionator@0.9.4: resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} @@ -6138,18 +7353,13 @@ packages: os-browserify@0.3.0: resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} - os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + outdent@0.8.0: + resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==} own-keys@1.0.1: resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} engines: {node: '>= 0.4'} - p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -6158,9 +7368,9 @@ packages: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} - p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + p-limit@5.0.0: + resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} + engines: {node: '>=18'} p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} @@ -6182,21 +7392,12 @@ packages: resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} engines: {node: '>=8'} - p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - pac-proxy-agent@7.2.0: - resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} - engines: {node: '>= 14'} - - pac-resolver@7.0.1: - resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} - engines: {node: '>= 14'} + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} @@ -6215,10 +7416,6 @@ packages: parse-entities@2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} - parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} - parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -6262,30 +7459,41 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + path-to-regexp@0.1.12: resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - - path-type@2.0.0: - resolution: {integrity: sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==} - engines: {node: '>=4'} - path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + pbkdf2@3.1.3: resolution: {integrity: sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==} engines: {node: '>=0.12'} - pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} @@ -6296,13 +7504,9 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} @@ -6320,14 +7524,13 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} + pkg-types@1.3.1: + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + pkg-up@3.1.0: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} engines: {node: '>=8'} - portfinder@1.0.37: - resolution: {integrity: sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==} - engines: {node: '>= 10.12'} - possible-typed-array-names@1.1.0: resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} engines: {node: '>= 0.4'} @@ -6345,8 +7548,9 @@ packages: browserslist: '>=4' postcss: '>=8' - postcss-calc@8.2.4: - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + postcss-calc@9.0.1: + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.2.2 @@ -6374,17 +7578,17 @@ packages: peerDependencies: postcss: ^8.2 - postcss-colormin@5.3.1: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-colormin@6.1.0: + resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-convert-values@5.1.3: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-convert-values@6.1.0: + resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-custom-media@8.0.2: resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} @@ -6410,29 +7614,29 @@ packages: peerDependencies: postcss: ^8.2 - postcss-discard-comments@5.1.2: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-discard-comments@6.0.2: + resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-discard-duplicates@5.1.0: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-discard-duplicates@6.0.3: + resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-discard-empty@5.1.1: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-discard-empty@6.0.3: + resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-discard-overridden@5.1.0: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-discard-overridden@6.0.2: + resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-double-position-gradients@3.1.2: resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} @@ -6510,41 +7714,41 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-merge-longhand@5.1.7: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-merge-longhand@6.0.5: + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-merge-rules@5.1.4: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-merge-rules@6.1.1: + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-minify-font-values@5.1.0: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-minify-font-values@6.1.0: + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-minify-gradients@5.1.1: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-minify-gradients@6.0.3: + resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-minify-params@5.1.4: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-minify-params@6.1.0: + resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-minify-selectors@5.2.1: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-minify-selectors@6.0.4: + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-modules-extract-imports@3.1.0: resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} @@ -6576,59 +7780,59 @@ packages: peerDependencies: postcss: ^8.2 - postcss-normalize-charset@5.1.0: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-charset@6.0.2: + resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-display-values@5.1.0: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-display-values@6.0.2: + resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-positions@5.1.1: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-positions@6.0.2: + resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-repeat-style@5.1.1: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-repeat-style@6.0.2: + resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-string@5.1.0: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-string@6.0.2: + resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-timing-functions@5.1.0: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-timing-functions@6.0.2: + resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-unicode@5.1.1: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-unicode@6.1.0: + resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-url@5.1.0: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-url@6.0.2: + resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-normalize-whitespace@5.1.1: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-normalize-whitespace@6.0.2: + resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-normalize@10.0.1: resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} @@ -6643,11 +7847,11 @@ packages: peerDependencies: postcss: ^8.2 - postcss-ordered-values@5.1.3: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-ordered-values@6.0.2: + resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-overflow-shorthand@3.0.4: resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} @@ -6678,17 +7882,17 @@ packages: peerDependencies: postcss: ^8.2 - postcss-reduce-initial@5.1.2: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-reduce-initial@6.1.0: + resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-reduce-transforms@5.1.0: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-reduce-transforms@6.0.2: + resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-replace-overflow-wrap@4.0.0: resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} @@ -6709,17 +7913,17 @@ packages: resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} engines: {node: '>=4'} - postcss-svgo@5.1.0: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-svgo@6.0.3: + resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} + engines: {node: ^14 || ^16 || >= 18} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - postcss-unique-selectors@5.1.1: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} + postcss-unique-selectors@6.0.4: + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} @@ -6736,18 +7940,17 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prettier@2.7.1: - resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} - engines: {node: '>=10.13.0'} + prettier@3.3.3: + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} + engines: {node: '>=14'} hasBin: true + pretty-error@3.0.4: + resolution: {integrity: sha512-ytLFLfv1So4AO1UkoBF6GXQgJRaKbiSiGFICaOPNwQ3CMvBvXpLRubeQWyPGnsbV/t9ml9qto6IeCsho0aEvwQ==} + pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} - pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -6769,10 +7972,6 @@ packages: resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} engines: {node: '>=6'} - private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} - process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -6780,16 +7979,6 @@ packages: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} - progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - - promise-limit@2.7.0: - resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} - - promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} - promise@8.3.0: resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} @@ -6807,13 +7996,6 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} - proxy-agent@6.5.0: - resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} - engines: {node: '>= 14'} - - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - prr@1.0.1: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} @@ -6826,8 +8008,8 @@ packages: pump@3.0.3: resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} - punycode@1.3.2: - resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} punycode@2.1.1: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} @@ -6837,47 +8019,25 @@ packages: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - puppeteer-core@24.13.0: - resolution: {integrity: sha512-2Mr1zFCMfAJpKN5mRGqDAmwVEtS6qsalLnUZJn1uJxMdbZLMiqNuMf12gDmZGizg0CjvcfXxoaJhEZB8W0DXlw==} - engines: {node: '>=18'} - - puppeteer@24.13.0: - resolution: {integrity: sha512-3dpT7LIdlRBJBGKb7SjJeno/C3cl0bBpgwie+cxvf8PKmK502QdRU9TT/hvfchyFG7BzJKBHPxK5Boholx7zow==} - engines: {node: '>=18'} - hasBin: true - pure-rand@6.1.0: resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - - qs@6.10.3: - resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} + qs@6.13.0: + resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} engines: {node: '>=0.6'} - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + qs@6.14.0: + resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} engines: {node: '>=0.6'} - qs@6.13.0: - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} - engines: {node: '>=0.6'} + query-string@7.0.0: + resolution: {integrity: sha512-Iy7moLybliR5ZgrK/1R3vjrXq03S13Vz4Rbm5Jg3EFq1LUmQppto0qtXz4vqZ386MSRjZgnTSZ9QC+NZOSd/XA==} + engines: {node: '>=6'} querystring-es3@0.2.1: resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} engines: {node: '>=0.4.x'} - querystring@0.2.0: - resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} @@ -6897,10 +8057,6 @@ packages: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} - raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} - raw-body@2.5.2: resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} engines: {node: '>= 0.8'} @@ -6919,16 +8075,16 @@ packages: typescript: optional: true - react-dom@17.0.2: - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} - peerDependencies: - react: 17.0.2 - react-dom@18.3.1: resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} peerDependencies: react: ^18.3.1 + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} + peerDependencies: + react: ^19.0.0 + react-error-boundary@3.1.4: resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} engines: {node: '>=10', npm: '>=6'} @@ -6941,6 +8097,14 @@ packages: react-error-overlay@6.1.0: resolution: {integrity: sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==} + react-fast-compare@3.2.2: + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + + react-helmet@6.1.0: + resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==} + peerDependencies: + react: '>=16.3.0' + react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} @@ -6950,8 +8114,8 @@ packages: react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - react-live@2.4.1: - resolution: {integrity: sha512-r+32f7oV/kBs3QZBRvaT+9vOkQW47UZrDpgwUe5FiIMOl7sdo5pmISgb7Zpj5PGHgY6XQaiXs3FEh+IWw3KbRg==} + react-live@3.2.0: + resolution: {integrity: sha512-tHkft6spWgNOlW21XUQKqoFDP9ZVhrEUBD80sYwL1ykOovj9DN2z0GXW3d4G7gAphcUXCy+BLfe1S/IpdE5AAQ==} engines: {node: '>= 0.12.0', npm: '>= 2.0.0'} peerDependencies: react: '*' @@ -6961,30 +8125,38 @@ packages: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} - react-router-dom@6.8.1: - resolution: {integrity: sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==} - engines: {node: '>=14'} + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} + engines: {node: '>=0.10.0'} + + react-router-dom@6.30.1: + resolution: {integrity: sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' - react-router@6.8.1: - resolution: {integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==} - engines: {node: '>=14'} + react-router@6.30.1: + resolution: {integrity: sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' - react-simple-code-editor@0.11.3: - resolution: {integrity: sha512-7bVI4Yd1aNCeuldErXUt8ksaAG5Fi+GZ6vp3mtFBnckKdzsQtrgkDvdwMFXIhwTGG+mUYmk5ZpMo0axSW9JBzA==} + react-side-effect@2.1.2: + resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==} peerDependencies: - react: '*' - react-dom: '*' + react: ^16.3.0 || ^17.0.0 || ^18.0.0 react-syntax-highlighter@13.5.3: resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} peerDependencies: react: '>= 0.14.0' + react-syntax-highlighter@15.4.3: + resolution: {integrity: sha512-TnhGgZKXr5o8a63uYdRTzeb8ijJOgRGe0qjrE0eK/gajtdyqnSO6LqB3vW16hHB0cFierYSoy/AOJw8z1Dui8g==} + peerDependencies: + react: '>= 0.14.0' + react-use-dimensions@1.2.1: resolution: {integrity: sha512-XL+Rup9Hosxx3Ap9xpyQMbVwuUa4BSqiOjfBb2zDuGs4uv2FesFV+m8Z/huRx2BNptMd9ARPqFuSNA62zhCozg==} peerDependencies: @@ -6992,29 +8164,13 @@ packages: react: ^16.8.x typescript: ^3.5.2 - react@0.14.10: - resolution: {integrity: sha512-yxMw5aorZG4qsLVBfjae4wGFvd5708DhcxaXLJ3IOTgr1TCs8k9+ZheGgLGr5OfwWMhSahNbGvvoEDzrxVWouA==} - engines: {node: '>=0.10.0'} - - react@17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: '>=0.10.0'} - - react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} - react@18.3.1: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - read-pkg-up@2.0.0: - resolution: {integrity: sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==} - engines: {node: '>=4'} - - read-pkg@2.0.0: - resolution: {integrity: sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==} - engines: {node: '>=4'} + react@19.0.0: + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} + engines: {node: '>=0.10.0'} readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -7027,9 +8183,9 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} - recast@0.11.23: - resolution: {integrity: sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==} - engines: {node: '>= 0.8'} + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} recursive-readdir@2.2.3: resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} @@ -7050,10 +8206,6 @@ packages: resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} engines: {node: '>=4'} - regenerate-unicode-properties@9.0.0: - resolution: {integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==} - engines: {node: '>=4'} - regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} @@ -7067,21 +8219,10 @@ packages: resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} engines: {node: '>= 0.4'} - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - - regexpu-core@4.8.0: - resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==} - engines: {node: '>=4'} - regexpu-core@6.2.0: resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} engines: {node: '>=4'} - regjsgen@0.5.2: - resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==} - regjsgen@0.8.0: resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} @@ -7089,9 +8230,16 @@ packages: resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} hasBin: true - regjsparser@0.7.0: - resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==} - hasBin: true + rehackt@0.1.0: + resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==} + peerDependencies: + '@types/react': '*' + react: '*' + peerDependenciesMeta: + '@types/react': + optional: true + react: + optional: true rehype-parse@6.0.2: resolution: {integrity: sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==} @@ -7128,6 +8276,9 @@ packages: resolution: {integrity: sha512-BOR/6Zr3F0vmTzwvkiCZaPrzv1NJZQVRhrWA4w2IQtj33owmh5Y4LRajsR4QrqdIgLlAqOLEEc1PiUf15ku9hQ==} engines: {node: '>=12.10'} + renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} @@ -7202,6 +8353,14 @@ packages: ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + rollup@4.22.0: + resolution: {integrity: sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rrweb-cssom@0.7.1: + resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + rrweb-cssom@0.8.0: resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} @@ -7232,12 +8391,12 @@ packages: sanitize.css@13.0.0: resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} - sass-loader@13.2.0: - resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} + sass-loader@13.3.2: + resolution: {integrity: sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==} engines: {node: '>= 14.15.0'} peerDependencies: fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 sass: ^1.3.0 sass-embedded: '*' webpack: ^5.0.0 @@ -7251,9 +8410,14 @@ packages: sass-embedded: optional: true - sass@1.56.1: - resolution: {integrity: sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==} - engines: {node: '>=12.0.0'} + sass@1.63.6: + resolution: {integrity: sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==} + engines: {node: '>=14.0.0'} + hasBin: true + + sass@1.89.2: + resolution: {integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==} + engines: {node: '>=14.0.0'} hasBin: true sax@1.4.1: @@ -7263,12 +8427,12 @@ packages: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} - scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + schema-utils@2.7.0: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} engines: {node: '>= 8.9.0'} @@ -7277,14 +8441,6 @@ packages: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} - schema-utils@4.0.0: - resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} - engines: {node: '>= 12.13.0'} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} - schema-utils@4.3.2: resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} engines: {node: '>= 10.13.0'} @@ -7304,8 +8460,13 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + semver@7.5.2: + resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.1: + resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} engines: {node: '>=10'} hasBin: true @@ -7314,10 +8475,6 @@ packages: engines: {node: '>=10'} hasBin: true - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} - send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -7329,10 +8486,6 @@ packages: resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} engines: {node: '>= 0.8.0'} - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} - serve-static@1.16.2: resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} engines: {node: '>= 0.8.0'} @@ -7395,9 +8548,16 @@ packages: resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -7405,25 +8565,12 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - - smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - socks-proxy-agent@8.0.5: - resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} - engines: {node: '>= 14'} - - socks@2.8.6: - resolution: {integrity: sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -7440,10 +8587,6 @@ packages: source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - source-map@0.4.4: - resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==} - engines: {node: '>=0.8.0'} - source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} @@ -7456,25 +8599,9 @@ packages: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - space-separated-tokens@1.1.5: resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.21: - resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} - spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} @@ -7482,23 +8609,23 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - - stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} @@ -7513,22 +8640,22 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + std-env@3.9.0: + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + stop-iteration-iterator@1.1.0: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} - stoppable@1.1.0: - resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} - engines: {node: '>=4', npm: '>=6'} - stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} stream-http@3.2.0: resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} - streamx@2.22.1: - resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==} + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} string-length@4.0.2: resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} @@ -7538,6 +8665,10 @@ packages: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + string.prototype.matchall@4.0.12: resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} engines: {node: '>= 0.4'} @@ -7563,6 +8694,10 @@ packages: stringify-entities@3.1.0: resolution: {integrity: sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==} + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + strip-ansi@6.0.0: resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} engines: {node: '>=8'} @@ -7571,6 +8706,10 @@ packages: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} @@ -7583,6 +8722,10 @@ packages: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -7591,6 +8734,12 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + strip-literal@2.1.1: + resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} + + strip-literal@3.0.0: + resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} + style-loader@3.3.1: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} @@ -7600,17 +8749,16 @@ packages: style-to-object@0.3.0: resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} - stylehacks@5.1.1: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} + stylehacks@6.1.1: + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.15 + postcss: ^8.4.31 - subscriptions-transport-ws@0.11.0: - resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} - deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md - peerDependencies: - graphql: ^15.7.2 || ^16.0.0 + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} @@ -7631,15 +8779,11 @@ packages: svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} hasBin: true - symbol-observable@1.2.0: - resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} - engines: {node: '>=0.10.0'} - symbol-observable@4.0.0: resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} engines: {node: '>=0.10'} @@ -7652,17 +8796,9 @@ packages: engines: {node: '>=12.10'} hasBin: true - synckit@0.1.6: - resolution: {integrity: sha512-5pk9meINInVUZ4nKn5942/x/mY5OE9SVzkOFIxiCDnellaz1cwTd4m7Xl1ibz1F3AxnZ8NxQMEbF7eMWMGECGg==} - engines: {node: '>=4.0'} - - synckit@0.3.4: - resolution: {integrity: sha512-t6qVl+gzR6qMkrP5pW+sxGe0mVx/O7vj29ir9k4Lw9BacPBE/cKHMvcROJlFBgNHFW94etQL/sBYFq4uur6C6A==} - engines: {node: '>=8.10'} - - table@6.9.0: - resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} - engines: {node: '>=10.0.0'} + synckit@0.4.1: + resolution: {integrity: sha512-ngUh0+s+DOqEc0sGnrLaeNjbXp0CWHjSGFBqPlQmQ+oN/OfoDoYDBXPh+b4qs1M5QTk5nuQ3AmVz9+2xiY/ldw==} + engines: {node: '>=12'} tapable@1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} @@ -7672,12 +8808,6 @@ packages: resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} engines: {node: '>=6'} - tar-fs@3.1.0: - resolution: {integrity: sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==} - - tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - terser-webpack-plugin@5.2.0: resolution: {integrity: sha512-FpR4Qe0Yt4knSQ5u2bA1wkM0R8VlVsvhyfSHvomXRivS4vPLk0dJV2IhRBIHRABh7AFutdMeElIA5y1dETwMBg==} engines: {node: '>= 10.13.0'} @@ -7710,6 +8840,11 @@ packages: uglify-js: optional: true + terser@4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} + hasBin: true + terser@5.43.1: resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==} engines: {node: '>=10'} @@ -7719,14 +8854,19 @@ packages: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} - text-decoder@1.2.3: - resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} + test-exclude@7.0.1: + resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} + engines: {node: '>=18'} text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} thunky@1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} @@ -7739,12 +8879,42 @@ packages: resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} engines: {node: '>=0.12'} - tldts-core@6.1.86: - resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tldts@6.1.86: - resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} - hasBin: true + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tinypool@0.8.4: + resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} + engines: {node: '>=14.0.0'} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@1.2.0: + resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} + engines: {node: '>=14.0.0'} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyspy@2.2.1: + resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.3: + resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} + engines: {node: '>=14.0.0'} + + tippy.js@6.3.7: + resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} @@ -7753,10 +8923,6 @@ packages: resolution: {integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==} engines: {node: '>= 0.4'} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -7772,10 +8938,6 @@ packages: resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} engines: {node: '>=6'} - tough-cookie@5.1.2: - resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} - engines: {node: '>=16'} - tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} @@ -7797,9 +8959,14 @@ packages: trough@1.0.5: resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} - ts-deepmerge@6.2.1: - resolution: {integrity: sha512-8CYSLazCyj0DJDpPIxOFzJG46r93uh6EynYjuey+bxcLltBeqZL7DMfaE5ZPzZNFlav7wx+2TDa/mBl8gkTYzw==} - engines: {node: '>=14.13.1'} + ts-api-utils@1.4.3: + resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} ts-invariant@0.10.3: resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==} @@ -7831,6 +8998,10 @@ packages: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} + type-detect@4.1.0: + resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} + engines: {node: '>=4'} + type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} @@ -7862,12 +9033,14 @@ packages: resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} - typed-query-selector@2.12.0: - resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==} + typescript@5.5.3: + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + engines: {node: '>=14.17'} + hasBin: true - typescript@4.9.3: - resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} - engines: {node: '>=4.2.0'} + typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} + engines: {node: '>=14.17'} hasBin: true typescript@5.8.3: @@ -7875,17 +9048,15 @@ packages: engines: {node: '>=14.17'} hasBin: true - ua-parser-js@0.7.40: - resolution: {integrity: sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==} - hasBin: true + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} unbox-primitive@1.1.0: resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} engines: {node: '>= 0.4'} - unescape@1.0.1: - resolution: {integrity: sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==} - engines: {node: '>=0.10.0'} + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} unherit@1.1.3: resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} @@ -7933,6 +9104,9 @@ packages: unist-util-remove@2.0.1: resolution: {integrity: sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==} + unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + unist-util-stringify-position@2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} @@ -7966,25 +9140,51 @@ packages: url-join@4.0.0: resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} - url-parse@1.5.1: - resolution: {integrity: sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==} + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - url@0.11.0: - resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} + url@0.11.2: + resolution: {integrity: sha512-7yIgNnrST44S7PJ5+jXbdIupfU1nWUdQJBFBeJRclPXiWgCvrSq5Frw8lr/i//n5sqDfzoKmBymMS81l4U/7cg==} use-debounce@3.4.3: resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==} peerDependencies: react: '>=16.8.0' + use-debounce@8.0.4: + resolution: {integrity: sha512-fGqsYQzl8kLHF2QpQSgIwgOgJmnh6j5L6SIzQiHdLfwp3q1egUL3btq5Bg2SJysH6A0ILLgT2IqXZKoNJr0nFw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + react: '>=16.8.0' + + use-debounce@9.0.4: + resolution: {integrity: sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==} + engines: {node: '>= 10.0.0'} + peerDependencies: + react: '>=16.8.0' + use-deep-compare@1.3.0: resolution: {integrity: sha512-94iG+dEdEP/Sl3WWde+w9StIunlV8Dgj+vkt5wTwMoFQLaijiEZSXXy8KtcStpmEDtIptRJiNeD4ACTtVvnIKA==} peerDependencies: react: '>=16.8.0' + use-editable@2.3.3: + resolution: {integrity: sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==} + peerDependencies: + react: '>= 16.8.0' + + use-isomorphic-layout-effect@1.2.1: + resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -7998,20 +9198,18 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} + uuid@10.0.0: + resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} + hasBin: true + uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - v8-to-istanbul@9.3.0: resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} engines: {node: '>=10.12.0'} - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} @@ -8028,8 +9226,99 @@ packages: vfile@4.2.1: resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} - vlq@1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + vite-node@1.3.1: + resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + + vite@5.4.19: + resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@1.3.1: + resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 1.3.1 + '@vitest/ui': 1.3.1 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true vm-browserify@1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} @@ -8062,12 +9351,6 @@ packages: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} - webpack-assets-manifest@5.1.0: - resolution: {integrity: sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==} - engines: {node: '>=10.13.0'} - peerDependencies: - webpack: ^5.2.0 - webpack-dev-middleware@5.3.4: resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} engines: {node: '>= 12.13.0'} @@ -8095,8 +9378,8 @@ packages: resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==} engines: {node: '>=10.13.0'} - webpack@5.51.1: - resolution: {integrity: sha512-xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A==} + webpack@5.100.2: + resolution: {integrity: sha512-QaNKAvGCDRh3wW1dsDjeMdDXwZm2vqq3zn6Pvq4rHOEOGSaUMgOOjG2Y9ZbIGzpfkJk9ZYTHpDqgDfeBDcnLaw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -8105,8 +9388,8 @@ packages: webpack-cli: optional: true - webpack@5.84.1: - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} + webpack@5.97.1: + resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -8131,9 +9414,6 @@ packages: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} - whatwg-fetch@0.9.0: - resolution: {integrity: sha512-DIuh7/cloHxHYwS/oRXGgkALYAntijL63nsgMQsNSnBj825AysosAqA2ZbYXGRqpPRiNH7335dTqV364euRpZw==} - whatwg-fetch@3.6.20: resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} @@ -8181,6 +9461,11 @@ packages: engines: {node: '>= 8'} hasBin: true + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + wildcard@2.0.1: resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} @@ -8192,6 +9477,10 @@ packages: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -8199,18 +9488,6 @@ packages: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@8.18.3: resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} engines: {node: '>=10.0.0'} @@ -8267,36 +9544,264 @@ packages: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} - yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + yocto-queue@1.2.1: + resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} + engines: {node: '>=12.20'} + zen-observable-ts@1.2.5: resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==} zen-observable@0.8.15: resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} - zod@3.25.76: - resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} - zwitch@1.0.5: resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} bit: depsRequiringBuild: + - '@parcel/watcher@2.5.1' - core-js-pure@3.44.0 - core-js@3.44.0 - es5-ext@0.10.64 - - esbuild@0.14.28 - - puppeteer@24.13.0(typescript@4.9.3) - - puppeteer@24.13.0(typescript@5.8.3) + - esbuild@0.14.29 + - esbuild@0.21.5 snapshots: + '@acme/scope.get-message@file:scope/get-message(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react@19.0.0)(terser@5.43.1)(typescript@5.8.3)': + dependencies: + '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': 7.26.9 + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': 10.4.0 + '@testing-library/jest-dom': 6.4.8 + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': 8.56.0 + '@types/find-root': 1.1.4 + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: 4.23.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + graphql: 16.11.0 + jsdom: 24.1.3 + pino-pretty: 4.5.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-helmet: 6.1.0(react@19.0.0) + react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: 4.22.0 + sass: 1.89.2 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@edge-runtime/vm' + - '@swc/core' + - '@types/debug' + - '@vitest/browser' + - '@vitest/ui' + - bufferutil + - canvas + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - graphql-ws + - happy-dom + - jest + - less + - lightningcss + - msw + - sass-embedded + - stylus + - subscriptions-transport-ws + - sugarss + - supports-color + - terser + - typescript + - uglify-js + - utf-8-validate + - webpack-cli + + '@acme/scope.my-app@file:scope/my-app(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.43.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': + dependencies: + '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': 7.26.9 + '@bitdev/react.app-types.vite-react': 2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@testing-library/dom': 10.4.0 + '@testing-library/jest-dom': 6.4.8 + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': 8.56.0 + '@types/find-root': 1.1.4 + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: 4.23.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + graphql: 16.11.0 + jsdom: 24.1.3 + pino-pretty: 4.5.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-helmet: 6.1.0(react@19.0.0) + react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: 4.22.0 + sass: 1.89.2 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@edge-runtime/vm' + - '@swc/core' + - '@types/debug' + - '@vitest/browser' + - '@vitest/ui' + - bufferutil + - canvas + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - graphql-ws + - happy-dom + - jest + - less + - lightningcss + - msw + - sass-embedded + - stylus + - subscriptions-transport-ws + - sugarss + - supports-color + - terser + - typescript + - uglify-js + - utf-8-validate + - webpack-cli + + '@acme/scope.my-env@file:scope/my-env(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)': + dependencies: + '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': 7.26.9 + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@bitdev/react.preview.react-docs-template': 0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@bitdev/react.react-env': 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/dom': 10.4.0 + '@testing-library/jest-dom': 6.4.8 + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': 8.56.0 + '@types/find-root': 1.1.4 + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitejs/plugin-react': 4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-v8': 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: 4.23.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + graphql: 16.11.0 + jsdom: 24.1.3 + pino-pretty: 4.5.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-helmet: 6.1.0(react@19.0.0) + react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: 4.22.0 + sass: 1.89.2 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@babel/traverse' + - '@edge-runtime/vm' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@types/debug' + - '@types/webpack' + - '@vitest/browser' + - '@vitest/ui' + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - graphql-ws + - happy-dom + - html-webpack-plugin + - jest + - less + - lightningcss + - msw + - node-sass + - sass-embedded + - sockjs-client + - stylus + - subscriptions-transport-ws + - sugarss + - supports-color + - terser + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve + '@adobe/css-tools@4.4.3': {} '@ampproject/remapping@2.3.0': @@ -8304,24 +9809,27 @@ snapshots: '@jridgewell/gen-mapping': 0.3.12 '@jridgewell/trace-mapping': 0.3.29 - '@apollo/client@3.6.9(graphql@14.7.0)(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@14.7.0))': + '@apollo/client@3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) - '@wry/context': 0.6.1 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) + '@wry/caches': 1.0.1 '@wry/equality': 0.5.7 - '@wry/trie': 0.3.2 - graphql: 14.7.0 - graphql-tag: 2.12.6(graphql@14.7.0) + '@wry/trie': 0.5.0 + graphql: 16.11.0 + graphql-tag: 2.12.6(graphql@16.11.0) hoist-non-react-statics: 3.3.2 - optimism: 0.16.2 + optimism: 0.18.1 prop-types: 15.8.1 + rehackt: 0.1.0(@types/react@19.0.2)(react@19.0.0) symbol-observable: 4.0.0 ts-invariant: 0.10.3 tslib: 2.8.1 zen-observable-ts: 1.2.5 optionalDependencies: - react: 18.3.1 - subscriptions-transport-ws: 0.11.0(graphql@14.7.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@types/react' '@asamuzakjp/css-color@3.2.0': dependencies: @@ -8331,10 +9839,6 @@ snapshots: '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 - '@babel/code-frame@7.12.11': - dependencies: - '@babel/highlight': 7.25.9 - '@babel/code-frame@7.27.1': dependencies: '@babel/helper-validator-identifier': 7.27.1 @@ -8385,39 +9889,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.19.6': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.0 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helpers': 7.27.6 - '@babel/parser': 7.28.0 - '@babel/template': 7.27.2 - '@babel/traverse': 7.28.0 - '@babel/types': 7.28.1 - convert-source-map: 1.9.0 - debug: 4.4.1 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/core@7.20.2': + '@babel/core@7.26.9': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 '@babel/generator': 7.28.0 '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) '@babel/helpers': 7.27.6 '@babel/parser': 7.28.0 '@babel/template': 7.27.2 '@babel/traverse': 7.28.0 '@babel/types': 7.28.1 - convert-source-map: 1.9.0 + convert-source-map: 2.0.0 debug: 4.4.1 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -8465,159 +9949,69 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)': + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-member-expression-to-functions': 7.27.1 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 '@babel/traverse': 7.28.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - regexpu-core: 6.2.0 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - regexpu-core: 6.2.0 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - regexpu-core: 6.2.0 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)': + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-annotate-as-pure': 7.27.3 regexpu-core: 6.2.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.12.9)': + '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.1 lodash.debounce: 4.0.8 resolve: 1.22.10 - semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.19.6)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.1 lodash.debounce: 4.0.8 resolve: 1.22.10 - semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.2)': + '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.1 lodash.debounce: 4.0.8 resolve: 1.22.10 - semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.28.0)': + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.27.1': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.1 - lodash.debounce: 4.0.8 - resolve: 1.22.10 - semver: 6.3.1 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.1 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.1 - lodash.debounce: 4.0.8 - resolve: 1.22.10 - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@7.24.7': - dependencies: - '@babel/types': 7.28.1 - - '@babel/helper-globals@7.28.0': {} - - '@babel/helper-member-expression-to-functions@7.27.1': - dependencies: - '@babel/traverse': 7.28.0 - '@babel/types': 7.28.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.27.1': + '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.28.0 '@babel/types': 7.28.1 @@ -8642,18 +10036,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.27.3(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.27.3(@babel/core@7.20.2)': + '@babel/helper-module-transforms@7.27.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-module-imports': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 '@babel/traverse': 7.28.0 @@ -8677,85 +10062,24 @@ snapshots: '@babel/helper-plugin-utils@7.27.1': {} - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-wrap-function': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.19.6)': + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-wrap-function': 7.27.1 '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-wrap-function': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-wrap-function': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-member-expression-to-functions': 7.27.1 - '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)': + '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-member-expression-to-functions': 7.27.1 '@babel/helper-optimise-call-expression': 7.27.1 '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/helper-simple-access@7.27.1': - dependencies: - '@babel/traverse': 7.28.0 - '@babel/types': 7.28.1 - transitivePeerDependencies: - - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: '@babel/traverse': 7.28.0 @@ -8786,3874 +10110,2976 @@ snapshots: '@babel/template': 7.27.2 '@babel/types': 7.28.1 - '@babel/highlight@7.25.9': - dependencies: - '@babel/helper-validator-identifier': 7.27.1 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 - '@babel/parser@7.28.0': dependencies: '@babel/types': 7.28.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.12.9)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.12.9) + '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.19.6)': + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.20.2)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.12.9)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.24.7 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9) + '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.19.6)': + '@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-environment-visitor': 7.24.7 + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.2)': + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-environment-visitor': 7.24.7 + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.28.0)': + '@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.6)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) - transitivePeerDependencies: - - supports-color + '@babel/core': 7.11.6 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.11.6) - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.26.9 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.12.9)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.19.6)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.2)': + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.28.0)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.20.2)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.19.6)': + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-syntax-jsx@7.10.4(@babel/core@7.11.6)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.11.6 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.12.9)': + '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.19.6)': + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.2)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.28.0)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.6)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.11.6 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.12.9)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.19.6)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.2)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.28.0)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 + '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) - - '@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.6)': - dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.11.6) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.12.9)': + '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.27.2 + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.19.6)': + '@babel/plugin-transform-classes@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-globals': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.19.6) + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.20.2)': + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.27.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.20.2) + '@babel/template': 7.27.2 - '@babel/plugin-proposal-object-rest-spread@7.20.2(@babel/core@7.28.0)': + '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.28.0 - '@babel/helper-compilation-targets': 7.27.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.12.9)': + '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.19.6)': + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.2)': + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.0)': + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.12.9)': + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.19.6)': + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.20.2)': + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.28.0)': + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.12.9)': + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) + '@babel/core': 7.26.9 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.19.6)': + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.2)': + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.28.0)': + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.9)': + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.19.6)': + '@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9) - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2)': + '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9) + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.0)': + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2)': + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.0)': + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.0)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.11.6)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.11.6 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.12.9)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.2)': + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.0)': + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.19.6)': + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.20.2)': + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.9)': + '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.19.6)': + '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2)': + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)': dependencies: '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.28.0)': + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)': dependencies: '@babel/core': 7.28.0 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.19.6)': + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/types': 7.28.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.12.9)': + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.19.6)': + '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.20.2)': + '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)': + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.20.2)': + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)': + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2)': + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)': + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.9)': + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.19.6)': + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2)': + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.0)': + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.10.4(@babel/core@7.11.6)': + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.12.9)': + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.9) '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.19.6)': + '@babel/preset-env@7.22.15(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9) + '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.9) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.26.9) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)': + '@babel/preset-env@7.23.2(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9) + '@babel/types': 7.28.1 + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.26.9) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.26.9) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.9)': + '@babel/preset-env@7.28.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/compat-data': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.9) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.26.9) + '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.9) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9) + babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.9) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.26.9) + babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.9) + core-js-compat: 3.44.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.19.6)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/types': 7.28.1 + esutils: 2.0.3 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2)': + '@babel/preset-react@7.22.15(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.0)': + '@babel/preset-react@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.9)': + '@babel/preset-typescript@7.22.15(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.19.6)': + '@babel/preset-typescript@7.27.1(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.26.9) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2)': + '@babel/runtime@7.20.0': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + regenerator-runtime: 0.13.11 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/runtime@7.27.6': {} - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.9)': + '@babel/template@7.27.2': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.19.6)': + '@babel/traverse@7.28.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/types': 7.28.1 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2)': + '@babel/types@7.28.1': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@bcoe/v8-coverage@0.2.3': {} - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.6)': + '@bitdev/general.envs.bit-env@3.0.4(@babel/core@7.26.9)(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/node@20.12.10)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))': dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/runtime': 7.20.0 + '@bitdev/react.eslint.eslint-config-bit-react': 1.1.14(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@teambit/preview.react-preview': 1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2) + '@teambit/react.react-env': 1.0.131(@babel/core@7.26.9)(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@vitest/coverage-v8': 2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + core-js: 3.44.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.7.2) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + typescript: 5.7.2 + vitest: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' + - '@edge-runtime/vm' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@testing-library/react' + - '@types/node' + - '@types/react' + - '@types/react-dom' + - '@types/webpack' + - '@vitest/browser' + - '@vitest/ui' + - babel-plugin-macros + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - graphql + - happy-dom + - html-webpack-plugin + - jest + - jsdom + - less + - lightningcss + - node-notifier + - node-sass + - react-test-renderer + - sass + - sass-embedded + - sockjs-client + - stylus + - sugarss + - supports-color + - terser + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + '@bitdev/node.generators.node-starters@0.0.11': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/component-id': 1.2.0 + '@teambit/git.modules.git-ignore': 1.0.2 + comment-json: 4.2.5 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.19.6)': + '@bitdev/node.generators.node-templates@4.0.1': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + lodash: 4.17.21 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@bitdev/node.node-env@4.0.27(@babel/traverse@7.28.0)(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)(type-fest@0.21.3)(typescript@5.8.3)': + dependencies: + '@babel/core': 7.26.9 + '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.26.9) + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-typescript': 7.22.15(@babel/core@7.26.9) + '@bitdev/node.generators.node-starters': 0.0.11 + '@bitdev/node.generators.node-templates': 4.0.1 + '@bitdev/react.eslint.eslint-config-bit-react': 1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3) + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@bitdev/react.react-env': 4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@teambit/preview.react-preview': 1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3) + '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0) + '@teambit/vite.vitest-tester': 0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@types/eslint': 8.56.0 + '@types/find-root': 1.1.4 + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0) + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + find-root: 1.1.0 + graphql: 16.11.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + rollup: 4.22.0 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + transitivePeerDependencies: + - '@babel/traverse' + - '@edge-runtime/vm' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@testing-library/react' + - '@types/debug' + - '@types/webpack' + - '@vitest/browser' + - '@vitest/coverage-v8' + - '@vitest/ui' + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - graphql-ws + - happy-dom + - html-webpack-plugin + - jest + - jsdom + - less + - lightningcss + - msw + - node-sass + - sass + - sass-embedded + - sockjs-client + - stylus + - subscriptions-transport-ws + - sugarss + - supports-color + - terser + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.0)': + '@bitdev/react.app-types.vite-react@2.1.7(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/toolbox.network.get-port': 1.0.6 + compression: 1.8.0 + express: 4.21.2 + lodash-es: 4.17.21 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.9)': + '@bitdev/react.eslint.eslint-config-bit-react@1.1.14(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + eslint: 8.56.0 + eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2) + eslint-config-prettier: 8.5.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + transitivePeerDependencies: + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.19.6)': + '@bitdev/react.eslint.eslint-config-bit-react@1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + eslint: 8.56.0 + eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3) + eslint-config-prettier: 8.5.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + transitivePeerDependencies: + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2)': + '@bitdev/react.generators.react-starters@1.1.1': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/component-id': 1.2.0 + '@teambit/git.modules.git-ignore': 1.0.2 + comment-json: 4.2.3 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@bitdev/react.generators.react-templates@4.0.2': {} - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.9)': + '@bitdev/react.preview.react-docs-app@0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - '@types/react' + - '@types/react-dom' + - encoding + - graphql + - typescript - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.19.6)': + '@bitdev/react.preview.react-docs-template@0.0.7(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - '@types/react' + - '@types/react-dom' + - encoding + - graphql + - typescript - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@bitdev/react.react-env@4.1.9(@babel/traverse@7.28.0)(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(html-webpack-plugin@5.6.3(webpack@5.100.2))(jest@29.3.1(@types/node@20.12.10))(less@4.3.0)(lightningcss@1.30.1)(terser@5.43.1)(type-fest@0.21.3)': + dependencies: + '@apollo/client': 3.13.8(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@babel/core': 7.26.9 + '@bitdev/react.eslint.eslint-config-bit-react': 1.1.15(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-mdx@1.17.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3) + '@bitdev/react.generators.react-starters': 1.1.1 + '@bitdev/react.generators.react-templates': 4.0.2 + '@bitdev/react.preview.react-docs-app': 0.0.5(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(typescript@5.8.3) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/defender.prettier-formatter': 1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@19.0.0) + '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@19.0.2)(react@19.0.0) + '@teambit/preview.react-preview': 1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3) + '@teambit/react.jest.react-jest': 1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10)) + '@teambit/react.mounter': 1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0) + '@teambit/vite.vitest-tester': 0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@testing-library/dom': 10.4.0 + '@testing-library/jest-dom': 6.4.8 + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/eslint': 8.56.0 + '@types/find-root': 1.1.4 + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + browserslist: 4.23.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + find-root: 1.1.0 + graphql: 16.11.0 + jsdom: 24.1.3 + pino-pretty: 4.5.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-helmet: 6.1.0(react@19.0.0) + react-router-dom: 6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + rollup: 4.22.0 + sass: 1.89.2 + typescript: 5.8.3 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@babel/traverse' + - '@edge-runtime/vm' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@types/debug' + - '@types/webpack' + - '@vitest/browser' + - '@vitest/coverage-v8' + - '@vitest/ui' + - bufferutil + - canvas + - clean-css + - csso + - debug + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - graphql-ws + - happy-dom + - html-webpack-plugin + - jest + - less + - lightningcss + - msw + - node-sass + - sass-embedded + - sockjs-client + - stylus + - subscriptions-transport-ws + - sugarss + - supports-color + - terser + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.0)': + '@bitdev/react.webpack.refresh-overlay@0.0.5': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + react-error-overlay: 6.0.9 + strip-ansi: 6.0.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.12.9)': + '@bitdev/react.webpack.refresh-overlay@0.0.6': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + react-error-overlay: 6.0.9 + strip-ansi: 6.0.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/color-helpers@5.0.2': {} - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.2)': + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.0)': + '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/color-helpers': 5.0.2 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.9)': + '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/css-tokenizer': 3.0.4 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/css-tokenizer@3.0.4': {} - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/normalize.css@12.1.1': {} - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.0)': + '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.19.6)': + '@csstools/postcss-color-function@1.1.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.20.2)': + '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)': + '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.19)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.12.9)': + '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.19.6)': + '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.19)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) + postcss: 8.4.19 + postcss-selector-parser: 6.1.2 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.20.2)': + '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.19)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)': + '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.12.9)': + '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.12.9) - transitivePeerDependencies: - - supports-color + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.19.6)': + '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.19)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.20.2)': + '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.19)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)': + '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.19)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) - transitivePeerDependencies: - - supports-color + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.12.9)': + '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.19)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.19.6)': + '@csstools/postcss-unset-value@1.0.2(postcss@8.4.19)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + postcss: 8.4.19 - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.20.2)': + '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + postcss-selector-parser: 6.1.2 - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@esbuild/aix-ppc64@0.21.5': + optional: true - '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@esbuild/android-arm64@0.21.5': + optional: true - '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@esbuild/android-arm@0.21.5': + optional: true - '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true - '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.0)': + '@eslint-community/eslint-utils@4.7.0(eslint@8.56.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 - '@babel/plugin-transform-classes@7.28.0(@babel/core@7.12.9)': + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/eslintrc@2.1.4': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-globals': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) - '@babel/traverse': 7.28.0 + ajv: 6.12.6 + debug: 4.4.1 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.28.0(@babel/core@7.19.6)': + '@eslint/js@8.56.0': {} + + '@floating-ui/core@0.7.3': {} + + '@floating-ui/dom@0.5.4': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-globals': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@floating-ui/core': 0.7.3 - '@babel/plugin-transform-classes@7.28.0(@babel/core@7.20.2)': + '@floating-ui/react-dom@0.7.2(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-globals': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) - '@babel/traverse': 7.28.0 + '@floating-ui/dom': 0.5.4 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + use-isomorphic-layout-effect: 1.2.1(@types/react@18.3.23)(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@types/react' - '@babel/plugin-transform-classes@7.28.0(@babel/core@7.28.0)': + '@floating-ui/react-dom@0.7.2(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-globals': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) - '@babel/traverse': 7.28.0 + '@floating-ui/dom': 0.5.4 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + use-isomorphic-layout-effect: 1.2.1(@types/react@19.0.2)(react@19.0.0) transitivePeerDependencies: - - supports-color + - '@types/react' - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.12.9)': + '@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/template': 7.27.2 + graphql: 16.11.0 - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/template': 7.27.2 + '@hapi/bourne@2.1.0': {} - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.20.2)': + '@humanwhocodes/config-array@0.11.14': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/template': 7.27.2 - - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/template': 7.27.2 - - '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.4.1 + minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 + '@humanwhocodes/module-importer@1.0.1': {} - '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 + '@humanwhocodes/object-schema@2.0.3': {} - '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.12.9)': + '@isaacs/cliui@8.0.2': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 - '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.19.6)': + '@istanbuljs/load-nyc-config@1.1.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 - '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@istanbuljs/schema@0.1.3': {} - '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)': + '@jest/console@29.7.0': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@jest/types': 29.6.3 + '@types/node': 20.12.10 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 - '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.12.9)': + '@jest/core@29.7.0': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.10 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.12.10) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node - '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.19.6)': + '@jest/environment@29.7.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.10 + jest-mock: 29.7.0 - '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.20.2)': + '@jest/expect-utils@29.7.0': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + jest-get-type: 29.6.3 - '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)': + '@jest/expect@29.7.0': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.19.6)': + '@jest/fake-timers@29.7.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.19.6) + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.12.10 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.12.9)': + '@jest/globals@29.7.0': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.19.6)': + '@jest/reporters@29.7.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.29 + '@types/node': 20.12.10 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.3.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.20.2)': + '@jest/schemas@29.6.3': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + '@sinclair/typebox': 0.27.8 - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)': + '@jest/source-map@29.6.3': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + '@jridgewell/trace-mapping': 0.3.29 + callsites: 3.1.0 + graceful-fs: 4.2.11 - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.12.9)': + '@jest/test-result@29.3.1': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.19.6)': + '@jest/test-result@29.7.0': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.20.2)': + '@jest/test-sequencer@29.7.0': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)': + '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.0 + '@babel/core': 7.26.9 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.29 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.8 + pirates: 4.0.7 + slash: 3.0.0 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.19.6)': + '@jest/types@29.6.3': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.10 + '@types/yargs': 17.0.33 + chalk: 4.1.2 - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.20.2)': + '@jridgewell/gen-mapping@0.3.12': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/trace-mapping': 0.3.29 - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@jridgewell/resolve-uri@3.1.2': {} - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.12.9)': + '@jridgewell/source-map@0.3.10': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@jridgewell/sourcemap-codec@1.5.4': {} - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.20.2)': + '@jridgewell/trace-mapping@0.3.29': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.4 - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@leichtgewicht/ip-codec@2.0.5': {} - '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.12.9)': + '@mdx-js/mdx@1.6.21': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.11.6 + '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) + '@mdx-js/util': 1.6.21 + babel-plugin-apply-mdx-type-prop: 1.6.21(@babel/core@7.11.6) + babel-plugin-extract-import-names: 1.6.21 + camelcase-css: 2.0.1 + detab: 2.0.3 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 9.1.2 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.21 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.19.6)': + '@mdx-js/mdx@1.6.22': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.12.9 + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9) + babel-plugin-extract-import-names: 1.6.22 + camelcase-css: 2.0.1 + detab: 2.0.4 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 10.0.1 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.20.2)': + '@mdx-js/react@1.6.22(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + react: 18.3.1 - '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)': + '@mdx-js/react@1.6.22(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + react: 19.0.0 - '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-simple-access': 7.27.1 - transitivePeerDependencies: - - supports-color + '@mdx-js/util@1.6.21': {} - '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-simple-access': 7.27.1 - transitivePeerDependencies: - - supports-color + '@mdx-js/util@1.6.22': {} - '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.20.2)': + '@nodelib/fs.scandir@2.1.5': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-simple-access': 7.27.1 - transitivePeerDependencies: - - supports-color + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 - '@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-simple-access': 7.27.1 - transitivePeerDependencies: - - supports-color + '@nodelib/fs.stat@2.0.5': {} - '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.19.6)': + '@nodelib/fs.walk@1.2.8': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 - '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.12.9)': + '@parcel/css@1.14.0': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + lightningcss: 1.30.1 - '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-android-arm64@2.5.1': + optional: true - '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-darwin-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-x64@2.5.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.5.1': + optional: true + + '@parcel/watcher-win32-arm64@2.5.1': + optional: true + + '@parcel/watcher-win32-ia32@2.5.1': + optional: true + + '@parcel/watcher-win32-x64@2.5.1': + optional: true - '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.0)': + '@parcel/watcher@2.5.1': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.0 - transitivePeerDependencies: - - supports-color + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.1 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.5.1 + '@parcel/watcher-darwin-arm64': 2.5.1 + '@parcel/watcher-darwin-x64': 2.5.1 + '@parcel/watcher-freebsd-x64': 2.5.1 + '@parcel/watcher-linux-arm-glibc': 2.5.1 + '@parcel/watcher-linux-arm-musl': 2.5.1 + '@parcel/watcher-linux-arm64-glibc': 2.5.1 + '@parcel/watcher-linux-arm64-musl': 2.5.1 + '@parcel/watcher-linux-x64-glibc': 2.5.1 + '@parcel/watcher-linux-x64-musl': 2.5.1 + '@parcel/watcher-win32-arm64': 2.5.1 + '@parcel/watcher-win32-ia32': 2.5.1 + '@parcel/watcher-win32-x64': 2.5.1 + optional: true - '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.12.9)': + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + ansi-html: 0.0.9 + core-js-pure: 3.44.0 + error-stack-parser: 2.1.4 + html-entities: 2.6.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 4.3.2 + source-map: 0.7.4 + webpack: 5.100.2(esbuild@0.14.29) + optionalDependencies: + type-fest: 0.21.3 + webpack-dev-server: 4.15.0(webpack@5.100.2) + + '@popperjs/core@2.11.8': {} + + '@remix-run/router@1.23.0': {} + + '@rolldown/pluginutils@1.0.0-beta.19': {} + + '@rollup/rollup-android-arm-eabi@4.22.0': + optional: true + + '@rollup/rollup-android-arm64@4.22.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.22.0': + optional: true + + '@rollup/rollup-darwin-x64@4.22.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.22.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.22.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.22.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.22.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.22.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.22.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.22.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.22.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.22.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.22.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.22.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.22.0': + optional: true + + '@sinclair/typebox@0.27.8': {} - '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.19.6)': + '@sinonjs/commons@3.0.1': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + type-detect: 4.0.8 - '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.20.2)': + '@sinonjs/fake-timers@10.3.0': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + '@sinonjs/commons': 3.0.1 - '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.0)': + '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.26.9 - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.12.9)': + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.19.6)': + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.20.2)': + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)': + '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.12.9)': + '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.19.6)': + '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.20.2)': + '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 - '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)': + '@svgr/babel-preset@8.1.0(@babel/core@7.26.9)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.9) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.9) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.9) - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.12.9)': + '@svgr/core@8.1.0(typescript@5.5.3)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.12.9) + '@babel/core': 7.26.9 + '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9) + camelcase: 6.3.0 + cosmiconfig: 8.3.6(typescript@5.5.3) + snake-case: 3.0.4 transitivePeerDependencies: - supports-color + - typescript - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.19.6)': + '@svgr/core@8.1.0(typescript@5.7.2)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.19.6) + '@babel/core': 7.26.9 + '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9) + camelcase: 6.3.0 + cosmiconfig: 8.3.6(typescript@5.7.2) + snake-case: 3.0.4 transitivePeerDependencies: - supports-color + - typescript - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.20.2)': + '@svgr/core@8.1.0(typescript@5.8.3)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.20.2) + '@babel/core': 7.26.9 + '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9) + camelcase: 6.3.0 + cosmiconfig: 8.3.6(typescript@5.8.3) + snake-case: 3.0.4 transitivePeerDependencies: - supports-color + - typescript - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.0)': + '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) + '@babel/types': 7.28.1 + entities: 4.5.0 + + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))': + dependencies: + '@babel/core': 7.26.9 + '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9) + '@svgr/core': 8.1.0(typescript@5.8.3) + '@svgr/hast-util-to-babel-ast': 8.0.0 + svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.12.9)': + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.5.3)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@svgr/core': 8.1.0(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.5.3) + deepmerge: 4.3.1 + svgo: 3.3.2 transitivePeerDependencies: - - supports-color + - typescript - '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.19.6)': + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.7.2)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@svgr/core': 8.1.0(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.7.2) + deepmerge: 4.3.1 + svgo: 3.3.2 transitivePeerDependencies: - - supports-color + - typescript - '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.20.2)': + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@svgr/core': 8.1.0(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.8.3) + deepmerge: 4.3.1 + svgo: 3.3.2 transitivePeerDependencies: - - supports-color + - typescript - '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)': + '@svgr/webpack@8.1.0(typescript@5.5.3)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/core': 7.26.9 + '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9) + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9) + '@svgr/core': 8.1.0(typescript@5.5.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.5.3) transitivePeerDependencies: - supports-color + - typescript - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.11.6)': + '@svgr/webpack@8.1.0(typescript@5.7.2)': dependencies: - '@babel/core': 7.11.6 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 + '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9) + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9) + '@svgr/core': 8.1.0(typescript@5.7.2) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.7.2) + transitivePeerDependencies: + - supports-color + - typescript - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.12.9)': + '@svgr/webpack@8.1.0(typescript@5.8.3)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@babel/core': 7.26.9 + '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.26.9) + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9) + '@svgr/core': 8.1.0(typescript@5.8.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))(typescript@5.8.3) + transitivePeerDependencies: + - supports-color + - typescript - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-android-arm-eabi@0.0.20': + optional: true - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-android-arm64@0.0.20': + optional: true - '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-darwin-arm64@0.0.20': + optional: true - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-darwin-x64@0.0.20': + optional: true - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-freebsd-x64@0.0.20': + optional: true - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.20.2)': - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-linux-arm-gnueabihf@0.0.20': + optional: true - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-linux-arm64-gnu@0.0.20': + optional: true - '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-linux-arm64-musl@0.0.20': + optional: true - '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-linux-x64-gnu@0.0.20': + optional: true - '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-linux-x64-musl@0.0.20': + optional: true - '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@swc/css-win32-arm64-msvc@0.0.20': + optional: true - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.12.9) - transitivePeerDependencies: - - supports-color + '@swc/css-win32-ia32-msvc@0.0.20': + optional: true - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@swc/css-win32-x64-msvc@0.0.20': + optional: true - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.0)': - dependencies: - '@babel/core': 7.28.0 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) - transitivePeerDependencies: - - supports-color + '@swc/css@0.0.20': + optionalDependencies: + '@swc/css-android-arm-eabi': 0.0.20 + '@swc/css-android-arm64': 0.0.20 + '@swc/css-darwin-arm64': 0.0.20 + '@swc/css-darwin-x64': 0.0.20 + '@swc/css-freebsd-x64': 0.0.20 + '@swc/css-linux-arm-gnueabihf': 0.0.20 + '@swc/css-linux-arm64-gnu': 0.0.20 + '@swc/css-linux-arm64-musl': 0.0.20 + '@swc/css-linux-x64-gnu': 0.0.20 + '@swc/css-linux-x64-musl': 0.0.20 + '@swc/css-win32-arm64-msvc': 0.0.20 + '@swc/css-win32-ia32-msvc': 0.0.20 + '@swc/css-win32-x64-msvc': 0.0.20 + + '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.23 + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.12.9)': + '@teambit/base-react.navigation.link@2.0.31(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.12.9) - '@babel/types': 7.28.1 - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.routing.compare-url': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': 19.0.2 + classnames: 2.3.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.19.6)': + '@teambit/base-react.theme.theme-provider@1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.19.6) - '@babel/types': 7.28.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.0)': + '@teambit/base-react.theme.theme-provider@1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) - '@babel/types': 7.28.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.12.9)': + '@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.19.6)': + '@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.12.9)': + '@teambit/base-ui.css-components.elevation@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.19.6)': + '@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.20.2)': + '@teambit/base-ui.css-components.roundness@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.28.0)': + '@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.elements.icon@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.elements.icon@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.input.button@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-runtime@7.28.0(@babel/core@7.19.6)': + '@teambit/base-ui.input.button@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.27.1 - '@babel/helper-plugin-utils': 7.27.1 - babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.19.6) - babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.19.6) - babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.19.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.input.error@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.input.error@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.layout.grid-component@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.layout.grid-component@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.routing.compare-url@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + url-parse: 1.5.10 - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.routing.compare-url@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + url-parse: 1.5.10 - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.routing.native-link@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.routing.native-link@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.styles.flex-center@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.surfaces.background@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.surfaces.card@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.background': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.surfaces.card@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.background': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.19.6)': + '@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.20.2)': + '@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.27.3 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.12.9)': + '@teambit/base-ui.text.heading@1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.text.heading@1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.19.6) - '@babel/helper-plugin-utils': 7.27.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.20.2)': + '@teambit/base-ui.text.paragraph@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.20.2) - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)': + '@teambit/base-ui.text.paragraph@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) - '@babel/helper-plugin-utils': 7.27.1 + '@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-env@7.20.2(@babel/core@7.12.9)': + '@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.9) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.12.9) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.12.9) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.12.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.12.9) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.12.9) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.12.9) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.9) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.12.9) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.12.9) - '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.12.9) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.12.9) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.12.9) - '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.12.9) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.12.9) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.12.9) - '@babel/preset-modules': 0.1.6(@babel/core@7.12.9) - '@babel/types': 7.28.1 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.12.9) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.12.9) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.12.9) - core-js-compat: 3.44.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-env@7.20.2(@babel/core@7.19.6)': + '@teambit/base-ui.text.text-sizes@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.19.6) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.6) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.19.6) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.6) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.6) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.19.6) - '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.19.6) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.19.6) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.19.6) - '@babel/preset-modules': 0.1.6(@babel/core@7.19.6) - '@babel/types': 7.28.1 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.6) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.6) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.6) - core-js-compat: 3.44.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-env@7.20.2(@babel/core@7.20.2)': + '@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.2) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.20.2) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.2) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.2) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.20.2) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.20.2) - '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.20.2) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.20.2) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.20.2) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.20.2) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.20.2) - '@babel/preset-modules': 0.1.6(@babel/core@7.20.2) - '@babel/types': 7.28.1 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.2) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.2) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.2) - core-js-compat: 3.44.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-env@7.20.2(@babel/core@7.28.0)': + '@teambit/base-ui.text.themed-text@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.28.0 - '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.28.0) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.28.0) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.28.0) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.28.0) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.28.0) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.28.0) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.28.0) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0) - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.0) - '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.28.0) - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.28.0) - '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.28.0) - '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0) - '@babel/preset-modules': 0.1.6(@babel/core@7.28.0) - '@babel/types': 7.28.1 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.28.0) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.28.0) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.28.0) - core-js-compat: 3.44.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-modules@0.1.6(@babel/core@7.12.9)': + '@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.12.9) - '@babel/types': 7.28.1 - esutils: 2.0.3 + '@teambit/base-ui.theme.colors': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-modules@0.1.6(@babel/core@7.19.6)': + '@teambit/base-ui.theme.accent-color@1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.19.6) - '@babel/types': 7.28.1 - esutils: 2.0.3 + '@teambit/base-ui.theme.colors': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-modules@0.1.6(@babel/core@7.20.2)': + '@teambit/base-ui.theme.colors@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.20.2) - '@babel/types': 7.28.1 - esutils: 2.0.3 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-modules@0.1.6(@babel/core@7.28.0)': + '@teambit/base-ui.theme.colors@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.28.0) - '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0) - '@babel/types': 7.28.1 - esutils: 2.0.3 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-react@7.18.6(@babel/core@7.12.9)': + '@teambit/base-ui.theme.fonts.book@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.12.9) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.12.9) - '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.12.9) - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-react@7.18.6(@babel/core@7.19.6)': + '@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-react@7.18.6(@babel/core@7.28.0)': + '@teambit/base-ui.theme.sizes@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.0) - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.0) - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/preset-typescript@7.18.6(@babel/core@7.20.2)': + '@teambit/base-ui.utils.composer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/preset-typescript@7.27.1(@babel/core@7.19.6)': + '@teambit/base-ui.utils.composer@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-option': 7.27.1 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.19.6) - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/runtime-corejs3@7.28.0': + '@teambit/base-ui.utils.string.affix@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - core-js-pure: 3.44.0 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@babel/runtime@7.20.0': + '@teambit/base-ui.utils.string.affix@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - regenerator-runtime: 0.13.11 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@babel/template@7.27.2': - dependencies: - '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 + '@teambit/bit-error@0.0.404': {} - '@babel/traverse@7.28.0': + '@teambit/community.constants.links@0.0.2': {} + + '@teambit/community.ui.content-tabs@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.0 - '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.0 - '@babel/template': 7.27.2 - '@babel/types': 7.28.1 - debug: 4.4.1 + '@teambit/ui-foundation.ui.use-box.tab': 0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 transitivePeerDependencies: - - supports-color + - react-dom - '@babel/types@7.20.0': + '@teambit/community.ui.content-tabs@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - to-fast-properties: 2.0.0 + '@teambit/ui-foundation.ui.use-box.tab': 0.0.115(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@babel/types@7.28.1': + '@teambit/compilation.compiler-task@1.0.12': dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - - '@bcoe/v8-coverage@0.2.3': {} - - '@csstools/color-helpers@5.0.2': {} + '@teambit/toolbox.fs.hard-link-directory': 0.0.23 + fs-extra: 10.1.0 - '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': + '@teambit/component-id@1.2.0': dependencies: - '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) - '@csstools/css-tokenizer': 3.0.4 + '@teambit/component-version': 1.0.3 + '@teambit/legacy-bit-id': 1.1.0 + lodash: 4.17.21 - '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': + '@teambit/component-id@1.2.2': dependencies: - '@csstools/color-helpers': 5.0.2 - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) - '@csstools/css-tokenizer': 3.0.4 + '@teambit/component-version': 1.0.3 + '@teambit/legacy-bit-id': 1.1.1 + lodash: 4.17.21 - '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': + '@teambit/component-id@1.2.4': dependencies: - '@csstools/css-tokenizer': 3.0.4 - - '@csstools/css-tokenizer@3.0.4': {} + '@teambit/component-version': 1.0.4 + '@teambit/legacy-bit-id': 1.1.3 + lodash: 4.17.21 - '@csstools/normalize.css@12.1.1': {} + '@teambit/component-version@1.0.3': + dependencies: + '@teambit/bit-error': 0.0.404 + semver: 7.5.2 - '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.19)': + '@teambit/component-version@1.0.4': dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) - postcss: 8.4.19 - postcss-selector-parser: 6.1.2 + '@teambit/bit-error': 0.0.404 + semver: 7.7.1 - '@csstools/postcss-color-function@1.1.1(postcss@8.4.19)': + '@teambit/component.modules.component-url@0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/base-ui.utils.string.affix': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/component-id': 1.2.2 + query-string: 7.0.0 + react: 18.3.1 + transitivePeerDependencies: + - react-dom - '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.19)': + '@teambit/component.modules.component-url@0.0.169(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/base-ui.utils.string.affix': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/component-id': 1.2.2 + query-string: 7.0.0 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.19)': + '@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - encoding + - graphql - '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.19)': + '@teambit/component.ui.hooks.use-fetch-docs@0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - encoding + - graphql - '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.19)': + '@teambit/compositions.model.composition-id@0.0.498': dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2) - postcss: 8.4.19 - postcss-selector-parser: 6.1.2 + humanize-string: 2.1.0 - '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.19)': + '@teambit/compositions.model.composition-type@0.0.499(react@18.3.1)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: 18.3.1 - '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.19)': + '@teambit/compositions.model.composition-type@0.0.499(react@19.0.0)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + react: 19.0.0 - '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.19)': + '@teambit/compositions.ui.composition-card@0.0.511(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/base-ui.surfaces.card': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.text.themed-text': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.theme.accent-color': 1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/compositions.model.composition-id': 0.0.498 + '@teambit/compositions.model.composition-type': 0.0.499(react@18.3.1) + '@teambit/evangelist.elements.icon': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.error-fallback': 0.0.125(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) - '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.19)': + '@teambit/compositions.ui.composition-card@0.0.511(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/base-ui.surfaces.card': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.text.themed-text': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.theme.accent-color': 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/compositions.model.composition-id': 0.0.498 + '@teambit/compositions.model.composition-type': 0.0.499(react@19.0.0) + '@teambit/evangelist.elements.icon': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.error-fallback': 0.0.125(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) - '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.19)': + '@teambit/compositions.ui.composition-live-controls-react@0.0.3(@types/react@19.0.2)(react@19.0.0)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/compositions.ui.composition-live-controls': 0.0.3 + '@types/react': 19.0.2 + react: 19.0.0 - '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.19)': - dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/compositions.ui.composition-live-controls@0.0.3': {} - '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.19)': + '@teambit/compositions.ui.compositions-overview@0.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - postcss: 8.4.19 - postcss-value-parser: 4.2.0 + '@teambit/compositions.model.composition-type': 0.0.499(react@18.3.1) + '@teambit/compositions.ui.composition-card': 0.0.511(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@csstools/postcss-unset-value@1.0.2(postcss@8.4.19)': + '@teambit/compositions.ui.compositions-overview@0.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - postcss: 8.4.19 + '@teambit/compositions.model.composition-type': 0.0.499(react@19.0.0) + '@teambit/compositions.ui.composition-card': 0.0.511(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)': + '@teambit/defender.coverage-report@0.1.0': dependencies: - postcss-selector-parser: 6.1.2 + fs-extra: 11.3.0 - '@eslint/eslintrc@0.4.3': + '@teambit/defender.eslint-linter@1.0.55(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - ajv: 6.12.6 - debug: 4.4.1 - espree: 7.3.1 - globals: 13.24.0 - ignore: 4.0.6 - import-fresh: 3.3.1 - js-yaml: 3.14.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 + '@teambit/bit-error': 0.0.404 + '@teambit/community.ui.content-tabs': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/defender.linter-task': 1.0.8 + '@teambit/typescript.typescript-compiler': 2.0.58(react@18.3.1) + comment-json: 4.2.3 + eslint: 8.56.0 + fs-extra: 10.1.0 + lodash: 4.17.21 + object-hash: 3.0.0 + p-map-series: 2.1.0 + react: 18.3.1 transitivePeerDependencies: - - supports-color + - react-dom - '@graphql-typed-document-node/core@3.2.0(graphql@14.7.0)': + '@teambit/defender.eslint-linter@1.0.55(eslint@8.56.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - graphql: 14.7.0 - - '@hapi/bourne@2.1.0': {} + '@teambit/bit-error': 0.0.404 + '@teambit/community.ui.content-tabs': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/defender.linter-task': 1.0.8 + '@teambit/typescript.typescript-compiler': 2.0.58(react@19.0.0) + comment-json: 4.2.3 + eslint: 8.56.0 + fs-extra: 10.1.0 + lodash: 4.17.21 + object-hash: 3.0.0 + p-map-series: 2.1.0 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@humanwhocodes/config-array@0.5.0': + '@teambit/defender.jest-tester@2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))': dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.4.1 - minimatch: 3.1.2 + '@babel/core': 7.26.9 + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.26.9) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.26.9) + '@babel/preset-env': 7.28.0(@babel/core@7.26.9) + '@babel/preset-typescript': 7.27.1(@babel/core@7.26.9) + '@jest/test-result': 29.3.1 + '@teambit/defender.coverage-report': 0.1.0 + '@teambit/defender.tester-task': 1.0.14 + '@teambit/tests-results': 1.0.5 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0) + babel-preset-jest: 29.2.0(@babel/core@7.26.9) + camelcase: 7.0.0 + comlink: 4.3.1 + flatted: 3.2.7 + fs-extra: 11.3.0 + identity-obj-proxy: 3.0.0 + jest: 29.3.1(@types/node@20.12.10) + jest-message-util: 29.3.1 + lodash: 4.17.21 + minimatch: 5.1.0 + normalize-path: 3.0.0 + uuid: 10.0.0 transitivePeerDependencies: + - '@babel/traverse' - supports-color - '@humanwhocodes/object-schema@1.2.1': {} + '@teambit/defender.linter-task@1.0.8': {} - '@istanbuljs/load-nyc-config@1.1.0': + '@teambit/defender.prettier-formatter@1.0.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - - '@istanbuljs/schema@0.1.3': {} + '@teambit/bit-error': 0.0.404 + '@teambit/community.ui.content-tabs': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + fs-extra: 10.1.0 + lodash: 4.17.21 + p-map-series: 2.1.0 + prettier: 3.3.3 + react: 18.3.1 + transitivePeerDependencies: + - react-dom - '@jest/console@29.7.0': + '@teambit/defender.prettier-formatter@1.0.23(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@jest/types': 29.6.3 - '@types/node': 16.18.126 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 + '@teambit/bit-error': 0.0.404 + '@teambit/community.ui.content-tabs': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + fs-extra: 10.1.0 + lodash: 4.17.21 + p-map-series: 2.1.0 + prettier: 3.3.3 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)': + '@teambit/defender.tester-task@1.0.14': dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 16.18.126 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.8 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node + fs-extra: 10.1.0 + junit-report-builder: 3.2.1 + strip-ansi: 6.0.0 - '@jest/environment@29.7.0': + '@teambit/dependencies.modules.packages-excluder@1.0.8(react@18.3.1)': dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 16.18.126 - jest-mock: 29.7.0 + react: 18.3.1 - '@jest/expect-utils@29.7.0': + '@teambit/dependencies.modules.packages-excluder@1.0.8(react@19.0.0)': dependencies: - jest-get-type: 29.6.3 + react: 19.0.0 - '@jest/expect@29.7.0': + '@teambit/design.theme.icons-font@1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@jest/fake-timers@29.7.0': + '@teambit/design.theme.icons-font@1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 16.18.126 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-util: 29.7.0 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@jest/globals@29.7.0': + '@teambit/design.theme.icons-font@2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 - jest-mock: 29.7.0 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@jest/reporters@29.7.0': + '@teambit/design.theme.icons-font@2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.29 - '@types/node': 16.18.126 - chalk: 4.1.2 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.3 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.7 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - jest-worker: 29.7.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.3.0 - transitivePeerDependencies: - - supports-color + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@jest/schemas@29.6.3': + '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@sinclair/typebox': 0.27.8 + '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.3.1 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@jest/source-map@29.6.3': + '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@jridgewell/trace-mapping': 0.3.29 - callsites: 3.1.0 - graceful-fs: 4.2.11 + '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.theme.icons-font': 1.0.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.3.1 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@jest/test-result@29.3.1': + '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@jest/test-result@29.7.0': + '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@jest/test-sequencer@29.7.0': + '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@jest/test-result': 29.7.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - slash: 3.0.0 + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@jest/transform@29.7.0': + '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.28.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.29 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.8 - pirates: 4.0.7 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - - '@jest/types@26.6.2': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 16.18.126 - '@types/yargs': 15.0.19 - chalk: 4.1.2 - - '@jest/types@29.6.3': - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 16.18.126 - '@types/yargs': 17.0.33 - chalk: 4.1.2 - - '@jridgewell/gen-mapping@0.3.12': - dependencies: - '@jridgewell/sourcemap-codec': 1.5.4 - '@jridgewell/trace-mapping': 0.3.29 - - '@jridgewell/resolve-uri@3.1.2': {} - - '@jridgewell/source-map@0.3.10': - dependencies: - '@jridgewell/gen-mapping': 0.3.12 - '@jridgewell/trace-mapping': 0.3.29 - - '@jridgewell/sourcemap-codec@1.5.4': {} - - '@jridgewell/trace-mapping@0.3.29': - dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.4 - - '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 - core-js: 3.44.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 - core-js: 3.44.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@learnbit/hello-world.envs.my-react-env@0.0.3(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3 - core-js: 3.44.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@leichtgewicht/ip-codec@2.0.5': {} - - '@mdx-js/mdx@1.6.21': - dependencies: - '@babel/core': 7.11.6 - '@babel/plugin-syntax-jsx': 7.10.4(@babel/core@7.11.6) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.6) - '@mdx-js/util': 1.6.21 - babel-plugin-apply-mdx-type-prop: 1.6.21(@babel/core@7.11.6) - babel-plugin-extract-import-names: 1.6.21 - camelcase-css: 2.0.1 - detab: 2.0.3 - hast-util-raw: 6.0.1 - lodash.uniq: 4.5.0 - mdast-util-to-hast: 9.1.2 - remark-footnotes: 2.0.0 - remark-mdx: 1.6.21 - remark-parse: 8.0.3 - remark-squeeze-paragraphs: 4.0.0 - style-to-object: 0.3.0 - unified: 9.2.0 - unist-builder: 2.0.3 - unist-util-visit: 2.0.3 - transitivePeerDependencies: - - supports-color - - '@mdx-js/react@1.6.22(react@17.0.2)': - dependencies: - react: 17.0.2 - - '@mdx-js/react@1.6.22(react@18.3.1)': - dependencies: - react: 18.3.1 - - '@mdx-js/util@1.6.21': {} - - '@mdx-js/util@1.6.22': {} - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.19.1 - - '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 2.0.16 - core-js: 3.44.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@org/scope-name.envs.my-react-env@file:scope-name/envs/my-react-env(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 2.0.16 - core-js: 3.44.0 - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@org/scope-name.get-hello-world@file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': - dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@org/scope-name.hello-world-app@file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@17.0.2(react@17.0.2))': - dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@org/scope-name.ui.hello-world': file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@17.0.2(react@17.0.2))(react@18.3.1) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 17.0.2(react@17.0.2) - react-router-dom: 6.8.1(react-dom@17.0.2(react@17.0.2))(react@18.3.1) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@org/scope-name.hello-world-app@file:scope-name/hello-world-app(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))': - dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@org/scope-name.ui.hello-world': file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@17.0.2)': - dependencies: - '@mdx-js/react': 1.6.22(react@17.0.2) - '@org/scope-name.get-hello-world': file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@17.0.2))(react@17.0.2) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 17.0.2 - react-dom: 18.3.1(react@17.0.2) - react-router-dom: 6.8.1(react-dom@18.3.1(react@17.0.2))(react@17.0.2) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@org/scope-name.ui.hello-world@file:scope-name/ui/hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0)(react@18.3.1)': - dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@org/scope-name.get-hello-world': file:scope-name/get-hello-world(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@pmmmwh/react-refresh-webpack-plugin@0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1)': - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.44.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.6.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.84.1(esbuild@0.14.28) - optionalDependencies: - type-fest: 0.21.3 - webpack-dev-server: 4.15.0(webpack@5.84.1) - - '@prerenderer/prerenderer@1.2.5(@types/express@4.17.23)': - dependencies: - express: 4.18.2 - portfinder: 1.0.37 - schema-utils: 4.0.0 - stoppable: 1.1.0 - ts-deepmerge: 6.2.1 - optionalDependencies: - http-proxy-middleware: 2.0.9(@types/express@4.17.23) - transitivePeerDependencies: - - '@types/express' - - debug - - supports-color - - '@prerenderer/renderer-jsdom@1.1.9': - dependencies: - '@types/jsdom': 21.1.7 - jsdom: 26.1.0 - promise-limit: 2.7.0 - schema-utils: 4.2.0 - ts-deepmerge: 6.2.1 - whatwg-fetch: 3.6.20 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - '@prerenderer/renderer-puppeteer@1.2.4(puppeteer@24.13.0(typescript@4.9.3))': - dependencies: - promise-limit: 2.7.0 - puppeteer: 24.13.0(typescript@4.9.3) - schema-utils: 4.3.2 - ts-deepmerge: 6.2.1 - optional: true - - '@prerenderer/renderer-puppeteer@1.2.4(puppeteer@24.13.0(typescript@5.8.3))': - dependencies: - promise-limit: 2.7.0 - puppeteer: 24.13.0(typescript@5.8.3) - schema-utils: 4.3.2 - ts-deepmerge: 6.2.1 - optional: true - - '@prerenderer/webpack-plugin@5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1)': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - html-webpack-plugin: 5.5.0(webpack@5.84.1) - schema-utils: 4.3.2 - ts-deepmerge: 6.2.1 - webpack: 5.84.1(esbuild@0.14.28) - optionalDependencies: - '@prerenderer/renderer-puppeteer': 1.2.4(puppeteer@24.13.0(typescript@4.9.3)) - transitivePeerDependencies: - - '@types/express' - - debug - - puppeteer - - supports-color - - '@prerenderer/webpack-plugin@5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@5.8.3))(webpack@5.84.1)': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - html-webpack-plugin: 5.5.0(webpack@5.84.1) - schema-utils: 4.3.2 - ts-deepmerge: 6.2.1 - webpack: 5.84.1(esbuild@0.14.28) - optionalDependencies: - '@prerenderer/renderer-puppeteer': 1.2.4(puppeteer@24.13.0(typescript@5.8.3)) - transitivePeerDependencies: - - '@types/express' - - debug - - puppeteer - - supports-color - - '@puppeteer/browsers@2.10.5': - dependencies: - debug: 4.4.1 - extract-zip: 2.0.1 - progress: 2.0.3 - proxy-agent: 6.5.0 - semver: 7.7.2 - tar-fs: 3.1.0 - yargs: 17.7.2 - transitivePeerDependencies: - - bare-buffer - - supports-color - optional: true - - '@remix-run/router@1.3.2': {} - - '@sinclair/typebox@0.27.8': {} - - '@sinonjs/commons@3.0.1': - dependencies: - type-detect: 4.0.8 - - '@sinonjs/fake-timers@10.3.0': - dependencies: - '@sinonjs/commons': 3.0.1 - - '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - - '@svgr/babel-preset@6.5.1(@babel/core@7.19.6)': - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.19.6) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.19.6) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.19.6) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.19.6) - - '@svgr/core@6.5.1': - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) - '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) - camelcase: 6.3.0 - cosmiconfig: 7.1.0 - transitivePeerDependencies: - - supports-color - - '@svgr/hast-util-to-babel-ast@6.5.1': - dependencies: - '@babel/types': 7.28.1 - entities: 4.5.0 - - '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': - dependencies: - '@babel/core': 7.19.6 - '@svgr/babel-preset': 6.5.1(@babel/core@7.19.6) - '@svgr/core': 6.5.1 - '@svgr/hast-util-to-babel-ast': 6.5.1 - svg-parser: 2.0.4 - transitivePeerDependencies: - - supports-color - - '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': - dependencies: - '@svgr/core': 6.5.1 - cosmiconfig: 7.1.0 - deepmerge: 4.3.1 - svgo: 2.8.0 - - '@svgr/webpack@6.5.1': - dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.19.6) - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@babel/preset-typescript': 7.27.1(@babel/core@7.19.6) - '@svgr/core': 6.5.1 - '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) - '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) - transitivePeerDependencies: - - supports-color - - '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@types/react': 18.3.23 - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@types/react': 17.0.87 - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-react.navigation.link@2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.routing.compare-url': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@types/react': 18.3.23 - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-react.theme.theme-provider@1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-react.themes.theme-switcher@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.css-components.elevation@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.css-components.roundness@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.elements.dots-loader@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.elements.icon@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.input.button@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.elements.dots-loader': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.input.error@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.input.error@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.layout.breakpoints@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.layout.grid-component@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.layout.breakpoints': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.routing.compare-url@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - url-parse: 1.5.1 - - '@teambit/base-ui.styles.flex-center@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.background@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.card@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.css-components.elevation': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.css-components.roundness': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.background': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.split-pane.hover-splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.split-pane.layout@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.split-pane.pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.split-pane.split-pane@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.surfaces.split-pane.layout': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.surfaces.split-pane.splitter@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.text.heading@1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.text.paragraph@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.text.text-sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.text.text-sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.text.themed-text@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.theme.accent-color@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.theme.colors': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.theme.colors@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.theme.fonts.book@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.theme.sizes@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/base-ui.utils.composer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/bit-error@0.0.402': {} - - '@teambit/community.constants.links@0.0.2': {} - - '@teambit/compilation.compiler-task@0.0.4': - dependencies: - '@teambit/toolbox.fs.hard-link-directory': 0.0.9 - fs-extra: 10.1.0 - - '@teambit/compilation.compiler-task@1.0.6': - dependencies: - '@teambit/toolbox.fs.hard-link-directory': 0.0.15 - fs-extra: 10.1.0 - - '@teambit/component-id@0.0.425': - dependencies: - '@teambit/legacy-bit-id': 0.0.421 - - '@teambit/component-version@0.0.406': - dependencies: - '@teambit/bit-error': 0.0.402 - semver: 7.3.4 - - '@teambit/component.ui.hooks.use-fetch-docs@0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/graphql.hooks.use-query-light': 1.0.0(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - encoding - - graphql - - '@teambit/compositions.model.composition-id@0.0.496': - dependencies: - humanize-string: 2.1.0 - - '@teambit/compositions.model.composition-type@0.0.497(react@18.3.1)': - dependencies: - react: 18.3.1 - - '@teambit/compositions.ui.composition-card@0.0.504(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.surfaces.card': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.text.themed-text': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.theme.accent-color': 1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/compositions.model.composition-id': 0.0.496 - '@teambit/compositions.model.composition-type': 0.0.497(react@18.3.1) - '@teambit/evangelist.elements.icon': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) - - '@teambit/compositions.ui.compositions-overview@0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/compositions.model.composition-type': 0.0.497(react@18.3.1) - '@teambit/compositions.ui.composition-card': 0.0.504(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/defender.eslint-linter@0.0.10': - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/defender.linter-task': 0.0.5 - '@teambit/typescript.typescript-compiler': 0.0.9 - eslint: 7.32.0 - fs-extra: 10.1.0 - lodash: 4.17.21 - object-hash: 3.0.0 - p-map-series: 2.1.0 - typescript: 4.9.3 - transitivePeerDependencies: - - supports-color - - '@teambit/defender.jest-tester@0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0)': - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/preset-env': 7.20.2(@babel/core@7.20.2) - '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) - '@jest/test-result': 29.3.1 - '@teambit/defender.tester-task': 0.0.6 - '@teambit/tests-results': 0.0.104 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0) - babel-preset-jest: 29.2.0(@babel/core@7.20.2) - camelcase: 7.0.0 - comlink: 4.3.1 - flatted: 3.2.7 - fs-extra: 10.1.0 - identity-obj-proxy: 3.0.0 - jest: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - jest-message-util: 29.3.1 - lodash: 4.17.21 - minimatch: 5.1.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@teambit/defender.jest-tester@0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2) - '@babel/plugin-proposal-decorators': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-proposal-object-rest-spread': 7.20.2(@babel/core@7.20.2) - '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.2) - '@babel/preset-env': 7.20.2(@babel/core@7.20.2) - '@babel/preset-typescript': 7.18.6(@babel/core@7.20.2) - '@jest/test-result': 29.3.1 - '@teambit/defender.tester-task': 0.0.6 - '@teambit/tests-results': 0.0.104 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0) - babel-preset-jest: 29.2.0(@babel/core@7.20.2) - camelcase: 7.0.0 - comlink: 4.3.1 - flatted: 3.2.7 - fs-extra: 10.1.0 - identity-obj-proxy: 3.0.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - jest-message-util: 29.3.1 - lodash: 4.17.21 - minimatch: 5.1.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@types/node' - - babel-plugin-macros - - node-notifier - - supports-color - - ts-node - - '@teambit/defender.linter-task@0.0.5': {} - - '@teambit/defender.prettier-formatter@0.0.6': - dependencies: - '@teambit/bit-error': 0.0.402 - lodash: 4.17.21 - p-map-series: 2.1.0 - prettier: 2.7.1 - - '@teambit/defender.tester-task@0.0.6': - dependencies: - fs-extra: 10.1.0 - junit-report-builder: 3.0.0 - strip-ansi: 6.0.0 - - '@teambit/dependencies.modules.packages-excluder@0.0.70(react@18.3.1)': - dependencies: - react: 18.3.1 - - '@teambit/design.theme.icons-font@1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.theme.icons-font@2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.base-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.theme.theme-provider': 1.95.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.theme.icons-font': 1.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.3.1 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.dark-theme@1.91.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.light-theme@0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -12667,31 +13093,21 @@ snapshots: transitivePeerDependencies: - '@testing-library/react' - '@teambit/design.ui.error-page@0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/community.constants.links': 0.0.2 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/design.themes.theme-toggler@0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/community.constants.links': 0.0.2 + '@teambit/base-react.themes.theme-switcher': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.themes.base-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.themes.dark-theme': 1.91.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.themes.light-theme': 0.1.0(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@testing-library/react' - - '@types/react' - '@teambit/design.ui.error-page@0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/design.ui.error-page@0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/community.constants.links': 0.0.2 core-js: 3.44.0 react: 18.3.1 @@ -12709,59 +13125,18 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/design.ui.pages.not-found@0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/design.ui.icon-button@1.0.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.input.button': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@teambit/design.ui.pages.server-error@0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/design.ui.pages.not-found@0.0.371(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.ui.error-page': 0.0.364(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12769,110 +13144,107 @@ snapshots: - '@testing-library/react' - '@types/react' - '@teambit/docs.docs-template@0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3)': + '@teambit/design.ui.pages.server-error@0.0.368(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/design.ui.error-page': 0.0.369(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - - encoding - - graphql - - typescript - '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3)': + '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - core-js: 3.44.0 + '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: + - '@mdx-js/react' - '@testing-library/react' - - '@types/react' - encoding - graphql - typescript - '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@5.8.3)': + '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: + - '@mdx-js/react' - '@testing-library/react' - - '@types/react' - encoding - graphql - typescript - '@teambit/docs.docs-template@0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3)': + '@teambit/docs.docs-template@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/react.ui.docs-app': 0.0.200(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/react.ui.docs-app': 1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: + - '@mdx-js/react' - '@testing-library/react' - - '@types/react' - encoding - graphql - typescript - '@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.code.react-playground@4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 prism-react-renderer: 1.3.5(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.3.1) + react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3) + use-debounce: 9.0.4(react@18.3.1) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.code.react-playground@4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/documenter.code.react-playground@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 - core-js: 3.44.0 - prism-react-renderer: 1.3.5(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) - use-debounce: 3.4.3(react@18.3.1) + prism-react-renderer: 1.3.5(react@19.0.0) + react: 19.0.0 + react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2) + use-debounce: 9.0.4(react@19.0.0) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.code.react-playground@4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.code.react-playground@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/base-ui.input.error': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 - core-js: 3.44.0 - prism-react-renderer: 1.3.5(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.3.1) + prism-react-renderer: 1.3.5(react@19.0.0) + react: 19.0.0 + react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3) + use-debounce: 9.0.4(react@19.0.0) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.code.react-playground@4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.code.react-playground@4.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -12882,58 +13254,66 @@ snapshots: prism-react-renderer: 1.3.5(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.3.1) + react-live: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3) + use-debounce: 9.0.4(react@18.3.1) transitivePeerDependencies: - '@types/react' - typescript - '@teambit/documenter.code.react-playground@4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 core-js: 3.44.0 - prism-react-renderer: 1.3.5(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) - use-debounce: 3.4.3(react@18.3.1) + prism-react-renderer: 1.3.5(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2) + use-debounce: 9.0.4(react@19.0.0) transitivePeerDependencies: - '@types/react' - typescript - '@teambit/documenter.code.react-playground@4.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.code.react-playground@4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/base-ui.input.error': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.input.error': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.hover-splitter': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.surfaces.split-pane.split-pane': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 core-js: 3.44.0 - prism-react-renderer: 1.3.5(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-live: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.3.1) + prism-react-renderer: 1.3.5(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-live: 3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3) + use-debounce: 9.0.4(react@19.0.0) transitivePeerDependencies: - '@types/react' - typescript - '@teambit/documenter.markdown.heading@0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.markdown.heading@0.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/documenter.ui.linked-heading': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.markdown.heading@0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/documenter.ui.linked-heading': 4.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - '@teambit/documenter.code.react-playground': 4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@teambit/documenter.code.react-playground': 4.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 react: 18.3.1 @@ -12942,125 +13322,163 @@ snapshots: - '@types/react' - typescript - '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/documenter.code.react-playground': 4.1.7(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@types/react' - typescript - '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/documenter.code.react-playground': 4.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.1.9(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/documenter.ui.code-snippet': 4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@types/react' - typescript - '@teambit/documenter.markdown.mdx@0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 + '@teambit/documenter.code.react-playground': 4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/documenter.ui.code-snippet': 4.2.4(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.markdown.mdx@0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/documenter.ui.code-snippet': 4.2.4(react@19.0.0) + react: 19.0.0 transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.markdown.mdx@0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.markdown.hybrid-live-code-snippet@0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.heading': 0.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.routing.external-link': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.block-quote': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.bold': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.image': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.inline-code': 0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.italic': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ol': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.paragraph': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.separator': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.sup': 4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.base-table': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.td': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table.tr': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.ul': 4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.code.react-playground': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/documenter.ui.code-snippet': 4.2.4(react@19.0.0) + react: 19.0.0 + transitivePeerDependencies: + - '@types/react' + - react-dom + - typescript + + '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/documenter.markdown.heading': 0.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/documenter.routing.external-link': 4.1.4(react@18.3.1) + '@teambit/documenter.ui.block-quote': 4.0.9(react@18.3.1) + '@teambit/documenter.ui.bold': 4.0.9(react@18.3.1) + '@teambit/documenter.ui.image': 4.0.4(react@18.3.1) + '@teambit/documenter.ui.inline-code': 0.1.7(react@18.3.1) + '@teambit/documenter.ui.italic': 4.0.9(react@18.3.1) + '@teambit/documenter.ui.ol': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.paragraph': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.separator': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.sup': 4.0.9(react@18.3.1) + '@teambit/documenter.ui.table.base-table': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.table.tr': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.ul': 4.1.7(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' + - react-dom + - typescript + + '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': + dependencies: + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/documenter.markdown.heading': 0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/documenter.routing.external-link': 4.1.4(react@19.0.0) + '@teambit/documenter.ui.block-quote': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.bold': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.image': 4.0.4(react@19.0.0) + '@teambit/documenter.ui.inline-code': 0.1.7(react@19.0.0) + '@teambit/documenter.ui.italic': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.ol': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.paragraph': 4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.separator': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.sup': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.table.base-table': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.table.tr': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.ul': 4.1.7(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - '@types/react' + - react-dom + - typescript + + '@teambit/documenter.markdown.mdx@0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': + dependencies: + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/documenter.markdown.heading': 0.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.14(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/documenter.routing.external-link': 4.1.4(react@19.0.0) + '@teambit/documenter.ui.block-quote': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.bold': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.image': 4.0.4(react@19.0.0) + '@teambit/documenter.ui.inline-code': 0.1.7(react@19.0.0) + '@teambit/documenter.ui.italic': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.ol': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.paragraph': 4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.separator': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.sup': 4.0.9(react@19.0.0) + '@teambit/documenter.ui.table.base-table': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.table.tr': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.ul': 4.1.7(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - '@types/react' + - react-dom - typescript - '@teambit/documenter.routing.external-link@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.routing.external-link@4.1.4(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.anchor@4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.routing.external-link@4.1.4(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.anchor@4.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.anchor@4.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/evangelist.elements.icon': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@teambit/documenter.ui.anchor@4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.anchor@4.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@teambit/evangelist.elements.icon': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 @@ -13068,19 +13486,33 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.block-quote@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.anchor@4.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: + '@teambit/evangelist.elements.icon': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/documenter.ui.block-quote@4.0.9(react@18.3.1)': + dependencies: + classnames: 2.2.6 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.bold@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.block-quote@4.0.9(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.bold@4.0.9(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.bold@4.0.9(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 '@teambit/documenter.ui.code-snippet@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -13092,6 +13524,32 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-syntax-highlighter: 13.5.3(react@18.3.1) + '@teambit/documenter.ui.code-snippet@4.2.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/documenter.ui.copied-message': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + copy-to-clipboard: 3.3.3 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-syntax-highlighter: 13.5.3(react@19.0.0) + + '@teambit/documenter.ui.code-snippet@4.2.4(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.copied-message': 4.1.8(react@18.3.1) + classnames: 2.2.6 + copy-to-clipboard: 3.3.3 + react: 18.3.1 + react-syntax-highlighter: 13.5.3(react@18.3.1) + + '@teambit/documenter.ui.code-snippet@4.2.4(react@19.0.0)': + dependencies: + '@teambit/documenter.ui.copied-message': 4.1.8(react@19.0.0) + classnames: 2.2.6 + copy-to-clipboard: 3.3.3 + react: 19.0.0 + react-syntax-highlighter: 13.5.3(react@19.0.0) + '@teambit/documenter.ui.copied-message@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: classnames: 2.2.6 @@ -13099,15 +13557,24 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.heading@4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.copied-message@4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/documenter.ui.copied-message@4.1.8(react@18.3.1)': + dependencies: + classnames: 2.2.6 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.heading@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.copied-message@4.1.8(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.heading@4.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 @@ -13115,26 +13582,77 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.image@4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.heading@4.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: + '@teambit/base-ui.text.heading': 1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/documenter.ui.heading@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.text.heading': 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - react-dom - '@teambit/documenter.ui.inline-code@0.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.heading@4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.text.heading': 1.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.image@4.0.4(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.italic@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.image@4.0.4(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.inline-code@0.1.7(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + + '@teambit/documenter.ui.inline-code@0.1.7(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.italic@4.0.9(react@18.3.1)': + dependencies: + classnames: 2.2.6 + react: 18.3.1 + + '@teambit/documenter.ui.italic@4.0.9(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.linked-heading@4.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/documenter.ui.anchor': 4.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.heading': 4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + react: 18.3.1 + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.linked-heading@4.1.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/documenter.ui.anchor': 4.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.heading': 4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom '@teambit/documenter.ui.linked-heading@4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -13145,68 +13663,77 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.linked-heading@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.linked-heading@4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/documenter.ui.anchor': 4.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.anchor': 4.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.heading': 4.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@teambit/documenter.ui.ol@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.ol@4.1.7(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.paragraph@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.ol@4.1.7(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.paragraph@4.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@teambit/base-ui.text.paragraph': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - react-dom - '@teambit/documenter.ui.property-table@4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.ui.paragraph@4.1.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 + '@teambit/base-ui.text.paragraph': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.theme.sizes': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.property-table@4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@teambit/documenter.ui.table': 4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3) + react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3) use-debounce: 3.4.3(react@18.3.1) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.ui.property-table@4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3) - use-debounce: 3.4.3(react@18.3.1) + '@teambit/documenter.ui.table': 4.1.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2) + use-debounce: 3.4.3(react@19.0.0) transitivePeerDependencies: - '@types/react' + - react-dom - typescript - '@teambit/documenter.ui.property-table@4.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.ui.property-table@4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-use-dimensions: 1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3) - use-debounce: 3.4.3(react@18.3.1) + '@teambit/documenter.ui.table': 4.1.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-use-dimensions: 1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3) + use-debounce: 3.4.3(react@19.0.0) transitivePeerDependencies: - '@types/react' + - react-dom - typescript '@teambit/documenter.ui.section@4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -13216,107 +13743,154 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.separator@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.section@4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: classnames: 2.2.6 core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/documenter.ui.separator@4.1.7(react@18.3.1)': + dependencies: + classnames: 2.2.6 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.sup@4.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.separator@4.1.7(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.sup@4.0.9(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.table-column@4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.sup@4.0.9(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.table-column@4.0.4(react@18.3.1)': + dependencies: + classnames: 2.2.6 + react: 18.3.1 + + '@teambit/documenter.ui.table-column@4.0.4(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.table-heading-column@4.0.8(react@18.3.1)': + dependencies: + classnames: 2.2.6 + react: 18.3.1 + + '@teambit/documenter.ui.table-heading-column@4.0.8(react@19.0.0)': + dependencies: + classnames: 2.2.6 + react: 19.0.0 + + '@teambit/documenter.ui.table-heading-row@4.0.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-heading-column': 4.0.8(react@18.3.1) + classnames: 2.2.6 + react: 18.3.1 + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.table-heading-row@4.0.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.table-heading-column': 4.0.8(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.table-row@4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-column': 4.0.4(react@18.3.1) + classnames: 2.2.6 + react: 18.3.1 + react-syntax-highlighter: 15.4.3(react@18.3.1) + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.table-row@4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.layout.grid-component': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.table-column': 4.0.4(react@19.0.0) + classnames: 2.2.6 + react: 19.0.0 + react-syntax-highlighter: 15.4.3(react@19.0.0) + transitivePeerDependencies: + - react-dom + + '@teambit/documenter.ui.table.base-table@4.1.7(react@18.3.1)': dependencies: + '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1) + '@teambit/documenter.ui.table.tr': 4.1.7(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.table-heading-column@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table.base-table@4.1.7(react@19.0.0)': dependencies: + '@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0) + '@teambit/documenter.ui.table.tr': 4.1.7(react@19.0.0) classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 - '@teambit/documenter.ui.table-heading-row@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table.td@4.1.7(react@18.3.1)': dependencies: - '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-heading-column': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.table-row@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table.td@4.1.7(react@19.0.0)': dependencies: - '@teambit/base-ui.layout.grid-component': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-column': 4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-syntax-highlighter: 13.5.3(react@18.3.1) + react: 19.0.0 - '@teambit/documenter.ui.table.base-table@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table.tr@4.1.7(react@18.3.1)': dependencies: + '@teambit/documenter.ui.table.td': 4.1.7(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/documenter.ui.table.td@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table.tr@4.1.7(react@19.0.0)': dependencies: + '@teambit/documenter.ui.table.td': 4.1.7(react@19.0.0) classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 - '@teambit/documenter.ui.table.tr@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table@4.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: + '@teambit/documenter.ui.table-heading-row': 4.0.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-row': 4.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - react-dom - '@teambit/documenter.ui.table@4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.table@4.1.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/documenter.ui.table-heading-row': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.table-row': 4.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.table-heading-row': 4.0.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.table-row': 4.1.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + transitivePeerDependencies: + - react-dom - '@teambit/documenter.ui.ul@4.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/documenter.ui.ul@4.1.7(react@18.3.1)': dependencies: classnames: 2.2.6 - core-js: 3.44.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@teambit/eslint-config-bit-react@0.0.367(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/documenter.ui.ul@4.1.7(react@19.0.0)': dependencies: - '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) - core-js: 3.44.0 - eslint: 7.32.0 - eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks - - supports-color - - typescript + classnames: 2.2.6 + react: 19.0.0 '@teambit/evangelist.elements.icon@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -13325,6 +13899,13 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + '@teambit/evangelist.elements.icon@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + '@teambit/evangelist.elements.icon@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@teambit/base-ui.elements.icon': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -13332,30 +13913,75 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/evangelist.elements.icon@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.elements.icon': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/git.modules.git-ignore@1.0.2': {} + + '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: core-js: 3.44.0 - graphql: 14.7.0 - graphql-request: 4.3.0(graphql@14.7.0) + graphql: 15.8.0 + graphql-request: 4.3.0(graphql@15.8.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) use-deep-compare: 1.3.0(react@18.3.1) transitivePeerDependencies: - encoding - '@teambit/legacy-bit-id@0.0.421': + '@teambit/graphql.hooks.use-query-light@1.0.0(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + core-js: 3.44.0 + graphql: 16.11.0 + graphql-request: 4.3.0(graphql@16.11.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + use-deep-compare: 1.3.0(react@19.0.0) + transitivePeerDependencies: + - encoding + + '@teambit/html.modules.inject-html-element@0.0.5(react@18.3.1)': + dependencies: + outdent: 0.8.0 + react: 18.3.1 + + '@teambit/html.modules.inject-html-element@0.0.5(react@19.0.0)': + dependencies: + outdent: 0.8.0 + react: 19.0.0 + + '@teambit/legacy-bit-id@1.1.0': + dependencies: + '@teambit/bit-error': 0.0.404 + '@teambit/component-version': 1.0.3 + decamelize: 1.2.0 + lodash: 4.17.21 + semver: 7.5.2 + + '@teambit/legacy-bit-id@1.1.1': + dependencies: + '@teambit/bit-error': 0.0.404 + '@teambit/component-version': 1.0.3 + decamelize: 1.2.0 + lodash: 4.17.21 + semver: 7.5.2 + + '@teambit/legacy-bit-id@1.1.3': dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/component-version': 0.0.406 + '@teambit/bit-error': 0.0.404 + '@teambit/component-version': 1.0.4 decamelize: 1.2.0 lodash: 4.17.21 - semver: 7.3.4 + semver: 7.7.1 - '@teambit/mdx.modules.mdx-compiler@0.0.500(react@18.3.1)': + '@teambit/mdx.compilers.mdx-transpiler@1.0.6': dependencies: '@mdx-js/mdx': 1.6.21 '@teambit/node.deps-detectors.detective-es6': 0.0.1 - react: 18.3.1 remark-admonitions: 1.2.1 remark-frontmatter: 2.0.0 unist-util-remove: 2.0.1 @@ -13365,79 +13991,42 @@ snapshots: transitivePeerDependencies: - supports-color - '@teambit/mdx.modules.mdx-loader@0.0.509(esbuild@0.14.28)(react@18.3.1)': + '@teambit/mdx.modules.mdx-loader@1.0.15(@babel/core@7.26.9)(webpack@5.100.2)': dependencies: - '@teambit/mdx.modules.mdx-compiler': 0.0.500(react@18.3.1) + '@babel/preset-env': 7.23.2(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@teambit/mdx.compilers.mdx-transpiler': 1.0.6 + babel-loader: 9.1.2(@babel/core@7.26.9)(webpack@5.100.2) loader-utils: 2.0.4 memory-fs: 0.5.0 - webpack: 5.51.1(esbuild@0.14.28) transitivePeerDependencies: - - '@swc/core' - - esbuild - - react + - '@babel/core' - supports-color - - uglify-js - - webpack-cli - - '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/mdx.ui.docs.link@0.0.497(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-react.navigation.link': 2.0.27(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' + - webpack - '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 + '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - - typescript + - react-dom - '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/mdx.ui.docs.link@0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/base-react.navigation.link': 2.0.31(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@testing-library/react': 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 transitivePeerDependencies: - '@types/react' - - typescript + - react-dom - '@teambit/mdx.ui.docs.snippet@0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -13445,268 +14034,121 @@ snapshots: - '@types/react' - typescript - '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - - '@testing-library/react' - '@types/react' - typescript - '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/mdx.ui.docs.snippet@0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) + '@mdx-js/react': 1.6.22(react@19.0.0) + '@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.12(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/mdx.ui.mdx-scope-context': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - - '@testing-library/react' - '@types/react' - typescript - '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - core-js: 3.44.0 + '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: + - '@mdx-js/react' - '@testing-library/react' - '@types/react' + - react-dom - typescript - '@teambit/mdx.ui.mdx-layout@0.0.510(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@teambit/documenter.markdown.mdx': 0.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/mdx.ui.docs.link': 0.0.497(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.docs.snippet': 0.0.499(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + react: 19.0.0 transitivePeerDependencies: + - '@mdx-js/react' - '@testing-library/react' - '@types/react' + - react-dom - typescript - '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@17.0.2(react@17.0.2))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 17.0.2(react@17.0.2) - - '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@18.3.1(react@17.0.2))(react@17.0.2)': - dependencies: - core-js: 3.44.0 - react: 17.0.2 - react-dom: 18.3.1(react@17.0.2) - - '@teambit/mdx.ui.mdx-scope-context@0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/mdx.ui.mdx-layout@1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/node.deps-detectors.detective-es6@0.0.1': - dependencies: - '@teambit/node.deps-detectors.parser-helper': 0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a - node-source-walk: 5.0.2 - - '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': {} - - '@teambit/node.generator.node-starters@0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894': - dependencies: - comment-json: 4.2.3 - - '@teambit/node.generator.node-templates@0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d': {} - - '@teambit/node.node@0.0.38(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/node.generator.node-starters': 0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894 - '@teambit/node.generator.node-templates': 0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 0.0.9 - core-js: 3.44.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/documenter.markdown.mdx': 0.1.16(@mdx-js/react@1.6.22(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/mdx.ui.docs.link': 0.0.505(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/mdx.ui.docs.snippet': 0.0.509(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + react: 19.0.0 transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' + - '@mdx-js/react' - '@testing-library/react' - - '@types/express' - - '@types/node' - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - graphql - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest + - react-dom - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/node.node@0.0.38(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(eslint@7.32.0)(graphql@14.7.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)(typescript@4.9.3)': + '@teambit/mdx.ui.mdx-scope-context@1.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/node.generator.node-starters': 0.0.0-64e4ddb6778cd055a7e0a05e826bce91c99ea894 - '@teambit/node.generator.node-templates': 0.0.0-34940b37905cab7d8e95aeb96a7cfc43b8803c4d - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.react-env': 0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3) - '@teambit/typescript.typescript-compiler': 0.0.9 core-js: 3.44.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - graphql - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@teambit/preview.react-preview@0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - object-hash: 3.0.0 - react: 18.3.1 - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) - transitivePeerDependencies: - - '@swc/core' - - '@testing-library/react' - - '@types/react' - - '@types/webpack' - - bufferutil - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint - - fibers - - graphql - - less - - node-sass - - react-dom - - sass-embedded - - sockjs-client - - supports-color - - type-fest - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': + '@teambit/mdx.ui.mdx-scope-context@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@18.3.23)(react@18.3.1)': + dependencies: + '@types/react': 18.3.23 + react: 18.3.1 + + '@teambit/mdx.ui.mdx-scope-context@1.0.7(@types/react@19.0.2)(react@19.0.0)': + dependencies: + '@types/react': 19.0.2 + react: 19.0.0 + + '@teambit/node.deps-detectors.detective-es6@0.0.1': + dependencies: + '@teambit/node.deps-detectors.parser-helper': 0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a + node-source-walk: 5.0.2 + + '@teambit/node.deps-detectors.parser-helper@0.0.0-1ca3300f0fe89cba790beb930903095053a2a24a': {} + + '@teambit/preview.react-preview@1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(eslint@8.56.0)(graphql@15.8.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)': + dependencies: + '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/react.mounter': 1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1) + '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2) + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2) object-hash: 3.0.0 react: 18.3.1 - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@babel/core' + - '@mdx-js/react' + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - '@testing-library/react' - - '@types/react' - '@types/webpack' - bufferutil - clean-css @@ -13717,7 +14159,9 @@ snapshots: - eslint - fibers - graphql + - html-webpack-plugin - less + - lightningcss - node-sass - react-dom - sass-embedded @@ -13732,22 +14176,29 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)': - dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@5.8.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + '@teambit/preview.react-preview@1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)': + dependencies: + '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/react.mounter': 1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0) + '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2) object-hash: 3.0.0 - react: 18.3.1 - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + react: 19.0.0 + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@babel/core' + - '@mdx-js/react' + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - '@testing-library/react' - - '@types/react' - '@types/webpack' - bufferutil - clean-css @@ -13758,7 +14209,9 @@ snapshots: - eslint - fibers - graphql + - html-webpack-plugin - less + - lightningcss - node-sass - react-dom - sass-embedded @@ -13773,22 +14226,29 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/preview.react-preview@0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/core': 7.19.6 - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/react.mounter': 0.0.10 - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + '@teambit/preview.react-preview@1.0.93(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(eslint@8.56.0)(graphql@16.11.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)': + dependencies: + '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/react.mounter': 1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.webpack.react-webpack': 1.0.49(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/ui-foundation.ui.rendering.html': 0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.17(lightningcss@1.30.1)(react@19.0.0) + '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + html-webpack-inject-plugin: 5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2) object-hash: 3.0.0 - react: 18.3.1 - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + react: 19.0.0 + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@babel/core' + - '@mdx-js/react' + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - '@testing-library/react' - - '@types/react' - '@types/webpack' - bufferutil - clean-css @@ -13799,7 +14259,9 @@ snapshots: - eslint - fibers - graphql + - html-webpack-plugin - less + - lightningcss - node-sass - react-dom - sass-embedded @@ -13814,44 +14276,41 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.12.9)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - '@prerenderer/renderer-jsdom': 1.1.9 - '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.12.9)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 + '@teambit/react.apps.react-app-types@2.0.15(@babel/core@7.26.9)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@8.56.0)(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))': + dependencies: + '@teambit/bit-error': 0.0.404 + '@teambit/react.rendering.ssr': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.webpack.react-webpack': 1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/toolbox.network.get-port': 1.0.8 + '@teambit/ui-foundation.ui.pages.static-error': 0.0.106(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.transformers.favicon-reload': 1.0.0 + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1) + '@teambit/webpack.webpack-dev-server': 1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2) + express: 4.21.2 fs-extra: 10.1.0 lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) + terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2) url-join: 4.0.0 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - '@babel/core' + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - '@testing-library/react' - - '@types/express' - '@types/react' - '@types/webpack' - bufferutil - - canvas - clean-css - csso - debug - esbuild - eslint - fibers - - html-webpack-plugin - less + - lightningcss - node-sass - - puppeteer - react - react-dom - sass-embedded @@ -13867,157 +14326,180 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - '@prerenderer/renderer-jsdom': 1.1.9 - '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 - fs-extra: 10.1.0 - lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - url-join: 4.0.0 - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/react.babel.bit-react-transformer@1.0.34(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/component-id': 1.2.4 + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.42(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + find-root: 1.1.0 + fs-extra: 10.0.0 + memoizee: 0.4.15 transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/react' - - '@types/webpack' - - bufferutil - - canvas - - clean-css - - csso - - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - less - - node-sass - - puppeteer - react - react-dom - - sass-embedded - - sockjs-client + + '@teambit/react.babel.bit-react-transformer@1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/component-id': 1.2.4 + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.42(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + find-root: 1.1.0 + fs-extra: 10.0.0 + memoizee: 0.4.15 + transitivePeerDependencies: + - react + - react-dom + + '@teambit/react.eslint-config-bit-react@1.0.242(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3)': + dependencies: + '@typescript-eslint/eslint-plugin': 7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/parser': 7.1.0(eslint@8.56.0)(typescript@5.5.3) + eslint: 8.56.0 + eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3) + eslint-config-prettier: 8.5.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + transitivePeerDependencies: + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks - supports-color - - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@17.0.87)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - '@prerenderer/renderer-jsdom': 1.1.9 - '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@5.8.3))(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 - fs-extra: 10.1.0 - lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - url-join: 4.0.0 - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/react.generator.react-starters@1.0.9': + dependencies: + '@teambit/git.modules.git-ignore': 1.0.2 + comment-json: 4.2.3 + + '@teambit/react.generator.react-templates@1.0.13': + dependencies: + dedent: 0.7.0 + + '@teambit/react.jest.react-jest@1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10))': + dependencies: + '@babel/preset-react': 7.27.1(@babel/core@7.26.9) + '@teambit/defender.jest-tester': 2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10)) + '@testing-library/jest-dom': 5.16.5 + jest-environment-jsdom: 29.3.1 + react-app-polyfill: 3.0.0 transitivePeerDependencies: - '@babel/core' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/react' - - '@types/webpack' + - '@babel/traverse' - bufferutil - canvas - - clean-css - - csso - - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - less - - node-sass - - puppeteer - - react - - react-dom - - sass-embedded - - sockjs-client + - jest - supports-color - - type-fest - - typescript - - uglify-js - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.apps.react-app-types@0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@prerenderer/prerenderer': 1.2.5(@types/express@4.17.23) - '@prerenderer/renderer-jsdom': 1.1.9 - '@prerenderer/webpack-plugin': 5.3.10(@types/express@4.17.23)(html-webpack-plugin@5.5.0(webpack@5.84.1))(puppeteer@24.13.0(typescript@4.9.3))(webpack@5.84.1) - '@teambit/bit-error': 0.0.402 - '@teambit/react.rendering.ssr': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.webpack.react-webpack': 0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/toolbox.network.get-port': 0.0.121 - '@teambit/ui-foundation.ui.pages.static-error': 0.0.86(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.transformers.favicon-reload': 0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - express: 4.18.2 - fs-extra: 10.1.0 - lodash: 4.17.21 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - url-join: 4.0.0 - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/react.modules.dom-to-react@0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/react.modules.dom-to-react@0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/react.mounter@1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + + '@teambit/react.mounter@1.0.47(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) + + '@teambit/react.mounter@1.0.49(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/compositions.ui.composition-live-controls-react': 0.0.3(@types/react@19.0.2)(react@19.0.0) + '@teambit/react.ui.highlighter-provider': 0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) + + '@teambit/react.react-env@1.0.131(@babel/core@7.26.9)(@babel/traverse@7.28.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))': + dependencies: + '@babel/runtime': 7.20.0 + '@mdx-js/react': 1.6.22(react@18.3.1) + '@teambit/defender.eslint-linter': 1.0.55(eslint@8.56.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/defender.jest-tester': 2.1.0(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10)) + '@teambit/defender.prettier-formatter': 1.0.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/dependencies.modules.packages-excluder': 1.0.8(react@18.3.1) + '@teambit/docs.docs-template': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/mdx.ui.mdx-scope-context': 1.0.7(@types/react@18.3.23)(react@18.3.1) + '@teambit/preview.react-preview': 1.0.91(@babel/core@7.26.9)(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(eslint@8.56.0)(graphql@15.8.0)(html-webpack-plugin@5.6.3(webpack@5.100.2))(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3) + '@teambit/react.apps.react-app-types': 2.0.15(@babel/core@7.26.9)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@8.56.0)(less@4.3.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2)) + '@teambit/react.eslint-config-bit-react': 1.0.242(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3) + '@teambit/react.generator.react-starters': 1.0.9 + '@teambit/react.generator.react-templates': 1.0.13 + '@teambit/react.jest.react-jest': 1.0.36(@babel/core@7.26.9)(@babel/traverse@7.28.0)(jest@29.3.1(@types/node@20.12.10)) + '@teambit/react.mounter': 1.0.47(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/typescript.typescript-compiler': 2.0.58(react@18.3.1) + '@testing-library/jest-dom': 6.5.0 + '@testing-library/react': 13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@testing-library/react-hooks': 8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/jest': 29.5.14 + '@types/node': 20.12.10 + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + '@types/testing-library__jest-dom': 5.14.9 + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.5.3) + core-js: 3.44.0 + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jest: 27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.5.3) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) + graphql: 15.8.0 + jest: 29.3.1(@types/node@20.12.10) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 5.5.3 transitivePeerDependencies: - '@babel/core' + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/react' + - '@swc/css' - '@types/webpack' + - babel-plugin-macros - bufferutil - canvas - clean-css - csso - debug + - encoding - esbuild - - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - fibers - html-webpack-plugin - less + - lightningcss + - node-notifier - node-sass - - puppeteer - - react - - react-dom + - react-test-renderer - sass-embedded - sockjs-client - supports-color + - ts-node - type-fest - - typescript - uglify-js - utf-8-validate - vue-template-compiler @@ -14026,243 +14508,414 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.babel.bit-react-transformer@0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/react.rendering.ssr@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + express: 4.21.2 + lodash.compact: 3.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + webpack-merge: 5.8.0 + transitivePeerDependencies: + - supports-color + + '@teambit/react.ui.component-highlighter@0.2.4(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/react-dom': 0.7.2(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/component-id': 1.2.2 + '@teambit/component.modules.component-url': 0.0.169(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.hover-selector': 0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@tippyjs/react': 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.5.1 + core-js: 3.44.0 + get-xpath: 3.3.0 + lodash.compact: 3.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + url-join: 4.0.1 + use-debounce: 8.0.4(react@18.3.1) + uuid: 10.0.0 + transitivePeerDependencies: + - '@types/react' + + '@teambit/react.ui.component-highlighter@0.2.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@floating-ui/react-dom': 0.7.2(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/base-ui.routing.native-link': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/component-id': 1.2.2 + '@teambit/component.modules.component-url': 0.0.169(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.modules.dom-to-react': 0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.hover-selector': 0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tippyjs/react': 4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.5.1 + core-js: 3.44.0 + get-xpath: 3.3.0 + lodash.compact: 3.0.1 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + url-join: 4.0.1 + use-debounce: 8.0.4(react@19.0.0) + uuid: 10.0.0 + transitivePeerDependencies: + - '@types/react' + + '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@teambit/design.theme.icons-font': 2.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - encoding + - graphql + - typescript + + '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': + dependencies: + '@teambit/design.theme.icons-font': 2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - encoding + - graphql + - typescript + + '@teambit/react.ui.docs-app@1.0.24(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': + dependencies: + '@teambit/design.theme.icons-font': 2.0.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.docs.compositions-carousel': 0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.docs.docs-content': 0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/react.ui.docs.properties-table': 0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - encoding + - graphql + - typescript + + '@teambit/react.ui.docs.apply-providers@0.0.22(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.error-fallback': 0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + + '@teambit/react.ui.docs.apply-providers@0.0.22(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.utils.composer': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) + + '@teambit/react.ui.docs.compositions-carousel@0.0.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/react.ui.docs.apply-providers': 0.0.22(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/react.ui.docs.compositions-carousel@0.0.27(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/compositions.ui.compositions-overview': 0.0.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/react.ui.docs.apply-providers': 0.0.22(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': + dependencies: + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/react.ui.error-fallback': 0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.23 + '@types/react-dom': 18.3.7(@types/react@18.3.23) + core-js: 3.44.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + transitivePeerDependencies: + - '@mdx-js/react' + - '@testing-library/react' + - typescript + + '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@babel/core': 7.19.6 - '@babel/types': 7.20.0 - '@teambit/component-id': 0.0.425 - '@teambit/react.ui.highlighter.component-metadata.bit-component-meta': 0.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - find-root: 1.1.0 - fs-extra: 10.0.0 - memoizee: 0.4.15 + '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + core-js: 3.44.0 + lodash: 4.17.21 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) transitivePeerDependencies: - - react - - react-dom - - supports-color + - '@mdx-js/react' + - '@testing-library/react' + - typescript - '@teambit/react.eslint-config-bit-react@0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3)': + '@teambit/react.ui.docs.docs-content@0.0.32(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 - eslint-config-airbnb-typescript: 12.0.0(@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - eslint-config-prettier: 8.5.0(eslint@7.32.0) + '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/mdx.ui.mdx-layout': 1.0.10(@mdx-js/react@1.6.22(react@19.0.0))(@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/react.ui.error-fallback': 0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) + core-js: 3.44.0 + lodash: 4.17.21 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) transitivePeerDependencies: - - eslint-plugin-import - - eslint-plugin-jsx-a11y - - eslint-plugin-react - - eslint-plugin-react-hooks - - supports-color + - '@mdx-js/react' + - '@testing-library/react' - typescript - '@teambit/react.generator.react-starters@0.0.12': + '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@18.3.23)(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: - comment-json: 4.2.3 - - '@teambit/react.generator.react-templates@0.0.10': {} + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/documenter.ui.property-table': 4.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - encoding + - graphql + - typescript - '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': + '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)': dependencies: - '@babel/preset-react': 7.18.6(@babel/core@7.12.9) - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@testing-library/jest-dom': 5.16.5 - jest-environment-jsdom: 29.3.1 - react-app-polyfill: 3.0.0 + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2) + '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@types/node' - - babel-plugin-macros - - bufferutil - - canvas - - node-notifier - - supports-color - - ts-node - - utf-8-validate + - '@types/react' + - encoding + - graphql + - typescript - '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0)': + '@teambit/react.ui.docs.properties-table@0.0.25(@types/react@19.0.2)(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@babel/preset-react': 7.18.6(@babel/core@7.28.0) - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - '@testing-library/jest-dom': 5.16.5 - jest-environment-jsdom: 29.3.1 - react-app-polyfill: 3.0.0 + '@teambit/component.ui.hooks.use-fetch-docs': 0.0.21(graphql@16.11.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/documenter.ui.property-table': 4.1.10(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + '@teambit/documenter.ui.section': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@types/node' - - babel-plugin-macros - - bufferutil - - canvas - - node-notifier - - supports-color - - ts-node - - utf-8-validate + - '@types/react' + - encoding + - graphql + - typescript - '@teambit/react.jest.react-jest@0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0)': + '@teambit/react.ui.error-fallback@0.0.125(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/preset-react': 7.18.6(@babel/core@7.28.0) - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@testing-library/jest-dom': 5.16.5 - jest-environment-jsdom: 29.3.1 - react-app-polyfill: 3.0.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@types/node' - - babel-plugin-macros - - bufferutil - - canvas - - node-notifier - - supports-color - - ts-node - - utf-8-validate + '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-error-boundary: 3.1.4(react@18.3.1) + + '@teambit/react.ui.error-fallback@0.0.125(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.ui.icon-button': 1.0.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) - '@teambit/react.mounter@0.0.10': + '@teambit/react.ui.error-fallback@0.0.131(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: + '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-error-boundary: 3.1.4(react@18.3.1) - '@teambit/react.react-env@0.0.68(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': + '@teambit/react.ui.error-fallback@0.0.131(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.12.9)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.12.9)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9 - '@testing-library/jest-dom': 5.16.5 - browserslist: 4.21.4 + '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/design.ui.icon-button': 1.0.16(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 core-js: 3.44.0 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - pino-pretty: 4.5.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-error-boundary: 3.1.4(react@19.0.0) + + '@teambit/react.ui.highlighter-provider@0.0.215(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 + core-js: 3.44.0 + query-string: 7.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.3 transitivePeerDependencies: - - '@babel/core' - - '@babel/traverse' - - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - '@types/react' - - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - - bufferutil - - canvas - - clean-css - - csso - - debug - - encoding - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - html-webpack-plugin - - less - - node-notifier - - node-sass - - puppeteer - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': + '@teambit/react.ui.highlighter-provider@0.0.215(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@teambit/react.ui.component-highlighter': 0.2.4(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + classnames: 2.2.6 + core-js: 3.44.0 + query-string: 7.0.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + transitivePeerDependencies: + - '@types/react' + + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.42(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/react.ui.hover-selector@0.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9 - '@testing-library/jest-dom': 5.16.5 - browserslist: 4.21.4 core-js: 3.44.0 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - pino-pretty: 4.5.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.3 + + '@teambit/react.ui.hover-selector@0.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/react.webpack.react-webpack@1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.5.3)(webpack-dev-server@4.15.0(webpack@5.100.2))': + dependencies: + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@bitdev/react.webpack.refresh-overlay': 0.0.5 + '@parcel/css': 1.14.0 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2) + '@svgr/webpack': 8.1.0(typescript@5.5.3) + '@swc/css': 0.0.20 + '@teambit/component-id': 1.2.2 + '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2) + '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/webpack.modules.generate-style-loaders': 1.0.13 + '@teambit/webpack.modules.style-regexps': 1.0.8 + '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2) + babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2) + browserslist: 4.21.4 + css-loader: 6.7.2(webpack@5.100.2) + css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + esbuild: 0.14.29 + less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2) + lightningcss: 1.30.1 + lodash: 4.17.21 + mini-css-extract-plugin: 2.9.2(webpack@5.100.2) + new-url-loader: 0.1.1(webpack@5.100.2) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2) + react-dom: 18.3.1(react@18.3.1) + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.63.6 + sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2) + source-map-loader: 4.0.1(webpack@5.100.2) + style-loader: 3.3.1(webpack@5.100.2) + terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - '@babel/core' - - '@babel/traverse' + - '@rspack/core' - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - bufferutil - - canvas - clean-css - csso - debug - - encoding - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack + - eslint - fibers - - html-webpack-plugin - less - - node-notifier - node-sass - - puppeteer + - react - sass-embedded - sockjs-client - supports-color - - ts-node - type-fest + - typescript - uglify-js - utf-8-validate - vue-template-compiler @@ -14271,71 +14924,65 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@12.20.4)(@types/react@17.0.87)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@17.0.87)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1)) - '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9 - '@testing-library/jest-dom': 5.16.5 + '@teambit/react.webpack.react-webpack@1.0.48(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.7.2)(webpack-dev-server@4.15.0(webpack@5.100.2))': + dependencies: + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@bitdev/react.webpack.refresh-overlay': 0.0.5 + '@parcel/css': 1.14.0 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2) + '@svgr/webpack': 8.1.0(typescript@5.7.2) + '@swc/css': 0.0.20 + '@teambit/component-id': 1.2.2 + '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2) + '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/webpack.modules.generate-style-loaders': 1.0.13 + '@teambit/webpack.modules.style-regexps': 1.0.8 + '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2) + babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2) browserslist: 4.21.4 - core-js: 3.44.0 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - graphql: 14.7.0 - jest: 29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - pino-pretty: 4.5.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.3 + css-loader: 6.7.2(webpack@5.100.2) + css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + esbuild: 0.14.29 + less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2) + lightningcss: 1.30.1 + lodash: 4.17.21 + mini-css-extract-plugin: 2.9.2(webpack@5.100.2) + new-url-loader: 0.1.1(webpack@5.100.2) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2) + react-dom: 19.0.0(react@19.0.0) + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.63.6 + sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2) + source-map-loader: 4.0.1(webpack@5.100.2) + style-loader: 3.3.1(webpack@5.100.2) + terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - '@babel/core' - - '@babel/traverse' + - '@rspack/core' - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - bufferutil - - canvas - clean-css - csso - debug - - encoding - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack + - eslint - fibers - - html-webpack-plugin - less - - node-notifier - node-sass - - puppeteer + - react - sass-embedded - sockjs-client - supports-color - - ts-node - type-fest + - typescript - uglify-js - utf-8-validate - vue-template-compiler @@ -14344,71 +14991,65 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.react-env@0.0.68(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/node@16.18.126)(@types/react@18.3.23)(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(babel-plugin-macros@3.1.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(type-fest@0.21.3)': - dependencies: - '@babel/runtime': 7.20.0 - '@mdx-js/react': 1.6.22(react@18.3.1) - '@teambit/defender.eslint-linter': 0.0.10 - '@teambit/defender.jest-tester': 0.0.10(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/defender.prettier-formatter': 0.0.6 - '@teambit/dependencies.modules.packages-excluder': 0.0.70(react@18.3.1) - '@teambit/docs.docs-template': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(typescript@4.9.3) - '@teambit/mdx.ui.mdx-scope-context': 0.0.496(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/preview.react-preview': 0.0.35(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(eslint@7.32.0)(graphql@14.7.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.apps.react-app-types': 0.0.32(@babel/core@7.28.0)(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/express@4.17.23)(@types/react@18.3.23)(eslint@7.32.0)(html-webpack-plugin@5.5.0(webpack@5.84.1))(less@4.3.0)(puppeteer@24.13.0(typescript@4.9.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3) - '@teambit/react.eslint-config-bit-react': 0.0.794(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3) - '@teambit/react.generator.react-starters': 0.0.12 - '@teambit/react.generator.react-templates': 0.0.10 - '@teambit/react.jest.react-jest': 0.0.6(@babel/core@7.28.0)(@babel/traverse@7.28.0)(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - '@teambit/react.mounter': 0.0.10 - '@teambit/typescript.typescript-compiler': 0.0.9 - '@testing-library/jest-dom': 5.16.5 + '@teambit/react.webpack.react-webpack@1.0.49(@babel/core@7.26.9)(eslint@8.56.0)(less@4.3.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.100.2))': + dependencies: + '@babel/preset-env': 7.22.15(@babel/core@7.26.9) + '@babel/preset-react': 7.22.15(@babel/core@7.26.9) + '@bitdev/react.webpack.refresh-overlay': 0.0.6 + '@parcel/css': 1.14.0 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.100.2))(webpack@5.100.2) + '@svgr/webpack': 8.1.0(typescript@5.8.3) + '@swc/css': 0.0.20 + '@teambit/component-id': 1.2.2 + '@teambit/mdx.modules.mdx-loader': 1.0.15(@babel/core@7.26.9)(webpack@5.100.2) + '@teambit/react.babel.bit-react-transformer': 1.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@teambit/webpack.modules.generate-style-loaders': 1.0.13 + '@teambit/webpack.modules.style-regexps': 1.0.8 + '@teambit/webpack.webpack-dev-server': 1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2) + babel-loader: 9.1.0(@babel/core@7.26.9)(webpack@5.100.2) browserslist: 4.21.4 - core-js: 3.44.0 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jest: 24.1.5(eslint@7.32.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-mdx: 1.13.0(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - graphql: 14.7.0 - jest: 29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0) - pino-pretty: 4.5.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.3 + css-loader: 6.7.2(webpack@5.100.2) + css-minimizer-webpack-plugin: 6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + esbuild: 0.14.29 + less-loader: 11.1.0(less@4.3.0)(webpack@5.100.2) + lightningcss: 1.30.1 + lodash: 4.17.21 + mini-css-extract-plugin: 2.9.2(webpack@5.100.2) + new-url-loader: 0.1.1(webpack@5.100.2) + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) + postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.100.2) + postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) + postcss-preset-env: 7.8.3(postcss@8.4.19) + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2) + react-dom: 19.0.0(react@19.0.0) + react-refresh: 0.14.0 + resolve-url-loader: 5.0.0 + sass: 1.63.6 + sass-loader: 13.3.2(sass@1.63.6)(webpack@5.100.2) + source-map-loader: 4.0.1(webpack@5.100.2) + style-loader: 3.3.1(webpack@5.100.2) + terser-webpack-plugin: 5.2.0(esbuild@0.14.29)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - '@babel/core' - - '@babel/traverse' + - '@rspack/core' - '@swc/core' - - '@testing-library/react' - - '@types/express' - - '@types/node' - - '@types/react' - '@types/webpack' - - '@typescript-eslint/parser' - - babel-plugin-macros - bufferutil - - canvas - clean-css - csso - debug - - encoding - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack + - eslint - fibers - - html-webpack-plugin - less - - node-notifier - node-sass - - puppeteer + - react - sass-embedded - sockjs-client - supports-color - - ts-node - type-fest + - typescript - uglify-js - utf-8-validate - vue-template-compiler @@ -14417,680 +15058,562 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@teambit/react.rendering.ssr@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/tests-results@1.0.5': {} + + '@teambit/toolbox.fs.hard-link-directory@0.0.23': + dependencies: + fs-extra: 10.0.0 + resolve-link-target: 1.0.1 + symlink-dir: 5.2.1 + + '@teambit/toolbox.network.get-port@1.0.6': {} + + '@teambit/toolbox.network.get-port@1.0.8': {} + + '@teambit/toolbox.path.path@0.0.6': dependencies: - '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.rendering.html': 0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - express: 4.18.1 - lodash.compact: 3.0.1 + normalize-path: 3.0.0 + + '@teambit/typescript.typescript-compiler@2.0.58(react@18.3.1)': + dependencies: + '@teambit/bit-error': 0.0.404 + '@teambit/compilation.compiler-task': 1.0.12 + comment-json: 4.2.3 + fs-extra: 11.3.0 + get-tsconfig: 4.2.0 + glob: 10.4.5 + globby: 11.1.0 + lodash: 4.17.21 + normalize-path: 3.0.0 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - webpack-merge: 5.8.0 - transitivePeerDependencies: - - supports-color + typescript: 5.5.3 - '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/typescript.typescript-compiler@2.0.58(react@19.0.0)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.code.react-playground': 4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - classnames: 2.2.6 - core-js: 3.44.0 - jsx-to-string: 1.4.0 + '@teambit/bit-error': 0.0.404 + '@teambit/compilation.compiler-task': 1.0.12 + comment-json: 4.2.3 + fs-extra: 11.3.0 + get-tsconfig: 4.2.0 + glob: 10.4.5 + globby: 11.1.0 lodash: 4.17.21 + normalize-path: 3.0.0 + react: 19.0.0 + typescript: 5.5.3 + + '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.85(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - encoding - - graphql - - typescript - '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/ui-foundation.ui.pages.static-error@0.0.106(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.code.react-playground': 4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - classnames: 2.2.6 + '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.not-found': 0.0.371(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/design.ui.pages.server-error': 0.0.368(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.85(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@teambit/ui-foundation.ui.rendering.html': 0.0.94(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 - jsx-to-string: 1.4.0 - lodash: 4.17.21 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@testing-library/react' - '@types/react' - - encoding - - graphql - - typescript - '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.code.react-playground': 4.0.1(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - classnames: 2.2.6 core-js: 3.44.0 - jsx-to-string: 1.4.0 - lodash: 4.17.21 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - encoding - - graphql - - typescript - '@teambit/react.ui.docs-app@0.0.200(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/ui-foundation.ui.rendering.html@0.0.94(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/design.theme.icons-font': 2.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.themes.theme-toggler': 0.1.3(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.code.react-playground': 4.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.compositions-carousel': 0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.docs-content': 0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.docs.properties-table': 0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - classnames: 2.2.6 core-js: 3.44.0 - jsx-to-string: 1.4.0 - lodash: 4.17.21 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - encoding - - graphql - - typescript - '@teambit/react.ui.docs.apply-providers@0.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/ui-foundation.ui.rendering.html@0.0.95(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@teambit/base-ui.utils.composer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) - '@teambit/react.ui.docs.compositions-carousel@0.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/ui-foundation.ui.rendering.html@0.0.95(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/compositions.ui.compositions-overview': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/react.ui.docs.apply-providers': 0.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/ui-foundation.ui.use-box.tab@0.0.115(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + classnames: 2.2.6 core-js: 3.44.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/ui-foundation.ui.use-box.tab@0.0.115(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: 2.2.6 core-js: 3.44.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@teambit/vite.vitest-tester@0.4.4(@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)))(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': + dependencies: + '@teambit/defender.coverage-report': 0.1.0 + '@teambit/defender.tester-task': 1.0.14 + '@teambit/tests-results': 1.0.5 + '@vitest/coverage-istanbul': 3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/coverage-v8': 2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + comlink: 4.3.1 + fs-extra: 11.3.0 + jsdom: 24.1.3 lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) + minimatch: 5.1.0 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript + - bufferutil + - canvas + - supports-color + - utf-8-validate - '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/webpack.modules.config-mutator@0.0.172(esbuild@0.14.29)(react@18.3.1)': dependencies: - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 + '@teambit/html.modules.inject-html-element': 0.0.5(react@18.3.1) + html-webpack-plugin: 5.3.2(webpack@5.97.1(esbuild@0.14.29)) lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) + webpack: 5.97.1(esbuild@0.14.29) + webpack-merge: 5.8.0 transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript + - '@swc/core' + - esbuild + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/webpack.modules.config-mutator@0.0.172(esbuild@0.14.29)(react@19.0.0)': dependencies: - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 + '@teambit/html.modules.inject-html-element': 0.0.5(react@19.0.0) + html-webpack-plugin: 5.3.2(webpack@5.97.1(esbuild@0.14.29)) lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) + webpack: 5.97.1(esbuild@0.14.29) + webpack-merge: 5.8.0 transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript + - '@swc/core' + - esbuild + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.docs.docs-content@0.0.11(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/webpack.modules.config-mutator@0.0.172(react@18.3.1)': dependencies: - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/mdx.ui.mdx-layout': 0.0.510(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/react.ui.error-fallback': 0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 + '@teambit/html.modules.inject-html-element': 0.0.5(react@18.3.1) + html-webpack-plugin: 5.3.2(webpack@5.97.1) lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) + webpack: 5.97.1 + webpack-merge: 5.8.0 transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - typescript + - '@swc/core' + - esbuild + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/webpack.modules.config-mutator@0.0.172(react@19.0.0)': dependencies: - '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.property-table': 4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/html.modules.inject-html-element': 0.0.5(react@19.0.0) + html-webpack-plugin: 5.3.2(webpack@5.97.1) + lodash: 4.17.21 + webpack: 5.97.1 + webpack-merge: 5.8.0 transitivePeerDependencies: - - '@types/react' - - encoding - - graphql - - typescript + - '@swc/core' + - esbuild + - react + - uglify-js + - webpack-cli + + '@teambit/webpack.modules.generate-style-loaders@1.0.13': {} + + '@teambit/webpack.modules.style-regexps@1.0.8': {} - '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@17.0.87)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)': + '@teambit/webpack.transformers.favicon-reload@1.0.0': {} + + '@teambit/webpack.webpack-bundler@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@18.3.1)': dependencies: - '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.property-table': 4.1.3(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/bit-error': 0.0.404 + '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@18.3.1) + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 11.1.0(webpack@5.100.2) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.100.2) + css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + domain-browser: 4.19.0 + events: 3.3.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + https-browserify: 1.0.0 + lodash: 4.17.21 + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.2 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - - '@types/react' - - encoding - - graphql - - typescript + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - clean-css + - csso + - esbuild + - lightningcss + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.docs.properties-table@0.0.9(@types/react@18.3.23)(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3)': + '@teambit/webpack.webpack-bundler@1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0)': dependencies: - '@teambit/component.ui.hooks.use-fetch-docs': 0.0.14(graphql@14.7.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.linked-heading': 4.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/documenter.ui.property-table': 4.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.3) - '@teambit/documenter.ui.section': 4.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@teambit/bit-error': 0.0.404 + '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0) + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 11.1.0(webpack@5.100.2) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.100.2) + css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + domain-browser: 4.19.0 + events: 3.3.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + https-browserify: 1.0.0 + lodash: 4.17.21 + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.2 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - - '@types/react' - - encoding - - graphql - - typescript + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - clean-css + - csso + - esbuild + - lightningcss + - react + - uglify-js + - webpack-cli + + '@teambit/webpack.webpack-bundler@1.0.16(lightningcss@1.30.1)(react@18.3.1)': + dependencies: + '@teambit/bit-error': 0.0.404 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@18.3.1) + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 11.1.0(webpack@5.100.2) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.100.2) + css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + domain-browser: 4.19.0 + events: 3.3.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + https-browserify: 1.0.0 + lodash: 4.17.21 + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.2 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - clean-css + - csso + - esbuild + - lightningcss + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.error-fallback@0.0.118(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/webpack.webpack-bundler@1.0.16(lightningcss@1.30.1)(react@19.0.0)': dependencies: - '@teambit/base-ui.styles.flex-center': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.icon-button': 1.0.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - classnames: 2.2.6 - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-error-boundary: 3.1.4(react@18.3.1) + '@teambit/bit-error': 0.0.404 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0) + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 11.1.0(webpack@5.100.2) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.100.2) + css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + domain-browser: 4.19.0 + events: 3.3.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + https-browserify: 1.0.0 + lodash: 4.17.21 + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.2 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.100.2(esbuild@0.14.29) + transitivePeerDependencies: + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - clean-css + - csso + - esbuild + - lightningcss + - react + - uglify-js + - webpack-cli - '@teambit/react.ui.highlighter.component-metadata.bit-component-meta@0.0.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@teambit/webpack.webpack-bundler@1.0.17(lightningcss@1.30.1)(react@19.0.0)': dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.12.9)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)': - dependencies: - '@babel/preset-env': 7.20.2(@babel/core@7.12.9) - '@babel/preset-react': 7.18.6(@babel/core@7.12.9) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.12.9)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) + '@teambit/bit-error': 0.0.404 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0) + assert: 2.0.0 + browserify-zlib: 0.2.0 + buffer: 6.0.3 + compression-webpack-plugin: 11.1.0(webpack@5.100.2) + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + css-loader: 6.7.1(webpack@5.100.2) + css-minimizer-webpack-plugin: 5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2) + domain-browser: 4.19.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + https-browserify: 1.0.0 lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + os-browserify: 0.3.0 + p-map-series: 2.1.0 + path-browserify: 1.0.1 + process: 0.11.10 + punycode: 2.1.1 + querystring-es3: 0.2.1 + stream-browserify: 3.0.0 + stream-http: 3.2.0 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.1 + url: 0.11.2 + util: 0.12.3 + vm-browserify: 1.1.2 + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - - '@babel/core' + - '@parcel/css' + - '@rspack/core' - '@swc/core' - - '@types/webpack' - - bufferutil + - '@swc/css' - clean-css - csso - - debug - - eslint - - fibers - - less - - node-sass + - esbuild + - lightningcss - react - - react-dom - - sass-embedded - - sockjs-client - - supports-color - - type-fest - - typescript - uglify-js - - utf-8-validate - - vue-template-compiler - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': - dependencies: - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)': + dependencies: + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@18.3.1) + '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@18.3.1) + find-root: 1.1.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: - - '@babel/core' + - '@parcel/css' + - '@rspack/core' - '@swc/core' - - '@types/webpack' + - '@swc/css' - bufferutil - clean-css - csso - debug + - esbuild - eslint - - fibers - - less - - node-sass + - lightningcss - react - - react-dom - - sass-embedded - - sockjs-client - supports-color - - type-fest - typescript - uglify-js - utf-8-validate - vue-template-compiler - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.19.6)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@5.8.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': - dependencies: - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.19.6)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)': + dependencies: + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0) + find-root: 1.1.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: - - '@babel/core' + - '@parcel/css' + - '@rspack/core' - '@swc/core' - - '@types/webpack' + - '@swc/css' - bufferutil - clean-css - csso - debug + - esbuild - eslint - - fibers - - less - - node-sass + - lightningcss - react - - react-dom - - sass-embedded - - sockjs-client - supports-color - - type-fest - typescript - uglify-js - utf-8-validate - vue-template-compiler - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - '@teambit/react.webpack.react-webpack@0.0.28(@babel/core@7.28.0)(eslint@7.32.0)(less@4.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.3)(webpack-dev-server@4.15.0(webpack@5.84.1))': - dependencies: - '@babel/preset-env': 7.20.2(@babel/core@7.28.0) - '@babel/preset-react': 7.18.6(@babel/core@7.28.0) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.9(react-refresh@0.14.0)(type-fest@0.21.3)(webpack-dev-server@4.15.0(webpack@5.84.1))(webpack@5.84.1) - '@svgr/webpack': 6.5.1 - '@teambit/component-id': 0.0.425 - '@teambit/mdx.modules.mdx-loader': 0.0.509(esbuild@0.14.28)(react@18.3.1) - '@teambit/react.babel.bit-react-transformer': 0.0.525(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/webpack.modules.generate-style-loaders': 0.0.110 - '@teambit/webpack.modules.style-regexps': 0.0.139 - '@teambit/webpack.webpack-dev-server': 0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - babel-loader: 9.1.0(@babel/core@7.28.0)(webpack@5.84.1) - babel-preset-react-app: 10.0.1 - browserslist: 4.21.4 - css-loader: 6.7.2(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - esbuild: 0.14.28 - less-loader: 11.1.0(less@4.3.0)(webpack@5.84.1) - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.0(webpack@5.84.1) - new-url-loader: 0.1.1(webpack@5.84.1) - postcss: 8.4.19 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.19) - postcss-loader: 7.0.1(postcss@8.4.19)(webpack@5.84.1) - postcss-normalize: 10.0.1(browserslist@4.21.4)(postcss@8.4.19) - postcss-preset-env: 7.8.3(postcss@8.4.19) - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - react-error-overlay: 6.0.9 - react-refresh: 0.14.0 - resolve-url-loader: 5.0.0 - sass: 1.56.1 - sass-loader: 13.2.0(sass@1.56.1)(webpack@5.84.1) - source-map-loader: 4.0.1(webpack@5.84.1) - strip-ansi: 6.0.0 - style-loader: 3.3.1(webpack@5.84.1) - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) + '@teambit/webpack.webpack-dev-server@1.0.23(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)': + dependencies: + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(esbuild@0.14.29)(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.16(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(react@19.0.0) + find-root: 1.1.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: - - '@babel/core' + - '@parcel/css' + - '@rspack/core' - '@swc/core' - - '@types/webpack' + - '@swc/css' - bufferutil - clean-css - csso - debug + - esbuild - eslint - - fibers - - less - - node-sass + - lightningcss - react - - react-dom - - sass-embedded - - sockjs-client - supports-color - - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - - '@teambit/tests-results@0.0.104': {} - - '@teambit/toolbox.fs.hard-link-directory@0.0.15': - dependencies: - fs-extra: 10.0.0 - resolve-link-target: 1.0.1 - symlink-dir: 5.2.1 - - '@teambit/toolbox.fs.hard-link-directory@0.0.9': - dependencies: - fs-extra: 10.0.0 - - '@teambit/toolbox.network.get-port@0.0.121': {} - - '@teambit/typescript.typescript-compiler@0.0.0-f236a8833a0038e3956090f2282a672c96eb90f3': - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/compilation.compiler-task': 0.0.4 - fs-extra: 10.1.0 - get-tsconfig: 4.2.0 - globby: 11.1.0 - react: 18.2.0 - typescript: 4.9.3 - - '@teambit/typescript.typescript-compiler@0.0.9': - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/compilation.compiler-task': 0.0.4 - fs-extra: 10.1.0 - get-tsconfig: 4.2.0 - globby: 11.1.0 - react: 18.2.0 - typescript: 4.9.3 - - '@teambit/typescript.typescript-compiler@2.0.16': - dependencies: - '@teambit/bit-error': 0.0.402 - '@teambit/compilation.compiler-task': 1.0.6 - comment-json: 4.2.3 - fs-extra: 11.3.0 - get-tsconfig: 4.2.0 - globby: 11.1.0 - lodash: 4.17.21 - normalize-path: 3.0.0 - react: 18.2.0 - typescript: 5.8.3 - - '@teambit/ui-foundation.ui.pages.preview-not-found@0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/ui-foundation.ui.pages.static-error@0.0.86(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@teambit/base-ui.theme.fonts.book': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.not-found': 0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/design.ui.pages.server-error': 0.0.366(@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.pages.preview-not-found': 0.0.79(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@teambit/ui-foundation.ui.rendering.html': 0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@testing-library/react' - - '@types/react' - - '@teambit/ui-foundation.ui.rendering.html@0.0.69(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/ui-foundation.ui.rendering.html@0.0.80(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - core-js: 3.44.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@teambit/webpack.modules.generate-style-loaders@0.0.110': {} - - '@teambit/webpack.modules.style-regexps@0.0.139': {} - - '@teambit/webpack.transformers.favicon-reload@0.0.0-3ed06889b56c0672f5ef2a3cbaed9d8ea49afefb': {} + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli - '@teambit/webpack.webpack-bundler@0.0.9(esbuild@0.14.28)': + '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@18.3.1)(typescript@5.5.3)(webpack@5.100.2)': dependencies: - '@teambit/bit-error': 0.0.402 - assert: 2.0.0 - browserify-zlib: 0.2.0 - buffer: 6.0.3 - compression-webpack-plugin: 10.0.0(webpack@5.84.1) - constants-browserify: 1.0.0 - crypto-browserify: 3.12.0 - css-loader: 6.7.1(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.0.2(webpack@5.84.1) - domain-browser: 4.19.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) - https-browserify: 1.0.0 - lodash: 4.17.21 - os-browserify: 0.3.0 - p-map-series: 2.1.0 - path-browserify: 1.0.1 - process: 0.11.10 - punycode: 2.1.1 - querystring-es3: 0.2.1 - stream-browserify: 3.0.0 - stream-http: 3.2.0 - string_decoder: 1.3.0 - timers-browserify: 2.0.12 - tty-browserify: 0.0.1 - url: 0.11.0 - util: 0.12.3 - vm-browserify: 1.1.2 - webpack: 5.84.1(esbuild@0.14.28) - webpack-assets-manifest: 5.1.0(webpack@5.84.1) + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@18.3.1) + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@18.3.1) + find-root: 1.1.0 + html-webpack-plugin: 5.6.3(webpack@5.100.2) + object-hash: 3.0.0 + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' + - bufferutil - clean-css - csso + - debug - esbuild + - eslint + - lightningcss + - react + - supports-color + - typescript - uglify-js + - utf-8-validate + - vue-template-compiler - webpack-cli - '@teambit/webpack.webpack-dev-server@0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1)': + '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.7.2)(webpack@5.100.2)': dependencies: - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0) find-root: 1.1.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) + html-webpack-plugin: 5.6.3(webpack@5.100.2) object-hash: 3.0.0 - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - bufferutil - clean-css - csso - debug - esbuild - eslint + - lightningcss + - react - supports-color - typescript - uglify-js @@ -15098,23 +15621,30 @@ snapshots: - vue-template-compiler - webpack-cli - '@teambit/webpack.webpack-dev-server@0.0.16(esbuild@0.14.28)(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1)': + '@teambit/webpack.webpack-dev-server@1.0.23(eslint@8.56.0)(lightningcss@1.30.1)(react@19.0.0)(typescript@5.8.3)(webpack@5.100.2)': dependencies: - '@teambit/webpack.webpack-bundler': 0.0.9(esbuild@0.14.28) + '@teambit/toolbox.path.path': 0.0.6 + '@teambit/webpack.modules.config-mutator': 0.0.172(react@19.0.0) + '@teambit/webpack.webpack-bundler': 1.0.16(lightningcss@1.30.1)(react@19.0.0) find-root: 1.1.0 - html-webpack-plugin: 5.5.0(webpack@5.84.1) + html-webpack-plugin: 5.6.3(webpack@5.100.2) object-hash: 3.0.0 - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) - webpack: 5.84.1(esbuild@0.14.28) - webpack-dev-server: 4.15.0(webpack@5.84.1) + react-dev-utils: 12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + webpack-dev-server: 4.15.0(webpack@5.100.2) transitivePeerDependencies: + - '@parcel/css' + - '@rspack/core' - '@swc/core' + - '@swc/css' - bufferutil - clean-css - csso - debug - esbuild - eslint + - lightningcss + - react - supports-color - typescript - uglify-js @@ -15122,10 +15652,21 @@ snapshots: - vue-template-compiler - webpack-cli + '@testing-library/dom@10.4.0': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/runtime': 7.27.6 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 + '@testing-library/dom@8.20.1': dependencies: '@babel/code-frame': 7.27.1 - '@babel/runtime': 7.20.0 + '@babel/runtime': 7.27.6 '@types/aria-query': 5.0.4 aria-query: 5.1.3 chalk: 4.1.2 @@ -15136,8 +15677,8 @@ snapshots: '@testing-library/jest-dom@5.16.5': dependencies: '@adobe/css-tools': 4.4.3 - '@babel/runtime': 7.20.0 - '@types/testing-library__jest-dom': 5.9.5 + '@babel/runtime': 7.27.6 + '@types/testing-library__jest-dom': 5.14.9 aria-query: 5.3.2 chalk: 3.0.0 css.escape: 1.5.1 @@ -15145,49 +15686,69 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 + '@testing-library/jest-dom@6.4.8': + dependencies: + '@adobe/css-tools': 4.4.3 + '@babel/runtime': 7.27.6 + aria-query: 5.3.2 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + lodash: 4.17.21 + redent: 3.0.0 + + '@testing-library/jest-dom@6.5.0': + dependencies: + '@adobe/css-tools': 4.4.3 + aria-query: 5.3.2 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + lodash: 4.17.21 + redent: 3.0.0 + '@testing-library/react-hooks@8.0.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 + '@babel/runtime': 7.27.6 react: 18.3.1 react-error-boundary: 3.1.4(react@18.3.1) optionalDependencies: '@types/react': 18.3.23 react-dom: 18.3.1(react@18.3.1) - '@testing-library/react@12.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 + '@babel/runtime': 7.27.6 '@testing-library/dom': 8.20.1 - '@types/react-dom': 17.0.26(@types/react@18.3.23) + '@types/react-dom': 18.3.7(@types/react@18.3.23) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@testing-library/react@13.4.0(@types/react@17.0.87)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.2(@types/react@19.0.2))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@babel/runtime': 7.20.0 - '@testing-library/dom': 8.20.1 - '@types/react-dom': 18.3.7(@types/react@17.0.87) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@types/react' + '@babel/runtime': 7.27.6 + '@testing-library/dom': 10.4.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + optionalDependencies: + '@types/react': 19.0.2 + '@types/react-dom': 19.0.2(@types/react@19.0.2) - '@testing-library/react@13.4.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@tippyjs/react@4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.20.0 - '@testing-library/dom': 8.20.1 - '@types/react-dom': 18.3.7(@types/react@18.3.23) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - '@types/react' + tippy.js: 6.3.7 - '@tootallnate/once@2.0.0': {} + '@tippyjs/react@4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + tippy.js: 6.3.7 - '@tootallnate/quickjs-emscripten@0.23.0': - optional: true + '@tootallnate/once@2.0.0': {} '@trysound/sax@0.2.0': {} @@ -15217,542 +15778,983 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 16.18.126 + '@types/node': 20.12.10 '@types/bonjour@3.5.13': dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 - '@types/buble@0.20.5': + '@types/chai@5.2.2': dependencies: - magic-string: 0.25.9 + '@types/deep-eql': 4.0.2 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 5.0.7 - '@types/node': 16.18.126 + '@types/node': 20.12.10 '@types/connect@3.4.38': dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 + + '@types/deep-eql@4.0.2': {} '@types/eslint-scope@3.7.7': dependencies: - '@types/eslint': 9.6.1 + '@types/eslint': 8.56.0 '@types/estree': 1.0.8 - '@types/eslint@9.6.1': + '@types/eslint@8.56.0': dependencies: '@types/estree': 1.0.8 '@types/json-schema': 7.0.15 - '@types/estree@0.0.50': {} + '@types/estree@1.0.5': {} '@types/estree@1.0.8': {} '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 '@types/express-serve-static-core@5.0.7': dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 - '@types/express@4.17.23': + '@types/express@4.17.23': + dependencies: + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 4.19.6 + '@types/qs': 6.14.0 + '@types/serve-static': 1.15.8 + + '@types/find-root@1.1.4': {} + + '@types/graceful-fs@4.1.9': + dependencies: + '@types/node': 20.12.10 + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 + + '@types/html-minifier-terser@5.1.2': {} + + '@types/html-minifier-terser@6.1.0': {} + + '@types/http-errors@2.0.5': {} + + '@types/http-proxy@1.17.16': + dependencies: + '@types/node': 20.12.10 + + '@types/istanbul-lib-coverage@2.0.6': {} + + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + + '@types/istanbul-reports@3.0.4': + dependencies: + '@types/istanbul-lib-report': 3.0.3 + + '@types/jest@29.5.14': + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + + '@types/jsdom@20.0.1': + dependencies: + '@types/node': 20.12.10 + '@types/tough-cookie': 4.0.5 + parse5: 7.3.0 + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/mdast@3.0.15': + dependencies: + '@types/unist': 2.0.11 + + '@types/mime@1.3.5': {} + + '@types/node-forge@1.3.13': + dependencies: + '@types/node': 20.12.10 + + '@types/node@20.12.10': + dependencies: + undici-types: 5.26.5 + + '@types/parse-json@4.0.2': {} + + '@types/parse5@5.0.3': {} + + '@types/prop-types@15.7.15': {} + + '@types/qs@6.14.0': {} + + '@types/range-parser@1.2.7': {} + + '@types/react-dom@18.3.7(@types/react@18.3.23)': + dependencies: + '@types/react': 18.3.23 + + '@types/react-dom@19.0.2(@types/react@19.0.2)': + dependencies: + '@types/react': 19.0.2 + + '@types/react@18.3.23': + dependencies: + '@types/prop-types': 15.7.15 + csstype: 3.1.3 + + '@types/react@19.0.2': + dependencies: + csstype: 3.1.3 + + '@types/retry@0.12.0': {} + + '@types/semver@7.7.0': {} + + '@types/send@0.17.5': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 20.12.10 + + '@types/serve-index@1.9.4': + dependencies: + '@types/express': 4.17.23 + + '@types/serve-static@1.15.8': + dependencies: + '@types/http-errors': 2.0.5 + '@types/node': 20.12.10 + '@types/send': 0.17.5 + + '@types/sockjs@0.3.36': + dependencies: + '@types/node': 20.12.10 + + '@types/stack-utils@2.0.3': {} + + '@types/testing-library__jest-dom@5.14.9': + dependencies: + '@types/jest': 29.5.14 + + '@types/tough-cookie@4.0.5': {} + + '@types/unist@2.0.11': {} + + '@types/ws@8.18.1': + dependencies: + '@types/node': 20.12.10 + + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@17.0.33': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.5.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 7.1.0(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/scope-manager': 7.1.0 + '@typescript-eslint/type-utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 7.1.0 + debug: 4.4.1 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 7.18.0 + '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 7.18.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.4.3(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 7.18.0 + '@typescript-eslint/type-utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 7.18.0 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@4.4.1(eslint@8.56.0)(typescript@5.5.3)': dependencies: - '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 4.19.6 - '@types/qs': 6.14.0 - '@types/serve-static': 1.15.8 + '@typescript-eslint/scope-manager': 4.4.1 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/typescript-estree': 4.4.1(typescript@5.5.3) + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/graceful-fs@4.1.9': + '@typescript-eslint/parser@4.4.1(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@types/node': 16.18.126 + '@typescript-eslint/scope-manager': 4.4.1 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/typescript-estree': 4.4.1(typescript@5.7.2) + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/hast@2.3.10': + '@typescript-eslint/parser@4.4.1(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@types/unist': 2.0.11 - - '@types/html-minifier-terser@6.1.0': {} - - '@types/http-errors@2.0.5': {} + '@typescript-eslint/scope-manager': 4.4.1 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/typescript-estree': 4.4.1(typescript@5.8.3) + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/http-proxy@1.17.16': + '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.5.3)': dependencies: - '@types/node': 16.18.126 - - '@types/istanbul-lib-coverage@2.0.6': {} + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/istanbul-lib-report@3.0.3': + '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@types/istanbul-lib-coverage': 2.0.6 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/istanbul-reports@3.0.4': + '@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@types/istanbul-lib-report': 3.0.3 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/jest@26.0.24': + '@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3)': dependencies: - jest-diff: 26.6.2 - pretty-format: 26.6.2 + '@typescript-eslint/scope-manager': 7.1.0 + '@typescript-eslint/types': 7.1.0 + '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3) + '@typescript-eslint/visitor-keys': 7.1.0 + debug: 4.4.1 + eslint: 8.56.0 + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/jest@29.5.14': + '@typescript-eslint/scope-manager@4.4.1': dependencies: - expect: 29.7.0 - pretty-format: 29.7.0 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 - '@types/jsdom@20.0.1': + '@typescript-eslint/scope-manager@5.62.0': dependencies: - '@types/node': 16.18.126 - '@types/tough-cookie': 4.0.5 - parse5: 7.3.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 - '@types/jsdom@21.1.7': + '@typescript-eslint/scope-manager@6.19.1': dependencies: - '@types/node': 16.18.126 - '@types/tough-cookie': 4.0.5 - parse5: 7.3.0 - - '@types/json-schema@7.0.15': {} + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 - '@types/json5@0.0.29': {} - - '@types/mdast@3.0.15': + '@typescript-eslint/scope-manager@7.1.0': dependencies: - '@types/unist': 2.0.11 + '@typescript-eslint/types': 7.1.0 + '@typescript-eslint/visitor-keys': 7.1.0 - '@types/mime@1.3.5': {} - - '@types/node-forge@1.3.13': + '@typescript-eslint/scope-manager@7.18.0': dependencies: - '@types/node': 16.18.126 - - '@types/node@12.20.4': {} - - '@types/node@16.18.126': {} - - '@types/parse-json@4.0.2': {} - - '@types/parse5@5.0.3': {} - - '@types/prop-types@15.7.15': {} - - '@types/qs@6.14.0': {} - - '@types/range-parser@1.2.7': {} + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 - '@types/react-dom@17.0.26(@types/react@17.0.87)': + '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.5.3)': dependencies: - '@types/react': 17.0.87 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.5.3) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/react-dom@17.0.26(@types/react@18.3.23)': + '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@types/react': 18.3.23 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.7.2) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/react-dom@18.3.7(@types/react@17.0.87)': + '@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@types/react': 17.0.87 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/react-dom@18.3.7(@types/react@18.3.23)': + '@typescript-eslint/type-utils@7.1.0(eslint@8.56.0)(typescript@5.5.3)': dependencies: - '@types/react': 18.3.23 + '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3) + '@typescript-eslint/utils': 7.1.0(eslint@8.56.0)(typescript@5.5.3) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/react@17.0.87': + '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@types/prop-types': 15.7.15 - '@types/scheduler': 0.16.8 - csstype: 3.1.3 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.7.2) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/react@18.3.23': + '@typescript-eslint/type-utils@7.18.0(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@types/prop-types': 15.7.15 - csstype: 3.1.3 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.8.3) + debug: 4.4.1 + eslint: 8.56.0 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/retry@0.12.0': {} + '@typescript-eslint/types@4.4.1': {} - '@types/scheduler@0.16.8': {} + '@typescript-eslint/types@5.62.0': {} - '@types/send@0.17.5': - dependencies: - '@types/mime': 1.3.5 - '@types/node': 16.18.126 + '@typescript-eslint/types@6.19.1': {} - '@types/serve-index@1.9.4': - dependencies: - '@types/express': 4.17.23 + '@typescript-eslint/types@7.1.0': {} - '@types/serve-static@1.15.8': - dependencies: - '@types/http-errors': 2.0.5 - '@types/node': 16.18.126 - '@types/send': 0.17.5 + '@typescript-eslint/types@7.18.0': {} - '@types/sockjs@0.3.36': + '@typescript-eslint/typescript-estree@4.4.1(typescript@5.5.3)': dependencies: - '@types/node': 16.18.126 - - '@types/stack-utils@2.0.3': {} + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/testing-library__jest-dom@5.9.5': + '@typescript-eslint/typescript-estree@4.4.1(typescript@5.7.2)': dependencies: - '@types/jest': 29.5.14 + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/tough-cookie@4.0.5': {} + '@typescript-eslint/typescript-estree@4.4.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 4.4.1 + '@typescript-eslint/visitor-keys': 4.4.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + lodash: 4.17.21 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/unist@2.0.11': {} + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/ws@8.18.1': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.2)': dependencies: - '@types/node': 16.18.126 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/yargs-parser@21.0.3': {} + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@types/yargs@15.0.19': + '@typescript-eslint/typescript-estree@6.19.1(typescript@5.5.3)': dependencies: - '@types/yargs-parser': 21.0.3 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.5.3) + optionalDependencies: + typescript: 5.5.3 + transitivePeerDependencies: + - supports-color - '@types/yargs@17.0.33': + '@typescript-eslint/typescript-estree@6.19.1(typescript@5.7.2)': dependencies: - '@types/yargs-parser': 21.0.3 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.7.2) + optionalDependencies: + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color - '@types/yauzl@2.10.3': + '@typescript-eslint/typescript-estree@6.19.1(typescript@5.8.3)': dependencies: - '@types/node': 16.18.126 - optional: true + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color - '@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/typescript-estree@7.1.0(typescript@5.5.3)': dependencies: - '@typescript-eslint/experimental-utils': 4.13.0(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/scope-manager': 4.13.0 + '@typescript-eslint/types': 7.1.0 + '@typescript-eslint/visitor-keys': 7.1.0 debug: 4.4.1 - eslint: 7.32.0 - functional-red-black-tree: 1.0.1 - lodash: 4.17.21 - regexpp: 3.2.0 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) + ts-api-utils: 1.4.3(typescript@5.5.3) optionalDependencies: - typescript: 4.9.3 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)': dependencies: - '@typescript-eslint/experimental-utils': 4.29.3(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/scope-manager': 4.29.3 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.4.1 - eslint: 7.32.0 - functional-red-black-tree: 1.0.1 - regexpp: 3.2.0 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) + ts-api-utils: 1.4.3(typescript@5.7.2) optionalDependencies: - typescript: 4.9.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/parser': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/type-utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.4.1 - eslint: 7.32.0 - functional-red-black-tree: 1.0.1 - ignore: 5.3.2 - regexpp: 3.2.0 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.8.3) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.5.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) + eslint: 8.56.0 + eslint-scope: 5.1.1 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.7.2)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.2) + eslint: 8.56.0 + eslint-scope: 5.1.1 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.3) + eslint: 8.56.0 + eslint-scope: 5.1.1 semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 transitivePeerDependencies: - supports-color + - typescript - '@typescript-eslint/experimental-utils@4.13.0(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.5.3)': dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) '@types/json-schema': 7.0.15 - '@typescript-eslint/scope-manager': 4.13.0 - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/typescript-estree': 4.13.0(typescript@4.9.3) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.5.3) + eslint: 8.56.0 + semver: 7.7.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/experimental-utils@4.29.3(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.7.2)': dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) '@types/json-schema': 7.0.15 - '@typescript-eslint/scope-manager': 4.29.3 - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/typescript-estree': 4.29.3(typescript@4.9.3) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.7.2) + eslint: 8.56.0 + semver: 7.7.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.8.3)': dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) '@types/json-schema': 7.0.15 - '@typescript-eslint/scope-manager': 4.33.0 - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.3) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.8.3) + eslint: 8.56.0 + semver: 7.7.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@7.1.0(eslint@8.56.0)(typescript@5.5.3)': dependencies: - '@typescript-eslint/scope-manager': 4.13.0 - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/typescript-estree': 4.13.0(typescript@4.9.3) - debug: 4.4.1 - eslint: 7.32.0 - optionalDependencies: - typescript: 4.9.3 + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 7.1.0 + '@typescript-eslint/types': 7.1.0 + '@typescript-eslint/typescript-estree': 7.1.0(typescript@5.5.3) + eslint: 8.56.0 + semver: 7.7.2 transitivePeerDependencies: - supports-color + - typescript - '@typescript-eslint/parser@4.4.1(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.7.2)': dependencies: - '@typescript-eslint/scope-manager': 4.4.1 - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/typescript-estree': 4.4.1(typescript@4.9.3) - debug: 4.4.1 - eslint: 7.32.0 - optionalDependencies: - typescript: 4.9.3 + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 7.18.0 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + eslint: 8.56.0 transitivePeerDependencies: - supports-color + - typescript - '@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3)': + '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) - debug: 4.4.1 - eslint: 7.32.0 - optionalDependencies: - typescript: 4.9.3 + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@typescript-eslint/scope-manager': 7.18.0 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3) + eslint: 8.56.0 transitivePeerDependencies: - supports-color + - typescript - '@typescript-eslint/scope-manager@4.13.0': + '@typescript-eslint/visitor-keys@4.4.1': dependencies: - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/visitor-keys': 4.13.0 + '@typescript-eslint/types': 4.4.1 + eslint-visitor-keys: 2.1.0 - '@typescript-eslint/scope-manager@4.29.3': + '@typescript-eslint/visitor-keys@5.62.0': dependencies: - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/visitor-keys': 4.29.3 + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.3 - '@typescript-eslint/scope-manager@4.33.0': + '@typescript-eslint/visitor-keys@6.19.1': dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 + '@typescript-eslint/types': 6.19.1 + eslint-visitor-keys: 3.4.3 - '@typescript-eslint/scope-manager@4.4.1': + '@typescript-eslint/visitor-keys@7.1.0': dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 + '@typescript-eslint/types': 7.1.0 + eslint-visitor-keys: 3.4.3 - '@typescript-eslint/scope-manager@5.35.1': + '@typescript-eslint/visitor-keys@7.18.0': dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 + '@typescript-eslint/types': 7.18.0 + eslint-visitor-keys: 3.4.3 + + '@ungap/structured-clone@1.3.0': {} - '@typescript-eslint/type-utils@5.35.1(eslint@7.32.0)(typescript@4.9.3)': + '@vitejs/plugin-react@4.6.0(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': dependencies: - '@typescript-eslint/utils': 5.35.1(eslint@7.32.0)(typescript@4.9.3) - debug: 4.4.1 - eslint: 7.32.0 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 + '@babel/core': 7.28.0 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0) + '@rolldown/pluginutils': 1.0.0-beta.19 + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) transitivePeerDependencies: - supports-color - '@typescript-eslint/types@4.13.0': {} - - '@typescript-eslint/types@4.29.3': {} - - '@typescript-eslint/types@4.33.0': {} - - '@typescript-eslint/types@4.4.1': {} - - '@typescript-eslint/types@5.35.1': {} - - '@typescript-eslint/typescript-estree@4.13.0(typescript@4.9.3)': + '@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': dependencies: - '@typescript-eslint/types': 4.13.0 - '@typescript-eslint/visitor-keys': 4.13.0 + '@istanbuljs/schema': 0.1.3 debug: 4.4.1 - globby: 11.1.0 - is-glob: 4.0.3 - lodash: 4.17.21 - semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magicast: 0.3.5 + test-exclude: 7.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@4.29.3(typescript@4.9.3)': + '@vitest/coverage-v8@2.1.9(vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': dependencies: - '@typescript-eslint/types': 4.29.3 - '@typescript-eslint/visitor-keys': 4.29.3 + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 0.2.3 debug: 4.4.1 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magic-string: 0.30.17 + magicast: 0.3.5 + std-env: 3.9.0 + test-exclude: 7.0.1 + tinyrainbow: 1.2.0 + vitest: 1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.3)': + '@vitest/coverage-v8@2.1.9(vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 0.2.3 debug: 4.4.1 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magic-string: 0.30.17 + magicast: 0.3.5 + std-env: 3.9.0 + test-exclude: 7.0.1 + tinyrainbow: 1.2.0 + vitest: 3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@4.4.1(typescript@4.9.3)': + '@vitest/expect@1.3.1': dependencies: - '@typescript-eslint/types': 4.4.1 - '@typescript-eslint/visitor-keys': 4.4.1 - debug: 4.4.1 - globby: 11.1.0 - is-glob: 4.0.3 - lodash: 4.17.21 - semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) - optionalDependencies: - typescript: 4.9.3 - transitivePeerDependencies: - - supports-color + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 + chai: 4.5.0 - '@typescript-eslint/typescript-estree@5.35.1(typescript@4.9.3)': + '@vitest/expect@3.2.4': dependencies: - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/visitor-keys': 5.35.1 - debug: 4.4.1 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.7.2 - tsutils: 3.21.0(typescript@4.9.3) + '@types/chai': 5.2.2 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.2.1 + tinyrainbow: 2.0.0 + + '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.17 optionalDependencies: - typescript: 4.9.3 - transitivePeerDependencies: - - supports-color + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) - '@typescript-eslint/utils@5.35.1(eslint@7.32.0)(typescript@4.9.3)': + '@vitest/pretty-format@3.2.4': dependencies: - '@types/json-schema': 7.0.15 - '@typescript-eslint/scope-manager': 5.35.1 - '@typescript-eslint/types': 5.35.1 - '@typescript-eslint/typescript-estree': 5.35.1(typescript@4.9.3) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) - transitivePeerDependencies: - - supports-color - - typescript + tinyrainbow: 2.0.0 - '@typescript-eslint/visitor-keys@4.13.0': + '@vitest/runner@1.3.1': dependencies: - '@typescript-eslint/types': 4.13.0 - eslint-visitor-keys: 2.1.0 + '@vitest/utils': 1.3.1 + p-limit: 5.0.0 + pathe: 1.1.2 - '@typescript-eslint/visitor-keys@4.29.3': + '@vitest/runner@3.2.4': dependencies: - '@typescript-eslint/types': 4.29.3 - eslint-visitor-keys: 2.1.0 + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.0.0 - '@typescript-eslint/visitor-keys@4.33.0': + '@vitest/snapshot@1.3.1': dependencies: - '@typescript-eslint/types': 4.33.0 - eslint-visitor-keys: 2.1.0 + magic-string: 0.30.17 + pathe: 1.1.2 + pretty-format: 29.7.0 - '@typescript-eslint/visitor-keys@4.4.1': + '@vitest/snapshot@3.2.4': dependencies: - '@typescript-eslint/types': 4.4.1 - eslint-visitor-keys: 2.1.0 + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.17 + pathe: 2.0.3 - '@typescript-eslint/visitor-keys@5.35.1': + '@vitest/spy@1.3.1': dependencies: - '@typescript-eslint/types': 5.35.1 - eslint-visitor-keys: 3.4.3 + tinyspy: 2.2.1 + + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.3 + + '@vitest/utils@1.3.1': + dependencies: + diff-sequences: 29.6.3 + estree-walker: 3.0.3 + loupe: 2.3.7 + pretty-format: 29.7.0 - '@webassemblyjs/ast@1.11.1': + '@vitest/utils@3.2.4': dependencies: - '@webassemblyjs/helper-numbers': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@vitest/pretty-format': 3.2.4 + loupe: 3.1.4 + tinyrainbow: 2.0.0 '@webassemblyjs/ast@1.14.1': dependencies: '@webassemblyjs/helper-numbers': 1.13.2 '@webassemblyjs/helper-wasm-bytecode': 1.13.2 - '@webassemblyjs/floating-point-hex-parser@1.11.1': {} - '@webassemblyjs/floating-point-hex-parser@1.13.2': {} - '@webassemblyjs/helper-api-error@1.11.1': {} - '@webassemblyjs/helper-api-error@1.13.2': {} - '@webassemblyjs/helper-buffer@1.11.1': {} - '@webassemblyjs/helper-buffer@1.14.1': {} - '@webassemblyjs/helper-numbers@1.11.1': - dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.1 - '@webassemblyjs/helper-api-error': 1.11.1 - '@xtuc/long': 4.2.2 - '@webassemblyjs/helper-numbers@1.13.2': dependencies: '@webassemblyjs/floating-point-hex-parser': 1.13.2 '@webassemblyjs/helper-api-error': 1.13.2 '@xtuc/long': 4.2.2 - '@webassemblyjs/helper-wasm-bytecode@1.11.1': {} - '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} - '@webassemblyjs/helper-wasm-section@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 - '@webassemblyjs/helper-wasm-section@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 @@ -15760,37 +16762,16 @@ snapshots: '@webassemblyjs/helper-wasm-bytecode': 1.13.2 '@webassemblyjs/wasm-gen': 1.14.1 - '@webassemblyjs/ieee754@1.11.1': - dependencies: - '@xtuc/ieee754': 1.2.0 - '@webassemblyjs/ieee754@1.13.2': dependencies: '@xtuc/ieee754': 1.2.0 - '@webassemblyjs/leb128@1.11.1': - dependencies: - '@xtuc/long': 4.2.2 - '@webassemblyjs/leb128@1.13.2': dependencies: '@xtuc/long': 4.2.2 - '@webassemblyjs/utf8@1.11.1': {} - '@webassemblyjs/utf8@1.13.2': {} - '@webassemblyjs/wasm-edit@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/helper-wasm-section': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 - '@webassemblyjs/wasm-opt': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - '@webassemblyjs/wast-printer': 1.11.1 - '@webassemblyjs/wasm-edit@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 @@ -15802,14 +16783,6 @@ snapshots: '@webassemblyjs/wasm-parser': 1.14.1 '@webassemblyjs/wast-printer': 1.14.1 - '@webassemblyjs/wasm-gen@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/ieee754': 1.11.1 - '@webassemblyjs/leb128': 1.11.1 - '@webassemblyjs/utf8': 1.11.1 - '@webassemblyjs/wasm-gen@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 @@ -15818,13 +16791,6 @@ snapshots: '@webassemblyjs/leb128': 1.13.2 '@webassemblyjs/utf8': 1.13.2 - '@webassemblyjs/wasm-opt@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-buffer': 1.11.1 - '@webassemblyjs/wasm-gen': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - '@webassemblyjs/wasm-opt@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 @@ -15832,15 +16798,6 @@ snapshots: '@webassemblyjs/wasm-gen': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 - '@webassemblyjs/wasm-parser@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/helper-api-error': 1.11.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - '@webassemblyjs/ieee754': 1.11.1 - '@webassemblyjs/leb128': 1.11.1 - '@webassemblyjs/utf8': 1.11.1 - '@webassemblyjs/wasm-parser@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 @@ -15850,17 +16807,12 @@ snapshots: '@webassemblyjs/leb128': 1.13.2 '@webassemblyjs/utf8': 1.13.2 - '@webassemblyjs/wast-printer@1.11.1': - dependencies: - '@webassemblyjs/ast': 1.11.1 - '@xtuc/long': 4.2.2 - '@webassemblyjs/wast-printer@1.14.1': dependencies: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 - '@wry/context@0.6.1': + '@wry/caches@1.0.1': dependencies: tslib: 2.8.1 @@ -15872,7 +16824,7 @@ snapshots: dependencies: tslib: 2.8.1 - '@wry/trie@0.3.2': + '@wry/trie@0.5.0': dependencies: tslib: 2.8.1 @@ -15896,22 +16848,18 @@ snapshots: acorn: 8.15.0 acorn-walk: 8.3.4 - acorn-import-assertions@1.9.0(acorn@8.15.0): + acorn-import-phases@1.0.4(acorn@8.15.0): dependencies: acorn: 8.15.0 - acorn-jsx@5.3.2(acorn@7.4.1): + acorn-jsx@5.3.2(acorn@8.15.0): dependencies: - acorn: 7.4.1 + acorn: 8.15.0 acorn-walk@8.3.4: dependencies: acorn: 8.15.0 - acorn@5.7.4: {} - - acorn@7.4.1: {} - acorn@8.15.0: {} address@1.2.2: {} @@ -15956,18 +16904,20 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - amdefine@1.0.1: {} - - ansi-colors@4.1.3: {} - ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 ansi-html-community@0.0.8: {} + ansi-html@0.0.9: {} + + ansi-regex@2.1.1: {} + ansi-regex@5.0.1: {} + ansi-regex@6.1.0: {} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 @@ -15978,6 +16928,10 @@ snapshots: ansi-styles@5.2.0: {} + ansi-styles@6.2.1: {} + + any-promise@1.3.0: {} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -15987,8 +16941,7 @@ snapshots: dependencies: sprintf-js: 1.0.3 - argparse@2.0.1: - optional: true + argparse@2.0.1: {} args@5.0.3: dependencies: @@ -15997,15 +16950,14 @@ snapshots: leven: 2.1.0 mri: 1.1.4 - aria-query@4.2.2: - dependencies: - '@babel/runtime': 7.20.0 - '@babel/runtime-corejs3': 7.28.0 - aria-query@5.1.3: dependencies: deep-equal: 2.2.3 + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + aria-query@5.3.2: {} array-buffer-byte-length@1.0.2: @@ -16030,6 +16982,16 @@ snapshots: array-union@2.1.0: {} + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + array.prototype.flat@1.3.3: dependencies: call-bind: 1.0.8 @@ -16044,6 +17006,14 @@ snapshots: es-abstract: 1.24.0 es-shim-unscopables: 1.1.0 + array.prototype.tosorted@1.1.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-shim-unscopables: 1.1.0 + arraybuffer.prototype.slice@1.0.4: dependencies: array-buffer-byte-length: 1.0.2 @@ -16069,21 +17039,14 @@ snapshots: object-is: 1.1.6 util: 0.12.3 - ast-types-flow@0.0.7: {} + assertion-error@1.1.0: {} - ast-types@0.13.4: - dependencies: - tslib: 2.8.1 - optional: true - - ast-types@0.9.6: {} + assertion-error@2.0.1: {} - astral-regex@2.0.0: {} + ast-types-flow@0.0.8: {} async-function@1.0.0: {} - async@3.2.6: {} - asynckit@0.4.0: {} at-least-node@1.0.0: {} @@ -16102,46 +17065,36 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 - axe-core@4.10.3: {} - - axobject-query@2.2.0: {} + axe-core@4.7.0: {} - b4a@1.6.7: - optional: true + axobject-query@3.2.4: {} - babel-jest@29.7.0(@babel/core@7.28.0): + babel-jest@29.7.0(@babel/core@7.26.9): dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.28.0) + babel-preset-jest: 29.6.3(@babel/core@7.26.9) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-loader@9.1.0(@babel/core@7.12.9)(webpack@5.84.1): + babel-loader@9.1.0(@babel/core@7.26.9)(webpack@5.100.2): dependencies: - '@babel/core': 7.12.9 - find-cache-dir: 3.3.2 - schema-utils: 4.3.2 - webpack: 5.84.1(esbuild@0.14.28) - - babel-loader@9.1.0(@babel/core@7.19.6)(webpack@5.84.1): - dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.26.9 find-cache-dir: 3.3.2 schema-utils: 4.3.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) - babel-loader@9.1.0(@babel/core@7.28.0)(webpack@5.84.1): + babel-loader@9.1.2(@babel/core@7.26.9)(webpack@5.100.2): dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 find-cache-dir: 3.3.2 schema-utils: 4.3.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) babel-plugin-apply-mdx-type-prop@1.6.21(@babel/core@7.11.6): dependencies: @@ -16149,10 +17102,20 @@ snapshots: '@babel/helper-plugin-utils': 7.10.4 '@mdx-js/util': 1.6.21 + babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@mdx-js/util': 1.6.22 + babel-plugin-extract-import-names@1.6.21: dependencies: '@babel/helper-plugin-utils': 7.10.4 + babel-plugin-extract-import-names@1.6.22: + dependencies: + '@babel/helper-plugin-utils': 7.10.4 + babel-plugin-istanbul@6.1.1: dependencies: '@babel/helper-plugin-utils': 7.27.1 @@ -16167,254 +17130,92 @@ snapshots: dependencies: '@babel/template': 7.27.2 '@babel/types': 7.28.1 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.7 - - babel-plugin-macros@3.1.0: - dependencies: - '@babel/runtime': 7.20.0 - cosmiconfig: 7.1.0 - resolve: 1.22.10 - - babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.12.9): - dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.12.9 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.19.6): - dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.2): - dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.28.0): - dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.28.0 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.19.6): - dependencies: - '@babel/compat-data': 7.28.0 - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.19.6): - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) - core-js-compat: 3.44.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.12.9): - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) - core-js-compat: 3.44.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.19.6): - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) - core-js-compat: 3.44.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.2): - dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) - core-js-compat: 3.44.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.28.0): - dependencies: - '@babel/core': 7.28.0 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) - core-js-compat: 3.44.0 - transitivePeerDependencies: - - supports-color + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.7 - babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.12.9): + babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.26.9): dependencies: - '@babel/core': 7.12.9 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.12.9) + '@babel/compat-data': 7.28.0 + '@babel/core': 7.26.9 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9) + semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.19.6): + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.26.9): dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.6) + '@babel/core': 7.26.9 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9) + core-js-compat: 3.44.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.2): + babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.26.9): dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.2) + '@babel/core': 7.26.9 + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.26.9) + core-js-compat: 3.44.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.28.0): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.26.9): dependencies: - '@babel/core': 7.28.0 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.28.0) + '@babel/core': 7.26.9 + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.19.6): + babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.26.9): dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.19.6) + '@babel/core': 7.26.9 + '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.9) transitivePeerDependencies: - supports-color - babel-plugin-transform-react-remove-prop-types@0.4.24: {} - - babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.20.2)(@babel/traverse@7.28.0): + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.9)(@babel/traverse@7.28.0): dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.26.9 '@babel/helper-plugin-utils': 7.27.1 optionalDependencies: '@babel/traverse': 7.28.0 - babel-preset-current-node-syntax@1.1.0(@babel/core@7.20.2): - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.2) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.20.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2) - - babel-preset-current-node-syntax@1.1.0(@babel/core@7.28.0): - dependencies: - '@babel/core': 7.28.0 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0) - - babel-preset-jest@29.2.0(@babel/core@7.20.2): - dependencies: - '@babel/core': 7.20.2 + babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.9): + dependencies: + '@babel/core': 7.26.9 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.9) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.9) + + babel-preset-jest@29.2.0(@babel/core@7.26.9): + dependencies: + '@babel/core': 7.26.9 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.20.2) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9) - babel-preset-jest@29.6.3(@babel/core@7.28.0): + babel-preset-jest@29.6.3(@babel/core@7.26.9): dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.0) - - babel-preset-react-app@10.0.1: - dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.19.6) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.6) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.19.6) - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.19.6) - '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.19.6) - '@babel/plugin-transform-runtime': 7.28.0(@babel/core@7.19.6) - '@babel/preset-env': 7.20.2(@babel/core@7.19.6) - '@babel/preset-react': 7.18.6(@babel/core@7.19.6) - '@babel/preset-typescript': 7.27.1(@babel/core@7.19.6) - '@babel/runtime': 7.20.0 - babel-plugin-macros: 3.1.0 - babel-plugin-transform-react-remove-prop-types: 0.4.24 - transitivePeerDependencies: - - supports-color - - backo2@1.0.2: {} + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9) bail@1.0.5: {} balanced-match@1.0.2: {} - bare-events@2.6.0: - optional: true - - bare-fs@4.1.6: - dependencies: - bare-events: 2.6.0 - bare-path: 3.0.0 - bare-stream: 2.6.5(bare-events@2.6.0) - optional: true - - bare-os@3.6.1: - optional: true - - bare-path@3.0.0: - dependencies: - bare-os: 3.6.1 - optional: true - - bare-stream@2.6.5(bare-events@2.6.0): - dependencies: - streamx: 2.22.1 - optionalDependencies: - bare-events: 2.6.0 - optional: true - - base62@1.2.8: {} - base64-js@1.5.1: {} - basic-ftp@5.0.5: - optional: true - batch@0.6.1: {} better-path-resolve@1.0.0: @@ -16429,40 +17230,6 @@ snapshots: bn.js@5.2.2: {} - body-parser@1.20.0: - dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.10.3 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - - body-parser@1.20.1: - dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - body-parser@1.20.3: dependencies: bytes: 3.1.2 @@ -16554,6 +17321,13 @@ snapshots: node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.21.4) + browserslist@4.23.0: + dependencies: + caniuse-lite: 1.0.30001727 + electron-to-chromium: 1.5.183 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.23.0) + browserslist@4.25.1: dependencies: caniuse-lite: 1.0.30001727 @@ -16565,18 +17339,6 @@ snapshots: dependencies: node-int64: 0.4.0 - buble@0.19.6: - dependencies: - chalk: 2.4.2 - magic-string: 0.25.9 - minimist: 1.2.8 - os-homedir: 1.0.2 - regexpu-core: 4.8.0 - vlq: 1.0.1 - - buffer-crc32@0.2.13: - optional: true - buffer-from@1.1.2: {} buffer-xor@1.0.3: {} @@ -16590,6 +17352,8 @@ snapshots: bytes@3.1.2: {} + cac@6.7.14: {} + call-bind-apply-helpers@1.0.2: dependencies: es-errors: 1.3.0 @@ -16626,7 +17390,7 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.21.4 + browserslist: 4.23.0 caniuse-lite: 1.0.30001727 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -16635,6 +17399,24 @@ snapshots: ccount@1.1.0: {} + chai@4.5.0: + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.3 + deep-eql: 4.1.4 + get-func-name: 2.0.2 + loupe: 2.3.7 + pathval: 1.1.1 + type-detect: 4.1.0 + + chai@5.2.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.1.4 + pathval: 2.0.1 + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 @@ -16661,6 +17443,12 @@ snapshots: character-reference-invalid@1.1.4: {} + check-error@1.0.3: + dependencies: + get-func-name: 2.0.2 + + check-error@2.1.1: {} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -16673,14 +17461,11 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chrome-trace-event@1.0.4: {} - - chromium-bidi@7.1.0(devtools-protocol@0.0.1464554): + chokidar@4.0.3: dependencies: - devtools-protocol: 0.0.1464554 - mitt: 3.0.1 - zod: 3.25.76 - optional: true + readdirp: 4.1.2 + + chrome-trace-event@1.0.4: {} ci-info@3.9.0: {} @@ -16695,6 +17480,12 @@ snapshots: classnames@2.3.1: {} + classnames@2.5.1: {} + + clean-css@4.2.4: + dependencies: + source-map: 0.6.1 + clean-css@5.3.3: dependencies: source-map: 0.6.1 @@ -16743,6 +17534,8 @@ snapshots: commander@2.20.3: {} + commander@4.1.1: {} + commander@7.2.0: {} commander@8.3.0: {} @@ -16755,35 +17548,25 @@ snapshots: has-own-prop: 2.0.0 repeat-string: 1.6.1 - common-path-prefix@3.0.0: {} - - commondir@1.0.1: {} - - commoner@0.10.8: + comment-json@4.2.5: dependencies: - commander: 2.20.3 - detective: 4.7.1 - glob: 5.0.15 - graceful-fs: 4.2.11 - iconv-lite: 0.4.24 - mkdirp: 0.5.6 - private: 0.1.8 - q: 1.5.1 - recast: 0.11.23 - - component-props@1.1.1: {} + array-timsort: 1.0.3 + core-util-is: 1.0.3 + esprima: 4.0.1 + has-own-prop: 2.0.0 + repeat-string: 1.6.1 - component-xor@0.0.4: {} + commondir@1.0.1: {} compressible@2.0.18: dependencies: mime-db: 1.54.0 - compression-webpack-plugin@10.0.0(webpack@5.84.1): + compression-webpack-plugin@11.1.0(webpack@5.100.2): dependencies: schema-utils: 4.3.2 serialize-javascript: 6.0.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) compression@1.8.0: dependencies: @@ -16799,14 +17582,14 @@ snapshots: concat-map@0.0.1: {} + confbox@0.1.8: {} + confusing-browser-globals@1.0.11: {} connect-history-api-fallback@2.0.0: {} constants-browserify@1.0.0: {} - contains-path@0.1.0: {} - content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 @@ -16819,8 +17602,6 @@ snapshots: cookie-signature@1.0.6: {} - cookie@0.5.0: {} - cookie@0.7.1: {} copy-anything@2.0.6: @@ -16837,8 +17618,6 @@ snapshots: core-js-pure@3.44.0: {} - core-js@1.2.7: {} - core-js@3.44.0: {} core-util-is@1.0.3: {} @@ -16859,25 +17638,32 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@9.0.0(typescript@4.9.3): + cosmiconfig@8.3.6(typescript@5.5.3): dependencies: - env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 + path-type: 4.0.0 optionalDependencies: - typescript: 4.9.3 - optional: true + typescript: 5.5.3 + + cosmiconfig@8.3.6(typescript@5.7.2): + dependencies: + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 5.7.2 - cosmiconfig@9.0.0(typescript@5.8.3): + cosmiconfig@8.3.6(typescript@5.8.3): dependencies: - env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 + path-type: 4.0.0 optionalDependencies: typescript: 5.8.3 - optional: true create-ecdh@4.0.4: dependencies: @@ -16908,28 +17694,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.12 - create-jest@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - create-jest@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): + create-jest@29.7.0(@types/node@20.12.10): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-config: 29.7.0(@types/node@20.12.10) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -16969,16 +17740,16 @@ snapshots: postcss: 8.4.19 postcss-selector-parser: 6.1.2 - css-declaration-sorter@6.4.1(postcss@8.4.19): + css-declaration-sorter@7.2.0(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 css-has-pseudo@3.0.4(postcss@8.4.19): dependencies: postcss: 8.4.19 postcss-selector-parser: 6.1.2 - css-loader@6.7.1(webpack@5.84.1): + css-loader@6.7.1(webpack@5.100.2): dependencies: icss-utils: 5.1.0(postcss@8.5.6) postcss: 8.5.6 @@ -16988,9 +17759,9 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.5.6) postcss-value-parser: 4.2.0 semver: 7.7.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) - css-loader@6.7.2(webpack@5.84.1): + css-loader@6.7.2(webpack@5.100.2): dependencies: icss-utils: 5.1.0(postcss@8.4.19) postcss: 8.4.19 @@ -17000,18 +17771,37 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.19) postcss-value-parser: 4.2.0 semver: 7.7.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) - css-minimizer-webpack-plugin@3.0.2(webpack@5.84.1): + css-minimizer-webpack-plugin@5.0.1(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2): dependencies: - cssnano: 5.1.15(postcss@8.4.19) - jest-worker: 27.5.1 - p-limit: 3.1.0 - postcss: 8.4.19 - schema-utils: 3.3.0 + '@jridgewell/trace-mapping': 0.3.29 + cssnano: 6.1.2(postcss@8.5.6) + jest-worker: 29.7.0 + postcss: 8.5.6 + schema-utils: 4.3.2 serialize-javascript: 6.0.2 - source-map: 0.6.1 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) + optionalDependencies: + '@parcel/css': 1.14.0 + '@swc/css': 0.0.20 + esbuild: 0.14.29 + lightningcss: 1.30.1 + + css-minimizer-webpack-plugin@6.0.0(@parcel/css@1.14.0)(@swc/css@0.0.20)(esbuild@0.14.29)(lightningcss@1.30.1)(webpack@5.100.2): + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + cssnano: 6.1.2(postcss@8.5.6) + jest-worker: 29.7.0 + postcss: 8.5.6 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + webpack: 5.100.2(esbuild@0.14.29) + optionalDependencies: + '@parcel/css': 1.14.0 + '@swc/css': 0.0.20 + esbuild: 0.14.29 + lightningcss: 1.30.1 css-prefers-color-scheme@6.0.3(postcss@8.4.19): dependencies: @@ -17025,10 +17815,23 @@ snapshots: domutils: 2.8.0 nth-check: 2.1.1 - css-tree@1.1.3: + css-select@5.2.2: dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.1 css-what@6.2.2: {} @@ -17038,53 +17841,53 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@5.2.14(postcss@8.4.19): + cssnano-preset-default@6.1.2(postcss@8.5.6): dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.19) - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 - postcss-calc: 8.2.4(postcss@8.4.19) - postcss-colormin: 5.3.1(postcss@8.4.19) - postcss-convert-values: 5.1.3(postcss@8.4.19) - postcss-discard-comments: 5.1.2(postcss@8.4.19) - postcss-discard-duplicates: 5.1.0(postcss@8.4.19) - postcss-discard-empty: 5.1.1(postcss@8.4.19) - postcss-discard-overridden: 5.1.0(postcss@8.4.19) - postcss-merge-longhand: 5.1.7(postcss@8.4.19) - postcss-merge-rules: 5.1.4(postcss@8.4.19) - postcss-minify-font-values: 5.1.0(postcss@8.4.19) - postcss-minify-gradients: 5.1.1(postcss@8.4.19) - postcss-minify-params: 5.1.4(postcss@8.4.19) - postcss-minify-selectors: 5.2.1(postcss@8.4.19) - postcss-normalize-charset: 5.1.0(postcss@8.4.19) - postcss-normalize-display-values: 5.1.0(postcss@8.4.19) - postcss-normalize-positions: 5.1.1(postcss@8.4.19) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.19) - postcss-normalize-string: 5.1.0(postcss@8.4.19) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.19) - postcss-normalize-unicode: 5.1.1(postcss@8.4.19) - postcss-normalize-url: 5.1.0(postcss@8.4.19) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.19) - postcss-ordered-values: 5.1.3(postcss@8.4.19) - postcss-reduce-initial: 5.1.2(postcss@8.4.19) - postcss-reduce-transforms: 5.1.0(postcss@8.4.19) - postcss-svgo: 5.1.0(postcss@8.4.19) - postcss-unique-selectors: 5.1.1(postcss@8.4.19) - - cssnano-utils@3.1.0(postcss@8.4.19): + browserslist: 4.23.0 + css-declaration-sorter: 7.2.0(postcss@8.5.6) + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-calc: 9.0.1(postcss@8.5.6) + postcss-colormin: 6.1.0(postcss@8.5.6) + postcss-convert-values: 6.1.0(postcss@8.5.6) + postcss-discard-comments: 6.0.2(postcss@8.5.6) + postcss-discard-duplicates: 6.0.3(postcss@8.5.6) + postcss-discard-empty: 6.0.3(postcss@8.5.6) + postcss-discard-overridden: 6.0.2(postcss@8.5.6) + postcss-merge-longhand: 6.0.5(postcss@8.5.6) + postcss-merge-rules: 6.1.1(postcss@8.5.6) + postcss-minify-font-values: 6.1.0(postcss@8.5.6) + postcss-minify-gradients: 6.0.3(postcss@8.5.6) + postcss-minify-params: 6.1.0(postcss@8.5.6) + postcss-minify-selectors: 6.0.4(postcss@8.5.6) + postcss-normalize-charset: 6.0.2(postcss@8.5.6) + postcss-normalize-display-values: 6.0.2(postcss@8.5.6) + postcss-normalize-positions: 6.0.2(postcss@8.5.6) + postcss-normalize-repeat-style: 6.0.2(postcss@8.5.6) + postcss-normalize-string: 6.0.2(postcss@8.5.6) + postcss-normalize-timing-functions: 6.0.2(postcss@8.5.6) + postcss-normalize-unicode: 6.1.0(postcss@8.5.6) + postcss-normalize-url: 6.0.2(postcss@8.5.6) + postcss-normalize-whitespace: 6.0.2(postcss@8.5.6) + postcss-ordered-values: 6.0.2(postcss@8.5.6) + postcss-reduce-initial: 6.1.0(postcss@8.5.6) + postcss-reduce-transforms: 6.0.2(postcss@8.5.6) + postcss-svgo: 6.0.3(postcss@8.5.6) + postcss-unique-selectors: 6.0.4(postcss@8.5.6) + + cssnano-utils@4.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 - cssnano@5.1.15(postcss@8.4.19): + cssnano@6.1.2(postcss@8.5.6): dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.19) - lilconfig: 2.1.0 - postcss: 8.4.19 - yaml: 1.10.2 + cssnano-preset-default: 6.1.2(postcss@8.5.6) + lilconfig: 3.1.3 + postcss: 8.5.6 - csso@4.2.0: + csso@5.0.5: dependencies: - css-tree: 1.1.3 + css-tree: 2.2.1 cssom@0.3.8: {} @@ -17108,9 +17911,6 @@ snapshots: damerau-levenshtein@1.0.8: {} - data-uri-to-buffer@6.0.2: - optional: true - data-urls@3.0.2: dependencies: abab: 2.0.6 @@ -17140,7 +17940,7 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.2 - date-format@0.0.2: {} + date-format@4.0.3: {} dateformat@3.0.3: {} @@ -17164,9 +17964,17 @@ snapshots: decimal.js@10.6.0: {} - dedent@1.6.0(babel-plugin-macros@3.1.0): - optionalDependencies: - babel-plugin-macros: 3.1.0 + decode-uri-component@0.2.2: {} + + dedent@0.7.0: {} + + dedent@1.6.0: {} + + deep-eql@4.1.4: + dependencies: + type-detect: 4.1.0 + + deep-eql@5.0.2: {} deep-equal@2.2.3: dependencies: @@ -17211,15 +18019,6 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 - defined@1.0.1: {} - - degenerator@5.0.1: - dependencies: - ast-types: 0.13.4 - escodegen: 2.1.0 - esprima: 4.0.1 - optional: true - delayed-stream@1.0.0: {} depd@1.1.2: {} @@ -17239,6 +18038,15 @@ snapshots: dependencies: repeat-string: 1.6.1 + detab@2.0.4: + dependencies: + repeat-string: 1.6.1 + + detect-libc@1.0.3: + optional: true + + detect-libc@2.0.4: {} + detect-newline@3.1.0: {} detect-node@2.1.0: {} @@ -17250,16 +18058,6 @@ snapshots: transitivePeerDependencies: - supports-color - detective@4.7.1: - dependencies: - acorn: 5.7.4 - defined: 1.0.1 - - devtools-protocol@0.0.1464554: - optional: true - - diff-sequences@26.6.2: {} - diff-sequences@29.6.3: {} diffie-hellman@5.0.3: @@ -17276,11 +18074,6 @@ snapshots: dependencies: '@leichtgewicht/ip-codec': 2.0.5 - doctrine@1.5.0: - dependencies: - esutils: 2.0.3 - isarray: 1.0.0 - doctrine@2.1.0: dependencies: esutils: 2.0.3 @@ -17291,21 +18084,24 @@ snapshots: dom-accessibility-api@0.5.16: {} + dom-accessibility-api@0.6.3: {} + dom-converter@0.2.0: dependencies: utila: 0.4.0 - dom-iterator@1.0.2: - dependencies: - component-props: 1.1.1 - component-xor: 0.0.4 - dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + domain-browser@4.19.0: {} domelementtype@2.3.0: {} @@ -17318,12 +18114,22 @@ snapshots: dependencies: domelementtype: 2.3.0 + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dot-case@3.0.4: dependencies: no-case: 3.0.4 @@ -17337,6 +18143,8 @@ snapshots: duplexer@0.1.2: {} + eastasianwidth@0.2.0: {} + ee-first@1.1.1: {} electron-to-chromium@1.5.183: {} @@ -17372,25 +18180,12 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.2.2 - enquirer@2.4.1: - dependencies: - ansi-colors: 4.1.3 - strip-ansi: 6.0.1 - entities@2.2.0: {} entities@4.5.0: {} entities@6.0.1: {} - env-paths@2.2.1: - optional: true - - envify@3.4.1: - dependencies: - jstransform: 11.0.3 - through: 2.3.8 - errno@0.1.8: dependencies: prr: 1.0.1 @@ -17476,7 +18271,24 @@ snapshots: isarray: 2.0.5 stop-iteration-iterator: 1.1.0 - es-module-lexer@0.7.1: {} + es-iterator-helpers@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-set-tostringtag: 2.1.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + safe-array-concat: 1.1.3 es-module-lexer@1.7.0: {} @@ -17528,88 +18340,114 @@ snapshots: es6-iterator: 2.0.3 es6-symbol: 3.1.4 - esbuild-android-64@0.14.28: + esbuild-android-64@0.14.29: optional: true - esbuild-android-arm64@0.14.28: + esbuild-android-arm64@0.14.29: optional: true - esbuild-darwin-64@0.14.28: + esbuild-darwin-64@0.14.29: optional: true - esbuild-darwin-arm64@0.14.28: + esbuild-darwin-arm64@0.14.29: optional: true - esbuild-freebsd-64@0.14.28: + esbuild-freebsd-64@0.14.29: optional: true - esbuild-freebsd-arm64@0.14.28: + esbuild-freebsd-arm64@0.14.29: optional: true - esbuild-linux-32@0.14.28: + esbuild-linux-32@0.14.29: optional: true - esbuild-linux-64@0.14.28: + esbuild-linux-64@0.14.29: optional: true - esbuild-linux-arm64@0.14.28: + esbuild-linux-arm64@0.14.29: optional: true - esbuild-linux-arm@0.14.28: + esbuild-linux-arm@0.14.29: optional: true - esbuild-linux-mips64le@0.14.28: + esbuild-linux-mips64le@0.14.29: optional: true - esbuild-linux-ppc64le@0.14.28: + esbuild-linux-ppc64le@0.14.29: optional: true - esbuild-linux-riscv64@0.14.28: + esbuild-linux-riscv64@0.14.29: optional: true - esbuild-linux-s390x@0.14.28: + esbuild-linux-s390x@0.14.29: optional: true - esbuild-netbsd-64@0.14.28: + esbuild-netbsd-64@0.14.29: optional: true - esbuild-openbsd-64@0.14.28: + esbuild-openbsd-64@0.14.29: optional: true - esbuild-sunos-64@0.14.28: + esbuild-sunos-64@0.14.29: optional: true - esbuild-windows-32@0.14.28: + esbuild-windows-32@0.14.29: optional: true - esbuild-windows-64@0.14.28: + esbuild-windows-64@0.14.29: optional: true - esbuild-windows-arm64@0.14.28: + esbuild-windows-arm64@0.14.29: optional: true - esbuild@0.14.28: + esbuild@0.14.29: + optionalDependencies: + esbuild-android-64: 0.14.29 + esbuild-android-arm64: 0.14.29 + esbuild-darwin-64: 0.14.29 + esbuild-darwin-arm64: 0.14.29 + esbuild-freebsd-64: 0.14.29 + esbuild-freebsd-arm64: 0.14.29 + esbuild-linux-32: 0.14.29 + esbuild-linux-64: 0.14.29 + esbuild-linux-arm: 0.14.29 + esbuild-linux-arm64: 0.14.29 + esbuild-linux-mips64le: 0.14.29 + esbuild-linux-ppc64le: 0.14.29 + esbuild-linux-riscv64: 0.14.29 + esbuild-linux-s390x: 0.14.29 + esbuild-netbsd-64: 0.14.29 + esbuild-openbsd-64: 0.14.29 + esbuild-sunos-64: 0.14.29 + esbuild-windows-32: 0.14.29 + esbuild-windows-64: 0.14.29 + esbuild-windows-arm64: 0.14.29 + + esbuild@0.21.5: optionalDependencies: - esbuild-android-64: 0.14.28 - esbuild-android-arm64: 0.14.28 - esbuild-darwin-64: 0.14.28 - esbuild-darwin-arm64: 0.14.28 - esbuild-freebsd-64: 0.14.28 - esbuild-freebsd-arm64: 0.14.28 - esbuild-linux-32: 0.14.28 - esbuild-linux-64: 0.14.28 - esbuild-linux-arm: 0.14.28 - esbuild-linux-arm64: 0.14.28 - esbuild-linux-mips64le: 0.14.28 - esbuild-linux-ppc64le: 0.14.28 - esbuild-linux-riscv64: 0.14.28 - esbuild-linux-s390x: 0.14.28 - esbuild-netbsd-64: 0.14.28 - esbuild-openbsd-64: 0.14.28 - esbuild-sunos-64: 0.14.28 - esbuild-windows-32: 0.14.28 - esbuild-windows-64: 0.14.28 - esbuild-windows-arm64: 0.14.28 + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 escalade@3.2.0: {} @@ -17629,20 +18467,20 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0): + eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0): dependencies: confusing-browser-globals: 1.0.11 - eslint: 7.32.0 - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) + eslint: 8.56.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) object.assign: 4.1.7 object.entries: 1.1.9 - eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3): + eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.5.3): dependencies: - '@typescript-eslint/eslint-plugin': 4.13.0(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) - eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0) - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + '@typescript-eslint/eslint-plugin': 7.1.0(@typescript-eslint/parser@7.1.0(eslint@8.56.0)(typescript@5.5.3))(eslint@8.56.0)(typescript@5.5.3) + '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.5.3) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -17652,12 +18490,12 @@ snapshots: - supports-color - typescript - eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.3): + eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.7.2): dependencies: - '@typescript-eslint/eslint-plugin': 5.35.1(@typescript-eslint/parser@5.35.1(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) - '@typescript-eslint/parser': 4.4.1(eslint@7.32.0)(typescript@4.9.3) - eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0) - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.7.2) + '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.7.2) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -17667,43 +18505,48 @@ snapshots: - supports-color - typescript - eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.22.0(eslint@7.32.0))(eslint@7.32.0): + eslint-config-airbnb-typescript@12.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0)(typescript@5.8.3): dependencies: - eslint: 7.32.0 - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-react: 7.22.0(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) - object.assign: 4.1.7 - object.entries: 1.1.9 + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + '@typescript-eslint/parser': 4.4.1(eslint@8.56.0)(typescript@5.8.3) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0) + transitivePeerDependencies: + - eslint + - eslint-plugin-import + - eslint-plugin-jsx-a11y + - eslint-plugin-react + - eslint-plugin-react-hooks + - supports-color + - typescript - eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0))(eslint-plugin-react-hooks@4.2.0(eslint@7.32.0))(eslint-plugin-react@7.25.1(eslint@7.32.0))(eslint@7.32.0): + eslint-config-airbnb@18.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.56.0))(eslint-plugin-react@7.33.2(eslint@8.56.0))(eslint@8.56.0): dependencies: - eslint: 7.32.0 - eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0))(eslint@7.32.0) - eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0) - eslint-plugin-jsx-a11y: 6.4.1(eslint@7.32.0) - eslint-plugin-react: 7.25.1(eslint@7.32.0) - eslint-plugin-react-hooks: 4.2.0(eslint@7.32.0) + eslint: 8.56.0 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0))(eslint@8.56.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) + eslint-plugin-react: 7.33.2(eslint@8.56.0) + eslint-plugin-react-hooks: 4.6.2(eslint@8.56.0) object.assign: 4.1.7 object.entries: 1.1.9 - eslint-config-prettier@8.5.0(eslint@7.32.0): + eslint-config-prettier@8.5.0(eslint@8.56.0): dependencies: - eslint: 7.32.0 + eslint: 8.56.0 - eslint-import-resolver-node@0.3.6: + eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 + is-core-module: 2.16.1 resolve: 1.22.10 transitivePeerDependencies: - supports-color - eslint-mdx@1.17.1(eslint@7.32.0): + eslint-mdx@1.17.1(eslint@8.56.0): dependencies: cosmiconfig: 7.1.0 - eslint: 7.32.0 + eslint: 8.56.0 remark-mdx: 1.6.22 remark-parse: 8.0.3 remark-stringify: 8.1.1 @@ -17712,140 +18555,136 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.6)(eslint@7.32.0): + eslint-module-utils@2.12.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.6 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0): dependencies: array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 array.prototype.flat: 1.3.3 - contains-path: 0.1.0 - debug: 2.6.9 - doctrine: 1.5.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.6)(eslint@7.32.0) - has: 1.0.4 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 object.values: 1.2.1 - read-pkg-up: 2.0.0 - resolve: 1.22.10 + semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 4.13.0(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.8.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@24.1.5(eslint@7.32.0)(typescript@4.9.3): + eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.5.3): dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.5.3) + eslint: 8.56.0 + optionalDependencies: + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + jest: 29.3.1(@types/node@20.12.10) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jest@24.4.0(@typescript-eslint/eslint-plugin@4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3): + eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.7.2): dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.3) - eslint: 7.32.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.7.2) + eslint: 8.56.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 4.29.3(@typescript-eslint/parser@4.13.0(eslint@7.32.0)(typescript@4.9.3))(eslint@7.32.0)(typescript@4.9.3) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + jest: 29.3.1(@types/node@20.12.10) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jsx-a11y@6.4.1(eslint@7.32.0): + eslint-plugin-jest@27.6.3(@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(jest@29.3.1(@types/node@20.12.10))(typescript@5.8.3): dependencies: - '@babel/runtime': 7.20.0 - aria-query: 4.2.2 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.8.3) + eslint: 8.56.0 + optionalDependencies: + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.8.3))(eslint@8.56.0)(typescript@5.8.3) + jest: 29.3.1(@types/node@20.12.10) + transitivePeerDependencies: + - supports-color + - typescript + + eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): + dependencies: + '@babel/runtime': 7.27.6 + aria-query: 5.3.2 array-includes: 3.1.9 - ast-types-flow: 0.0.7 - axe-core: 4.10.3 - axobject-query: 2.2.0 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.4 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 7.32.0 - has: 1.0.4 + es-iterator-helpers: 1.2.1 + eslint: 8.56.0 + hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.9 + object.fromentries: 2.0.8 - eslint-plugin-markdown@2.2.1(eslint@7.32.0): + eslint-plugin-markdown@2.2.1(eslint@8.56.0): dependencies: - eslint: 7.32.0 + eslint: 8.56.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color - eslint-plugin-mdx@1.13.0(eslint@7.32.0): - dependencies: - cosmiconfig: 7.1.0 - eslint: 7.32.0 - eslint-mdx: 1.17.1(eslint@7.32.0) - eslint-plugin-markdown: 2.2.1(eslint@7.32.0) - remark-mdx: 1.6.22 - remark-parse: 8.0.3 - remark-stringify: 8.1.1 - synckit: 0.1.6 - tslib: 2.8.1 - unified: 9.2.2 - vfile: 4.2.1 - transitivePeerDependencies: - - supports-color - - eslint-plugin-mdx@1.15.0(eslint@7.32.0): + eslint-plugin-mdx@1.17.1(eslint@8.56.0): dependencies: - eslint: 7.32.0 - eslint-mdx: 1.17.1(eslint@7.32.0) - eslint-plugin-markdown: 2.2.1(eslint@7.32.0) - synckit: 0.3.4 + eslint: 8.56.0 + eslint-mdx: 1.17.1(eslint@8.56.0) + eslint-plugin-markdown: 2.2.1(eslint@8.56.0) + synckit: 0.4.1 tslib: 2.8.1 vfile: 4.2.1 transitivePeerDependencies: - supports-color - eslint-plugin-react-hooks@4.2.0(eslint@7.32.0): - dependencies: - eslint: 7.32.0 - - eslint-plugin-react@7.22.0(eslint@7.32.0): + eslint-plugin-react-hooks@4.6.2(eslint@8.56.0): dependencies: - array-includes: 3.1.9 - array.prototype.flatmap: 1.3.3 - doctrine: 2.1.0 - eslint: 7.32.0 - has: 1.0.4 - jsx-ast-utils: 3.3.5 - object.entries: 1.1.9 - object.fromentries: 2.0.8 - object.values: 1.2.1 - prop-types: 15.8.1 - resolve: 1.22.10 - string.prototype.matchall: 4.0.12 + eslint: 8.56.0 - eslint-plugin-react@7.25.1(eslint@7.32.0): + eslint-plugin-react@7.33.2(eslint@8.56.0): dependencies: array-includes: 3.1.9 array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 - eslint: 7.32.0 + es-iterator-helpers: 1.2.1 + eslint: 8.56.0 estraverse: 5.3.0 - has: 1.0.4 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 object.entries: 1.1.9 object.fromentries: 2.0.8 + object.hasown: 1.1.4 object.values: 1.2.1 prop-types: 15.8.1 resolve: 2.0.0-next.5 + semver: 6.3.1 string.prototype.matchall: 4.0.12 eslint-scope@5.1.1: @@ -17853,63 +18692,55 @@ snapshots: esrecurse: 4.3.0 estraverse: 4.3.0 - eslint-utils@2.1.0: - dependencies: - eslint-visitor-keys: 1.3.0 - - eslint-utils@3.0.0(eslint@7.32.0): + eslint-scope@7.2.2: dependencies: - eslint: 7.32.0 - eslint-visitor-keys: 2.1.0 - - eslint-visitor-keys@1.3.0: {} + esrecurse: 4.3.0 + estraverse: 5.3.0 eslint-visitor-keys@2.1.0: {} eslint-visitor-keys@3.4.3: {} - eslint@7.32.0: + eslint@8.56.0: dependencies: - '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.4.3 - '@humanwhocodes/config-array': 0.5.0 + '@eslint-community/eslint-utils': 4.7.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.56.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.3.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 debug: 4.4.1 doctrine: 3.0.0 - enquirer: 2.4.1 escape-string-regexp: 4.0.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 esquery: 1.6.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 + find-up: 5.0.0 + glob-parent: 6.0.2 globals: 13.24.0 - ignore: 4.0.6 - import-fresh: 3.3.1 + graphemer: 1.4.0 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - js-yaml: 3.14.1 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.4 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.7.2 strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - table: 6.9.0 text-table: 0.2.0 - v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color @@ -17920,15 +18751,11 @@ snapshots: event-emitter: 0.3.5 type: 2.7.3 - espree@7.3.1: + espree@9.6.1: dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 - - esprima-fb@15001.1.0-dev-harmony-fb: {} - - esprima@3.1.3: {} + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -17944,6 +18771,10 @@ snapshots: estraverse@5.3.0: {} + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.8 + esutils@2.0.3: {} etag@1.8.1: {} @@ -17953,8 +18784,6 @@ snapshots: d: 1.0.2 es5-ext: 0.10.64 - eventemitter3@3.1.2: {} - eventemitter3@4.0.7: {} events@3.3.0: {} @@ -17976,8 +18805,22 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 + execa@8.0.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + exit@0.1.2: {} + expect-type@1.2.2: {} + expect@29.7.0: dependencies: '@jest/expect-utils': 29.7.0 @@ -17986,78 +18829,6 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - express@4.18.1: - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.0 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.10.3 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - - express@4.18.2: - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.1 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.11.0 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - express@4.21.2: dependencies: accepts: 1.3.8 @@ -18098,30 +18869,12 @@ snapshots: dependencies: type: 2.7.3 - extend-shallow@2.0.1: - dependencies: - is-extendable: 0.1.1 - extend@3.0.2: {} extract-files@9.0.0: {} - extract-zip@2.0.1: - dependencies: - debug: 4.4.1 - get-stream: 5.2.0 - yauzl: 2.10.0 - optionalDependencies: - '@types/yauzl': 2.10.3 - transitivePeerDependencies: - - supports-color - optional: true - fast-deep-equal@3.1.3: {} - fast-fifo@1.3.2: - optional: true - fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -18154,18 +18907,9 @@ snapshots: dependencies: bser: 2.1.1 - fbjs@0.6.1: - dependencies: - core-js: 1.2.7 - loose-envify: 1.4.0 - promise: 7.3.1 - ua-parser-js: 0.7.40 - whatwg-fetch: 0.9.0 - - fd-slicer@1.1.0: - dependencies: - pend: 1.2.0 - optional: true + fdir@6.4.6(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 file-entry-cache@6.0.1: dependencies: @@ -18177,17 +18921,7 @@ snapshots: dependencies: to-regex-range: 5.0.1 - finalhandler@1.2.0: - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + filter-obj@1.1.0: {} finalhandler@1.3.1: dependencies: @@ -18209,10 +18943,6 @@ snapshots: find-root@1.1.0: {} - find-up@2.1.0: - dependencies: - locate-path: 2.0.0 - find-up@3.0.0: dependencies: locate-path: 3.0.0 @@ -18243,7 +18973,32 @@ snapshots: dependencies: is-callable: 1.2.7 - fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2): + dependencies: + '@babel/code-frame': 7.27.1 + '@types/json-schema': 7.0.15 + chalk: 4.1.2 + chokidar: 3.6.0 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.5.3 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.7.2 + tapable: 1.1.3 + typescript: 5.5.3 + webpack: 5.100.2(esbuild@0.14.29) + optionalDependencies: + eslint: 8.56.0 + + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2): dependencies: '@babel/code-frame': 7.27.1 '@types/json-schema': 7.0.15 @@ -18258,12 +19013,12 @@ snapshots: schema-utils: 2.7.0 semver: 7.7.2 tapable: 1.1.3 - typescript: 4.9.3 - webpack: 5.84.1(esbuild@0.14.28) + typescript: 5.7.2 + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - eslint: 7.32.0 + eslint: 8.56.0 - fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1): + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2): dependencies: '@babel/code-frame': 7.27.1 '@types/json-schema': 7.0.15 @@ -18279,9 +19034,9 @@ snapshots: semver: 7.7.2 tapable: 1.1.3 typescript: 5.8.3 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - eslint: 7.32.0 + eslint: 8.56.0 form-data@3.0.3: dependencies: @@ -18349,14 +19104,14 @@ snapshots: hasown: 2.0.2 is-callable: 1.2.7 - functional-red-black-tree@1.0.1: {} - functions-have-names@1.2.3: {} gensync@1.0.0-beta.2: {} get-caller-file@2.0.5: {} + get-func-name@2.0.2: {} + get-intrinsic@1.3.0: dependencies: call-bind-apply-helpers: 1.0.2 @@ -18377,13 +19132,10 @@ snapshots: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - get-stream@5.2.0: - dependencies: - pump: 3.0.3 - optional: true - get-stream@6.0.1: {} + get-stream@8.0.1: {} + get-symbol-description@1.1.0: dependencies: call-bound: 1.0.4 @@ -18392,28 +19144,26 @@ snapshots: get-tsconfig@4.2.0: {} - get-uri@6.0.5: - dependencies: - basic-ftp: 5.0.5 - data-uri-to-buffer: 6.0.2 - debug: 4.4.1 - transitivePeerDependencies: - - supports-color - optional: true + get-xpath@3.3.0: {} glob-parent@5.1.2: dependencies: is-glob: 4.0.3 + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + glob-to-regexp@0.4.1: {} - glob@5.0.15: + glob@10.4.5: dependencies: - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 glob@7.2.3: dependencies: @@ -18456,23 +19206,34 @@ snapshots: graceful-fs@4.2.11: {} - graphql-request@4.3.0(graphql@14.7.0): + graphemer@1.4.0: {} + + graphql-request@4.3.0(graphql@15.8.0): dependencies: cross-fetch: 3.2.0 extract-files: 9.0.0 form-data: 3.0.3 - graphql: 14.7.0 + graphql: 15.8.0 transitivePeerDependencies: - encoding - graphql-tag@2.12.6(graphql@14.7.0): + graphql-request@4.3.0(graphql@16.11.0): dependencies: - graphql: 14.7.0 - tslib: 2.8.1 + cross-fetch: 3.2.0 + extract-files: 9.0.0 + form-data: 3.0.3 + graphql: 16.11.0 + transitivePeerDependencies: + - encoding - graphql@14.7.0: + graphql-tag@2.12.6(graphql@16.11.0): dependencies: - iterall: 1.3.0 + graphql: 16.11.0 + tslib: 2.8.1 + + graphql@15.8.0: {} + + graphql@16.11.0: {} gzip-size@6.0.0: dependencies: @@ -18504,8 +19265,6 @@ snapshots: dependencies: has-symbols: 1.1.0 - has@1.0.4: {} - hash-base@2.0.2: dependencies: inherits: 2.0.4 @@ -18553,7 +19312,7 @@ snapshots: '@types/parse5': 5.0.3 hastscript: 6.0.0 property-information: 5.6.0 - vfile: 4.2.0 + vfile: 4.2.1 vfile-location: 3.2.0 web-namespaces: 1.1.4 @@ -18567,7 +19326,7 @@ snapshots: html-void-elements: 1.0.5 parse5: 6.0.1 unist-util-position: 3.1.0 - vfile: 4.2.0 + vfile: 4.2.1 web-namespaces: 1.1.4 xtend: 4.0.2 zwitch: 1.0.5 @@ -18609,8 +19368,6 @@ snapshots: dependencies: react-is: 16.13.1 - hosted-git-info@2.8.9: {} - hpack.js@2.1.6: dependencies: inherits: 2.0.4 @@ -18630,6 +19387,16 @@ snapshots: html-escaper@2.0.2: {} + html-minifier-terser@5.1.1: + dependencies: + camel-case: 4.1.2 + clean-css: 4.2.4 + commander: 4.1.1 + he: 1.2.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 4.8.1 + html-minifier-terser@6.1.0: dependencies: camel-case: 4.1.2 @@ -18642,14 +19409,38 @@ snapshots: html-void-elements@1.0.5: {} - html-webpack-plugin@5.5.0(webpack@5.84.1): + html-webpack-inject-plugin@5.3.1(html-webpack-plugin@5.6.3(webpack@5.100.2))(webpack@5.100.2): + dependencies: + html-webpack-plugin: 5.6.3(webpack@5.100.2) + webpack: 5.100.2(esbuild@0.14.29) + + html-webpack-plugin@5.3.2(webpack@5.97.1(esbuild@0.14.29)): + dependencies: + '@types/html-minifier-terser': 5.1.2 + html-minifier-terser: 5.1.1 + lodash: 4.17.21 + pretty-error: 3.0.4 + tapable: 2.2.2 + webpack: 5.97.1(esbuild@0.14.29) + + html-webpack-plugin@5.3.2(webpack@5.97.1): + dependencies: + '@types/html-minifier-terser': 5.1.2 + html-minifier-terser: 5.1.1 + lodash: 4.17.21 + pretty-error: 3.0.4 + tapable: 2.2.2 + webpack: 5.97.1 + + html-webpack-plugin@5.6.3(webpack@5.100.2): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.2 - webpack: 5.84.1(esbuild@0.14.28) + optionalDependencies: + webpack: 5.100.2(esbuild@0.14.29) htmlparser2@6.1.0: dependencies: @@ -18730,6 +19521,8 @@ snapshots: human-signals@2.1.0: {} + human-signals@5.0.0: {} + humanize-string@2.1.0: dependencies: decamelize: 2.0.0 @@ -18756,8 +19549,6 @@ snapshots: ieee754@1.2.1: {} - ignore@4.0.6: {} - ignore@5.3.2: {} image-size@0.5.5: @@ -18767,6 +19558,8 @@ snapshots: immutable@4.3.7: {} + immutable@5.1.3: {} + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 @@ -18800,12 +19593,6 @@ snapshots: hasown: 2.0.2 side-channel: 1.1.0 - ip-address@9.0.5: - dependencies: - jsbn: 1.1.0 - sprintf-js: 1.1.3 - optional: true - ipaddr.js@1.9.1: {} ipaddr.js@2.2.0: {} @@ -18876,8 +19663,6 @@ snapshots: is-docker@2.2.1: {} - is-extendable@0.1.1: {} - is-extglob@2.1.1: {} is-finalizationregistry@1.1.1: @@ -18917,6 +19702,8 @@ snapshots: is-number@7.0.0: {} + is-path-inside@3.0.3: {} + is-plain-obj@2.1.0: {} is-plain-obj@3.0.0: {} @@ -18946,6 +19733,8 @@ snapshots: is-stream@2.0.1: {} + is-stream@3.0.0: {} + is-string@1.1.1: dependencies: call-bound: 1.0.4 @@ -18996,7 +19785,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/parser': 7.28.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -19006,7 +19795,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/parser': 7.28.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -19028,12 +19817,33 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-reports@3.1.7: + istanbul-lib-source-maps@5.0.6: + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + debug: 4.4.1 + istanbul-lib-coverage: 3.2.2 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + iterator.prototype@1.1.5: + dependencies: + define-data-property: 1.1.4 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 + set-function-name: 2.0.2 + + jackspeak@3.4.3: dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 - - iterall@1.3.0: {} + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 jest-changed-files@29.7.0: dependencies: @@ -19041,16 +19851,16 @@ snapshots: jest-util: 29.7.0 p-limit: 3.1.0 - jest-circus@29.7.0(babel-plugin-macros@3.1.0): + jest-circus@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 chalk: 4.1.2 co: 4.6.0 - dedent: 1.6.0(babel-plugin-macros@3.1.0) + dedent: 1.6.0 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -19067,35 +19877,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): - dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest-cli@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): + jest-cli@29.7.0(@types/node@20.12.10): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/core': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + create-jest: 29.7.0(@types/node@20.12.10) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-config: 29.7.0(@types/node@20.12.10) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -19105,48 +19896,18 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0): - dependencies: - '@babel/core': 7.28.0 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.28.0) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 12.20.4 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0): + jest-config@29.7.0(@types/node@20.12.10): dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.28.0) + babel-jest: 29.7.0(@babel/core@7.26.9) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-circus: 29.7.0 jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -19160,18 +19921,11 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-diff@26.6.2: - dependencies: - chalk: 4.1.2 - diff-sequences: 26.6.2 - jest-get-type: 26.3.0 - pretty-format: 26.6.2 - jest-diff@29.7.0: dependencies: chalk: 4.1.2 @@ -19197,7 +19951,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 16.18.126 + '@types/node': 20.12.10 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -19211,19 +19965,17 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 jest-mock: 29.7.0 jest-util: 29.7.0 - jest-get-type@26.3.0: {} - jest-get-type@29.6.3: {} jest-haste-map@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 16.18.126 + '@types/node': 20.12.10 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -19274,7 +20026,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -19309,7 +20061,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -19337,7 +20089,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 chalk: 4.1.2 cjs-module-lexer: 1.4.3 collect-v8-coverage: 1.0.2 @@ -19357,15 +20109,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.28.0 + '@babel/core': 7.26.9 '@babel/generator': 7.28.0 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0) - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.9) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.9) '@babel/types': 7.28.1 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.0) + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.9) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -19383,7 +20135,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -19402,7 +20154,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 16.18.126 + '@types/node': 20.12.10 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -19411,35 +20163,23 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 16.18.126 + '@types/node': 20.12.10 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.3.1(@types/node@12.20.4)(babel-plugin-macros@3.1.0): - dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) - '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@12.20.4)(babel-plugin-macros@3.1.0) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest@29.3.1(@types/node@16.18.126)(babel-plugin-macros@3.1.0): + jest@29.3.1(@types/node@20.12.10): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0) + '@jest/core': 29.7.0 '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@16.18.126)(babel-plugin-macros@3.1.0) + jest-cli: 29.7.0(@types/node@20.12.10) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -19452,6 +20192,8 @@ snapshots: js-tokens@4.0.0: {} + js-tokens@9.0.1: {} + js-yaml@3.14.1: dependencies: argparse: 1.0.10 @@ -19460,10 +20202,6 @@ snapshots: js-yaml@4.1.0: dependencies: argparse: 2.0.1 - optional: true - - jsbn@1.1.0: - optional: true jsdom@20.0.3: dependencies: @@ -19498,21 +20236,22 @@ snapshots: - supports-color - utf-8-validate - jsdom@26.1.0: + jsdom@24.1.3: dependencies: cssstyle: 4.6.0 data-urls: 5.0.0 decimal.js: 10.6.0 + form-data: 4.0.3 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.20 parse5: 7.3.0 - rrweb-cssom: 0.8.0 + rrweb-cssom: 0.7.1 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 5.1.2 + tough-cookie: 4.1.4 w3c-xmlserializer: 5.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 3.1.1 @@ -19525,16 +20264,12 @@ snapshots: - supports-color - utf-8-validate - jsesc@0.5.0: {} - jsesc@3.0.2: {} jsesc@3.1.0: {} json-buffer@3.0.1: {} - json-parse-better-errors@1.0.2: {} - json-parse-even-better-errors@2.3.1: {} json-schema-traverse@0.4.1: {} @@ -19543,8 +20278,6 @@ snapshots: json-stable-stringify-without-jsonify@1.0.1: {} - json-stringify-pretty-compact@1.2.0: {} - json5@1.0.2: dependencies: minimist: 1.2.8 @@ -19557,14 +20290,6 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jstransform@11.0.3: - dependencies: - base62: 1.2.8 - commoner: 0.10.8 - esprima-fb: 15001.1.0-dev-harmony-fb - object-assign: 2.1.1 - source-map: 0.4.4 - jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.9 @@ -19572,17 +20297,11 @@ snapshots: object.assign: 4.1.7 object.values: 1.2.1 - jsx-to-string@1.4.0: - dependencies: - immutable: 4.3.7 - json-stringify-pretty-compact: 1.2.0 - react: 0.14.10 - - junit-report-builder@3.0.0: + junit-report-builder@3.2.1: dependencies: - date-format: 0.0.2 + date-format: 4.0.3 lodash: 4.17.21 - make-dir: 1.3.0 + make-dir: 3.1.0 xmlbuilder: 15.1.1 keyv@4.5.4: @@ -19606,11 +20325,11 @@ snapshots: picocolors: 1.1.1 shell-quote: 1.8.3 - less-loader@11.1.0(less@4.3.0)(webpack@5.84.1): + less-loader@11.1.0(less@4.3.0)(webpack@5.100.2): dependencies: klona: 2.0.6 less: 4.3.0 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) less@4.3.0: dependencies: @@ -19635,16 +20354,54 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - lilconfig@2.1.0: {} + lightningcss-darwin-arm64@1.30.1: + optional: true - lines-and-columns@1.2.4: {} + lightningcss-darwin-x64@1.30.1: + optional: true + + lightningcss-freebsd-x64@1.30.1: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.1: + optional: true + + lightningcss-linux-arm64-gnu@1.30.1: + optional: true + + lightningcss-linux-arm64-musl@1.30.1: + optional: true + + lightningcss-linux-x64-gnu@1.30.1: + optional: true + + lightningcss-linux-x64-musl@1.30.1: + optional: true + + lightningcss-win32-arm64-msvc@1.30.1: + optional: true + + lightningcss-win32-x64-msvc@1.30.1: + optional: true - load-json-file@2.0.0: + lightningcss@1.30.1: dependencies: - graceful-fs: 4.2.11 - parse-json: 2.2.0 - pify: 2.3.0 - strip-bom: 3.0.0 + detect-libc: 2.0.4 + optionalDependencies: + lightningcss-darwin-arm64: 1.30.1 + lightningcss-darwin-x64: 1.30.1 + lightningcss-freebsd-x64: 1.30.1 + lightningcss-linux-arm-gnueabihf: 1.30.1 + lightningcss-linux-arm64-gnu: 1.30.1 + lightningcss-linux-arm64-musl: 1.30.1 + lightningcss-linux-x64-gnu: 1.30.1 + lightningcss-linux-x64-musl: 1.30.1 + lightningcss-win32-arm64-msvc: 1.30.1 + lightningcss-win32-x64-msvc: 1.30.1 + + lilconfig@3.1.3: {} + + lines-and-columns@1.2.4: {} loader-runner@4.3.0: {} @@ -19656,10 +20413,10 @@ snapshots: loader-utils@3.3.1: {} - locate-path@2.0.0: + local-pkg@0.5.1: dependencies: - p-locate: 2.0.0 - path-exists: 3.0.0 + mlly: 1.7.4 + pkg-types: 1.3.1 locate-path@3.0.0: dependencies: @@ -19674,24 +20431,16 @@ snapshots: dependencies: p-locate: 5.0.0 - lockfile@1.0.4: - dependencies: - signal-exit: 3.0.7 + lodash-es@4.17.21: {} lodash.compact@3.0.1: {} lodash.debounce@4.0.8: {} - lodash.get@4.4.2: {} - - lodash.has@4.5.2: {} - lodash.memoize@4.1.2: {} lodash.merge@4.6.2: {} - lodash.truncate@4.4.2: {} - lodash.uniq@4.5.0: {} lodash@4.17.21: {} @@ -19702,6 +20451,12 @@ snapshots: dependencies: js-tokens: 4.0.0 + loupe@2.3.7: + dependencies: + get-func-name: 2.0.2 + + loupe@3.1.4: {} + lower-case@2.0.2: dependencies: tslib: 2.8.1 @@ -19721,22 +20476,21 @@ snapshots: dependencies: yallist: 4.0.0 - lru-cache@7.18.3: - optional: true - lru-queue@0.1.0: dependencies: es5-ext: 0.10.64 lz-string@1.5.0: {} - magic-string@0.25.9: + magic-string@0.30.17: dependencies: - sourcemap-codec: 1.4.8 + '@jridgewell/sourcemap-codec': 1.5.4 - make-dir@1.3.0: + magicast@0.3.5: dependencies: - pify: 3.0.0 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 + source-map-js: 1.2.1 make-dir@2.1.0: dependencies: @@ -19772,7 +20526,7 @@ snapshots: mdast-squeeze-paragraphs@4.0.0: dependencies: - unist-util-remove: 2.0.1 + unist-util-remove: 2.1.0 mdast-util-compact@2.0.1: dependencies: @@ -19782,6 +20536,10 @@ snapshots: dependencies: unist-util-visit: 2.0.3 + mdast-util-definitions@4.0.0: + dependencies: + unist-util-visit: 2.0.3 + mdast-util-from-markdown@0.8.5: dependencies: '@types/mdast': 3.0.15 @@ -19792,6 +20550,17 @@ snapshots: transitivePeerDependencies: - supports-color + mdast-util-to-hast@10.0.1: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + mdast-util-definitions: 4.0.0 + mdurl: 1.0.1 + unist-builder: 2.0.3 + unist-util-generated: 1.1.6 + unist-util-position: 3.1.0 + unist-util-visit: 2.0.3 + mdast-util-to-hast@9.1.2: dependencies: '@types/mdast': 3.0.15 @@ -19805,7 +20574,9 @@ snapshots: mdast-util-to-string@2.0.0: {} - mdn-data@2.0.14: {} + mdn-data@2.0.28: {} + + mdn-data@2.0.30: {} mdurl@1.0.1: {} @@ -19831,8 +20602,6 @@ snapshots: errno: 0.1.8 readable-stream: 2.3.8 - merge-descriptors@1.0.1: {} - merge-descriptors@1.0.3: {} merge-stream@2.0.0: {} @@ -19870,12 +20639,15 @@ snapshots: mimic-fn@2.1.0: {} + mimic-fn@4.0.0: {} + min-indent@1.0.1: {} - mini-css-extract-plugin@2.7.0(webpack@5.84.1): + mini-css-extract-plugin@2.9.2(webpack@5.100.2): dependencies: schema-utils: 4.3.2 - webpack: 5.84.1(esbuild@0.14.28) + tapable: 2.2.2 + webpack: 5.100.2(esbuild@0.14.29) minimalistic-assert@1.0.1: {} @@ -19889,14 +20661,24 @@ snapshots: dependencies: brace-expansion: 2.0.2 + minimatch@9.0.3: + dependencies: + brace-expansion: 2.0.2 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + minimist@1.2.8: {} - mitt@3.0.1: - optional: true + minipass@7.1.2: {} - mkdirp@0.5.6: + mlly@1.7.4: dependencies: - minimist: 1.2.8 + acorn: 8.15.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.1 mri@1.1.4: {} @@ -19909,6 +20691,12 @@ snapshots: dns-packet: 5.6.1 thunky: 1.1.0 + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + nanoid@3.3.11: {} natural-compare@1.4.0: {} @@ -19925,12 +20713,9 @@ snapshots: neo-async@2.6.2: {} - netmask@2.0.2: - optional: true - - new-url-loader@0.1.1(webpack@5.84.1): + new-url-loader@0.1.1(webpack@5.100.2): dependencies: - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) next-tick@1.1.0: {} @@ -19939,6 +20724,9 @@ snapshots: lower-case: 2.0.2 tslib: 2.8.1 + node-addon-api@7.1.1: + optional: true + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 @@ -19953,31 +20741,24 @@ snapshots: dependencies: '@babel/parser': 7.28.0 - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.10 - semver: 5.7.2 - validate-npm-package-license: 3.0.4 - normalize-path@3.0.0: {} normalize-range@0.1.2: {} - normalize-url@6.1.0: {} - npm-run-path@4.0.1: dependencies: path-key: 3.1.1 + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + nth-check@2.1.1: dependencies: boolbase: 1.0.0 nwsapi@2.2.20: {} - object-assign@2.1.1: {} - object-assign@4.1.1: {} object-hash@3.0.0: {} @@ -20014,6 +20795,18 @@ snapshots: es-abstract: 1.24.0 es-object-atoms: 1.1.1 + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + + object.hasown@1.1.4: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + object.values@1.2.1: dependencies: call-bind: 1.0.8 @@ -20037,16 +20830,22 @@ snapshots: dependencies: mimic-fn: 2.1.0 + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - optimism@0.16.2: + optimism@0.18.1: dependencies: + '@wry/caches': 1.0.1 '@wry/context': 0.7.4 - '@wry/trie': 0.3.2 + '@wry/trie': 0.5.0 + tslib: 2.8.1 optionator@0.9.4: dependencies: @@ -20059,7 +20858,7 @@ snapshots: os-browserify@0.3.0: {} - os-homedir@1.0.2: {} + outdent@0.8.0: {} own-keys@1.0.1: dependencies: @@ -20067,10 +20866,6 @@ snapshots: object-keys: 1.1.1 safe-push-apply: 1.0.0 - p-limit@1.3.0: - dependencies: - p-try: 1.0.0 - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -20079,9 +20874,9 @@ snapshots: dependencies: yocto-queue: 0.1.0 - p-locate@2.0.0: + p-limit@5.0.0: dependencies: - p-limit: 1.3.0 + yocto-queue: 1.2.1 p-locate@3.0.0: dependencies: @@ -20102,29 +20897,9 @@ snapshots: '@types/retry': 0.12.0 retry: 0.13.1 - p-try@1.0.0: {} - p-try@2.2.0: {} - pac-proxy-agent@7.2.0: - dependencies: - '@tootallnate/quickjs-emscripten': 0.23.0 - agent-base: 7.1.4 - debug: 4.4.1 - get-uri: 6.0.5 - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - pac-resolver: 7.0.1 - socks-proxy-agent: 8.0.5 - transitivePeerDependencies: - - supports-color - optional: true - - pac-resolver@7.0.1: - dependencies: - degenerator: 5.0.1 - netmask: 2.0.2 - optional: true + package-json-from-dist@1.0.1: {} pako@1.0.11: {} @@ -20155,10 +20930,6 @@ snapshots: is-decimal: 1.0.4 is-hexadecimal: 1.0.4 - parse-json@2.2.0: - dependencies: - error-ex: 1.3.2 - parse-json@5.2.0: dependencies: '@babel/code-frame': 7.27.1 @@ -20193,17 +20964,26 @@ snapshots: path-key@3.1.1: {} + path-key@4.0.0: {} + path-parse@1.0.7: {} + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + path-to-regexp@0.1.12: {} - path-to-regexp@0.1.7: {} + path-type@4.0.0: {} - path-type@2.0.0: - dependencies: - pify: 2.3.0 + pathe@1.1.2: {} - path-type@4.0.0: {} + pathe@2.0.3: {} + + pathval@1.1.1: {} + + pathval@2.0.1: {} pbkdf2@3.1.3: dependencies: @@ -20214,18 +20994,13 @@ snapshots: sha.js: 2.4.12 to-buffer: 1.2.1 - pend@1.2.0: - optional: true - performance-now@2.1.0: {} picocolors@1.1.1: {} picomatch@2.3.1: {} - pify@2.3.0: {} - - pify@3.0.0: {} + picomatch@4.0.2: {} pify@4.0.1: optional: true @@ -20250,16 +21025,15 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-up@3.1.0: + pkg-types@1.3.1: dependencies: - find-up: 3.0.0 + confbox: 0.1.8 + mlly: 1.7.4 + pathe: 2.0.3 - portfinder@1.0.37: + pkg-up@3.1.0: dependencies: - async: 3.2.6 - debug: 4.4.1 - transitivePeerDependencies: - - supports-color + find-up: 3.0.0 possible-typed-array-names@1.1.0: {} @@ -20273,9 +21047,9 @@ snapshots: browserslist: 4.21.4 postcss: 8.4.19 - postcss-calc@8.2.4(postcss@8.4.19): + postcss-calc@9.0.1(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 @@ -20299,18 +21073,18 @@ snapshots: postcss: 8.4.19 postcss-value-parser: 4.2.0 - postcss-colormin@5.3.1(postcss@8.4.19): + postcss-colormin@6.1.0(postcss@8.5.6): dependencies: - browserslist: 4.21.4 + browserslist: 4.23.0 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-convert-values@5.1.3(postcss@8.4.19): + postcss-convert-values@6.1.0(postcss@8.5.6): dependencies: - browserslist: 4.21.4 - postcss: 8.4.19 + browserslist: 4.23.0 + postcss: 8.5.6 postcss-value-parser: 4.2.0 postcss-custom-media@8.0.2(postcss@8.4.19): @@ -20333,21 +21107,21 @@ snapshots: postcss: 8.4.19 postcss-selector-parser: 6.1.2 - postcss-discard-comments@5.1.2(postcss@8.4.19): + postcss-discard-comments@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 - postcss-discard-duplicates@5.1.0(postcss@8.4.19): + postcss-discard-duplicates@6.0.3(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 - postcss-discard-empty@5.1.1(postcss@8.4.19): + postcss-discard-empty@6.0.3(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 - postcss-discard-overridden@5.1.0(postcss@8.4.19): + postcss-discard-overridden@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-double-position-gradients@3.1.2(postcss@8.4.19): dependencies: @@ -20397,13 +21171,13 @@ snapshots: postcss: 8.4.19 postcss-value-parser: 4.2.0 - postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.84.1): + postcss-loader@7.0.1(postcss@8.4.19)(webpack@5.100.2): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 postcss: 8.4.19 semver: 7.7.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) postcss-logical@5.0.4(postcss@8.4.19): dependencies: @@ -20413,42 +21187,42 @@ snapshots: dependencies: postcss: 8.4.19 - postcss-merge-longhand@5.1.7(postcss@8.4.19): + postcss-merge-longhand@6.0.5(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.19) + stylehacks: 6.1.1(postcss@8.5.6) - postcss-merge-rules@5.1.4(postcss@8.4.19): + postcss-merge-rules@6.1.1(postcss@8.5.6): dependencies: - browserslist: 4.21.4 + browserslist: 4.23.0 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 postcss-selector-parser: 6.1.2 - postcss-minify-font-values@5.1.0(postcss@8.4.19): + postcss-minify-font-values@6.1.0(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-gradients@5.1.1(postcss@8.4.19): + postcss-minify-gradients@6.0.3(postcss@8.5.6): dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-params@5.1.4(postcss@8.4.19): + postcss-minify-params@6.1.0(postcss@8.5.6): dependencies: - browserslist: 4.21.4 - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 + browserslist: 4.23.0 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-selectors@5.2.1(postcss@8.4.19): + postcss-minify-selectors@6.0.4(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-selector-parser: 6.1.2 postcss-modules-extract-imports@3.1.0(postcss@8.4.19): @@ -20499,50 +21273,49 @@ snapshots: postcss: 8.4.19 postcss-selector-parser: 6.1.2 - postcss-normalize-charset@5.1.0(postcss@8.4.19): + postcss-normalize-charset@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 - postcss-normalize-display-values@5.1.0(postcss@8.4.19): + postcss-normalize-display-values@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-positions@5.1.1(postcss@8.4.19): + postcss-normalize-positions@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@5.1.1(postcss@8.4.19): + postcss-normalize-repeat-style@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-string@5.1.0(postcss@8.4.19): + postcss-normalize-string@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@5.1.0(postcss@8.4.19): + postcss-normalize-timing-functions@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@5.1.1(postcss@8.4.19): + postcss-normalize-unicode@6.1.0(postcss@8.5.6): dependencies: - browserslist: 4.21.4 - postcss: 8.4.19 + browserslist: 4.23.0 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-url@5.1.0(postcss@8.4.19): + postcss-normalize-url@6.0.2(postcss@8.5.6): dependencies: - normalize-url: 6.1.0 - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@5.1.1(postcss@8.4.19): + postcss-normalize-whitespace@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 postcss-normalize@10.0.1(browserslist@4.21.4)(postcss@8.4.19): @@ -20557,10 +21330,10 @@ snapshots: dependencies: postcss: 8.4.19 - postcss-ordered-values@5.1.3(postcss@8.4.19): + postcss-ordered-values@6.0.2(postcss@8.5.6): dependencies: - cssnano-utils: 3.1.0(postcss@8.4.19) - postcss: 8.4.19 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 postcss-value-parser: 4.2.0 postcss-overflow-shorthand@3.0.4(postcss@8.4.19): @@ -20594,7 +21367,7 @@ snapshots: '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.19) '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.19) autoprefixer: 10.4.21(postcss@8.4.19) - browserslist: 4.21.4 + browserslist: 4.23.0 css-blank-pseudo: 3.0.3(postcss@8.4.19) css-has-pseudo: 3.0.4(postcss@8.4.19) css-prefers-color-scheme: 6.0.3(postcss@8.4.19) @@ -20635,15 +21408,15 @@ snapshots: postcss: 8.4.19 postcss-selector-parser: 6.1.2 - postcss-reduce-initial@5.1.2(postcss@8.4.19): + postcss-reduce-initial@6.1.0(postcss@8.5.6): dependencies: - browserslist: 4.21.4 + browserslist: 4.23.0 caniuse-api: 3.0.0 - postcss: 8.4.19 + postcss: 8.5.6 - postcss-reduce-transforms@5.1.0(postcss@8.4.19): + postcss-reduce-transforms@6.0.2(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 postcss-replace-overflow-wrap@4.0.0(postcss@8.4.19): @@ -20665,15 +21438,15 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@5.1.0(postcss@8.4.19): + postcss-svgo@6.0.3(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-value-parser: 4.2.0 - svgo: 2.8.0 + svgo: 3.3.2 - postcss-unique-selectors@5.1.1(postcss@8.4.19): + postcss-unique-selectors@6.0.4(postcss@8.5.6): dependencies: - postcss: 8.4.19 + postcss: 8.5.6 postcss-selector-parser: 6.1.2 postcss-value-parser@4.2.0: {} @@ -20692,19 +21465,17 @@ snapshots: prelude-ls@1.2.1: {} - prettier@2.7.1: {} + prettier@3.3.3: {} - pretty-error@4.0.0: + pretty-error@3.0.4: dependencies: lodash: 4.17.21 - renderkid: 3.0.0 + renderkid: 2.0.7 - pretty-format@26.6.2: + pretty-error@4.0.0: dependencies: - '@jest/types': 26.6.2 - ansi-regex: 5.0.1 - ansi-styles: 4.3.0 - react-is: 17.0.2 + lodash: 4.17.21 + renderkid: 3.0.0 pretty-format@27.5.1: dependencies: @@ -20722,24 +21493,18 @@ snapshots: dependencies: react: 18.3.1 + prism-react-renderer@1.3.5(react@19.0.0): + dependencies: + react: 19.0.0 + prismjs@1.27.0: {} prismjs@1.30.0: {} - private@0.1.8: {} - process-nextick-args@2.0.1: {} process@0.11.10: {} - progress@2.0.3: {} - - promise-limit@2.7.0: {} - - promise@7.3.1: - dependencies: - asap: 2.0.6 - promise@8.3.0: dependencies: asap: 2.0.6 @@ -20764,23 +21529,6 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 - proxy-agent@6.5.0: - dependencies: - agent-base: 7.1.4 - debug: 4.4.1 - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - lru-cache: 7.18.3 - pac-proxy-agent: 7.2.0 - proxy-from-env: 1.1.0 - socks-proxy-agent: 8.0.5 - transitivePeerDependencies: - - supports-color - optional: true - - proxy-from-env@1.1.0: - optional: true - prr@1.0.1: {} psl@1.15.0: @@ -20801,79 +21549,31 @@ snapshots: end-of-stream: 1.4.5 once: 1.4.0 - punycode@1.3.2: {} + punycode@1.4.1: {} punycode@2.1.1: {} punycode@2.3.1: {} - puppeteer-core@24.13.0: - dependencies: - '@puppeteer/browsers': 2.10.5 - chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) - debug: 4.4.1 - devtools-protocol: 0.0.1464554 - typed-query-selector: 2.12.0 - ws: 8.18.3 - transitivePeerDependencies: - - bare-buffer - - bufferutil - - supports-color - - utf-8-validate - optional: true - - puppeteer@24.13.0(typescript@4.9.3): - dependencies: - '@puppeteer/browsers': 2.10.5 - chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) - cosmiconfig: 9.0.0(typescript@4.9.3) - devtools-protocol: 0.0.1464554 - puppeteer-core: 24.13.0 - typed-query-selector: 2.12.0 - transitivePeerDependencies: - - bare-buffer - - bufferutil - - supports-color - - typescript - - utf-8-validate - optional: true - - puppeteer@24.13.0(typescript@5.8.3): - dependencies: - '@puppeteer/browsers': 2.10.5 - chromium-bidi: 7.1.0(devtools-protocol@0.0.1464554) - cosmiconfig: 9.0.0(typescript@5.8.3) - devtools-protocol: 0.0.1464554 - puppeteer-core: 24.13.0 - typed-query-selector: 2.12.0 - transitivePeerDependencies: - - bare-buffer - - bufferutil - - supports-color - - typescript - - utf-8-validate - optional: true - pure-rand@6.1.0: {} - q@1.5.1: {} - - qs@6.10.3: + qs@6.13.0: dependencies: side-channel: 1.1.0 - qs@6.11.0: + qs@6.14.0: dependencies: side-channel: 1.1.0 - qs@6.13.0: + query-string@7.0.0: dependencies: - side-channel: 1.1.0 + decode-uri-component: 0.2.2 + filter-obj: 1.1.0 + split-on-first: 1.1.0 + strict-uri-encode: 2.0.0 querystring-es3@0.2.1: {} - querystring@0.2.0: {} - querystringify@2.2.0: {} queue-microtask@1.2.3: {} @@ -20893,13 +21593,6 @@ snapshots: range-parser@1.2.1: {} - raw-body@2.5.1: - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - raw-body@2.5.2: dependencies: bytes: 3.1.2 @@ -20916,18 +21609,18 @@ snapshots: regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.20 - react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1): + react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2): dependencies: '@babel/code-frame': 7.27.1 address: 1.2.2 - browserslist: 4.21.4 + browserslist: 4.23.0 chalk: 4.1.2 cross-spawn: 7.0.6 detect-port-alt: 1.1.6 escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.3)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.5.3)(webpack@5.100.2) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -20942,26 +21635,26 @@ snapshots: shell-quote: 1.8.3 strip-ansi: 6.0.1 text-table: 0.2.0 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - typescript: 4.9.3 + typescript: 5.5.3 transitivePeerDependencies: - eslint - supports-color - vue-template-compiler - react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1): + react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2): dependencies: '@babel/code-frame': 7.27.1 address: 1.2.2 - browserslist: 4.21.4 + browserslist: 4.23.0 chalk: 4.1.2 cross-spawn: 7.0.6 detect-port-alt: 1.1.6 escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.8.3)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.7.2)(webpack@5.100.2) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -20976,26 +21669,47 @@ snapshots: shell-quote: 1.8.3 strip-ansi: 6.0.1 text-table: 0.2.0 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - typescript: 5.8.3 + typescript: 5.7.2 transitivePeerDependencies: - eslint - supports-color - vue-template-compiler - react-dom@17.0.2(react@17.0.2): - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react: 17.0.2 - scheduler: 0.20.2 - - react-dom@18.3.1(react@17.0.2): + react-dev-utils@12.0.1(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2): dependencies: - loose-envify: 1.4.0 - react: 17.0.2 - scheduler: 0.23.2 + '@babel/code-frame': 7.27.1 + address: 1.2.2 + browserslist: 4.23.0 + chalk: 4.1.2 + cross-spawn: 7.0.6 + detect-port-alt: 1.1.6 + escape-string-regexp: 4.0.0 + filesize: 8.0.7 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.56.0)(typescript@5.8.3)(webpack@5.100.2) + global-modules: 2.0.0 + globby: 11.1.0 + gzip-size: 6.0.0 + immer: 9.0.21 + is-root: 2.1.0 + loader-utils: 3.3.1 + open: 8.4.2 + pkg-up: 3.1.0 + prompts: 2.4.2 + react-error-overlay: 6.1.0 + recursive-readdir: 2.2.3 + shell-quote: 1.8.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + webpack: 5.100.2(esbuild@0.14.29) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler react-dom@18.3.1(react@18.3.1): dependencies: @@ -21003,127 +21717,136 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 + react-dom@19.0.0(react@19.0.0): + dependencies: + react: 19.0.0 + scheduler: 0.25.0 + react-error-boundary@3.1.4(react@18.3.1): dependencies: - '@babel/runtime': 7.20.0 + '@babel/runtime': 7.27.6 react: 18.3.1 + react-error-boundary@3.1.4(react@19.0.0): + dependencies: + '@babel/runtime': 7.27.6 + react: 19.0.0 + react-error-overlay@6.0.9: {} react-error-overlay@6.1.0: {} + react-fast-compare@3.2.2: {} + + react-helmet@6.1.0(react@19.0.0): + dependencies: + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 19.0.0 + react-fast-compare: 3.2.2 + react-side-effect: 2.1.2(react@19.0.0) + react-is@16.13.1: {} react-is@17.0.2: {} react-is@18.3.1: {} - react-live@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-live@3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@types/buble': 0.20.5 - buble: 0.19.6 - core-js: 3.44.0 - dom-iterator: 1.0.2 prism-react-renderer: 1.3.5(react@18.3.1) - prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-simple-code-editor: 0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - unescape: 1.0.1 - - react-refresh@0.14.0: {} + sucrase: 3.35.0 + use-editable: 2.3.3(react@18.3.1) - react-router-dom@6.8.1(react-dom@17.0.2(react@17.0.2))(react@18.3.1): + react-live@3.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - '@remix-run/router': 1.3.2 - react: 18.3.1 - react-dom: 17.0.2(react@17.0.2) - react-router: 6.8.1(react@18.3.1) + prism-react-renderer: 1.3.5(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + sucrase: 3.35.0 + use-editable: 2.3.3(react@19.0.0) - react-router-dom@6.8.1(react-dom@18.3.1(react@17.0.2))(react@17.0.2): - dependencies: - '@remix-run/router': 1.3.2 - react: 17.0.2 - react-dom: 18.3.1(react@17.0.2) - react-router: 6.8.1(react@17.0.2) + react-refresh@0.14.0: {} - react-router-dom@6.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@remix-run/router': 1.3.2 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router: 6.8.1(react@18.3.1) + react-refresh@0.17.0: {} - react-router@6.8.1(react@17.0.2): + react-router-dom@6.30.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - '@remix-run/router': 1.3.2 - react: 17.0.2 + '@remix-run/router': 1.23.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-router: 6.30.1(react@19.0.0) - react-router@6.8.1(react@18.3.1): + react-router@6.30.1(react@19.0.0): dependencies: - '@remix-run/router': 1.3.2 - react: 18.3.1 + '@remix-run/router': 1.23.0 + react: 19.0.0 - react-simple-code-editor@0.11.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-side-effect@2.1.2(react@19.0.0): dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react: 19.0.0 react-syntax-highlighter@13.5.3(react@18.3.1): dependencies: - '@babel/runtime': 7.20.0 + '@babel/runtime': 7.27.6 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.30.0 react: 18.3.1 refractor: 3.6.0 - react-use-dimensions@1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@4.9.3): + react-syntax-highlighter@13.5.3(react@19.0.0): dependencies: - '@types/react': 17.0.87 - react: 18.3.1 - typescript: 4.9.3 + '@babel/runtime': 7.27.6 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.30.0 + react: 19.0.0 + refractor: 3.6.0 - react-use-dimensions@1.2.1(@types/react@17.0.87)(react@18.3.1)(typescript@5.8.3): + react-syntax-highlighter@15.4.3(react@18.3.1): dependencies: - '@types/react': 17.0.87 + '@babel/runtime': 7.27.6 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.30.0 react: 18.3.1 - typescript: 5.8.3 + refractor: 3.6.0 - react-use-dimensions@1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@4.9.3): + react-syntax-highlighter@15.4.3(react@19.0.0): dependencies: - '@types/react': 18.3.23 - react: 18.3.1 - typescript: 4.9.3 + '@babel/runtime': 7.27.6 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.30.0 + react: 19.0.0 + refractor: 3.6.0 - react@0.14.10: + react-use-dimensions@1.2.1(@types/react@18.3.23)(react@18.3.1)(typescript@5.5.3): dependencies: - envify: 3.4.1 - fbjs: 0.6.1 + '@types/react': 18.3.23 + react: 18.3.1 + typescript: 5.5.3 - react@17.0.2: + react-use-dimensions@1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.7.2): dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 + '@types/react': 19.0.2 + react: 19.0.0 + typescript: 5.7.2 - react@18.2.0: + react-use-dimensions@1.2.1(@types/react@19.0.2)(react@19.0.0)(typescript@5.8.3): dependencies: - loose-envify: 1.4.0 + '@types/react': 19.0.2 + react: 19.0.0 + typescript: 5.8.3 react@18.3.1: dependencies: loose-envify: 1.4.0 - read-pkg-up@2.0.0: - dependencies: - find-up: 2.1.0 - read-pkg: 2.0.0 - - read-pkg@2.0.0: - dependencies: - load-json-file: 2.0.0 - normalize-package-data: 2.5.0 - path-type: 2.0.0 + react@19.0.0: {} readable-stream@2.3.8: dependencies: @@ -21145,12 +21868,7 @@ snapshots: dependencies: picomatch: 2.3.1 - recast@0.11.23: - dependencies: - ast-types: 0.9.6 - esprima: 3.1.3 - private: 0.1.8 - source-map: 0.5.7 + readdirp@4.1.2: {} recursive-readdir@2.2.3: dependencies: @@ -21182,10 +21900,6 @@ snapshots: dependencies: regenerate: 1.4.2 - regenerate-unicode-properties@9.0.0: - dependencies: - regenerate: 1.4.2 - regenerate@1.4.2: {} regenerator-runtime@0.13.11: {} @@ -21201,17 +21915,6 @@ snapshots: gopd: 1.2.0 set-function-name: 2.0.2 - regexpp@3.2.0: {} - - regexpu-core@4.8.0: - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 9.0.0 - regjsgen: 0.5.2 - regjsparser: 0.7.0 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.2.0 - regexpu-core@6.2.0: dependencies: regenerate: 1.4.2 @@ -21221,17 +21924,16 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.2.0 - regjsgen@0.5.2: {} - regjsgen@0.8.0: {} regjsparser@0.12.0: dependencies: jsesc: 3.0.2 - regjsparser@0.7.0: - dependencies: - jsesc: 0.5.0 + rehackt@0.1.0(@types/react@19.0.2)(react@19.0.0): + optionalDependencies: + '@types/react': 19.0.2 + react: 19.0.0 rehype-parse@6.0.2: dependencies: @@ -21324,6 +22026,14 @@ snapshots: '@zkochan/rimraf': 2.1.3 fs-extra: 10.1.0 + renderkid@2.0.7: + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 3.0.1 + renderkid@3.0.0: dependencies: css-select: 4.3.0 @@ -21394,6 +22104,30 @@ snapshots: hash-base: 3.1.0 inherits: 2.0.4 + rollup@4.22.0: + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.22.0 + '@rollup/rollup-android-arm64': 4.22.0 + '@rollup/rollup-darwin-arm64': 4.22.0 + '@rollup/rollup-darwin-x64': 4.22.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.22.0 + '@rollup/rollup-linux-arm-musleabihf': 4.22.0 + '@rollup/rollup-linux-arm64-gnu': 4.22.0 + '@rollup/rollup-linux-arm64-musl': 4.22.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.22.0 + '@rollup/rollup-linux-riscv64-gnu': 4.22.0 + '@rollup/rollup-linux-s390x-gnu': 4.22.0 + '@rollup/rollup-linux-x64-gnu': 4.22.0 + '@rollup/rollup-linux-x64-musl': 4.22.0 + '@rollup/rollup-win32-arm64-msvc': 4.22.0 + '@rollup/rollup-win32-ia32-msvc': 4.22.0 + '@rollup/rollup-win32-x64-msvc': 4.22.0 + fsevents: 2.3.3 + + rrweb-cssom@0.7.1: {} + rrweb-cssom@0.8.0: {} run-parallel@1.2.0: @@ -21427,20 +22161,27 @@ snapshots: sanitize.css@13.0.0: {} - sass-loader@13.2.0(sass@1.56.1)(webpack@5.84.1): + sass-loader@13.3.2(sass@1.63.6)(webpack@5.100.2): dependencies: - klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - sass: 1.56.1 + sass: 1.63.6 - sass@1.56.1: + sass@1.63.6: dependencies: chokidar: 3.6.0 immutable: 4.3.7 source-map-js: 1.2.1 + sass@1.89.2: + dependencies: + chokidar: 4.0.3 + immutable: 5.1.3 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.1 + sax@1.4.1: optional: true @@ -21448,15 +22189,12 @@ snapshots: dependencies: xmlchars: 2.2.0 - scheduler@0.20.2: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - scheduler@0.23.2: dependencies: loose-envify: 1.4.0 + scheduler@0.25.0: {} + schema-utils@2.7.0: dependencies: '@types/json-schema': 7.0.15 @@ -21469,20 +22207,6 @@ snapshots: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@4.0.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.17.1 - ajv-formats: 2.1.1(ajv@8.17.1) - ajv-keywords: 5.1.0(ajv@8.17.1) - - schema-utils@4.2.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.17.1 - ajv-formats: 2.1.1(ajv@8.17.1) - ajv-keywords: 5.1.0(ajv@8.17.1) - schema-utils@4.3.2: dependencies: '@types/json-schema': 7.0.15 @@ -21501,29 +22225,13 @@ snapshots: semver@6.3.1: {} - semver@7.3.4: + semver@7.5.2: dependencies: lru-cache: 6.0.0 - semver@7.7.2: {} + semver@7.7.1: {} - send@0.18.0: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color + semver@7.7.2: {} send@0.19.0: dependencies: @@ -21559,15 +22267,6 @@ snapshots: transitivePeerDependencies: - supports-color - serve-static@1.15.0: - dependencies: - encodeurl: 1.0.2 - escape-html: 1.0.3 - parseurl: 1.3.3 - send: 0.18.0 - transitivePeerDependencies: - - supports-color - serve-static@1.16.2: dependencies: encodeurl: 2.0.0 @@ -21651,50 +22350,35 @@ snapshots: side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 + siginfo@2.0.0: {} + signal-exit@3.0.7: {} + signal-exit@4.1.0: {} + sisteransi@1.0.5: {} slash@3.0.0: {} - slice-ansi@4.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - - smart-buffer@4.2.0: - optional: true - - sockjs@0.3.24: - dependencies: - faye-websocket: 0.11.4 - uuid: 8.3.2 - websocket-driver: 0.7.4 - - socks-proxy-agent@8.0.5: + snake-case@3.0.4: dependencies: - agent-base: 7.1.4 - debug: 4.4.1 - socks: 2.8.6 - transitivePeerDependencies: - - supports-color - optional: true + dot-case: 3.0.4 + tslib: 2.8.1 - socks@2.8.6: + sockjs@0.3.24: dependencies: - ip-address: 9.0.5 - smart-buffer: 4.2.0 - optional: true + faye-websocket: 0.11.4 + uuid: 8.3.2 + websocket-driver: 0.7.4 source-map-js@1.2.1: {} - source-map-loader@4.0.1(webpack@5.84.1): + source-map-loader@4.0.1(webpack@5.100.2): dependencies: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.2.1 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) source-map-support@0.5.13: dependencies: @@ -21706,34 +22390,14 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 - source-map@0.4.4: - dependencies: - amdefine: 1.0.1 - source-map@0.5.7: {} source-map@0.6.1: {} source-map@0.7.4: {} - sourcemap-codec@1.4.8: {} - space-separated-tokens@1.1.5: {} - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.21 - - spdx-exceptions@2.5.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.21 - - spdx-license-ids@3.0.21: {} - spdy-transport@3.0.0: dependencies: debug: 4.4.1 @@ -21755,21 +22419,20 @@ snapshots: transitivePeerDependencies: - supports-color + split-on-first@1.1.0: {} + split2@3.2.2: dependencies: readable-stream: 3.6.2 sprintf-js@1.0.3: {} - sprintf-js@1.1.3: - optional: true - - stable@0.1.8: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 + stackback@0.0.2: {} + stackframe@1.3.4: {} state-toggle@1.0.3: {} @@ -21778,13 +22441,13 @@ snapshots: statuses@2.0.1: {} + std-env@3.9.0: {} + stop-iteration-iterator@1.1.0: dependencies: es-errors: 1.3.0 internal-slot: 1.1.0 - stoppable@1.1.0: {} - stream-browserify@3.0.0: dependencies: inherits: 2.0.4 @@ -21797,13 +22460,7 @@ snapshots: readable-stream: 3.6.2 xtend: 4.0.2 - streamx@2.22.1: - dependencies: - fast-fifo: 1.3.2 - text-decoder: 1.2.3 - optionalDependencies: - bare-events: 2.6.0 - optional: true + strict-uri-encode@2.0.0: {} string-length@4.0.2: dependencies: @@ -21816,6 +22473,12 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + string.prototype.matchall@4.0.12: dependencies: call-bind: 1.0.8 @@ -21869,6 +22532,10 @@ snapshots: character-entities-legacy: 1.1.4 xtend: 4.0.2 + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + strip-ansi@6.0.0: dependencies: ansi-regex: 5.0.1 @@ -21877,43 +22544,55 @@ snapshots: dependencies: ansi-regex: 5.0.1 + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + strip-bom@3.0.0: {} strip-bom@4.0.0: {} strip-final-newline@2.0.0: {} + strip-final-newline@3.0.0: {} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 strip-json-comments@3.1.1: {} - style-loader@3.3.1(webpack@5.84.1): + strip-literal@2.1.1: + dependencies: + js-tokens: 9.0.1 + + strip-literal@3.0.0: dependencies: - webpack: 5.84.1(esbuild@0.14.28) + js-tokens: 9.0.1 + + style-loader@3.3.1(webpack@5.100.2): + dependencies: + webpack: 5.100.2(esbuild@0.14.29) style-to-object@0.3.0: dependencies: inline-style-parser: 0.1.1 - stylehacks@5.1.1(postcss@8.4.19): + stylehacks@6.1.1(postcss@8.5.6): dependencies: - browserslist: 4.21.4 - postcss: 8.4.19 + browserslist: 4.23.0 + postcss: 8.5.6 postcss-selector-parser: 6.1.2 - subscriptions-transport-ws@0.11.0(graphql@14.7.0): + sucrase@3.35.0: dependencies: - backo2: 1.0.2 - eventemitter3: 3.1.2 - graphql: 14.7.0 - iterall: 1.3.0 - symbol-observable: 1.2.0 - ws: 7.5.10 - transitivePeerDependencies: - - bufferutil - - utf-8-validate + '@jridgewell/gen-mapping': 0.3.12 + commander: 4.1.1 + glob: 10.4.5 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.7 + ts-interface-checker: 0.1.13 supports-color@5.5.0: dependencies: @@ -21931,17 +22610,15 @@ snapshots: svg-parser@2.0.4: {} - svgo@2.8.0: + svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 - css-select: 4.3.0 - css-tree: 1.1.3 - csso: 4.2.0 + css-select: 5.2.2 + css-tree: 2.3.1 + css-what: 6.2.2 + csso: 5.0.5 picocolors: 1.1.1 - stable: 0.1.8 - - symbol-observable@1.2.0: {} symbol-observable@4.0.0: {} @@ -21952,47 +22629,16 @@ snapshots: better-path-resolve: 1.0.0 rename-overwrite: 5.0.4 - synckit@0.1.6: - dependencies: - tslib: 2.8.1 - uuid: 8.3.2 - - synckit@0.3.4: + synckit@0.4.1: dependencies: tslib: 2.8.1 uuid: 8.3.2 - table@6.9.0: - dependencies: - ajv: 8.17.1 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - tapable@1.1.3: {} tapable@2.2.2: {} - tar-fs@3.1.0: - dependencies: - pump: 3.0.3 - tar-stream: 3.1.7 - optionalDependencies: - bare-fs: 4.1.6 - bare-path: 3.0.0 - transitivePeerDependencies: - - bare-buffer - optional: true - - tar-stream@3.1.7: - dependencies: - b4a: 1.6.7 - fast-fifo: 1.3.2 - streamx: 2.22.1 - optional: true - - terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.51.1(esbuild@0.14.28)): + terser-webpack-plugin@5.2.0(esbuild@0.14.29)(webpack@5.100.2): dependencies: jest-worker: 27.5.1 p-limit: 3.1.0 @@ -22000,32 +22646,47 @@ snapshots: serialize-javascript: 6.0.2 source-map: 0.6.1 terser: 5.43.1 - webpack: 5.51.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - esbuild: 0.14.28 + esbuild: 0.14.29 - terser-webpack-plugin@5.2.0(esbuild@0.14.28)(webpack@5.84.1): + terser-webpack-plugin@5.3.14(esbuild@0.14.29)(webpack@5.100.2): dependencies: + '@jridgewell/trace-mapping': 0.3.29 jest-worker: 27.5.1 - p-limit: 3.1.0 - schema-utils: 3.3.0 + schema-utils: 4.3.2 serialize-javascript: 6.0.2 - source-map: 0.6.1 terser: 5.43.1 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) optionalDependencies: - esbuild: 0.14.28 + esbuild: 0.14.29 - terser-webpack-plugin@5.3.14(esbuild@0.14.28)(webpack@5.84.1): + terser-webpack-plugin@5.3.14(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29)): dependencies: '@jridgewell/trace-mapping': 0.3.29 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 terser: 5.43.1 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.97.1(esbuild@0.14.29) optionalDependencies: - esbuild: 0.14.28 + esbuild: 0.14.29 + + terser-webpack-plugin@5.3.14(webpack@5.97.1): + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + jest-worker: 27.5.1 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + terser: 5.43.1 + webpack: 5.97.1 + + terser@4.8.1: + dependencies: + acorn: 8.15.0 + commander: 2.20.3 + source-map: 0.6.1 + source-map-support: 0.5.21 terser@5.43.1: dependencies: @@ -22040,14 +22701,21 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 - text-decoder@1.2.3: + test-exclude@7.0.1: dependencies: - b4a: 1.6.7 - optional: true + '@istanbuljs/schema': 0.1.3 + glob: 10.4.5 + minimatch: 9.0.5 text-table@0.2.0: {} - through@2.3.8: {} + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 thunky@1.1.0: {} @@ -22060,11 +22728,30 @@ snapshots: es5-ext: 0.10.64 next-tick: 1.1.0 - tldts-core@6.1.86: {} + tinybench@2.9.0: {} + + tinyexec@0.3.2: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + + tinypool@0.8.4: {} + + tinypool@1.1.1: {} - tldts@6.1.86: + tinyrainbow@1.2.0: {} + + tinyrainbow@2.0.0: {} + + tinyspy@2.2.1: {} + + tinyspy@4.0.3: {} + + tippy.js@6.3.7: dependencies: - tldts-core: 6.1.86 + '@popperjs/core': 2.11.8 tmpl@1.0.5: {} @@ -22074,8 +22761,6 @@ snapshots: safe-buffer: 5.2.1 typed-array-buffer: 1.0.3 - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -22091,10 +22776,6 @@ snapshots: universalify: 0.2.0 url-parse: 1.5.10 - tough-cookie@5.1.2: - dependencies: - tldts: 6.1.86 - tr46@0.0.3: {} tr46@3.0.0: @@ -22111,7 +22792,19 @@ snapshots: trough@1.0.5: {} - ts-deepmerge@6.2.1: {} + ts-api-utils@1.4.3(typescript@5.5.3): + dependencies: + typescript: 5.5.3 + + ts-api-utils@1.4.3(typescript@5.7.2): + dependencies: + typescript: 5.7.2 + + ts-api-utils@1.4.3(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + ts-interface-checker@0.1.13: {} ts-invariant@0.10.3: dependencies: @@ -22128,10 +22821,20 @@ snapshots: tslib@2.8.1: {} - tsutils@3.21.0(typescript@4.9.3): + tsutils@3.21.0(typescript@5.5.3): + dependencies: + tslib: 1.14.1 + typescript: 5.5.3 + + tsutils@3.21.0(typescript@5.7.2): + dependencies: + tslib: 1.14.1 + typescript: 5.7.2 + + tsutils@3.21.0(typescript@5.8.3): dependencies: tslib: 1.14.1 - typescript: 4.9.3 + typescript: 5.8.3 tty-browserify@0.0.1: {} @@ -22141,6 +22844,8 @@ snapshots: type-detect@4.0.8: {} + type-detect@4.1.0: {} + type-fest@0.20.2: {} type-fest@0.21.3: {} @@ -22185,14 +22890,13 @@ snapshots: possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 - typed-query-selector@2.12.0: - optional: true + typescript@5.5.3: {} - typescript@4.9.3: {} + typescript@5.7.2: {} typescript@5.8.3: {} - ua-parser-js@0.7.40: {} + ufo@1.6.1: {} unbox-primitive@1.1.0: dependencies: @@ -22201,9 +22905,7 @@ snapshots: has-symbols: 1.1.0 which-boxed-primitive: 1.1.1 - unescape@1.0.1: - dependencies: - extend-shallow: 2.0.1 + undici-types@5.26.5: {} unherit@1.1.3: dependencies: @@ -22266,6 +22968,10 @@ snapshots: dependencies: unist-util-is: 4.1.0 + unist-util-remove@2.1.0: + dependencies: + unist-util-is: 4.1.0 + unist-util-stringify-position@2.0.3: dependencies: '@types/unist': 2.0.11 @@ -22293,6 +22999,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.1.3(browserslist@4.23.0): + dependencies: + browserslist: 4.23.0 + escalade: 3.2.0 + picocolors: 1.1.1 + update-browserslist-db@1.1.3(browserslist@4.25.1): dependencies: browserslist: 4.25.1 @@ -22305,30 +23017,72 @@ snapshots: url-join@4.0.0: {} - url-parse@1.5.1: - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 + url-join@4.0.1: {} url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - url@0.11.0: + url@0.11.2: dependencies: - punycode: 1.3.2 - querystring: 0.2.0 + punycode: 1.4.1 + qs: 6.14.0 use-debounce@3.4.3(react@18.3.1): dependencies: react: 18.3.1 + use-debounce@3.4.3(react@19.0.0): + dependencies: + react: 19.0.0 + + use-debounce@8.0.4(react@18.3.1): + dependencies: + react: 18.3.1 + + use-debounce@8.0.4(react@19.0.0): + dependencies: + react: 19.0.0 + + use-debounce@9.0.4(react@18.3.1): + dependencies: + react: 18.3.1 + + use-debounce@9.0.4(react@19.0.0): + dependencies: + react: 19.0.0 + use-deep-compare@1.3.0(react@18.3.1): dependencies: dequal: 2.0.3 react: 18.3.1 + use-deep-compare@1.3.0(react@19.0.0): + dependencies: + dequal: 2.0.3 + react: 19.0.0 + + use-editable@2.3.3(react@18.3.1): + dependencies: + react: 18.3.1 + + use-editable@2.3.3(react@19.0.0): + dependencies: + react: 19.0.0 + + use-isomorphic-layout-effect@1.2.1(@types/react@18.3.23)(react@18.3.1): + dependencies: + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.23 + + use-isomorphic-layout-effect@1.2.1(@types/react@19.0.2)(react@19.0.0): + dependencies: + react: 19.0.0 + optionalDependencies: + '@types/react': 19.0.2 + util-deprecate@1.0.2: {} util@0.12.3: @@ -22344,9 +23098,9 @@ snapshots: utils-merge@1.0.1: {} - uuid@8.3.2: {} + uuid@10.0.0: {} - v8-compile-cache@2.4.0: {} + uuid@8.3.2: {} v8-to-istanbul@9.3.0: dependencies: @@ -22354,11 +23108,6 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - vary@1.1.2: {} vfile-location@3.2.0: {} @@ -22383,7 +23132,128 @@ snapshots: unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 - vlq@1.0.1: {} + vite-node@1.3.1(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + pathe: 1.1.2 + picocolors: 1.1.1 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite-node@3.2.4(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.6 + rollup: 4.22.0 + optionalDependencies: + '@types/node': 20.12.10 + fsevents: 2.3.3 + less: 4.3.0 + lightningcss: 1.30.1 + sass: 1.89.2 + terser: 5.43.1 + + vitest@1.3.1(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1): + dependencies: + '@vitest/expect': 1.3.1 + '@vitest/runner': 1.3.1 + '@vitest/snapshot': 1.3.1 + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 + acorn-walk: 8.3.4 + chai: 4.5.0 + debug: 4.4.1 + execa: 8.0.1 + local-pkg: 0.5.1 + magic-string: 0.30.17 + pathe: 1.1.2 + picocolors: 1.1.1 + std-env: 3.9.0 + strip-literal: 2.1.1 + tinybench: 2.9.0 + tinypool: 0.8.4 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vite-node: 1.3.1(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 20.12.10 + jsdom: 24.1.3 + transitivePeerDependencies: + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vitest@3.2.4(@types/node@20.12.10)(jsdom@24.1.3)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.2.1 + debug: 4.4.1 + expect-type: 1.2.2 + magic-string: 0.30.17 + pathe: 2.0.3 + picomatch: 4.0.2 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 5.4.19(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + vite-node: 3.2.4(@types/node@20.12.10)(less@4.3.0)(lightningcss@1.30.1)(sass@1.89.2)(terser@5.43.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 20.12.10 + jsdom: 24.1.3 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser vm-browserify@1.1.2: {} @@ -22414,27 +23284,16 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-assets-manifest@5.1.0(webpack@5.84.1): - dependencies: - chalk: 4.1.2 - deepmerge: 4.3.1 - lockfile: 1.0.4 - lodash.get: 4.4.2 - lodash.has: 4.5.2 - schema-utils: 3.3.0 - tapable: 2.2.2 - webpack: 5.84.1(esbuild@0.14.28) - - webpack-dev-middleware@5.3.4(webpack@5.84.1): + webpack-dev-middleware@5.3.4(webpack@5.100.2): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.3.2 - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) - webpack-dev-server@4.15.0(webpack@5.84.1): + webpack-dev-server@4.15.0(webpack@5.100.2): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -22464,10 +23323,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 5.3.4(webpack@5.84.1) + webpack-dev-middleware: 5.3.4(webpack@5.100.2) ws: 8.18.3 optionalDependencies: - webpack: 5.84.1(esbuild@0.14.28) + webpack: 5.100.2(esbuild@0.14.29) transitivePeerDependencies: - bufferutil - debug @@ -22481,30 +23340,61 @@ snapshots: webpack-sources@3.3.3: {} - webpack@5.51.1(esbuild@0.14.28): + webpack@5.100.2(esbuild@0.14.29): dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 0.0.50 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 - acorn-import-assertions: 1.9.0(acorn@8.15.0) - browserslist: 4.21.4 + acorn-import-phases: 1.0.4(acorn@8.15.0) + browserslist: 4.25.1 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.18.2 + es-module-lexer: 1.7.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 4.3.2 + tapable: 2.2.2 + terser-webpack-plugin: 5.3.14(esbuild@0.14.29)(webpack@5.100.2) + watchpack: 2.4.4 + webpack-sources: 3.3.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + webpack@5.97.1: + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.8 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + acorn: 8.15.0 + browserslist: 4.25.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.2 - es-module-lexer: 0.7.1 + es-module-lexer: 1.7.0 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - json-parse-better-errors: 1.0.2 + json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.2 - terser-webpack-plugin: 5.2.0(esbuild@0.14.28)(webpack@5.51.1(esbuild@0.14.28)) + terser-webpack-plugin: 5.3.14(webpack@5.97.1) watchpack: 2.4.4 webpack-sources: 3.3.3 transitivePeerDependencies: @@ -22512,7 +23402,7 @@ snapshots: - esbuild - uglify-js - webpack@5.84.1(esbuild@0.14.28): + webpack@5.97.1(esbuild@0.14.29): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -22520,7 +23410,6 @@ snapshots: '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 - acorn-import-assertions: 1.9.0(acorn@8.15.0) browserslist: 4.25.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.2 @@ -22535,7 +23424,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.2 - terser-webpack-plugin: 5.3.14(esbuild@0.14.28)(webpack@5.84.1) + terser-webpack-plugin: 5.3.14(esbuild@0.14.29)(webpack@5.97.1(esbuild@0.14.29)) watchpack: 2.4.4 webpack-sources: 3.3.3 transitivePeerDependencies: @@ -22559,8 +23448,6 @@ snapshots: dependencies: iconv-lite: 0.6.3 - whatwg-fetch@0.9.0: {} - whatwg-fetch@3.6.20: {} whatwg-mimetype@3.0.0: {} @@ -22631,6 +23518,11 @@ snapshots: dependencies: isexe: 2.0.0 + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + wildcard@2.0.1: {} word-wrap@1.2.5: {} @@ -22641,6 +23533,12 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + wrappy@1.0.2: {} write-file-atomic@4.0.2: @@ -22648,8 +23546,6 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 3.0.7 - ws@7.5.10: {} - ws@8.18.3: {} xml-name-validator@4.0.0: {} @@ -22684,21 +23580,14 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 - yauzl@2.10.0: - dependencies: - buffer-crc32: 0.2.13 - fd-slicer: 1.1.0 - optional: true - yocto-queue@0.1.0: {} + yocto-queue@1.2.1: {} + zen-observable-ts@1.2.5: dependencies: zen-observable: 0.8.15 zen-observable@0.8.15: {} - zod@3.25.76: - optional: true - zwitch@1.0.5: {} diff --git a/test-data/scope-name/envs/my-react-env/config/jest.config.js b/test-data/scope-name/envs/my-react-env/config/jest.config.js deleted file mode 100644 index ae2a8af..0000000 --- a/test-data/scope-name/envs/my-react-env/config/jest.config.js +++ /dev/null @@ -1,24 +0,0 @@ -/** - * @see https://bit.dev/reference/jest/jest-config - */ -const { jestConfig } = require('@teambit/react.react-env'); - -const { - generateNodeModulesPattern, -} = require('@teambit/dependencies.modules.packages-excluder'); -const packagesToExclude = ['a-package-to-exclude']; - -/** - * by default, jest excludes all node_modules from the transform (compilation) process. - * the following config excludes all node_modules, except for Bit components, style modules, and the packages that are listed. - */ -module.exports = { - ...jestConfig, - transformIgnorePatterns: [ - '^.+.module.(css|sass|scss)$', - generateNodeModulesPattern({ - packages: packagesToExclude, - excludeComponents: true, - }), - ], -}; diff --git a/test-data/scope-name/envs/my-react-env/config/tsconfig.json b/test-data/scope-name/envs/my-react-env/config/tsconfig.json deleted file mode 100644 index 8b3abc6..0000000 --- a/test-data/scope-name/envs/my-react-env/config/tsconfig.json +++ /dev/null @@ -1,7 +0,0 @@ -/** - * @see https://bit.dev/reference/typescript/typescript-config - */ -{ - "extends": "@teambit/react.react-env/config/tsconfig.json", - "include": ["**/*", "**/*.json"] -} diff --git a/test-data/scope-name/envs/my-react-env/config/webpack.config.ts b/test-data/scope-name/envs/my-react-env/config/webpack.config.ts deleted file mode 100644 index 9d23221..0000000 --- a/test-data/scope-name/envs/my-react-env/config/webpack.config.ts +++ /dev/null @@ -1,9 +0,0 @@ -import type { WebpackConfigMutator } from '@teambit/webpack'; - -/** - * modifies the webpack config for the components preview bundle. - * @see https://bit.dev/reference/webpack/webpack-config - */ -export const webpackTransformer = ( - configMutator: WebpackConfigMutator -): WebpackConfigMutator => configMutator; diff --git a/test-data/scope-name/envs/my-react-env/env.jsonc b/test-data/scope-name/envs/my-react-env/env.jsonc deleted file mode 100644 index c7b84ae..0000000 --- a/test-data/scope-name/envs/my-react-env/env.jsonc +++ /dev/null @@ -1,110 +0,0 @@ -{ - /** - * standardize your component dependencies. - * @see https://bit.dev/docs/react-env/dependencies - **/ - "policy": { - /** - * peer dependencies for components using that env. - */ - "peers": [ - { - "name": "react", - /* the version to be installed and used by the env */ - "version": "^18.0.0", - /* the range of versions this env's components are compatible with */ - "supportedRange": "^17.0.0 || ^18.0.0" - }, - { - "name": "react-dom", - "version": "^18.0.0", - "supportedRange": "^17.0.0 || ^18.0.0" - }, - { - "name": "jest", - "version": "29.3.1", - "supportedRange": "29.3.1" - }, - { - "name": "graphql", - "version": "14.7.0", - "supportedRange": "^14.7.0" - }, - { - "name": "react-router-dom", - "version": "6.8.1", - "supportedRange": "^6.8.1" - }, - { - "name": "@mdx-js/react", - "version": "1.6.22", - "supportedRange": "^1.6.22" - }, - { - "name": "@teambit/mdx.ui.mdx-scope-context", - "version": "0.0.496", - "supportedRange": "^0.0.496" - } - ], - /** - * dev dependencies for components using that env - */ - "dev": [ - { - "name": "@types/react", - "version": "^18.0.0", - /** - * hide the dependency from bit's inspection tools. - * in most cases, a component should only list its env as a dev dependency - */ - "hidden": true, - /* add this dependency to components, even if they don't directly import it */ - "force": true - }, - { - "name": "@types/react-dom", - "version": "^18.0.0", - "hidden": true, - "force": true - }, - { - "name": "@types/jest", - "version": "^29.2.2", - "hidden": true, - "force": true - }, - { - "name": "@testing-library/react", - "version": "^13.4.0" - }, - { - "name": "@types/testing-library__jest-dom", - "version": "^5.9.5" - }, - { - "name": "@testing-library/react-hooks", - "version": "^8.0.1" - } - ] - }, - - /** - * associate files with a specific dev service. - * associated files are considered as dev files. - * @see https://bit.dev/docs/react-env/dependencies#configure-files-as-dev-files - **/ - "patterns": { - /** - * files to be loaded and displayed in the 'preview' tab. - * @see https://bit.dev/docs/react-env/component-previews - */ - "compositions": ["**/*.composition.*", "**/*.preview.*"], - /** - * files to be loaded and displayed in the 'overview' tab. - * @see https://bit.dev/docs/react-env/component-docs - */ - "docs": ["**/*.docs.*"], - /* files to be included in the component testing */ - "tests": ["**/*.spec.*", "**/*.test.*"] - } -} diff --git a/test-data/scope-name/envs/my-react-env/index.ts b/test-data/scope-name/envs/my-react-env/index.ts deleted file mode 100644 index 4b1710a..0000000 --- a/test-data/scope-name/envs/my-react-env/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { MyReactEnv } from './my-react-env.bit-env'; -export { MyReactEnv }; -export default MyReactEnv; diff --git a/test-data/scope-name/envs/my-react-env/my-react-env.bit-env.ts b/test-data/scope-name/envs/my-react-env/my-react-env.bit-env.ts deleted file mode 100644 index c7cd025..0000000 --- a/test-data/scope-name/envs/my-react-env/my-react-env.bit-env.ts +++ /dev/null @@ -1,112 +0,0 @@ -/** - * this env extends react-env - * @see https://bit.cloud/teambit/react/react-env - */ -import { ReactEnv } from '@teambit/react.react-env'; - -import { Compiler } from '@teambit/compiler'; -import { ReactPreview } from '@teambit/preview.react-preview'; -import { EnvHandler } from '@teambit/envs'; -import { - TypescriptCompiler, - resolveTypes, - TypescriptTask, -} from '@teambit/typescript.typescript-compiler'; -import { ESLintLinter, EslintTask } from '@teambit/defender.eslint-linter'; -import { JestTester, JestTask } from '@teambit/defender.jest-tester'; -import { PrettierFormatter } from '@teambit/defender.prettier-formatter'; -import { Tester } from '@teambit/tester'; -import { Preview } from '@teambit/preview'; -import hostDependencies from './preview/host-dependencies'; -// import { webpackTransformer } from './config/webpack.config'; - -export class MyReactEnv extends ReactEnv { - /* a shorthand name for the env */ - name = 'my-react-env'; - - /* the compiler to use during development */ - compiler(): EnvHandler { - /** - * @see https://bit.dev/reference/typescript/using-typescript - * */ - return TypescriptCompiler.from({ - tsconfig: require.resolve('./config/tsconfig.json'), - types: resolveTypes(__dirname, ['./types']), - }); - } - - /* the test runner to use during development */ - tester(): EnvHandler { - /** - * @see https://bit.dev/reference/jest/using-jest - * */ - return JestTester.from({ - jest: require.resolve('jest'), - config: require.resolve('./config/jest.config'), - }); - } - - /* the linter to use during development */ - linter() { - /** - * @see https://bit.dev/reference/eslint/using-eslint - * */ - return ESLintLinter.from({ - tsconfig: require.resolve('./config/tsconfig.json'), - configPath: require.resolve('./config/eslintrc.js'), - pluginsPath: __dirname, - extensions: ['.ts', '.tsx', '.js', '.jsx', '.mjs'], - }); - } - - /** - * the formatter to use during development - * (source files are not formatted as part of the components' build) - * */ - formatter() { - /** - * @see https://bit.dev/reference/prettier/using-prettier - * */ - return PrettierFormatter.from({ - configPath: require.resolve('./config/prettier.config.js'), - }); - } - - /** - * generates the component previews during development and during build - */ - preview(): EnvHandler { - /** - * @see https://bit.dev/docs/react-env/component-previews - */ - return ReactPreview.from({ - mounter: require.resolve('./preview/mounter'), - hostDependencies, - // transformers: [webpackTransformer], - }); - } - - /** - * a set of processes to be performed before a component is snapped, during its build phase - * @see https://bit.dev/docs/react-env/build-pipelines - */ - build() { - return super.build().replace([ - TypescriptTask.from({ - tsconfig: require.resolve('./config/tsconfig.json'), - types: resolveTypes(__dirname, ['./types']), - }), - EslintTask.from({ - tsconfig: require.resolve('./config/tsconfig.json'), - configPath: require.resolve('./config/eslintrc.js'), - pluginsPath: __dirname, - extensions: ['.ts', '.tsx', '.js', '.jsx', '.mjs'], - }), - JestTask.from({ - config: require.resolve('./config/jest.config'), - }), - ]); - } -} - -export default new MyReactEnv(); diff --git a/test-data/scope-name/envs/my-react-env/preview/host-dependencies.ts b/test-data/scope-name/envs/my-react-env/preview/host-dependencies.ts deleted file mode 100644 index f21100e..0000000 --- a/test-data/scope-name/envs/my-react-env/preview/host-dependencies.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * dependencies to be bundled only once, in the env preview template, and not in each component preview. - * most of your peer dependencies should be listed here to avoid duplications in the preview. - */ -export default [ - '@teambit/mdx.ui.mdx-scope-context', - '@mdx-js/react', - 'react', - 'react-dom', -]; diff --git a/test-data/scope-name/envs/my-react-env/types/asset.d.ts b/test-data/scope-name/envs/my-react-env/types/asset.d.ts deleted file mode 100644 index 1ddd7a8..0000000 --- a/test-data/scope-name/envs/my-react-env/types/asset.d.ts +++ /dev/null @@ -1,41 +0,0 @@ -declare module '*.png' { - const value: any; - export = value; -} -declare module '*.svg' { - import type { FunctionComponent, SVGProps } from 'react'; - - export const ReactComponent: FunctionComponent< - SVGProps & { title?: string } - >; - const src: string; - export default src; -} -declare module '*.jpg' { - const value: any; - export = value; -} -declare module '*.jpeg' { - const value: any; - export = value; -} -declare module '*.gif' { - const value: any; - export = value; -} -declare module '*.bmp' { - const value: any; - export = value; -} -declare module '*.otf' { - const value: any; - export = value; -} -declare module '*.woff' { - const value: any; - export = value; -} -declare module '*.woff2' { - const value: any; - export = value; -} diff --git a/test-data/scope-name/envs/my-react-env/types/style.d.ts b/test-data/scope-name/envs/my-react-env/types/style.d.ts deleted file mode 100644 index c7a5363..0000000 --- a/test-data/scope-name/envs/my-react-env/types/style.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -declare module '*.module.css' { - const classes: { readonly [key: string]: string }; - export default classes; -} -declare module '*.module.scss' { - const classes: { readonly [key: string]: string }; - export default classes; -} -declare module '*.module.sass' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.module.less' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.less' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.css' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.sass' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.scss' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.mdx' { - const component: any; - export default component; -} diff --git a/test-data/scope-name/get-hello-world/get-hello-world.composition.tsx b/test-data/scope-name/get-hello-world/get-hello-world.composition.tsx deleted file mode 100644 index cbc7ed5..0000000 --- a/test-data/scope-name/get-hello-world/get-hello-world.composition.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { getHelloWorld } from './get-hello-world'; - -export function ReturnsCorrectValue() { - return
{getHelloWorld()}
; -} diff --git a/test-data/scope-name/get-hello-world/get-hello-world.docs.mdx b/test-data/scope-name/get-hello-world/get-hello-world.docs.mdx deleted file mode 100644 index 52dd5c5..0000000 --- a/test-data/scope-name/get-hello-world/get-hello-world.docs.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -description: returns an `hello world` string -labels: ['module', 'hello-world'] ---- - -API: - -```ts -function getHelloWorld(): string; -``` diff --git a/test-data/scope-name/get-hello-world/get-hello-world.spec.ts b/test-data/scope-name/get-hello-world/get-hello-world.spec.ts deleted file mode 100644 index 69cb1d7..0000000 --- a/test-data/scope-name/get-hello-world/get-hello-world.spec.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { getHelloWorld } from './get-hello-world'; - -it('should return the correct value', () => { - expect(getHelloWorld()).toBe('Hello world!'); -}); diff --git a/test-data/scope-name/get-hello-world/get-hello-world.ts b/test-data/scope-name/get-hello-world/get-hello-world.ts deleted file mode 100644 index aeafa60..0000000 --- a/test-data/scope-name/get-hello-world/get-hello-world.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * returns a string with the message "Hello world!". - */ - -export function getHelloWorld() { - return 'Hello world!'; -} diff --git a/test-data/scope-name/get-hello-world/index.ts b/test-data/scope-name/get-hello-world/index.ts deleted file mode 100644 index 766278a..0000000 --- a/test-data/scope-name/get-hello-world/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { getHelloWorld } from './get-hello-world'; diff --git a/test-data/scope-name/hello-world-app/hello-world-app.app-root.tsx b/test-data/scope-name/hello-world-app/hello-world-app.app-root.tsx deleted file mode 100644 index ec17406..0000000 --- a/test-data/scope-name/hello-world-app/hello-world-app.app-root.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import ReactDOM from 'react-dom/client'; -/** - * use the my-org.my-scope/ui/hello-world component. - * Bit automatically adds it to the dependency graph of this component. - * to learn more @see https://bit.dev/getting-started/composing/use-dependencies - */ -import { HelloWorld } from '@org/scope-name.ui.hello-world'; - -/** - * A simple app that renders the HelloWorld component. - */ -export const HelloWorldApp = () => ; - -/* - * A simple app that renders the HelloWorldApp component. - */ -const root = document!.getElementById('root'); -ReactDOM.createRoot(root as HTMLElement).render(); diff --git a/test-data/scope-name/hello-world-app/hello-world-app.compositions.tsx b/test-data/scope-name/hello-world-app/hello-world-app.compositions.tsx deleted file mode 100644 index 4473ee7..0000000 --- a/test-data/scope-name/hello-world-app/hello-world-app.compositions.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { HelloWorldApp } from './hello-world-app.app-root'; - -export const HelloWorldAppBasic = () => { - return ; -}; diff --git a/test-data/scope-name/hello-world-app/hello-world-app.docs.mdx b/test-data/scope-name/hello-world-app/hello-world-app.docs.mdx deleted file mode 100644 index d025777..0000000 --- a/test-data/scope-name/hello-world-app/hello-world-app.docs.mdx +++ /dev/null @@ -1,4 +0,0 @@ ---- -description: a basic hello-world app -labels: ['react', 'app', 'hello-world'] ---- diff --git a/test-data/scope-name/hello-world-app/hello-world-app.react-18-app.cjs b/test-data/scope-name/hello-world-app/hello-world-app.react-18-app.cjs deleted file mode 100644 index 7b371ee..0000000 --- a/test-data/scope-name/hello-world-app/hello-world-app.react-18-app.cjs +++ /dev/null @@ -1,6 +0,0 @@ -const HelloWorldAppApp = { - name: 'hello-world-app', - entry: [require.resolve('./hello-world-app.app-root')], -}; - -module.exports.default = HelloWorldAppApp; diff --git a/test-data/scope-name/hello-world-app/index.ts b/test-data/scope-name/hello-world-app/index.ts deleted file mode 100644 index 5d998d6..0000000 --- a/test-data/scope-name/hello-world-app/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -/** - * this is the component's main file. to learn more, @see https://bit.dev/reference/components/component-main-file - */ -export { HelloWorldApp } from './hello-world-app.app-root'; diff --git a/test-data/scope-name/ui/hello-world/hello-world.composition.tsx b/test-data/scope-name/ui/hello-world/hello-world.composition.tsx deleted file mode 100644 index 64f0e2f..0000000 --- a/test-data/scope-name/ui/hello-world/hello-world.composition.tsx +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import { HelloWorld } from './hello-world'; - -export const BasicHelloWorld = () => { - return ; -}; diff --git a/test-data/scope-name/ui/hello-world/hello-world.docs.mdx b/test-data/scope-name/ui/hello-world/hello-world.docs.mdx deleted file mode 100644 index b0deb11..0000000 --- a/test-data/scope-name/ui/hello-world/hello-world.docs.mdx +++ /dev/null @@ -1,4 +0,0 @@ ---- -description: renders ’hello world -labels: ['react', 'hello-world'] ---- diff --git a/test-data/scope-name/ui/hello-world/hello-world.spec.tsx b/test-data/scope-name/ui/hello-world/hello-world.spec.tsx deleted file mode 100644 index 52885a0..0000000 --- a/test-data/scope-name/ui/hello-world/hello-world.spec.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import { render } from '@testing-library/react'; -import { BasicHelloWorld } from './hello-world.composition'; - -it('should render with the correct text', () => { - const { getByText } = render(); - const rendered = getByText('Hello world!'); - expect(rendered).toBeTruthy(); -}); diff --git a/test-data/scope-name/ui/hello-world/hello-world.tsx b/test-data/scope-name/ui/hello-world/hello-world.tsx deleted file mode 100644 index 89159a5..0000000 --- a/test-data/scope-name/ui/hello-world/hello-world.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react'; -import { getHelloWorld } from '@org/scope-name.get-hello-world'; - -/** - * A function component that returns a div with the text "Hello World" - */ - -export function HelloWorld() { - return
{getHelloWorld()}
; -} diff --git a/test-data/scope-name/ui/hello-world/index.ts b/test-data/scope-name/ui/hello-world/index.ts deleted file mode 100644 index 346853c..0000000 --- a/test-data/scope-name/ui/hello-world/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { HelloWorld } from './hello-world'; diff --git a/test-data/scope/get-message/get-message.composition.tsx b/test-data/scope/get-message/get-message.composition.tsx new file mode 100644 index 0000000..61c1272 --- /dev/null +++ b/test-data/scope/get-message/get-message.composition.tsx @@ -0,0 +1,7 @@ +import { GetMessage } from './get-message.js'; + +export const BasicGetMessage = () => { + return ( + hello world! + ); +} diff --git a/test-data/scope/get-message/get-message.docs.mdx b/test-data/scope/get-message/get-message.docs.mdx new file mode 100644 index 0000000..44b3fda --- /dev/null +++ b/test-data/scope/get-message/get-message.docs.mdx @@ -0,0 +1,19 @@ +--- +description: A GetMessage component. +--- + +import { GetMessage } from './get-message'; + +## Basic usage + +Use the get message component: + +```js + +``` + +### Display the text + +```js live +Hello world! +``` diff --git a/test-data/scope/get-message/get-message.spec.tsx b/test-data/scope/get-message/get-message.spec.tsx new file mode 100644 index 0000000..5722540 --- /dev/null +++ b/test-data/scope/get-message/get-message.spec.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import { render } from '@testing-library/react'; +import { BasicGetMessage } from './get-message.composition.js'; + +it('should render the correct text', () => { + const { getByText } = render(); + const rendered = getByText('hello world!'); + expect(rendered).toBeTruthy(); +}); diff --git a/test-data/scope/get-message/get-message.tsx b/test-data/scope/get-message/get-message.tsx new file mode 100644 index 0000000..a612a63 --- /dev/null +++ b/test-data/scope/get-message/get-message.tsx @@ -0,0 +1,16 @@ +import type { ReactNode } from 'react'; + +export type GetMessageProps = { + /** + * sets the component children. + */ + children?: ReactNode; +}; + +export function GetMessage({ children }: GetMessageProps) { + return ( +
+ {children} +
+ ); +} diff --git a/test-data/scope/get-message/index.ts b/test-data/scope/get-message/index.ts new file mode 100644 index 0000000..1c32b0f --- /dev/null +++ b/test-data/scope/get-message/index.ts @@ -0,0 +1,2 @@ +export { GetMessage } from './get-message.js'; +export type { GetMessageProps } from './get-message.js'; diff --git a/test-data/scope/my-app/index.html b/test-data/scope/my-app/index.html new file mode 100644 index 0000000..d838899 --- /dev/null +++ b/test-data/scope/my-app/index.html @@ -0,0 +1,14 @@ + + + + + + + + + Bit + React + Vite + + +
+ + diff --git a/test-data/scope/my-app/index.ts b/test-data/scope/my-app/index.ts new file mode 100644 index 0000000..5b6c7a1 --- /dev/null +++ b/test-data/scope/my-app/index.ts @@ -0,0 +1,2 @@ +// export the app component for potential reuse. +export { MyApp } from "./my-app.js"; diff --git a/test-data/scope/my-app/my-app.app-root.tsx b/test-data/scope/my-app/my-app.app-root.tsx new file mode 100644 index 0000000..e216948 --- /dev/null +++ b/test-data/scope/my-app/my-app.app-root.tsx @@ -0,0 +1,33 @@ +import { BrowserRouter } from 'react-router-dom'; +import { + createRoot, + // hydrateRoot +} from 'react-dom/client'; +import { MyApp } from "./my-app.js"; + +/** + * comment this in for server-side rendering (ssr) and comment + * out of the root.render() invocation below. +*/ +// hydrateRoot( +// document.getElementById("root") as HTMLElement, +// +// +// +// ); + +if (import.meta.hot) { + import.meta.hot.accept(); +} + +/** + * mounting for client side rendering. + */ +const container = document.getElementById('root'); +const root = createRoot(container!); + +root.render( + + + +); \ No newline at end of file diff --git a/test-data/scope/my-app/my-app.bit-app.ts b/test-data/scope/my-app/my-app.bit-app.ts new file mode 100644 index 0000000..28d6b1c --- /dev/null +++ b/test-data/scope/my-app/my-app.bit-app.ts @@ -0,0 +1,59 @@ +import { ViteReact } from '@bitdev/react.app-types.vite-react'; + +export default ViteReact.from({ + /** + * name of your app. + */ + name: 'my-app', + + /** + * determine whether to use ssr mode or not. + */ + ssr: false, + + /** + * vite config for the browser target. + * looks for vite.config.mjs and vite.config.js by default. + * use a vite.config.mjs file if mjs is required. + */ + // viteConfigPath: 'vite.config.js' + + /** + * name of the bit artifact of persist. + * this later can be fetched, and used for deployment and execution. + */ + // artifactName: 'app-bundle', + + /** + * pipeline for deployment of the app. + */ + // deploy: (context) => {}, + + /** + * configure port range for the dev server to use. + */ + // portRange: [3000, 3200], + + /** + * vite config for the express server target. + */ + // viteServerBuildConfigPath: 'vite-server.config.js', + + /** + * configure the server app root filename. + * defaults to: "server.app-root" + */ + // serverRoot: 'server.app-root', + + /** + * peer dependencies to alias from the app component dependencies. + * ensures a single instance for the dependency across the app graph. + */ + // peers: [ + // 'react', + // 'react-dom', + // 'react-router-dom', + // 'graphql', + // '@apollo/client' + // ], +}); diff --git a/test-data/scope/my-app/my-app.composition.tsx b/test-data/scope/my-app/my-app.composition.tsx new file mode 100644 index 0000000..f52630f --- /dev/null +++ b/test-data/scope/my-app/my-app.composition.tsx @@ -0,0 +1,10 @@ +import { MemoryRouter } from 'react-router-dom'; +import { MyApp } from "./my-app.js"; + +export const MyAppBasic = () => { + return ( + + + + ); +} \ No newline at end of file diff --git a/test-data/scope/my-app/my-app.docs.mdx b/test-data/scope/my-app/my-app.docs.mdx new file mode 100644 index 0000000..3d36315 --- /dev/null +++ b/test-data/scope/my-app/my-app.docs.mdx @@ -0,0 +1,20 @@ +--- +description: 'A my-app app.' +labels: ['app', 'react'] +--- + +A React application for my-app. + +## Run the application + +Import the app and add the following config to your workspace.jsonc: + +``` +bit use my-app +``` + +To run the app locally, run the following: + +``` +bit run my-app +``` diff --git a/test-data/scope/my-app/my-app.tsx b/test-data/scope/my-app/my-app.tsx new file mode 100644 index 0000000..e5fe78a --- /dev/null +++ b/test-data/scope/my-app/my-app.tsx @@ -0,0 +1,10 @@ +import { Routes, Route } from 'react-router-dom'; +import { GetMessage } from '@acme/scope.get-message'; + +export function MyApp() { + return ( + + Hello World!
} /> + + ); +} \ No newline at end of file diff --git a/test-data/scope/my-app/server.app-root.tsx b/test-data/scope/my-app/server.app-root.tsx new file mode 100644 index 0000000..00a92ef --- /dev/null +++ b/test-data/scope/my-app/server.app-root.tsx @@ -0,0 +1,23 @@ +import ReactDOMServer from "react-dom/server"; +import { StaticRouter } from "react-router-dom/server.js"; +import { MyApp } from "./my-app.js"; + +interface IRenderProps { + path: string; +} + +export const render = async ({ path }: IRenderProps) => { + return ReactDOMServer.renderToString( + + + + ); +}; + +/** + * implement loadScripts() to inject scripts to the head + * during SSR. + */ +// export const loadScripts = async () => { +// return ''; +// } diff --git a/test-data/scope/my-app/vite.config.js b/test-data/scope/my-app/vite.config.js new file mode 100644 index 0000000..02f45d6 --- /dev/null +++ b/test-data/scope/my-app/vite.config.js @@ -0,0 +1,6 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()] +}); diff --git a/test-data/scope/my-env/.eslintrc.json b/test-data/scope/my-env/.eslintrc.json new file mode 100644 index 0000000..fd5a8b6 --- /dev/null +++ b/test-data/scope/my-env/.eslintrc.json @@ -0,0 +1,6 @@ +// bit-generated-eslint-config +{ + "extends": [ + "./../../node_modules/.cache/.eslintrc.bit.2b9d34b55ad4a22a1587fc7fdc4789962ff1b719.json" + ] +} \ No newline at end of file diff --git a/test-data/scope-name/envs/my-react-env/config/eslintrc.js b/test-data/scope/my-env/config/eslintrc.cjs similarity index 50% rename from test-data/scope-name/envs/my-react-env/config/eslintrc.js rename to test-data/scope/my-env/config/eslintrc.cjs index 7dad156..14ea428 100644 --- a/test-data/scope-name/envs/my-react-env/config/eslintrc.js +++ b/test-data/scope/my-env/config/eslintrc.cjs @@ -2,5 +2,5 @@ * @see https://bit.dev/reference/eslint/eslint-config */ module.exports = { - extends: [require.resolve('@teambit/react.react-env/config/eslintrc')], -}; + extends: [require.resolve('@bitdev/react.react-env/config/eslintrc.cjs')], +}; \ No newline at end of file diff --git a/test-data/scope-name/envs/my-react-env/config/prettier.config.js b/test-data/scope/my-env/config/prettier.config.cjs similarity index 55% rename from test-data/scope-name/envs/my-react-env/config/prettier.config.js rename to test-data/scope/my-env/config/prettier.config.cjs index a1dd06c..027fd72 100644 --- a/test-data/scope-name/envs/my-react-env/config/prettier.config.js +++ b/test-data/scope/my-env/config/prettier.config.cjs @@ -1,8 +1,8 @@ /** * @see https://bit.dev/reference/prettier/prettier-config */ -const { prettierConfig } = require('@teambit/react.react-env'); +const prettierConfig = require('@bitdev/react.react-env/config/prettier.config.cjs'); module.exports = { ...prettierConfig, -}; +}; \ No newline at end of file diff --git a/test-data/scope/my-env/config/tsconfig.json b/test-data/scope/my-env/config/tsconfig.json new file mode 100644 index 0000000..cd3e8b4 --- /dev/null +++ b/test-data/scope/my-env/config/tsconfig.json @@ -0,0 +1,8 @@ +/** + * @see https://bit.dev/reference/typescript/typescript-config + */ +{ + "extends": "@bitdev/react.react-env/config/tsconfig.json", + "exclude": ["artifacts", "public", "dist", "node_modules", "package.json", "**/*.cjs"], + "include": ["**/*", "**/*.json"] +} \ No newline at end of file diff --git a/test-data/scope/my-env/config/vite.config.mjs b/test-data/scope/my-env/config/vite.config.mjs new file mode 100644 index 0000000..f75323f --- /dev/null +++ b/test-data/scope/my-env/config/vite.config.mjs @@ -0,0 +1,4 @@ +import { defineConfig } from 'vite'; + +export default defineConfig({ +}); diff --git a/test-data/scope/my-env/config/vitest.config.mjs b/test-data/scope/my-env/config/vitest.config.mjs new file mode 100644 index 0000000..1634ec9 --- /dev/null +++ b/test-data/scope/my-env/config/vitest.config.mjs @@ -0,0 +1,10 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + test: { + globals: true, + environment: 'jsdom', + setupFiles: [import.meta.resolve('./vitest.setup.mjs')],}, +}); diff --git a/test-data/scope/my-env/config/vitest.setup.mjs b/test-data/scope/my-env/config/vitest.setup.mjs new file mode 100644 index 0000000..2f641cb --- /dev/null +++ b/test-data/scope/my-env/config/vitest.setup.mjs @@ -0,0 +1,2 @@ +import '@testing-library/jest-dom'; +import '@testing-library/jest-dom/vitest'; diff --git a/test-data/scope/my-env/env.jsonc b/test-data/scope/my-env/env.jsonc new file mode 100644 index 0000000..77b9d8d --- /dev/null +++ b/test-data/scope/my-env/env.jsonc @@ -0,0 +1,3 @@ +{ + "extends": "@bitdev/react.react-env" +} diff --git a/test-data/scope/my-env/index.ts b/test-data/scope/my-env/index.ts new file mode 100644 index 0000000..26eb608 --- /dev/null +++ b/test-data/scope/my-env/index.ts @@ -0,0 +1,4 @@ +import { MyEnv } from './my-env.bit-env.js'; + +export { MyEnv }; +export default MyEnv; \ No newline at end of file diff --git a/test-data/scope/my-env/my-env.bit-env.ts b/test-data/scope/my-env/my-env.bit-env.ts new file mode 100644 index 0000000..8ec584d --- /dev/null +++ b/test-data/scope/my-env/my-env.bit-env.ts @@ -0,0 +1,43 @@ +/** +* This env uses bitdev.react/react-env, inspect it's config and API - https://bit.cloud/bitdev/react/react-env +* Learn more on how you can customize your env here - https://bit.dev/docs/react-env/set-up-your-env +*/ +import { ReactEnv } from '@bitdev/react.react-env'; +import { createRequire } from 'node:module'; +import { dirname } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const esmRequire = createRequire(import.meta.url); + +export class MyEnv extends ReactEnv { + + /* a shorthand name for the env */ + name = 'my-env'; + + /* Typescript config. Learn how to replace compiler - https://bit.dev/reference/compiling/set-up-compiler */ + protected tsconfigPath = esmRequire.resolve('./config/tsconfig.json'); + + protected tsTypesPath = './types'; + + /* ESLint config. Learn how to replace linter - https://bit.dev/reference/linting/set-up-linter */ + protected eslintConfigPath = esmRequire.resolve('./config/eslintrc.cjs'); + + /* Prettier config. Learn how to replace formatter - https://bit.dev/reference/formatting/set-up-formatter */ + protected prettierConfigPath = esmRequire.resolve('./config/prettier.config.cjs'); + + /* Vitest config. Learn how to replace tester - https://bit.dev/reference/testing/set-up-tester */ + protected vitestConfigPath = esmRequire.resolve('./config/vitest.config.mjs'); + + /* component mounting and dev-server config. Learn how to replace dev-server - https://bit.dev/reference/preview/setup-preview */ + protected previewMounter = esmRequire.resolve('./preview/mounter.js'); + + /* component docs template. Learn how to replace dev-server - https://bit.dev/reference/preview/setup-preview */ + protected previewDocsTemplate = esmRequire.resolve('./preview/docs.js'); + + /* Vite config for the preview. */ + protected previewViteConfig = esmRequire.resolve('./config/vite.config.mjs'); + + protected dirName = dirname(fileURLToPath(import.meta.url)); +} + +export default new MyEnv(); diff --git a/test-data/scope/my-env/my-env.docs.mdx b/test-data/scope/my-env/my-env.docs.mdx new file mode 100644 index 0000000..efe9777 --- /dev/null +++ b/test-data/scope/my-env/my-env.docs.mdx @@ -0,0 +1,58 @@ +--- +description: 'A React development environment.' +labels: ['env', 'react', 'dev', 'vite', 'jest', 'webpack'] +--- + +A reusable development environment for React. +Use the React environment to create new React components and apps. + +Features: +- ▢️ TypeScript +- πŸ§ͺ Vitest +- πŸ§‘β€πŸ’» Generator templates include React UI component, React hook and apps (including Vite + SSR). +- πŸš€ React Workspace starter +- πŸ¦‹ ESLint +- βš’οΈ A React optimized build pipeline. +- πŸ‘“ React Preview + +## Use in existing workspaces + +Add the development env to your generator configuration on `workspace.jsonc`. + +```json +{ + "teambit.generator/generator": { + "envs": [ + "my-scope/my-env" + ] + } +} +``` + +You can see the generator templates in your workspace using `bit templates`. + +## Use on an existing component + +Use this dev environment on your existing components, by running the following command: + +``` +bit env set my-component my-scope/my-env +``` + + +## Create a React workspace + +You can create a new React workspace made from this env using the following command: + +``` +bit new react my-workspace --aspect my-scope/my-env +``` + +## Compose your own env + +You can base on this env, and customize it to your needs. To create your env run this command: +``` +bit create react-env my-new-env +``` + +Make sure your new environment class extends this env class and overrides the needed class methods. diff --git a/test-data/scope/my-env/preview/docs.tsx b/test-data/scope/my-env/preview/docs.tsx new file mode 100644 index 0000000..d0451d3 --- /dev/null +++ b/test-data/scope/my-env/preview/docs.tsx @@ -0,0 +1,8 @@ +import React from 'react'; +import { createDocsTemplate } from '@bitdev/react.preview.react-docs-template'; + +/** + * customize the bit documentation template or + * replace this with one of your own. + */ +export default createDocsTemplate(); diff --git a/test-data/scope-name/envs/my-react-env/preview/mounter.tsx b/test-data/scope/my-env/preview/mounter.tsx similarity index 100% rename from test-data/scope-name/envs/my-react-env/preview/mounter.tsx rename to test-data/scope/my-env/preview/mounter.tsx diff --git a/test-data/scope/my-env/tsconfig.json b/test-data/scope/my-env/tsconfig.json new file mode 100644 index 0000000..eab02ac --- /dev/null +++ b/test-data/scope/my-env/tsconfig.json @@ -0,0 +1,5 @@ +// bit-generated-typescript-config + +{ + "extends": "./../../node_modules/.cache/tsconfig.bit.26bc1c6fc92a3806d700afa60baf8fa9f182298f.json" +} \ No newline at end of file diff --git a/test-data/scope/my-env/types/env.d.ts b/test-data/scope/my-env/types/env.d.ts new file mode 100644 index 0000000..a1f0079 --- /dev/null +++ b/test-data/scope/my-env/types/env.d.ts @@ -0,0 +1,16 @@ + +/// + +export type ImportMetaEnv = Record; + +interface ImportMeta { + readonly env: ImportMetaEnv +} + +declare global { + namespace NodeJS { + interface ProcessEnv { + [key: string]: string; + } + } +} \ No newline at end of file diff --git a/test-data/tsconfig.json b/test-data/tsconfig.json index b9a0c94..d047d39 100644 --- a/test-data/tsconfig.json +++ b/test-data/tsconfig.json @@ -1,10 +1,5 @@ +// bit-generated-typescript-config { - "extends": "./node_modules/@teambit/react/typescript/tsconfig.json", - // "include": [], - "compilerOptions": { - "noEmit": true - }, - "exclude": [ - "dist" - ] + "extends": "./node_modules/.cache/tsconfig.bit.fe7102b0aa96dc7364d3813a86bb6186c63633f4.json", + "compilerOptions": {} } \ No newline at end of file diff --git a/test-data/types/asset.d.ts b/test-data/types/asset.d.ts deleted file mode 100644 index ead9abc..0000000 --- a/test-data/types/asset.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -declare module '*.png' { - const value: any; - export = value; -} -declare module '*.svg' { - import type { FunctionComponent, SVGProps } from 'react'; - - export const ReactComponent: FunctionComponent & { title?: string }>; - const src: string; - export default src; -} -declare module '*.jpg' { - const value: any; - export = value; -} -declare module '*.jpeg' { - const value: any; - export = value; -} -declare module '*.gif' { - const value: any; - export = value; -} -declare module '*.bmp' { - const value: any; - export = value; -} diff --git a/test-data/types/style.d.ts b/test-data/types/style.d.ts deleted file mode 100644 index c7a5363..0000000 --- a/test-data/types/style.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -declare module '*.module.css' { - const classes: { readonly [key: string]: string }; - export default classes; -} -declare module '*.module.scss' { - const classes: { readonly [key: string]: string }; - export default classes; -} -declare module '*.module.sass' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.module.less' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.less' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.css' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.sass' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.scss' { - const classes: { readonly [key: string]: string }; - export default classes; -} - -declare module '*.mdx' { - const component: any; - export default component; -} diff --git a/test-data/workspace.jsonc b/test-data/workspace.jsonc index 5e63180..f413de0 100644 --- a/test-data/workspace.jsonc +++ b/test-data/workspace.jsonc @@ -1,94 +1,55 @@ /** * this is the main configuration file of your bit workspace. - * for full documentation, please see: https://bit.dev/docs/workspace/workspace-configuration + * for full documentation, please see: https://bit.dev/reference/workspace/workspace-json **/{ "$schema": "https://static.bit.dev/teambit/schemas/schema.json", /** * main configuration of the Bit workspace. **/ "teambit.workspace/workspace": { - /** - * the name of the component workspace. used for development purposes. - **/ "name": "test-data", - /** - * set the icon to be shown on the Bit server. - **/ - "icon": "https://static.bit.dev/bit-logo.svg", - /** - * default directory to place a component during `bit import` and `bit create`. - * the following placeholders are available: - * name - component name includes namespace, e.g. 'ui/button'. - * scopeId - full scope-id includes the owner, e.g. 'teambit.compilation'. - * scope - scope name only, e.g. 'compilation'. - * owner - owner name in bit.dev, e.g. 'teambit'. - **/ + "icon": "https://static.bit.dev/brands/bit-logo-min.png", "defaultDirectory": "{scope}/{name}", - /** - * default scope for all components in workspace. - **/ - "defaultScope": "org.scope-name" + "defaultScope": "acme.scope", + "resolveAspectsFromNodeModules": true, + "resolveEnvsFromRoots": true + }, + /** + * Enable generator templates by uncommenting the desired environments below. + * These generators scaffold components for Node, React, Vue, and Angular. + * After uncommenting, run `bit install` to make them available in your workspace. + * Explore more dev environments at: https://bit.dev/docs/getting-started/composing/dev-environments + **/ + "teambit.generator/generator": { + "envs": [ + "bitdev.node/node-env", + "bitdev.react/react-env" + // "bitdev.vue/vue-env", + // "bitdev.angular/angular-env" + // "bitdev.symphony/envs/symphony-env" + ] }, /** * main configuration for component dependency resolution. **/ "teambit.dependencies/dependency-resolver": { - "packageManager": "teambit.dependencies/pnpm", "policy": { "dependencies": { - "@teambit/defender.eslint-linter": "0.0.10", - "@teambit/defender.jest-tester": "0.0.10", - "@teambit/defender.prettier-formatter": "0.0.6", - "@teambit/dependencies.modules.packages-excluder": "0.0.70", - "@teambit/eslint-config-bit-react": "~0.0.367", - "@teambit/mdx.ui.mdx-scope-context": "0.0.496", - "@teambit/node.node": "0.0.38", - "@teambit/preview.react-preview": "0.0.35", - "@teambit/react.mounter": "0.0.10", - "@teambit/react.react-env": "0.0.68", - "@teambit/typescript.typescript-compiler": "2.0.16", - "@typescript-eslint/eslint-plugin": "4.29.3", - "eslint-import-resolver-node": "0.3.6", - "eslint-plugin-import": "2.22.1", - "eslint-plugin-jest": "24.4.0", - "eslint-plugin-jsx-a11y": "6.4.1", - "eslint-plugin-mdx": "1.15.0", - "eslint-plugin-react": "7.25.1" + "@bitdev/react.app-types.vite-react": "^2.1.7", + "@bitdev/react.preview.react-docs-template": "^0.0.7", + "@bitdev/react.react-env": "^4.1.9", + "@teambit/react.mounter": "^1.0.49", + "@vitejs/plugin-react": "^4.6.0" }, - "peerDependencies": { - "@apollo/client": "3.6.9", - "@testing-library/react": "^12.1.5", - "@testing-library/react-hooks": "^8.0.0", - "graphql": "^14.3.0", - "react": "^18.0.0", - "react-dom": "^18.0.0", - "react-router-dom": "^6.0.0", - "subscriptions-transport-ws": "^0.11.0" - } + "peerDependencies": {} }, "linkCoreAspects": true, "rootComponents": true }, - /** - * workspace variants allow to set different subsets of configuration for components in your - * workspace. this is extremely useful for upgrading, aligning and building components with a new - * set of dependencies. a rule can be a directory or a component-id/namespace, in which case, - * wrap the rule with curly brackets (e.g. `"{ui/*}": {}`) - * see https://bit.dev/docs/workspace/variants for more info. - **/ - "teambit.workspace/variants": { - /** - * "*" is a special rule which applied on all components in the workspace. - **/ - "*": { - /** - * uncomment to apply the chosen environment on all components. - **/ - // "teambit.react/react": { } - } + "teambit.workspace/workspace-config-files": { + "enableWorkspaceConfigWrite": true }, - "org.scope-name/hello-world-app": {}, "teambit.harmony/bit": { - "engine": "1.11.43" + "engine": "1.11.42" } }