diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bd69ec5286b..b831f46d219b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -209,9 +209,12 @@ jobs: - name: Install run: | yarn install - - name: Downgrade Jest for node <= 10 + - name: Downgrade Jest and Babel for node <= 10 if: matrix.node-version == '6' || matrix.node-version == '8' || matrix.node-version == '10' run: | + # It's a bit sarcastic that in this scenario bump-babel-dependencies.js + # actually downgrades the root `@babel/*` deps from 8.0 alpha to 7 + node ./scripts/integration-tests/utils/bump-babel-dependencies.js yarn up jest@24 # Deduplicate dependencies, because duplicate copies of graceful-fs cause # problems with the "path" module: https://github.com/facebook/jest/issues/9656 diff --git a/babel.config.js b/babel.config.js index eb773b76945a..e5ae6f6c0c83 100644 --- a/babel.config.js +++ b/babel.config.js @@ -11,7 +11,6 @@ if ( const pathUtils = require("path"); const fs = require("fs"); -const { parseSync } = require("@babel/core"); function normalize(src) { return src.replace(/\//, pathUtils.sep); @@ -40,6 +39,14 @@ module.exports = function (api) { ], }; + const presetTsOpts = { + onlyRemoveTypeImports: true, + optimizeConstEnums: true, + }; + if (api.version.startsWith("7") && !bool(process.env.BABEL_8_BREAKING)) { + presetTsOpts.allowDeclareFields = true; + } + // These are "safe" assumptions, that we can enable globally const assumptions = { constantSuper: true, @@ -178,14 +185,7 @@ module.exports = function (api) { presets: [ // presets are applied from right to left ["@babel/env", envOpts], - [ - "@babel/preset-typescript", - { - onlyRemoveTypeImports: true, - allowDeclareFields: true, - optimizeConstEnums: true, - }, - ], + ["@babel/preset-typescript", presetTsOpts], ], plugins: [ ["@babel/transform-object-rest-spread", { useBuiltIns: true }], @@ -829,11 +829,13 @@ function pluginAddImportExtension(api, { when }) { }; } -const tokenTypesMapping = new Map(); -const tokenTypeSourcePath = "./packages/babel-parser/src/tokenizer/types.ts"; - -function getTokenTypesMapping() { - if (tokenTypesMapping.size === 0) { +function pluginBabelParserTokenType({ + parseSync, + types: { isIdentifier, numericLiteral }, +}) { + const tokenTypeSourcePath = "./packages/babel-parser/src/tokenizer/types.ts"; + function getTokenTypesMapping() { + const tokenTypesMapping = new Map(); const tokenTypesAst = parseSync( fs.readFileSync(tokenTypeSourcePath, { encoding: "utf-8", @@ -867,13 +869,10 @@ function getTokenTypesMapping() { for (let i = 0; i < tokenTypesDefinition.length; i++) { tokenTypesMapping.set(tokenTypesDefinition[i].key.name, i); } + return tokenTypesMapping; } - return tokenTypesMapping; -} -function pluginBabelParserTokenType({ - types: { isIdentifier, numericLiteral }, -}) { + const tokenTypesMapping = getTokenTypesMapping(); return { visitor: { MemberExpression(path) { @@ -884,7 +883,7 @@ function pluginBabelParserTokenType({ !node.computed ) { const tokenName = node.property.name; - const tokenType = getTokenTypesMapping().get(node.property.name); + const tokenType = tokenTypesMapping.get(node.property.name); if (tokenType === undefined) { throw path.buildCodeFrameError( `${tokenName} is not defined in ${tokenTypeSourcePath}` diff --git a/package.json b/package.json index b051c56bb24a..b5b3ca6417ad 100644 --- a/package.json +++ b/package.json @@ -21,20 +21,20 @@ "packageManager": "yarn@3.6.1", "devDependencies": { "$repo-utils": "link:./scripts/repo-utils", - "@babel/cli": "^7.22.9", - "@babel/core": "^7.22.9", + "@babel/cli": "8.0.0-alpha.2", + "@babel/core": "8.0.0-alpha.2", "@babel/eslint-config-internal": "workspace:^", "@babel/eslint-parser": "workspace:^", "@babel/eslint-plugin-development": "workspace:^", "@babel/eslint-plugin-development-internal": "workspace:^", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-runtime": "^7.22.9", - "@babel/preset-env": "^7.22.9", - "@babel/preset-typescript": "^7.22.5", - "@babel/runtime": "^7.22.6", + "@babel/plugin-transform-dynamic-import": "8.0.0-alpha.2", + "@babel/plugin-transform-export-namespace-from": "8.0.0-alpha.2", + "@babel/plugin-transform-modules-commonjs": "8.0.0-alpha.2", + "@babel/plugin-transform-object-rest-spread": "8.0.0-alpha.2", + "@babel/plugin-transform-runtime": "8.0.0-alpha.2", + "@babel/preset-env": "8.0.0-alpha.2", + "@babel/preset-typescript": "8.0.0-alpha.2", + "@babel/runtime": "8.0.0-alpha.2", "@eslint/eslintrc": "^2.1.0", "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-commonjs": "^24.1.0", diff --git a/yarn.lock b/yarn.lock index f15a84b25e42..035f3b43634d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -200,30 +200,26 @@ __metadata: languageName: unknown linkType: soft -"@babel/cli@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/cli@npm:7.22.9" +"@babel/cli@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/cli@npm:8.0.0-alpha.2" dependencies: "@jridgewell/trace-mapping": ^0.3.17 - "@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3 chokidar: ^3.4.0 commander: ^4.0.1 convert-source-map: ^1.1.0 fs-readdir-recursive: ^1.1.0 glob: ^7.2.0 - make-dir: ^2.1.0 - slash: ^2.0.0 + slash: ^3.0.0 peerDependencies: - "@babel/core": ^7.0.0-0 + "@babel/core": ^8.0.0-alpha.2 dependenciesMeta: - "@nicolo-ribaudo/chokidar-2": - optional: true chokidar: optional: true bin: - babel: ./bin/babel.js - babel-external-helpers: ./bin/babel-external-helpers.js - checksum: 6acc76e521f8d657d8a85ff27387149b415507095911356417c7d26c456685153c76924bd5469f2ff026e83b65091df22d2066f1f403aeed82c4762611d9a9da + babel: ./bin/babel.mjs + babel-external-helpers: ./bin/babel-external-helpers.mjs + checksum: 9a8baf0641b71af3922fe86e0b955c994463d5740f49dec41550d56c5b3b2e67d764c97c1cfe36e4cb54beb8a3fc52ab8aad52083ec9e739c22e7ce7b32399b8 languageName: node linkType: hard @@ -277,6 +273,16 @@ __metadata: languageName: node linkType: hard +"@babel/code-frame@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/code-frame@npm:8.0.0-alpha.2" + dependencies: + "@babel/highlight": ^8.0.0-alpha.2 + chalk: ^4.1.2 + checksum: 6873305bd940e8cb4344cd95554a87ab15aad565f2750b9148f0a1fe3a46a326d942fab9f79be8146a67d8f2afd30cc4d2bd9a0e687b4ee782a0a75e7accd25a + languageName: node + linkType: hard + "@babel/code-frame@workspace:^, @babel/code-frame@workspace:packages/babel-code-frame": version: 0.0.0-use.local resolution: "@babel/code-frame@workspace:packages/babel-code-frame" @@ -287,13 +293,20 @@ __metadata: languageName: unknown linkType: soft -"@babel/compat-data@npm:^7.20.0, @babel/compat-data@npm:^7.22.5, @babel/compat-data@npm:^7.22.9": +"@babel/compat-data@npm:^7.20.0, @babel/compat-data@npm:^7.22.9": version: 7.22.9 resolution: "@babel/compat-data@npm:7.22.9" checksum: bed77d9044ce948b4327b30dd0de0779fa9f3a7ed1f2d31638714ed00229fa71fc4d1617ae0eb1fad419338d3658d0e9a5a083297451e09e73e078d0347ff808 languageName: node linkType: hard +"@babel/compat-data@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/compat-data@npm:8.0.0-alpha.2" + checksum: 36d53c3a2749b28c7647c8086c6651075a8e2df4c11c032977031279e4927f2d062ca48a4a6b6c18a9226d862ec0e1f1e0725640ab8d3ba0b03ba09373a1c794 + languageName: node + linkType: hard + "@babel/compat-data@workspace:*, @babel/compat-data@workspace:^, @babel/compat-data@workspace:packages/babel-compat-data": version: 0.0.0-use.local resolution: "@babel/compat-data@workspace:packages/babel-compat-data" @@ -328,7 +341,35 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.22.9": +"@babel/core@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/core@npm:8.0.0-alpha.2" + dependencies: + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^8.0.0-alpha.2 + "@babel/generator": ^8.0.0-alpha.2 + "@babel/helper-compilation-targets": ^8.0.0-alpha.2 + "@babel/helper-module-transforms": ^8.0.0-alpha.2 + "@babel/helpers": ^8.0.0-alpha.2 + "@babel/parser": ^8.0.0-alpha.2 + "@babel/template": ^8.0.0-alpha.2 + "@babel/traverse": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.2 + semver: ^7.3.4 + peerDependencies: + "@babel/preset-typescript": ^7.21.4 || ^8.0.0-0 + peerDependenciesMeta: + "@babel/preset-typescript": + optional: true + checksum: ade766e1160b9c09e8ff1b509b63ba17393408d0aa3f499474218c7345dc270344ee05ce4144733357f2bfe37b7685a203a798c1d43194f7f780c4623f46536f + languageName: node + linkType: hard + +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3": version: 7.22.9 resolution: "@babel/core@npm:7.22.9" dependencies: @@ -492,6 +533,18 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/generator@npm:8.0.0-alpha.2" + dependencies: + "@babel/types": ^8.0.0-alpha.2 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 + jsesc: ^3.0.2 + checksum: 5ba25991edef7b4fb91a009b42ca8ece8236cfa3c09a7359819eb61a4b5435928f8ad0ac7c24c6591d6fce0cd71ed7df0b5a713c0b5496553dc18edf5487234f + languageName: node + linkType: hard + "@babel/generator@workspace:^, @babel/generator@workspace:packages/babel-generator": version: 0.0.0-use.local resolution: "@babel/generator@workspace:packages/babel-generator" @@ -508,12 +561,12 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-annotate-as-pure@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" +"@babel/helper-annotate-as-pure@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-annotate-as-pure@npm:8.0.0-alpha.2" dependencies: - "@babel/types": ^7.22.5 - checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d + "@babel/types": ^8.0.0-alpha.2 + checksum: ce157f75b794c30c8aab48426bf6a7d2f7463f637c79b184e9b00ac338bbdd87e17758131e89bb5746b6827c134c67c45278e3048fa1a1e6b812fb6306029010 languageName: node linkType: hard @@ -525,12 +578,12 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.5" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:8.0.0-alpha.2" dependencies: - "@babel/types": ^7.22.5 - checksum: d753acac62399fc6dd354cf1b9441bde0c331c2fe792a4c14904c5e5eafc3cac79478f6aa038e8a51c1148b0af6710a2e619855e4b5d54497ac972eaffed5884 + "@babel/types": ^8.0.0-alpha.2 + checksum: b6507dba1e2671b39a336fcd6b99e23e60c9403311451e802964da93164e97f60e312ee3836583902f03b8aab5404b1afe76432ea15927febf226ed5595119e6 languageName: node linkType: hard @@ -563,7 +616,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-compilation-targets@npm:^7.18.2, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.22.9": +"@babel/helper-compilation-targets@npm:^7.18.2, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.22.9": version: 7.22.9 resolution: "@babel/helper-compilation-targets@npm:7.22.9" dependencies: @@ -578,6 +631,19 @@ __metadata: languageName: node linkType: hard +"@babel/helper-compilation-targets@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-compilation-targets@npm:8.0.0-alpha.2" + dependencies: + "@babel/compat-data": ^8.0.0-alpha.2 + "@babel/helper-validator-option": ^8.0.0-alpha.2 + browserslist: ^4.21.9 + lru-cache: ^7.14.1 + semver: ^7.3.4 + checksum: 018432f2a0150ac31fa99acdb8063c07024b794fcab088d89a611cedabeeb24c426e1ef6e160cb2a1de1cb0ca54c67b7d45917d98d501248487d2f5326ea9d52 + languageName: node + linkType: hard + "@babel/helper-compilation-targets@workspace:^, @babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets": version: 0.0.0-use.local resolution: "@babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets" @@ -593,22 +659,22 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-create-class-features-plugin@npm:^7.22.5, @babel/helper-create-class-features-plugin@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/helper-create-class-features-plugin@npm:7.22.9" +"@babel/helper-create-class-features-plugin@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-create-class-features-plugin@npm:8.0.0-alpha.2" dependencies: - "@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.9 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 - "@babel/helper-split-export-declaration": ^7.22.6 - semver: ^6.3.1 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-function-name": ^8.0.0-alpha.2 + "@babel/helper-member-expression-to-functions": ^8.0.0-alpha.2 + "@babel/helper-optimise-call-expression": ^8.0.0-alpha.2 + "@babel/helper-replace-supers": ^8.0.0-alpha.2 + "@babel/helper-skip-transparent-expression-wrappers": ^8.0.0-alpha.2 + "@babel/helper-split-export-declaration": ^8.0.0-alpha.2 + semver: ^7.3.4 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 6c2436d1a5a3f1ff24628d78fa8c6d3120c40285aa3eda7815b1adbf8c5951e0dd73d368cf845825888fa3dc2f207dadce53309825598d7c67953e5ed9dd51d2 + "@babel/core": ^8.0.0-alpha.2 + checksum: 1abc7cc562a64c913a210d5b399a63fcec22a3e03b9b5ffa5107bd79610142299837e86109efc471959ff8ac798ca652169eaf20b5a4324c1556bcee96f0dc00 languageName: node linkType: hard @@ -633,16 +699,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": - version: 7.22.9 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.9" +"@babel/helper-create-regexp-features-plugin@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-create-regexp-features-plugin@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 regexpu-core: ^5.3.1 - semver: ^6.3.1 + semver: ^7.3.4 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 87cb48a7ee898ab205374274364c3adc70b87b08c7bd07f51019ae4562c0170d7148e654d591f825dee14b5fe11666a0e7966872dfdbfa0d1b94b861ecf0e4e1 + "@babel/core": ^8.0.0-alpha.2 + checksum: 71010703b37c4b728a8f729b8049b59f441aecf81d867fae7380a8d28bc1f148506f198abb6f8f2d8a566e6a35ea18b632e77e5ec5f8ea14e598aea88e538e5d languageName: node linkType: hard @@ -682,6 +748,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-environment-visitor@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-environment-visitor@npm:8.0.0-alpha.2" + checksum: 9261c0f5b07e90d366bff0974955a3a090b9150890473ecf9ec95a197d42dad516c505a3f3155af1c4aa982e4a28fb943487a15d158369a1436f316dd32dc35f + languageName: node + linkType: hard + "@babel/helper-environment-visitor@workspace:^, @babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor": version: 0.0.0-use.local resolution: "@babel/helper-environment-visitor@workspace:packages/babel-helper-environment-visitor" @@ -710,6 +783,16 @@ __metadata: languageName: node linkType: hard +"@babel/helper-function-name@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-function-name@npm:8.0.0-alpha.2" + dependencies: + "@babel/template": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + checksum: e661dd9da6c71361334f4ca1052e7fd6fbf1c54a6515fb200673899b234663a7edb04a4b5e6b2b434f4d86fc9898c918cba98dd2ecc1c8922ee25778c0ed4d21 + languageName: node + linkType: hard + "@babel/helper-function-name@workspace:^, @babel/helper-function-name@workspace:packages/babel-helper-function-name": version: 0.0.0-use.local resolution: "@babel/helper-function-name@workspace:packages/babel-helper-function-name" @@ -728,6 +811,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-hoist-variables@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-hoist-variables@npm:8.0.0-alpha.2" + dependencies: + "@babel/types": ^8.0.0-alpha.2 + checksum: 681938deb23839d48a8634c8d0f1c9889476ff7ceb0e32e4a714fec2a7b4ac1fa4db1ca77eda2d4495454fd4ad253be79e3a2b8f751340924d9000805b5b15d9 + languageName: node + linkType: hard + "@babel/helper-hoist-variables@workspace:^, @babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables": version: 0.0.0-use.local resolution: "@babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables" @@ -737,12 +829,12 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-member-expression-to-functions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-member-expression-to-functions@npm:7.22.5" +"@babel/helper-member-expression-to-functions@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-member-expression-to-functions@npm:8.0.0-alpha.2" dependencies: - "@babel/types": ^7.22.5 - checksum: 4bd5791529c280c00743e8bdc669ef0d4cd1620d6e3d35e0d42b862f8262bc2364973e5968007f960780344c539a4b9cf92ab41f5b4f94560a9620f536de2a39 + "@babel/types": ^8.0.0-alpha.2 + checksum: 2e21ac5e3762cb51ae12c2d69b2f6293eba48523d445b35796d940071cf9aba14b5958d7304c60160f5c2a0c481985549d2aab6e64385948731665b5ca40266e languageName: node linkType: hard @@ -764,6 +856,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-imports@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-module-imports@npm:8.0.0-alpha.2" + dependencies: + "@babel/types": ^8.0.0-alpha.2 + checksum: 0c11b8604d6aaf1303ef88197b76b81b3b921a1915b186fda3d001fcf7fc205b582acba63d1cccaa2d3e52a167a11a5743c57cca825fbfe0606cc3e92932794d + languageName: node + linkType: hard + "@babel/helper-module-imports@workspace:^, @babel/helper-module-imports@workspace:packages/babel-helper-module-imports": version: 0.0.0-use.local resolution: "@babel/helper-module-imports@workspace:packages/babel-helper-module-imports" @@ -774,7 +875,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.18.0, @babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.22.9": +"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.18.0, @babel/helper-module-transforms@npm:^7.22.9": version: 7.22.9 resolution: "@babel/helper-module-transforms@npm:7.22.9" dependencies: @@ -789,6 +890,21 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-transforms@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-module-transforms@npm:8.0.0-alpha.2" + dependencies: + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-module-imports": ^8.0.0-alpha.2 + "@babel/helper-simple-access": ^8.0.0-alpha.2 + "@babel/helper-split-export-declaration": ^8.0.0-alpha.2 + "@babel/helper-validator-identifier": ^8.0.0-alpha.2 + peerDependencies: + "@babel/core": ^8.0.0-alpha.2 + checksum: 6336051f57f361af51d76a56e3e4397f683cd8a2cdda4d777d28a1cd56d31f35e5e951626ba7baebb5ee13f07209c0429c82c8adae490ebb299fd63dd9c35eec + languageName: node + linkType: hard + "@babel/helper-module-transforms@workspace:^, @babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms": version: 0.0.0-use.local resolution: "@babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms" @@ -805,12 +921,12 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-optimise-call-expression@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" +"@babel/helper-optimise-call-expression@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-optimise-call-expression@npm:8.0.0-alpha.2" dependencies: - "@babel/types": ^7.22.5 - checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c + "@babel/types": ^8.0.0-alpha.2 + checksum: 055a314481fb82a397ea03a22629ab2f27681e532740b43b97f727eadc6d326cd9bca57e4b32bbbc984f9332e7f712dcb0d06c7c7ed2ee17366b3305927fbf1e languageName: node linkType: hard @@ -839,22 +955,29 @@ __metadata: languageName: node linkType: hard +"@babel/helper-plugin-utils@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-plugin-utils@npm:8.0.0-alpha.2" + checksum: 037ae051f274af7889c426c4ba8f041f3f07ecfaea3155f0db39958d0557fc2da091bff454e7f680b038d182078a830c7fc56940e804b57c7d6edff1babb5249 + languageName: node + linkType: hard + "@babel/helper-plugin-utils@workspace:^, @babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils": version: 0.0.0-use.local resolution: "@babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils" languageName: unknown linkType: soft -"@babel/helper-remap-async-to-generator@npm:^7.22.5": - version: 7.22.9 - resolution: "@babel/helper-remap-async-to-generator@npm:7.22.9" +"@babel/helper-remap-async-to-generator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-remap-async-to-generator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-environment-visitor": ^7.22.5 - "@babel/helper-wrap-function": ^7.22.9 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-wrap-function": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 05538079447829b13512157491cc77f9cf1ea7e1680e15cff0682c3ed9ee162de0c4862ece20a6d6b2df28177a1520bcfe45993fbeccf2747a81795a7c3f6290 + "@babel/core": ^8.0.0-alpha.2 + checksum: b256f6d254380b7f2f287c72d95c13cc439c831f6675c113417f8736d16db8a0c658c3260ac7ba4f8791970a5e914134beac216c3c3edaf13f33fc5971982a8a languageName: node linkType: hard @@ -872,16 +995,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-replace-supers@npm:^7.22.5, @babel/helper-replace-supers@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/helper-replace-supers@npm:7.22.9" +"@babel/helper-replace-supers@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-replace-supers@npm:8.0.0-alpha.2" 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/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-member-expression-to-functions": ^8.0.0-alpha.2 + "@babel/helper-optimise-call-expression": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0 - checksum: d41471f56ff2616459d35a5df1900d5f0756ae78b1027040365325ef332d66e08e3be02a9489756d870887585ff222403a228546e93dd7019e19e59c0c0fe586 + "@babel/core": ^8.0.0-alpha.2 + checksum: d3838c45b91a945c938af7c060b2f034064adf2190a01fa16685085adaa099205836c39d942a080616af442978f8c2851460150dbf7182bfb231bca2a59d3a44 languageName: node linkType: hard @@ -907,6 +1030,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-simple-access@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-simple-access@npm:8.0.0-alpha.2" + dependencies: + "@babel/types": ^8.0.0-alpha.2 + checksum: dd0272401b7c8e90df23842a165dfe9fa92e3fe0503880e710b24e4b69fd2fd7c9fea725f5d03d21603c32bad10ab1335899a2e8129dc9f3609cec9082e1ab76 + languageName: node + linkType: hard + "@babel/helper-simple-access@workspace:^, @babel/helper-simple-access@workspace:packages/babel-helper-simple-access": version: 0.0.0-use.local resolution: "@babel/helper-simple-access@workspace:packages/babel-helper-simple-access" @@ -917,12 +1049,12 @@ __metadata: languageName: unknown linkType: soft -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" +"@babel/helper-skip-transparent-expression-wrappers@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:8.0.0-alpha.2" dependencies: - "@babel/types": ^7.22.5 - checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244 + "@babel/types": ^8.0.0-alpha.2 + checksum: d81fffd813c41e871d2e332b2c8f1036960b1292e6e93491ba314e3955a5ffafd9a04ac3ca22b2f7a9139ae4337284ca7931f448b5886748a24543779356a342 languageName: node linkType: hard @@ -944,6 +1076,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-split-export-declaration@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-split-export-declaration@npm:8.0.0-alpha.2" + dependencies: + "@babel/types": ^8.0.0-alpha.2 + checksum: 0a6c7dcbc9c4163547fbfdfd9709f3f770b2cfdc7cb93a3dbbceab32a8c1a7b182d59ed06ab7ecb3f68a7336ac8732f9547138272bbf9a6d459bc98765f9fbb2 + languageName: node + linkType: hard + "@babel/helper-split-export-declaration@workspace:^, @babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration": version: 0.0.0-use.local resolution: "@babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration" @@ -959,6 +1100,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-string-parser@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-string-parser@npm:8.0.0-alpha.2" + checksum: 8ac20b721291e59e75e8c8944b662e6d201ad342f5b524cbc93ec191342ad03be388e5fe17c93ff142846f329bcee6f1fe733e52f6729580806ed340f8ecdd8a + languageName: node + linkType: hard + "@babel/helper-string-parser@workspace:^, @babel/helper-string-parser@workspace:packages/babel-helper-string-parser": version: 0.0.0-use.local resolution: "@babel/helper-string-parser@workspace:packages/babel-helper-string-parser" @@ -986,6 +1134,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-validator-identifier@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-validator-identifier@npm:8.0.0-alpha.2" + checksum: 63c8f047ca262b3433379b469b7bf2438074a3960c921b8a4bd5958e4199da63f6c216d05d9f9aaa85560dd8cb2fd9c945a039658ae9f2f02da2e76022bc5337 + languageName: node + linkType: hard + "@babel/helper-validator-identifier@workspace:^, @babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier": version: 0.0.0-use.local resolution: "@babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier" @@ -1002,20 +1157,27 @@ __metadata: languageName: node linkType: hard +"@babel/helper-validator-option@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-validator-option@npm:8.0.0-alpha.2" + checksum: 82ea0649ca7356541750ac0410abaf7c4665062af2fcca77a6d78d5acfc44c2f0d2a24df6a6d51dedaa38a9a6f440cfae58a123619468d751190f97eaf0e47fc + languageName: node + linkType: hard + "@babel/helper-validator-option@workspace:^, @babel/helper-validator-option@workspace:packages/babel-helper-validator-option": version: 0.0.0-use.local resolution: "@babel/helper-validator-option@workspace:packages/babel-helper-validator-option" languageName: unknown linkType: soft -"@babel/helper-wrap-function@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/helper-wrap-function@npm:7.22.9" +"@babel/helper-wrap-function@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helper-wrap-function@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-function-name": ^7.22.5 - "@babel/template": ^7.22.5 - "@babel/types": ^7.22.5 - checksum: 037317dc06dac6593e388738ae1d3e43193bc1d31698f067c0ef3d4dc6f074dbed860ed42aa137b48a67aa7cb87336826c4bdc13189260481bcf67eb7256c789 + "@babel/helper-function-name": ^8.0.0-alpha.2 + "@babel/template": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + checksum: 0f396bead03eea1ea2d128443c96ef226f01fdda772a63c75b9a5db42c26b72eeb7a2ff107e172a18203e164b845608387b4c4b3b30c582e1773edda6faa4469 languageName: node linkType: hard @@ -1041,6 +1203,17 @@ __metadata: languageName: node linkType: hard +"@babel/helpers@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/helpers@npm:8.0.0-alpha.2" + dependencies: + "@babel/template": ^8.0.0-alpha.2 + "@babel/traverse": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + checksum: 35d9984e96376e7e62583292367f7e4835890ff60013d3b30cc25f6b1e0bdf98018eec8ed843cb70294061b9e9b9edd206f0d4c72f868966a0c1e299bd382d07 + languageName: node + linkType: hard + "@babel/helpers@workspace:^, @babel/helpers@workspace:packages/babel-helpers": version: 0.0.0-use.local resolution: "@babel/helpers@workspace:packages/babel-helpers" @@ -1067,6 +1240,17 @@ __metadata: languageName: node linkType: hard +"@babel/highlight@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/highlight@npm:8.0.0-alpha.2" + dependencies: + "@babel/helper-validator-identifier": ^8.0.0-alpha.2 + chalk: ^4.1.2 + js-tokens: ^8.0.0 + checksum: 20f035217ebcdf393a802208f3e4520dc14d7000fe26abd924077bc553635db600e4a90eec3a813ca6489af5417d9b0809332827b1688bc6aaf4aa57a7da1ccb + languageName: node + linkType: hard + "@babel/highlight@workspace:^, @babel/highlight@workspace:packages/babel-highlight": version: 0.0.0-use.local resolution: "@babel/highlight@workspace:packages/babel-highlight" @@ -1112,6 +1296,15 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/parser@npm:8.0.0-alpha.2" + bin: + parser: ./bin/babel-parser.js + checksum: 21c320c574da4ed984e4b8a5c86f7476031020f917fcd37172b0bef9c2a5209c5a89fa4e1dc31726bf2bafce8f7ab75b0373fcfa03c08cab2344a51fb3c2c982 + languageName: node + linkType: hard + "@babel/parser@workspace:^, @babel/parser@workspace:packages/babel-parser": version: 0.0.0-use.local resolution: "@babel/parser@workspace:packages/babel-parser" @@ -1127,14 +1320,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.5" +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 1e353a060fb2cd8f1256d28cd768f16fb02513f905b9b6d656fb0242c96c341a196fa188b27c2701506a6e27515359fbcc1a5ca7fa8b9b530cf88fbd137baefc + "@babel/core": ^8.0.0-alpha.2 + checksum: 1247c95c94b281cb9d7f894192f18b8a8d121fb411eebebdc5a370009248c8452d949000338a383bfdba93f20ba501726cb2955471d87b87924246c8351bf8b5 languageName: node linkType: hard @@ -1152,16 +1345,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.5" +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:8.0.0-alpha.2" dependencies: - "@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/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-skip-transparent-expression-wrappers": ^8.0.0-alpha.2 + "@babel/plugin-transform-optional-chaining": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.13.0 - checksum: 16e7a5f3bf2f2ac0ca032a70bf0ebd7e886d84dbb712b55c0643c04c495f0f221fbcbca14b5f8f8027fa6c87a3dafae0934022ad2b409384af6c5c356495b7bd + "@babel/core": ^8.0.0-alpha.2 + checksum: 48ea07a0e5f9c830af4505ff2e57589f57d0548cd953efbe7d16972225fe298e6c0e2d2857850783c48fe5dc922101d828a76b53ac33674375cc35440a0c44c1 languageName: node linkType: hard @@ -1390,7 +1583,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-proposal-private-property-in-object-BABEL_8_BREAKING-false@npm:@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2, @babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": +"@babel/plugin-proposal-private-property-in-object-BABEL_8_BREAKING-false@npm:@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version: 7.21.0-placeholder-for-preset-env.2 resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" peerDependencies: @@ -1448,18 +1641,6 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4": - version: 7.18.6 - resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.18.6 - "@babel/helper-plugin-utils": ^7.18.6 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: a8575ecb7ff24bf6c6e94808d5c84bb5a0c6dd7892b54f09f4646711ba0ee1e1668032b3c43e3e1dfec2c5716c302e851ac756c1645e15882d73df6ad21ae951 - languageName: node - linkType: hard - "@babel/plugin-syntax-async-do-expressions@workspace:^, @babel/plugin-syntax-async-do-expressions@workspace:packages/babel-plugin-syntax-async-do-expressions": version: 0.0.0-use.local resolution: "@babel/plugin-syntax-async-do-expressions@workspace:packages/babel-plugin-syntax-async-do-expressions" @@ -1502,7 +1683,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-class-properties-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-class-properties@^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": +"@babel/plugin-syntax-class-properties-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-class-properties@^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": version: 7.12.13 resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: @@ -1522,7 +1703,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-class-static-block-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-class-static-block@^7.14.5, @babel/plugin-syntax-class-static-block@npm:^7.14.5": +"@babel/plugin-syntax-class-static-block-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-class-static-block@^7.14.5": version: 7.14.5 resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" dependencies: @@ -1586,7 +1767,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-dynamic-import-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-dynamic-import@^7.8.3, @babel/plugin-syntax-dynamic-import@npm:^7.8.3": +"@babel/plugin-syntax-dynamic-import-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-dynamic-import@^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: @@ -1628,7 +1809,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-export-namespace-from-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-export-namespace-from@^7.8.3, @babel/plugin-syntax-export-namespace-from@npm:^7.8.3": +"@babel/plugin-syntax-export-namespace-from-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-export-namespace-from@^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" dependencies: @@ -1681,14 +1862,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-import-assertions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" +"@babel/plugin-syntax-import-assertions@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-syntax-import-assertions@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2b8b5572db04a7bef1e6cd20debf447e4eef7cb012616f5eceb8fa3e23ce469b8f76ee74fd6d1e158ba17a8f58b0aec579d092fb67c5a30e83ccfbc5754916c1 + "@babel/core": ^8.0.0-alpha.2 + checksum: 4785c3124fc121a3fb549182a4169b8e68a75be1de495730d70c0b900ad71925a882d62087183f97870d4f19caa6d4830c8dfe1711473b9491d7dcf159042a0c languageName: node linkType: hard @@ -1703,14 +1884,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-import-attributes@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" +"@babel/plugin-syntax-import-attributes@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-syntax-import-attributes@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 197b3c5ea2a9649347f033342cb222ab47f4645633695205c0250c6bf2af29e643753b8bb24a2db39948bef08e7c540babfd365591eb57fc110cb30b425ffc47 + "@babel/core": ^8.0.0-alpha.2 + checksum: 72dbd9e39300d68fd02de31877424575a3866fe7a0eeb2e47026ea6d2fb2245db2ff20524fd5e189099cefeb9c99b847ee5a8572d87e1baf45809c06646a8279 languageName: node linkType: hard @@ -1725,7 +1906,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-import-meta-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-import-meta@^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": +"@babel/plugin-syntax-import-meta-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-import-meta@^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" dependencies: @@ -1776,7 +1957,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.22.5, @babel/plugin-syntax-jsx@npm:^7.7.2": +"@babel/plugin-syntax-jsx@npm:^7.7.2": version: 7.22.5 resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" dependencies: @@ -1787,6 +1968,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-jsx@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-syntax-jsx@npm:8.0.0-alpha.2" + dependencies: + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + peerDependencies: + "@babel/core": ^8.0.0-alpha.2 + checksum: 8ba2f30d96b6cdb11b5dddc6f31ee90b44e005d4f6d41d96ed5934dad26614422c2f5c9977cf6fde7452cc57f1be78baf183b0e21e078d62956267b4ca595720 + languageName: node + linkType: hard + "@babel/plugin-syntax-jsx@workspace:^, @babel/plugin-syntax-jsx@workspace:packages/babel-plugin-syntax-jsx": version: 0.0.0-use.local resolution: "@babel/plugin-syntax-jsx@workspace:packages/babel-plugin-syntax-jsx" @@ -1798,7 +1990,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-logical-assignment-operators-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-logical-assignment-operators@^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-logical-assignment-operators@^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: @@ -1849,7 +2041,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-numeric-separator-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-numeric-separator@^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": +"@babel/plugin-syntax-numeric-separator-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-numeric-separator@^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" dependencies: @@ -1951,7 +2143,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-private-property-in-object-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-private-property-in-object@^7.14.5, @babel/plugin-syntax-private-property-in-object@npm:^7.14.5": +"@babel/plugin-syntax-private-property-in-object-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-private-property-in-object@^7.14.5": version: 7.14.5 resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" dependencies: @@ -1993,7 +2185,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-top-level-await-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-top-level-await@^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": +"@babel/plugin-syntax-top-level-await-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-top-level-await@^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": version: 7.14.5 resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" dependencies: @@ -2013,7 +2205,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.22.5, @babel/plugin-syntax-typescript@npm:^7.7.2": +"@babel/plugin-syntax-typescript@npm:^7.7.2": version: 7.22.5 resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" dependencies: @@ -2024,6 +2216,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-typescript@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-syntax-typescript@npm:8.0.0-alpha.2" + dependencies: + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + peerDependencies: + "@babel/core": ^8.0.0-alpha.2 + checksum: d59c8ec1d34677a17d82fb6a1ccf761f37696163b5643c9512cdd81f56b5b323b717dec72e1e0ef222a833f5fc3ef07452414efdf692b3dc826850cd5f209b3c + languageName: node + linkType: hard + "@babel/plugin-syntax-typescript@workspace:^, @babel/plugin-syntax-typescript@workspace:packages/babel-plugin-syntax-typescript": version: 0.0.0-use.local resolution: "@babel/plugin-syntax-typescript@workspace:packages/babel-plugin-syntax-typescript" @@ -2036,7 +2239,7 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-syntax-unicode-sets-regex-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-unicode-sets-regex@^7.18.6, @babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": +"@babel/plugin-syntax-unicode-sets-regex-BABEL_8_BREAKING-false@npm:@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version: 7.18.6 resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" dependencies: @@ -2057,14 +2260,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" +"@babel/plugin-transform-arrow-functions@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-arrow-functions@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 35abb6c57062802c7ce8bd96b2ef2883e3124370c688bbd67609f7d2453802fb73944df8808f893b6c67de978eb2bcf87bbfe325e46d6f39b5fcb09ece11d01a + "@babel/core": ^8.0.0-alpha.2 + checksum: 56b11405a68ad0ff082916e8ec34b1a545cadc44b833bde20a8c47ea5eae7bbb99a4638767ebcde93eea646a942b8fbdecc765bcc14e22aafe63ecfd8958546a languageName: node linkType: hard @@ -2082,17 +2285,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-async-generator-functions@npm:^7.22.7": - version: 7.22.7 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.7" +"@babel/plugin-transform-async-generator-functions@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-async-generator-functions@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-environment-visitor": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-remap-async-to-generator": ^7.22.5 - "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-remap-async-to-generator": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 57cd2cce3fb696dadf00e88f168683df69e900b92dadeae07429243c43bc21d5ccdc0c2db61cf5c37bd0fbd893fc455466bef6babe4aa5b79d9cb8ba89f40ae7 + "@babel/core": ^8.0.0-alpha.2 + checksum: 60425a5743eab364d39f68af012e0fb23ba1163293e16e5d0fc2da873bb9bef632bf7cce59d9ad3a77d78a8942455a26c0ccf53fb3dcf9d1d6865d72fae3c047 languageName: node linkType: hard @@ -2113,16 +2315,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-async-to-generator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" +"@babel/plugin-transform-async-to-generator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-async-to-generator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-module-imports": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-remap-async-to-generator": ^7.22.5 + "@babel/helper-module-imports": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-remap-async-to-generator": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b95f23f99dcb379a9f0a1c2a3bbea3f8dc0e1b16dc1ac8b484fe378370169290a7a63d520959a9ba1232837cf74a80e23f6facbe14fd42a3cda6d3c2d7168e62 + "@babel/core": ^8.0.0-alpha.2 + checksum: 382497268f34b1ad494d8ddd7117f38e7777d463933443552d022bb37027999de41a99e1c155a23653a4872273ab1e8babd83793646152033e2e54c4292c0a0c languageName: node linkType: hard @@ -2140,14 +2342,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" +"@babel/plugin-transform-block-scoped-functions@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 416b1341858e8ca4e524dee66044735956ced5f478b2c3b9bc11ec2285b0c25d7dbb96d79887169eb938084c95d0a89338c8b2fe70d473bd9dc92e5d9db1732c + "@babel/core": ^8.0.0-alpha.2 + checksum: 69355e200bee57e8434717e0d8d4468155a7863746ae324f1e1d9cb6dcfd9e28488bb62e3a54a247858e85ea6e8eab8d141e542e08f634c2d9124089ec663fa8 languageName: node linkType: hard @@ -2163,14 +2365,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-block-scoping@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-block-scoping@npm:7.22.5" +"@babel/plugin-transform-block-scoping@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-block-scoping@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 26987002cfe6e24544e60fa35f07052b6557f590c1a1cc5cf35d6dc341d7fea163c1222a2d70d5d2692f0b9860d942fd3ba979848b2995d4debffa387b9b19ae + "@babel/core": ^8.0.0-alpha.2 + checksum: 1ce8084828f8236535217ba938582edd4add85764273acb3e773218b9a4f3b21d656914c79e8484392f0158b89da747d7b0ed8b7a74378afbb4005966e177b81 languageName: node linkType: hard @@ -2187,15 +2389,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-class-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" +"@babel/plugin-transform-class-properties@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-class-properties@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b830152dfc2ff2f647f0abe76e6251babdfbef54d18c4b2c73a6bf76b1a00050a5d998dac80dc901a48514e95604324943a9dd39317073fe0928b559e0e0c579 + "@babel/core": ^8.0.0-alpha.2 + checksum: a0c685727743fca2009486b95a16f5f6435b3e94fd2ab7735462f3a1402b4ccfa0c84aaeaa1edd4e12bdf4444aed15c412c1ae767c65e81967c40f8ab83e447a languageName: node linkType: hard @@ -2212,16 +2414,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-class-static-block@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-class-static-block@npm:7.22.5" +"@babel/plugin-transform-class-static-block@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-class-static-block@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-class-static-block": ^7.14.5 + "@babel/helper-create-class-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.12.0 - checksum: bc48b92dbaf625a14f2bf62382384eef01e0515802426841636ae9146e27395d068c7a8a45e9e15699491b0a01d990f38f179cbc9dc89274a393f85648772f12 + "@babel/core": ^8.0.0-alpha.2 + checksum: a4bfb6b7e4fe78e9b9553781b035e28355441bd073a15f00ee186151bc389fc0451d7be79fdcbd2666b55c3419af1e8de32bff6f9a241b4ed313903853610387 languageName: node linkType: hard @@ -2241,22 +2442,22 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-classes@npm:^7.22.6": - version: 7.22.6 - resolution: "@babel/plugin-transform-classes@npm:7.22.6" +"@babel/plugin-transform-classes@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-classes@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-compilation-targets": ^7.22.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.6 - globals: ^11.1.0 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 + "@babel/helper-compilation-targets": ^8.0.0-alpha.2 + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-function-name": ^8.0.0-alpha.2 + "@babel/helper-optimise-call-expression": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-replace-supers": ^8.0.0-alpha.2 + "@babel/helper-split-export-declaration": ^8.0.0-alpha.2 + globals: ^13.5.0 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 8380e855c01033dbc7460d9acfbc1fc37c880350fa798c2de8c594ef818ade0e4c96173ec72f05f2a4549d8d37135e18cb62548352d51557b45a0fb4388d2f3f + "@babel/core": ^8.0.0-alpha.2 + checksum: 19da3aa3a53ca5ffe4cee483832d600a2e24f6ceaa465021b9f3042d19787221ce288c6208e02981c634293cf147462c8fe55693dbf86fd8fd080b175b309ae7 languageName: node linkType: hard @@ -2281,15 +2482,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-computed-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" +"@babel/plugin-transform-computed-properties@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-computed-properties@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/template": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/template": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c2a77a0f94ec71efbc569109ec14ea2aa925b333289272ced8b33c6108bdbb02caf01830ffc7e49486b62dec51911924d13f3a76f1149f40daace1898009e131 + "@babel/core": ^8.0.0-alpha.2 + checksum: e2b4f778bc93858473289dcef4008491a845b2f5f2077832e4c7c6b37317eb6e50aab5b8883f0b68ec5ffba11869141321ca6b6891062ad7d50e3821ad717728 languageName: node linkType: hard @@ -2306,14 +2507,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-destructuring@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-destructuring@npm:7.22.5" +"@babel/plugin-transform-destructuring@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-destructuring@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 76f6ea2aee1fcfa1c3791eb7a5b89703c6472650b993e8666fff0f1d6e9d737a84134edf89f63c92297f3e75064c1263219463b02dd9bc7434b6e5b9935e3f20 + "@babel/core": ^8.0.0-alpha.2 + checksum: 9d7170a2eecad0e4f8e117d7d9633b11e938d18a3ac089f81564d34b43e2e0135670d3246b0d43f8395ebd606fe4946ecf2c16280ae962e1a1b5505f0cc2e1c0 languageName: node linkType: hard @@ -2330,15 +2531,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-dotall-regex@npm:^7.22.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4": - version: 7.22.5 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" +"@babel/plugin-transform-dotall-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-dotall-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-regexp-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 409b658d11e3082c8f69e9cdef2d96e4d6d11256f005772425fb230cc48fd05945edbfbcb709dab293a1a2f01f9c8a5bb7b4131e632b23264039d9f95864b453 + "@babel/core": ^8.0.0-alpha.2 + checksum: a630e56bde2d4508d1cd23c8d348050e0aa8fc7695667c50bb58ed1995eaf3853141205aa1abe088038478285d9c03c28b1e6301afbe07e5ef67af6aafa8006a languageName: node linkType: hard @@ -2355,14 +2556,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" +"@babel/plugin-transform-duplicate-keys@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-duplicate-keys@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bb1280fbabaab6fab2ede585df34900712698210a3bd413f4df5bae6d8c24be36b496c92722ae676a7a67d060a4624f4d6c23b923485f906bfba8773c69f55b4 + "@babel/core": ^8.0.0-alpha.2 + checksum: a593f6785360fc62764dfe8966c49b8ea9f002449a33327bfc55b1db416d0dbff5c5fd872dd844932ad7fd480d1a8ccf1189b45daa4af1b710e8e451f191e579 languageName: node linkType: hard @@ -2378,15 +2579,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-dynamic-import@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.5" +"@babel/plugin-transform-dynamic-import@npm:8.0.0-alpha.2, @babel/plugin-transform-dynamic-import@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-dynamic-import@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 186a6d59f36eb3c5824739fc9c22ed0f4ca68e001662aa3a302634346a8b785cb9579b23b0c158f4570604d697d19598ca09b58c60a7fa2894da1163c4eb1907 + "@babel/core": ^8.0.0-alpha.2 + checksum: 1d5045b242cc17b70ca34f2ec74f302f8e782d515e3dd29e229cbe7555c05caa851904af21bc5b289ed84adced52abf6230ed1bf6320219b8a69e8dc44cb254d languageName: node linkType: hard @@ -2403,15 +2603,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" +"@babel/plugin-transform-exponentiation-operator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-builder-binary-assignment-operator-visitor": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f2d660c1b1d51ad5fec1cd5ad426a52187204068c4158f8c4aa977b31535c61b66898d532603eef21c15756827be8277f724c869b888d560f26d7fe848bb5eae + "@babel/core": ^8.0.0-alpha.2 + checksum: 3d89252cacd902943bf381babc0ceedb7bb4419c171cd14a2fa79a21e32ba8141fc93f2445f5ad6beaf1f2f312ba123fbfda0adf88ae0988a9a7c3a9212db322 languageName: node linkType: hard @@ -2428,15 +2628,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-export-namespace-from@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.5" +"@babel/plugin-transform-export-namespace-from@npm:8.0.0-alpha.2, @babel/plugin-transform-export-namespace-from@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-export-namespace-from@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3d197b788758044983c96b9c49bed4b456055f35a388521a405968db0f6e2ffb6fd59110e3931f4dcc5e126ae9e5e00e154a0afb47a7ea359d8d0dea79f480d7 + "@babel/core": ^8.0.0-alpha.2 + checksum: ec01b693b548dac6fbc111814afe64ded34f47c0dae119def0d492bd7cf0fa331360654187732ce818b4ccf05f13d6b7219dd63027d3d5a161deb7942f1bc59b languageName: node linkType: hard @@ -2480,14 +2679,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-for-of@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-for-of@npm:7.22.5" +"@babel/plugin-transform-for-of@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-for-of@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d7b8d4db010bce7273674caa95c4e6abd909362866ce297e86a2ecaa9ae636e05d525415811db9b3c942155df7f3651d19b91dd6c41f142f7308a97c7cb06023 + "@babel/core": ^8.0.0-alpha.2 + checksum: 125b6284034706b324905fda1ffc4b5649ae662891332eacd420a154c96efa2fa6be86dfd692b2dac6c1c4edccebda934195d97a782539f696637e0b983a9635 languageName: node linkType: hard @@ -2503,16 +2702,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-function-name@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-function-name@npm:7.22.5" +"@babel/plugin-transform-function-name@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-function-name@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-compilation-targets": ^7.22.5 - "@babel/helper-function-name": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-compilation-targets": ^8.0.0-alpha.2 + "@babel/helper-function-name": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: cff3b876357999cb8ae30e439c3ec6b0491a53b0aa6f722920a4675a6dd5b53af97a833051df4b34791fe5b3dd326ccf769d5c8e45b322aa50ee11a660b17845 + "@babel/core": ^8.0.0-alpha.2 + checksum: 882e8eec30b209473f2c4d3168d28b7072c9460173d06d9cf5eb7ac12c9c1461c105a9f2f4cd030a67d7d6b7baac8b1cd09de92d225bba53ca51b7bd6fbb2989 languageName: node linkType: hard @@ -2554,15 +2753,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-json-strings@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-json-strings@npm:7.22.5" +"@babel/plugin-transform-json-strings@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-json-strings@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 4e00b902487a670b6c8948f33f9108133fd745cf9d1478aca515fb460b9b2f12e137988ebc1663630fb82070a870aed8b0c1aa4d007a841c18004619798f255c + "@babel/core": ^8.0.0-alpha.2 + checksum: 2d4ac0c9213d9db3596d28e6a226aaf87bf4db980a5e82507b85c88ea13fceaaa4c81b78aa9de8f651f7e96d99299ce5d18591396e1dc4ee89da08f2dcc7c657 languageName: node linkType: hard @@ -2579,14 +2777,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-literals@npm:7.22.5" +"@babel/plugin-transform-literals@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-literals@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ec37cc2ffb32667af935ab32fe28f00920ec8a1eb999aa6dc6602f2bebd8ba205a558aeedcdccdebf334381d5c57106c61f52332045730393e73410892a9735b + "@babel/core": ^8.0.0-alpha.2 + checksum: befcee65da62273dcf83a9b523a220da60944a64ac4a6abb2c5717764ae99b627186810c014460fbf0808ead70c5704152b2c87410644eb06febfae36ad7969b languageName: node linkType: hard @@ -2602,15 +2800,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.5" +"@babel/plugin-transform-logical-assignment-operators@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 18748e953c08f64885f18c224eac58df10a13eac4d845d16b5d9b6276907da7ca2530dfebe6ed41cdc5f8a75d9db3e36d8eb54ddce7cd0364af1cab09b435302 + "@babel/core": ^8.0.0-alpha.2 + checksum: d96e35fe263c48ec34841b6d439eb30a16608a0b855d3fada41b7528320c5be15e1609807b312dd3fd712524b9d248b79333e651a34de2a6442a4d2a4cbb69c9 languageName: node linkType: hard @@ -2628,14 +2825,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" +"@babel/plugin-transform-member-expression-literals@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-member-expression-literals@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ec4b0e07915ddd4fda0142fd104ee61015c208608a84cfa13643a95d18760b1dc1ceb6c6e0548898b8c49e5959a994e46367260176dbabc4467f729b21868504 + "@babel/core": ^8.0.0-alpha.2 + checksum: 0f49b1c2449ad3b27bff5a62f5fe9df4bc6d926b3d1310cf3df4761a5b0e9ef654c463de86354dff3ca1025ebb937de987ad9f5efb65631ba3c4661904dbcdf4 languageName: node linkType: hard @@ -2651,15 +2848,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-modules-amd@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-modules-amd@npm:7.22.5" +"@babel/plugin-transform-modules-amd@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-modules-amd@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-module-transforms": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-module-transforms": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7da4c4ebbbcf7d182abb59b2046b22d86eee340caf8a22a39ef6a727da2d8acfec1f714fcdcd5054110b280e4934f735e80a6848d192b6834c5d4459a014f04d + "@babel/core": ^8.0.0-alpha.2 + checksum: 30d3cdd62f90d627cf4f2351632c63c0bc13191329304541e2874ba2cf10db9ef01006a613ed00bc3f850fd1d7c6916bff9e94e6f4252b5bd37a0a9ee7ebd591 languageName: node linkType: hard @@ -2677,16 +2874,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-modules-commonjs@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.22.5" +"@babel/plugin-transform-modules-commonjs@npm:8.0.0-alpha.2, @babel/plugin-transform-modules-commonjs@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-modules-commonjs@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-module-transforms": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-simple-access": ^7.22.5 + "@babel/helper-module-transforms": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-simple-access": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2067aca8f6454d54ffcce69b02c457cfa61428e11372f6a1d99ff4fcfbb55c396ed2ca6ca886bf06c852e38c1a205b8095921b2364fd0243f3e66bc1dda61caa + "@babel/core": ^8.0.0-alpha.2 + checksum: 9ac6e3728cf1aee7c0a3379822bb97e4b11e013c223f0f098c64a8422ca1613841f1bc214eccaba823c375c7e47092bb529aae672409caf16021d9a45699368f languageName: node linkType: hard @@ -2705,17 +2902,17 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-modules-systemjs@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.5" +"@babel/plugin-transform-modules-systemjs@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-modules-systemjs@npm:8.0.0-alpha.2" dependencies: - "@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 + "@babel/helper-hoist-variables": ^8.0.0-alpha.2 + "@babel/helper-module-transforms": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-validator-identifier": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 04f4178589543396b3c24330a67a59c5e69af5e96119c9adda730c0f20122deaff54671ebbc72ad2df6495a5db8a758bd96942de95fba7ad427de9c80b1b38c8 + "@babel/core": ^8.0.0-alpha.2 + checksum: 2b946fe4b55929ec5f8ec1cb0fb69a081eb90054e8e6d435a27458df0c4d0d481aa9b5ed8f1ee83e023e24bac9734a27ded7e3b190c44c9498d38f9fb4e711e7 languageName: node linkType: hard @@ -2734,15 +2931,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-modules-umd@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" +"@babel/plugin-transform-modules-umd@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-modules-umd@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-module-transforms": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-module-transforms": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 46622834c54c551b231963b867adbc80854881b3e516ff29984a8da989bd81665bd70e8cba6710345248e97166689310f544aee1a5773e262845a8f1b3e5b8b4 + "@babel/core": ^8.0.0-alpha.2 + checksum: de25084e200cb45e1dba9e0e7de366fd9a07ec9eaf17f6df9563210270de6db53b7c1584b070845f8f99f48b83b82bd6383452f2171011ea3524ad81bf3d4846 languageName: node linkType: hard @@ -2760,15 +2957,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" +"@babel/plugin-transform-named-capturing-groups-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-regexp-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623 + "@babel/core": ^8.0.0-alpha.2 + checksum: 0cad592f3ba59cb8440a011575369f2236c137500eed37c954aa39d8c9c8cf2937c2a601b90c687fe0b54598a5fc83f663b14a47c08e75227f346787a4b927dd languageName: node linkType: hard @@ -2786,14 +2983,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-new-target@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-new-target@npm:7.22.5" +"@babel/plugin-transform-new-target@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-new-target@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6b72112773487a881a1d6ffa680afde08bad699252020e86122180ee7a88854d5da3f15d9bca3331cf2e025df045604494a8208a2e63b486266b07c14e2ffbf3 + "@babel/core": ^8.0.0-alpha.2 + checksum: ccdce9afaad7ddabf232dd282ee9bb57db7961239e846463eefdd9094f71e1da2345c43479cdeb8b62dfb3a1e06419c3924458082642b2b8f4c98e3792c36291 languageName: node linkType: hard @@ -2811,15 +3008,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.5" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: e6a059169d257fc61322d0708edae423072449b7c33de396261e68dee582aec5396789a1c22bce84e5bd88a169623c2e750b513fc222930979e6accd52a44bf2 + "@babel/core": ^8.0.0-alpha.2 + checksum: c8ec31bf9eaaeb9f23a8958a46e905cc24274eb849ed4f87fdba2b3cdf7a5869d7e44946edcde9fba79aa96b458f7a78e4bf87b66125a4eee015cacb78e053ce languageName: node linkType: hard @@ -2836,15 +3032,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-numeric-separator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.5" +"@babel/plugin-transform-numeric-separator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-numeric-separator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-numeric-separator": ^7.10.4 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 9e7837d4eae04f211ebaa034fe5003d2927b6bf6d5b9dc09f2b1183c01482cdde5a75b8bd5c7ff195c2abc7b923339eb0b2a9d27cb78359d38248a3b2c2367c4 + "@babel/core": ^8.0.0-alpha.2 + checksum: 8df5a639cbafc38da1725aeae4eeaadcfe08ff3c7d8f122926e9cf1617481b3bb0aff8e394eb6cb488603d3967f4464e6bb452b2b5137f5f7727b10d748b3cbe languageName: node linkType: hard @@ -2874,18 +3069,17 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-object-rest-spread@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.5" +"@babel/plugin-transform-object-rest-spread@npm:8.0.0-alpha.2, @babel/plugin-transform-object-rest-spread@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-object-rest-spread@npm:8.0.0-alpha.2" dependencies: - "@babel/compat-data": ^7.22.5 - "@babel/helper-compilation-targets": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-object-rest-spread": ^7.8.3 - "@babel/plugin-transform-parameters": ^7.22.5 + "@babel/compat-data": ^8.0.0-alpha.2 + "@babel/helper-compilation-targets": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/plugin-transform-parameters": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3b5e091f0dc67108f2e41ed5a97e15bbe4381a19d9a7eea80b71c7de1d8169fd28784e1e41a3d2ad12709ab212e58fc481282a5bb65d591fae7b443048de3330 + "@babel/core": ^8.0.0-alpha.2 + checksum: 2530fcb843ac7e7be612e5c32715d2dd17dea83693aaf576939f3c3b3e34c53d584a8de59b079b09e4fe41cf0c142157b102a1775deb508190d3767cfe359b03 languageName: node linkType: hard @@ -2918,15 +3112,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-object-super@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-object-super@npm:7.22.5" +"@babel/plugin-transform-object-super@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-object-super@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-replace-supers": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-replace-supers": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b71887877d74cb64dbccb5c0324fa67e31171e6a5311991f626650e44a4083e5436a1eaa89da78c0474fb095d4ec322d63ee778b202d33aa2e4194e1ed8e62d7 + "@babel/core": ^8.0.0-alpha.2 + checksum: c6f6942e3dcb854b98da4f4fe2760e9fc5fc2cd015f577a13b8aed20262f525a6af16ab67f3ef13e02e31626ba9f6e74b4ffc374278c8acbe05d24ab31ec3edf languageName: node linkType: hard @@ -2943,15 +3137,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-optional-catch-binding@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.5" +"@babel/plugin-transform-optional-catch-binding@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b0e8b4233ff06b5c9d285257f49c5bd441f883189b24282e6200f9ebdf5db29aeeebbffae57fbbcd5df9f4387b3e66e5d322aaae5652a78e89685ddbae46bbd1 + "@babel/core": ^8.0.0-alpha.2 + checksum: acdd699d353b0856b3d27d625df6785bd0cb472b9e19399056e3e81be3c8e12f58b2e0cc39b3bb6b981de6e10f3dc2e2b70e855700a9efaeda4d410ccd31ce00 languageName: node linkType: hard @@ -2968,16 +3161,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-optional-chaining@npm:^7.22.5, @babel/plugin-transform-optional-chaining@npm:^7.22.6": - version: 7.22.6 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.22.6" +"@babel/plugin-transform-optional-chaining@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-optional-chaining@npm:8.0.0-alpha.2" dependencies: - "@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/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-skip-transparent-expression-wrappers": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 9713f7920ed04090c149fc5ec024dd1638e8b97aa4ae3753b93072d84103b8de380afb96d6cf03e53b285420db4f705f3ac13149c6fd54f322b61dc19e33c54f + "@babel/core": ^8.0.0-alpha.2 + checksum: d622ceb7c6c8282d8720741d58410dde8ca40f3accb58872964d46ff7f9de276eab2190fcde860444a7deddca17dec00df15cb227dab67f6ea5d2fec175073ed languageName: node linkType: hard @@ -2997,14 +3189,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-parameters@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-parameters@npm:7.22.5" +"@babel/plugin-transform-parameters@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-parameters@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b44f89cf97daf23903776ba27c2ab13b439d80d8c8a95be5c476ab65023b1e0c0e94c28d3745f3b60a58edc4e590fa0cd4287a0293e51401ca7d29a2ddb13b8e + "@babel/core": ^8.0.0-alpha.2 + checksum: c78e7c4c009e5c6c0f90921ae766fae72d643f8ce4f3483754e85a7e358640b4e651b7979e76fd3ba4bde51c26dea542fc3aa9f71a0ee9fb12a45be860fb774b languageName: node linkType: hard @@ -3020,15 +3212,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-private-methods@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" +"@babel/plugin-transform-private-methods@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-private-methods@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 321479b4fcb6d3b3ef622ab22fd24001e43d46e680e8e41324c033d5810c84646e470f81b44cbcbef5c22e99030784f7cac92f1829974da7a47a60a7139082c3 + "@babel/core": ^8.0.0-alpha.2 + checksum: a4f60550455b5f85be3c6b937b074562959c3bad46303a97897e2706631f133db88422e24a6e56af2244681d6750fc5ae3287c12a285198bb0d3c6c7a0fe0329 languageName: node linkType: hard @@ -3045,17 +3237,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-private-property-in-object@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.5" +"@babel/plugin-transform-private-property-in-object@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-private-property-in-object@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 + "@babel/helper-create-class-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 9ac019fb2772f3af6278a7f4b8b14b0663accb3fd123d87142ceb2fbc57fd1afa07c945d1329029b026b9ee122096ef71a3f34f257a9e04cf4245b87298c38b4 + "@babel/core": ^8.0.0-alpha.2 + checksum: c623f2ee0af94643d2266cba89aa578d974fc8eab6447cc1f07a272f7d26c4b18475036332adeabcd23c2459c048653589d1c9f7b48c69ec15c487f3c1cf4dce languageName: node linkType: hard @@ -3074,14 +3265,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-property-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" +"@babel/plugin-transform-property-literals@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-property-literals@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 796176a3176106f77fcb8cd04eb34a8475ce82d6d03a88db089531b8f0453a2fb8b0c6ec9a52c27948bc0ea478becec449893741fc546dfc3930ab927e3f9f2e + "@babel/core": ^8.0.0-alpha.2 + checksum: d7fd68bec2dc036569e23b139510997873b3acd0786b651ac21465a2faa29462e8ded88e2bd67cd39cd59a79b3c8146900437cadafec93e444783d1d2248fe53 languageName: node linkType: hard @@ -3239,15 +3430,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-regenerator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-regenerator@npm:7.22.5" +"@babel/plugin-transform-regenerator@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-regenerator@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - regenerator-transform: ^0.15.1 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + regenerator-transform: ^0.15.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f7c5ca5151321963df777cc02725d10d1ccc3b3b8323da0423aecd9ac6144cbdd2274af5281a5580db2fc2f8b234e318517b5d76b85669118906533a559f2b6a + "@babel/core": ^8.0.0-alpha.2 + checksum: a85622d882faa1604fa1a6af2b7cac0b0805e15b3ac0f82c5bbe78d6f8f7d31008e5ad2896d4405e5153e5c06c8201c9f897e3ccfbd46f394ce920766eac5c99 languageName: node linkType: hard @@ -3264,14 +3455,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-reserved-words@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" +"@babel/plugin-transform-reserved-words@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-reserved-words@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3ffd7dbc425fe8132bfec118b9817572799cab1473113a635d25ab606c1f5a2341a636c04cf6b22df3813320365ed5a965b5eeb3192320a10e4cc2c137bd8bfc + "@babel/core": ^8.0.0-alpha.2 + checksum: 5e49939f9fe4e9995e503dcdd5828ecfc629f1cf74b47ee724e2378680b149f0ee97fad2f36490b5c64b1ad0d281f747186af1fad1dd34bbdddacefe7d1defbf languageName: node linkType: hard @@ -3287,19 +3478,19 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-runtime@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/plugin-transform-runtime@npm:7.22.9" +"@babel/plugin-transform-runtime@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-runtime@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-module-imports": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - babel-plugin-polyfill-corejs2: ^0.4.4 - babel-plugin-polyfill-corejs3: ^0.8.2 - babel-plugin-polyfill-regenerator: ^0.5.1 - semver: ^6.3.1 + "@babel/helper-module-imports": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + babel-plugin-polyfill-corejs2: ^0.4.5 + babel-plugin-polyfill-corejs3: ^0.8.3 + babel-plugin-polyfill-regenerator: ^0.5.2 + semver: ^7.3.4 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2fe5e41f83015ca174feda841d77aa9012fc855c907f9b360a11927f41b100537c8c83487771769147668e797eec26d5294e972b997f4759133cc43a22a43eec + "@babel/core": ^8.0.0-alpha.2 + checksum: 1883c79d6f459bc0867c1d0e169ba5bd6b4d9a6312e8c8df2cbc852f247b61b4da5fb2ae4fef56d65d821508d1f7fd8992239d7fc261dfbe51ef110277f9fd02 languageName: node linkType: hard @@ -3325,14 +3516,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" +"@babel/plugin-transform-shorthand-properties@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-shorthand-properties@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: a5ac902c56ea8effa99f681340ee61bac21094588f7aef0bc01dff98246651702e677552fa6d10e548c4ac22a3ffad047dd2f8c8f0540b68316c2c203e56818b + "@babel/core": ^8.0.0-alpha.2 + checksum: bf6fdebdb58e1b39ae2610aca5dbc60f85efb99b7422ff3b8cf5a07f15468849e86ed126e35b4ed1b1ea6b8cc3dd73f32ef900ac385438850173758950223b91 languageName: node linkType: hard @@ -3348,15 +3539,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-spread@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-spread@npm:7.22.5" +"@babel/plugin-transform-spread@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-spread@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-skip-transparent-expression-wrappers": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 5587f0deb60b3dfc9b274e269031cc45ec75facccf1933ea2ea71ced9fd3ce98ed91bb36d6cd26817c14474b90ed998c5078415f0eab531caf301496ce24c95c + "@babel/core": ^8.0.0-alpha.2 + checksum: 27bf8568ad18293bcc3d209dc1c75904cfda8fd9a5c939cd9e590a25ac2ae13547972a26bd647e995d9e5c8af176b0cd931c5a0b212520edc99d984b4f2c3e87 languageName: node linkType: hard @@ -3373,14 +3564,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-sticky-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" +"@babel/plugin-transform-sticky-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-sticky-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 63b2c575e3e7f96c32d52ed45ee098fb7d354b35c2223b8c8e76840b32cc529ee0c0ceb5742fd082e56e91e3d82842a367ce177e82b05039af3d602c9627a729 + "@babel/core": ^8.0.0-alpha.2 + checksum: ec3a2a3442ccba9c26949fbf2f9eb92c591b46902a767a947de270e889625e2f803b5c5426f1a1cf0480183f29bc64bb8643c88f06ddf6c93622169e8df8e52f languageName: node linkType: hard @@ -3408,14 +3599,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-template-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" +"@babel/plugin-transform-template-literals@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-template-literals@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 27e9bb030654cb425381c69754be4abe6a7c75b45cd7f962cd8d604b841b2f0fb7b024f2efc1c25cc53f5b16d79d5e8cfc47cacbdaa983895b3aeefa3e7e24ff + "@babel/core": ^8.0.0-alpha.2 + checksum: 2a1e309c0ffe57f326287ff401bedc5ea915f496e811da5a496b7dcce111948fb3b1d4ac043a048ae82cd4794b53334933136dbca3ed8db5b1a89540fb35e6df languageName: node linkType: hard @@ -3431,14 +3622,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" +"@babel/plugin-transform-typeof-symbol@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-typeof-symbol@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 82a53a63ffc3010b689ca9a54e5f53b2718b9f4b4a9818f36f9b7dba234f38a01876680553d2716a645a61920b5e6e4aaf8d4a0064add379b27ca0b403049512 + "@babel/core": ^8.0.0-alpha.2 + checksum: 95deab25cefc2a06ade735d53e366d730fc7f3d7f7737eccc29924aac2f2926c58616aa15a832ed3123272137cc26d3f5581fa42cd8765644b7e80204a44f7dd languageName: node linkType: hard @@ -3457,17 +3648,17 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-typescript@npm:^7.22.5": - version: 7.22.9 - resolution: "@babel/plugin-transform-typescript@npm:7.22.9" +"@babel/plugin-transform-typescript@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-typescript@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-create-class-features-plugin": ^7.22.9 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-typescript": ^7.22.5 + "@babel/helper-annotate-as-pure": ^8.0.0-alpha.2 + "@babel/helper-create-class-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/plugin-syntax-typescript": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6d1317a54d093b302599a4bee8ba9865d0de8b7b6ac1a0746c4316231d632f75b7f086e6e78acb9ac95ba12ba3b9da462dc9ca69370abb4603c4cc987f62e67e + "@babel/core": ^8.0.0-alpha.2 + checksum: 1a54eba5c0b4ac9b86fb19e5d72ee3228769db35aaee017c67609495c61238b1e1f6a52fe1749eb715e71ca8b239b672d407167990a9d92c51d71f7eb9a15b5e languageName: node linkType: hard @@ -3488,14 +3679,14 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-unicode-escapes@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.5" +"@babel/plugin-transform-unicode-escapes@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-unicode-escapes@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: da5e85ab3bb33a75cbf6181bfd236b208dc934702fd304db127232f17b4e0f42c6d3f238de8589470b4190906967eea8ca27adf3ae9d8ee4de2a2eae906ed186 + "@babel/core": ^8.0.0-alpha.2 + checksum: a32b1020f7dc940b0b1b93d2a4d49b39ae83db271c5d8157329427717f8cb6af70f1d79262d1280e1adf73679238bb5994b9badd886d1f6c940167d4401201bc languageName: node linkType: hard @@ -3511,15 +3702,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" +"@babel/plugin-transform-unicode-property-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-regexp-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2495e5f663cb388e3d888b4ba3df419ac436a5012144ac170b622ddfc221f9ea9bdba839fa2bc0185cb776b578030666406452ec7791cbf0e7a3d4c88ae9574c + "@babel/core": ^8.0.0-alpha.2 + checksum: 3bd19e34844b042c78d62211bf9fb4718f7b01f9ca9489777c3bfeb8c32a19827bf8d051c7cd8adde815f851eca6fa915c48c70b0a3e239693458832a75e3a59 languageName: node linkType: hard @@ -3536,15 +3727,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-unicode-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" +"@babel/plugin-transform-unicode-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-unicode-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-regexp-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6b5d1404c8c623b0ec9bd436c00d885a17d6a34f3f2597996343ddb9d94f6379705b21582dfd4cec2c47fd34068872e74ab6b9580116c0566b3f9447e2a7fa06 + "@babel/core": ^8.0.0-alpha.2 + checksum: 0bc48c95b1479147c644834989bb43ae4ac6c2457cb2b363f3141241b0ed10d0f1ca4eede7b58aa902e5d52943ed54153fe65476029020344af84a85b9bb6958 languageName: node linkType: hard @@ -3561,15 +3752,15 @@ __metadata: languageName: unknown linkType: soft -"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" +"@babel/plugin-transform-unicode-sets-regex@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-create-regexp-features-plugin": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0 - checksum: c042070f980b139547f8b0179efbc049ac5930abec7fc26ed7a41d89a048d8ab17d362200e204b6f71c3c20d6991a0e74415e1a412a49adc8131c2a40c04822e + "@babel/core": ^8.0.0-alpha.2 + checksum: 8d327061d2cc976c9fa588cc4ba5ba29cd7c7abe5721d06c81a6e791c1d06457cd15beff3fb7792755d3e20958e98ee42912082b9427edaebe540b9dc72914ec languageName: node linkType: hard @@ -3586,93 +3777,76 @@ __metadata: languageName: unknown linkType: soft -"@babel/preset-env@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/preset-env@npm:7.22.9" - dependencies: - "@babel/compat-data": ^7.22.9 - "@babel/helper-compilation-targets": ^7.22.9 - "@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.22.5 - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 - "@babel/plugin-syntax-async-generators": ^7.8.4 - "@babel/plugin-syntax-class-properties": ^7.12.13 - "@babel/plugin-syntax-class-static-block": ^7.14.5 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 - "@babel/plugin-syntax-export-namespace-from": ^7.8.3 - "@babel/plugin-syntax-import-assertions": ^7.22.5 - "@babel/plugin-syntax-import-attributes": ^7.22.5 - "@babel/plugin-syntax-import-meta": ^7.10.4 - "@babel/plugin-syntax-json-strings": ^7.8.3 - "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 - "@babel/plugin-syntax-numeric-separator": ^7.10.4 - "@babel/plugin-syntax-object-rest-spread": ^7.8.3 - "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 - "@babel/plugin-syntax-optional-chaining": ^7.8.3 - "@babel/plugin-syntax-private-property-in-object": ^7.14.5 - "@babel/plugin-syntax-top-level-await": ^7.14.5 - "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 - "@babel/plugin-transform-arrow-functions": ^7.22.5 - "@babel/plugin-transform-async-generator-functions": ^7.22.7 - "@babel/plugin-transform-async-to-generator": ^7.22.5 - "@babel/plugin-transform-block-scoped-functions": ^7.22.5 - "@babel/plugin-transform-block-scoping": ^7.22.5 - "@babel/plugin-transform-class-properties": ^7.22.5 - "@babel/plugin-transform-class-static-block": ^7.22.5 - "@babel/plugin-transform-classes": ^7.22.6 - "@babel/plugin-transform-computed-properties": ^7.22.5 - "@babel/plugin-transform-destructuring": ^7.22.5 - "@babel/plugin-transform-dotall-regex": ^7.22.5 - "@babel/plugin-transform-duplicate-keys": ^7.22.5 - "@babel/plugin-transform-dynamic-import": ^7.22.5 - "@babel/plugin-transform-exponentiation-operator": ^7.22.5 - "@babel/plugin-transform-export-namespace-from": ^7.22.5 - "@babel/plugin-transform-for-of": ^7.22.5 - "@babel/plugin-transform-function-name": ^7.22.5 - "@babel/plugin-transform-json-strings": ^7.22.5 - "@babel/plugin-transform-literals": ^7.22.5 - "@babel/plugin-transform-logical-assignment-operators": ^7.22.5 - "@babel/plugin-transform-member-expression-literals": ^7.22.5 - "@babel/plugin-transform-modules-amd": ^7.22.5 - "@babel/plugin-transform-modules-commonjs": ^7.22.5 - "@babel/plugin-transform-modules-systemjs": ^7.22.5 - "@babel/plugin-transform-modules-umd": ^7.22.5 - "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5 - "@babel/plugin-transform-new-target": ^7.22.5 - "@babel/plugin-transform-nullish-coalescing-operator": ^7.22.5 - "@babel/plugin-transform-numeric-separator": ^7.22.5 - "@babel/plugin-transform-object-rest-spread": ^7.22.5 - "@babel/plugin-transform-object-super": ^7.22.5 - "@babel/plugin-transform-optional-catch-binding": ^7.22.5 - "@babel/plugin-transform-optional-chaining": ^7.22.6 - "@babel/plugin-transform-parameters": ^7.22.5 - "@babel/plugin-transform-private-methods": ^7.22.5 - "@babel/plugin-transform-private-property-in-object": ^7.22.5 - "@babel/plugin-transform-property-literals": ^7.22.5 - "@babel/plugin-transform-regenerator": ^7.22.5 - "@babel/plugin-transform-reserved-words": ^7.22.5 - "@babel/plugin-transform-shorthand-properties": ^7.22.5 - "@babel/plugin-transform-spread": ^7.22.5 - "@babel/plugin-transform-sticky-regex": ^7.22.5 - "@babel/plugin-transform-template-literals": ^7.22.5 - "@babel/plugin-transform-typeof-symbol": ^7.22.5 - "@babel/plugin-transform-unicode-escapes": ^7.22.5 - "@babel/plugin-transform-unicode-property-regex": ^7.22.5 - "@babel/plugin-transform-unicode-regex": ^7.22.5 - "@babel/plugin-transform-unicode-sets-regex": ^7.22.5 - "@babel/preset-modules": ^0.1.5 - "@babel/types": ^7.22.5 - babel-plugin-polyfill-corejs2: ^0.4.4 - babel-plugin-polyfill-corejs3: ^0.8.2 - babel-plugin-polyfill-regenerator: ^0.5.1 +"@babel/preset-env@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/preset-env@npm:8.0.0-alpha.2" + dependencies: + "@babel/compat-data": ^8.0.0-alpha.2 + "@babel/helper-compilation-targets": ^8.0.0-alpha.2 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-validator-option": ^8.0.0-alpha.2 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^8.0.0-alpha.2 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^8.0.0-alpha.2 + "@babel/plugin-syntax-import-assertions": ^8.0.0-alpha.2 + "@babel/plugin-syntax-import-attributes": ^8.0.0-alpha.2 + "@babel/plugin-transform-arrow-functions": ^8.0.0-alpha.2 + "@babel/plugin-transform-async-generator-functions": ^8.0.0-alpha.2 + "@babel/plugin-transform-async-to-generator": ^8.0.0-alpha.2 + "@babel/plugin-transform-block-scoped-functions": ^8.0.0-alpha.2 + "@babel/plugin-transform-block-scoping": ^8.0.0-alpha.2 + "@babel/plugin-transform-class-properties": ^8.0.0-alpha.2 + "@babel/plugin-transform-class-static-block": ^8.0.0-alpha.2 + "@babel/plugin-transform-classes": ^8.0.0-alpha.2 + "@babel/plugin-transform-computed-properties": ^8.0.0-alpha.2 + "@babel/plugin-transform-destructuring": ^8.0.0-alpha.2 + "@babel/plugin-transform-dotall-regex": ^8.0.0-alpha.2 + "@babel/plugin-transform-duplicate-keys": ^8.0.0-alpha.2 + "@babel/plugin-transform-dynamic-import": ^8.0.0-alpha.2 + "@babel/plugin-transform-exponentiation-operator": ^8.0.0-alpha.2 + "@babel/plugin-transform-export-namespace-from": ^8.0.0-alpha.2 + "@babel/plugin-transform-for-of": ^8.0.0-alpha.2 + "@babel/plugin-transform-function-name": ^8.0.0-alpha.2 + "@babel/plugin-transform-json-strings": ^8.0.0-alpha.2 + "@babel/plugin-transform-literals": ^8.0.0-alpha.2 + "@babel/plugin-transform-logical-assignment-operators": ^8.0.0-alpha.2 + "@babel/plugin-transform-member-expression-literals": ^8.0.0-alpha.2 + "@babel/plugin-transform-modules-amd": ^8.0.0-alpha.2 + "@babel/plugin-transform-modules-commonjs": ^8.0.0-alpha.2 + "@babel/plugin-transform-modules-systemjs": ^8.0.0-alpha.2 + "@babel/plugin-transform-modules-umd": ^8.0.0-alpha.2 + "@babel/plugin-transform-named-capturing-groups-regex": ^8.0.0-alpha.2 + "@babel/plugin-transform-new-target": ^8.0.0-alpha.2 + "@babel/plugin-transform-nullish-coalescing-operator": ^8.0.0-alpha.2 + "@babel/plugin-transform-numeric-separator": ^8.0.0-alpha.2 + "@babel/plugin-transform-object-rest-spread": ^8.0.0-alpha.2 + "@babel/plugin-transform-object-super": ^8.0.0-alpha.2 + "@babel/plugin-transform-optional-catch-binding": ^8.0.0-alpha.2 + "@babel/plugin-transform-optional-chaining": ^8.0.0-alpha.2 + "@babel/plugin-transform-parameters": ^8.0.0-alpha.2 + "@babel/plugin-transform-private-methods": ^8.0.0-alpha.2 + "@babel/plugin-transform-private-property-in-object": ^8.0.0-alpha.2 + "@babel/plugin-transform-property-literals": ^8.0.0-alpha.2 + "@babel/plugin-transform-regenerator": ^8.0.0-alpha.2 + "@babel/plugin-transform-reserved-words": ^8.0.0-alpha.2 + "@babel/plugin-transform-shorthand-properties": ^8.0.0-alpha.2 + "@babel/plugin-transform-spread": ^8.0.0-alpha.2 + "@babel/plugin-transform-sticky-regex": ^8.0.0-alpha.2 + "@babel/plugin-transform-template-literals": ^8.0.0-alpha.2 + "@babel/plugin-transform-typeof-symbol": ^8.0.0-alpha.2 + "@babel/plugin-transform-unicode-escapes": ^8.0.0-alpha.2 + "@babel/plugin-transform-unicode-property-regex": ^8.0.0-alpha.2 + "@babel/plugin-transform-unicode-regex": ^8.0.0-alpha.2 + "@babel/plugin-transform-unicode-sets-regex": ^8.0.0-alpha.2 + "@babel/preset-modules": 0.1.6-no-external-plugins + "@babel/types": ^8.0.0-alpha.2 + babel-plugin-polyfill-corejs2: ^0.4.5 + babel-plugin-polyfill-corejs3: ^0.8.3 + babel-plugin-polyfill-regenerator: ^0.5.2 core-js-compat: ^3.31.0 - semver: ^6.3.1 + semver: ^7.3.4 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6caa2897bbda30c6932aed0a03827deb1337c57108050c9f97dc9a857e1533c7125b168b6d70b9d191965bf05f9f233f0ad20303080505dff7ce39740aaa759d + "@babel/core": ^8.0.0-alpha.2 + checksum: edac8e053480c9ce4aff6e2d4230d0780860340c655647cc0d1b935c7f448e1aa756f365dd110917028ffe6c0e5211c92738c2e6570cca46b5edf40accaf11c3 languageName: node linkType: hard @@ -3796,21 +3970,6 @@ __metadata: languageName: node linkType: hard -"@babel/preset-modules@npm:^0.1.5": - version: 0.1.5 - resolution: "@babel/preset-modules@npm:0.1.5" - dependencies: - "@babel/helper-plugin-utils": ^7.0.0 - "@babel/plugin-proposal-unicode-property-regex": ^7.4.4 - "@babel/plugin-transform-dotall-regex": ^7.4.4 - "@babel/types": ^7.4.4 - esutils: ^2.0.2 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 8430e0e9e9d520b53e22e8c4c6a5a080a12b63af6eabe559c2310b187bd62ae113f3da82ba33e9d1d0f3230930ca702843aae9dd226dec51f7d7114dc1f51c10 - languageName: node - linkType: hard - "@babel/preset-react@workspace:^, @babel/preset-react@workspace:packages/babel-preset-react": version: 0.0.0-use.local resolution: "@babel/preset-react@workspace:packages/babel-preset-react" @@ -3828,18 +3987,18 @@ __metadata: languageName: unknown linkType: soft -"@babel/preset-typescript@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/preset-typescript@npm:7.22.5" +"@babel/preset-typescript@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/preset-typescript@npm:8.0.0-alpha.2" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-validator-option": ^7.22.5 - "@babel/plugin-syntax-jsx": ^7.22.5 - "@babel/plugin-transform-modules-commonjs": ^7.22.5 - "@babel/plugin-transform-typescript": ^7.22.5 + "@babel/helper-plugin-utils": ^8.0.0-alpha.2 + "@babel/helper-validator-option": ^8.0.0-alpha.2 + "@babel/plugin-syntax-jsx": ^8.0.0-alpha.2 + "@babel/plugin-transform-modules-commonjs": ^8.0.0-alpha.2 + "@babel/plugin-transform-typescript": ^8.0.0-alpha.2 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7be1670cb4404797d3a473bd72d66eb2b3e0f2f8a672a5e40bdb0812cc66085ec84bcd7b896709764cabf042fdc6b7f2d4755ac7cce10515eb596ff61dab5154 + "@babel/core": ^8.0.0-alpha.2 + checksum: 9b7bb5af6cad4f8d5f528af366a8014652cdb60b7e19d63c1f5dd0bf84b7c67b2c53d70e0dd65ab5a02c26996c3816bd7f567f34113a8b8a420cbe4a03b6e8c5 languageName: node linkType: hard @@ -3902,7 +4061,16 @@ __metadata: languageName: unknown linkType: soft -"@babel/runtime@npm:^7.22.6, @babel/runtime@npm:^7.8.4": +"@babel/runtime@npm:8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/runtime@npm:8.0.0-alpha.2" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: 55fd4219c351ed37df45d30c48d31bc275867d8864eb783f58e4d29a502cafb671f302a30150cd5862921fd5e4dc7954d98952affe46c942c05d2b076e1619ad + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.8.4": version: 7.22.6 resolution: "@babel/runtime@npm:7.22.6" dependencies: @@ -4040,6 +4208,17 @@ __metadata: languageName: node linkType: hard +"@babel/template@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/template@npm:8.0.0-alpha.2" + dependencies: + "@babel/code-frame": ^8.0.0-alpha.2 + "@babel/parser": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + checksum: e7b12a6c363e501a0edf9fca643abed886ee0f5242ae576730552543ab036d7a39edf2333d5c5375e6caeca95d6c12b5dd6536506c642c8c13d069d8e9f67b03 + languageName: node + linkType: hard + "@babel/template@workspace:^, @babel/template@workspace:packages/babel-template": version: 0.0.0-use.local resolution: "@babel/template@workspace:packages/babel-template" @@ -4078,6 +4257,24 @@ __metadata: languageName: node linkType: hard +"@babel/traverse@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/traverse@npm:8.0.0-alpha.2" + dependencies: + "@babel/code-frame": ^8.0.0-alpha.2 + "@babel/generator": ^8.0.0-alpha.2 + "@babel/helper-environment-visitor": ^8.0.0-alpha.2 + "@babel/helper-function-name": ^8.0.0-alpha.2 + "@babel/helper-hoist-variables": ^8.0.0-alpha.2 + "@babel/helper-split-export-declaration": ^8.0.0-alpha.2 + "@babel/parser": ^8.0.0-alpha.2 + "@babel/types": ^8.0.0-alpha.2 + debug: ^4.1.0 + globals: ^13.5.0 + checksum: 254d1fff6128bef34eb8b87d3ff5a6e7786a429bbfdf7208db9fc9c71ea18ed24c6b30594e4e7e4fc7fe66231911c8ca3e9ca50ba80bef637c0dacd68fff2c02 + languageName: node + linkType: hard + "@babel/traverse@workspace:^, @babel/traverse@workspace:packages/babel-traverse": version: 0.0.0-use.local resolution: "@babel/traverse@workspace:packages/babel-traverse" @@ -4108,6 +4305,17 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^8.0.0-alpha.2": + version: 8.0.0-alpha.2 + resolution: "@babel/types@npm:8.0.0-alpha.2" + dependencies: + "@babel/helper-string-parser": ^8.0.0-alpha.2 + "@babel/helper-validator-identifier": ^8.0.0-alpha.2 + to-fast-properties: ^3.0.0 + checksum: 6fd6cd4da38e6c9c0a58736a7631bced7ad754060d77d6d4f928d2c2232a0aa041564af1d707300e11fb530636b94dbafa8970aea4294818e49a757810e06b5b + languageName: node + linkType: hard + "@babel/types@workspace:*, @babel/types@workspace:^, @babel/types@workspace:packages/babel-types": version: 0.0.0-use.local resolution: "@babel/types@workspace:packages/babel-types" @@ -4561,7 +4769,7 @@ __metadata: languageName: node linkType: hard -"@nicolo-ribaudo/chokidar-2-BABEL_8_BREAKING-false@npm:@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3, @nicolo-ribaudo/chokidar-2@npm:2.1.8-no-fsevents.3": +"@nicolo-ribaudo/chokidar-2-BABEL_8_BREAKING-false@npm:@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3": version: 2.1.8-no-fsevents.3 resolution: "@nicolo-ribaudo/chokidar-2@npm:2.1.8-no-fsevents.3" checksum: ee55cc9241aeea7eb94b8a8551bfa4246c56c53bc71ecda0a2104018fcc328ba5723b33686bdf9cc65d4df4ae65e8016b89e0bbdeb94e0309fe91bb9ced42344 @@ -6348,7 +6556,7 @@ __metadata: languageName: node linkType: hard -"babel-plugin-polyfill-corejs2@npm:^0.4.4, babel-plugin-polyfill-corejs2@npm:^0.4.5": +"babel-plugin-polyfill-corejs2@npm:^0.4.5": version: 0.4.5 resolution: "babel-plugin-polyfill-corejs2@npm:0.4.5" dependencies: @@ -6361,7 +6569,7 @@ __metadata: languageName: node linkType: hard -"babel-plugin-polyfill-corejs3@npm:^0.8.2, babel-plugin-polyfill-corejs3@npm:^0.8.3": +"babel-plugin-polyfill-corejs3@npm:^0.8.3": version: 0.8.3 resolution: "babel-plugin-polyfill-corejs3@npm:0.8.3" dependencies: @@ -6384,7 +6592,7 @@ __metadata: languageName: node linkType: hard -"babel-plugin-polyfill-regenerator@npm:^0.5.1, babel-plugin-polyfill-regenerator@npm:^0.5.2": +"babel-plugin-polyfill-regenerator@npm:^0.5.2": version: 0.5.2 resolution: "babel-plugin-polyfill-regenerator@npm:0.5.2" dependencies: @@ -6446,20 +6654,20 @@ __metadata: resolution: "babel@workspace:." dependencies: $repo-utils: "link:./scripts/repo-utils" - "@babel/cli": ^7.22.9 - "@babel/core": ^7.22.9 + "@babel/cli": 8.0.0-alpha.2 + "@babel/core": 8.0.0-alpha.2 "@babel/eslint-config-internal": "workspace:^" "@babel/eslint-parser": "workspace:^" "@babel/eslint-plugin-development": "workspace:^" "@babel/eslint-plugin-development-internal": "workspace:^" - "@babel/plugin-transform-dynamic-import": ^7.22.5 - "@babel/plugin-transform-export-namespace-from": ^7.22.5 - "@babel/plugin-transform-modules-commonjs": ^7.22.5 - "@babel/plugin-transform-object-rest-spread": ^7.22.5 - "@babel/plugin-transform-runtime": ^7.22.9 - "@babel/preset-env": ^7.22.9 - "@babel/preset-typescript": ^7.22.5 - "@babel/runtime": ^7.22.6 + "@babel/plugin-transform-dynamic-import": 8.0.0-alpha.2 + "@babel/plugin-transform-export-namespace-from": 8.0.0-alpha.2 + "@babel/plugin-transform-modules-commonjs": 8.0.0-alpha.2 + "@babel/plugin-transform-object-rest-spread": 8.0.0-alpha.2 + "@babel/plugin-transform-runtime": 8.0.0-alpha.2 + "@babel/preset-env": 8.0.0-alpha.2 + "@babel/preset-typescript": 8.0.0-alpha.2 + "@babel/runtime": 8.0.0-alpha.2 "@eslint/eslintrc": ^2.1.0 "@rollup/plugin-babel": ^6.0.3 "@rollup/plugin-commonjs": ^24.1.0 @@ -7083,7 +7291,7 @@ __metadata: languageName: node linkType: hard -"chalk-BABEL_8_BREAKING-true@npm:chalk@^4.1.2": +"chalk-BABEL_8_BREAKING-true@npm:chalk@^4.1.2, chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: @@ -7116,16 +7324,6 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^4.0.0, chalk@npm:^4.1.0": - version: 4.1.0 - resolution: "chalk@npm:4.1.0" - dependencies: - ansi-styles: ^4.1.0 - supports-color: ^7.1.0 - checksum: 5561c7b4c063badee3e16d04bce50bd033e1be1bf4c6948639275683ffa7a1993c44639b43c22b1c505f0f813a24b1889037eb182546b48946f9fe7cdd0e7d13 - languageName: node - linkType: hard - "chalk@npm:^5.0.0": version: 5.0.0 resolution: "chalk@npm:5.0.0" @@ -9744,7 +9942,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"globals@npm:^13.19.0, globals@npm:^13.20.0": +"globals@npm:^13.19.0, globals@npm:^13.20.0, globals@npm:^13.5.0": version: 13.20.0 resolution: "globals@npm:13.20.0" dependencies: @@ -11447,6 +11645,13 @@ fsevents@^1.2.7: languageName: node linkType: hard +"js-tokens@npm:^8.0.0": + version: 8.0.1 + resolution: "js-tokens@npm:8.0.1" + checksum: fb7bcd476c5b902ffb766382ca85aecb86ec66a607e419377026293b5877774e465f6cbe4229c8d85db3776ccc91c3aee518a0e04a005e260e57353f6f9278a8 + languageName: node + linkType: hard + "js-yaml@npm:^3.13.1, js-yaml@npm:^3.2.1": version: 3.13.1 resolution: "js-yaml@npm:3.13.1" @@ -11486,7 +11691,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"jsesc-BABEL_8_BREAKING-true@npm:jsesc@^3.0.2": +"jsesc-BABEL_8_BREAKING-true@npm:jsesc@^3.0.2, jsesc@npm:^3.0.2": version: 3.0.2 resolution: "jsesc@npm:3.0.2" bin: @@ -12014,6 +12219,13 @@ fsevents@^1.2.7: languageName: node linkType: hard +"lru-cache@npm:^7.14.1": + version: 7.18.3 + resolution: "lru-cache@npm:7.18.3" + checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 + languageName: node + linkType: hard + "lru-cache@npm:^9.1.1": version: 9.1.2 resolution: "lru-cache@npm:9.1.2" @@ -12039,7 +12251,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"make-dir-BABEL_8_BREAKING-false@npm:make-dir@^2.1.0, make-dir@npm:^2.0.0, make-dir@npm:^2.1.0": +"make-dir-BABEL_8_BREAKING-false@npm:make-dir@^2.1.0, make-dir@npm:^2.0.0": version: 2.1.0 resolution: "make-dir@npm:2.1.0" dependencies: @@ -13832,7 +14044,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"regenerator-transform@npm:^0.15.1, regenerator-transform@npm:^0.15.2": +"regenerator-transform@npm:^0.15.2": version: 0.15.2 resolution: "regenerator-transform@npm:0.15.2" dependencies: @@ -14362,7 +14574,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"semver@npm:^7.3.2, semver@npm:^7.3.7, semver@npm:^7.5.0, semver@npm:^7.5.3": +"semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.7, semver@npm:^7.5.0, semver@npm:^7.5.3": version: 7.5.4 resolution: "semver@npm:7.5.4" dependencies: @@ -14548,7 +14760,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"slash-BABEL_8_BREAKING-false@npm:slash@^2.0.0, slash@npm:^2.0.0": +"slash-BABEL_8_BREAKING-false@npm:slash@^2.0.0": version: 2.0.0 resolution: "slash@npm:2.0.0" checksum: 512d4350735375bd11647233cb0e2f93beca6f53441015eea241fe784d8068281c3987fbaa93e7ef1c38df68d9c60013045c92837423c69115297d6169aa85e6 @@ -15425,7 +15637,7 @@ fsevents@^1.2.7: languageName: node linkType: hard -"to-fast-properties-BABEL_8_BREAKING-true@npm:to-fast-properties@^3.0.0": +"to-fast-properties-BABEL_8_BREAKING-true@npm:to-fast-properties@^3.0.0, to-fast-properties@npm:^3.0.0": version: 3.0.1 resolution: "to-fast-properties@npm:3.0.1" checksum: 66b79f2c0d420d116a4eeb781c87c8c6b2de426a15f16118759e706aa1111833b0c578355a1108514ada966c08f4dba0cb7994aca025d80a535a139f7a631e22