diff --git a/.changeset/heavy-radios-doubt.md b/.changeset/heavy-radios-doubt.md new file mode 100644 index 0000000000..214c32bcb5 --- /dev/null +++ b/.changeset/heavy-radios-doubt.md @@ -0,0 +1,8 @@ +--- +"eslint-plugin-graphile-export": patch +"graphile-export": patch +"postgraphile": patch +--- + +Fix 'Container is falsy' error message the latest Babel patch release would +cause. diff --git a/package.json b/package.json index 589505691a..a227a29bac 100644 --- a/package.json +++ b/package.json @@ -28,15 +28,15 @@ "prettier:check": "yarn prettier:all --list-different" }, "devDependencies": { - "@babel/cli": "^7.22.10", - "@babel/core": "^7.22.11", - "@babel/eslint-parser": "^7.22.11", + "@babel/cli": "^7.25.6", + "@babel/core": "^7.25.2", + "@babel/eslint-parser": "^7.25.1", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-modules-commonjs": "^7.22.11", - "@babel/plugin-transform-runtime": "^7.22.10", - "@babel/preset-env": "^7.22.14", - "@babel/preset-react": "^7.22.5", - "@babel/preset-typescript": "^7.22.11", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-runtime": "^7.25.4", + "@babel/preset-env": "^7.25.4", + "@babel/preset-react": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", "@knodes/typedoc-plugin-monorepo-readmes": "^0.23.1", "@knodes/typedoc-plugin-pages": "^0.23.4", "@localrepo/prettier2-for-jest": "npm:prettier@^2", @@ -48,7 +48,7 @@ "@typescript-eslint/eslint-plugin": "^6.5.0", "@typescript-eslint/parser": "^6.5.0", "@typescript-eslint/typescript-estree": "^6.5.0", - "babel-jest": "^29.6.4", + "babel-jest": "^29.7.0", "babel-plugin-transform-import-meta": "^2.2.1", "concurrently": "^8.2.1", "eslint": "^8.48.0", diff --git a/utils/eslint-plugin-graphile-export/package.json b/utils/eslint-plugin-graphile-export/package.json index 264fee482f..b2494ad939 100644 --- a/utils/eslint-plugin-graphile-export/package.json +++ b/utils/eslint-plugin-graphile-export/package.json @@ -37,7 +37,7 @@ "dist" ], "devDependencies": { - "@babel/types": "^7.22.11", + "@babel/types": "^7.25.6", "@types/eslint": "^8.44.2", "@types/estree": "^1.0.1", "@types/jest": "^29.5.4", diff --git a/utils/graphile-export/package.json b/utils/graphile-export/package.json index 728a0dcc63..6ea77a8f82 100644 --- a/utils/graphile-export/package.json +++ b/utils/graphile-export/package.json @@ -40,11 +40,11 @@ }, "homepage": "https://graphile.org/", "dependencies": { - "@babel/generator": "^7.22.10", - "@babel/parser": "^7.22.14", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.22.11", + "@babel/generator": "^7.25.6", + "@babel/parser": "^7.25.6", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.6", + "@babel/types": "^7.25.6", "@types/node": "^20.5.7", "prettier": "^3.0.3", "tslib": "^2.6.2" @@ -69,8 +69,8 @@ "dist" ], "devDependencies": { - "@types/babel__generator": "^7.6.4", - "@types/babel__template": "^7.4.1", + "@types/babel__generator": "^7.6.8", + "@types/babel__template": "^7.4.4", "@types/jest": "^29.5.4", "@types/prettier": "^3.0.0", "jest": "^29.6.4", diff --git a/utils/graphile-export/src/optimize/index.ts b/utils/graphile-export/src/optimize/index.ts index 0ab4a25c52..206048d5f5 100644 --- a/utils/graphile-export/src/optimize/index.ts +++ b/utils/graphile-export/src/optimize/index.ts @@ -170,47 +170,63 @@ export const optimize = (inAst: t.File, runs = 1): t.File => { }, }, Program: { - exit(path) { - // Replace all things that are only referenced once - for (const [bindingName, binding] of Object.entries( - path.scope.bindings, - )) { - if ( - !t.isVariableDeclarator(binding.path.node) && - !t.isFunctionDeclaration(binding.path.node) - ) { - continue; + exit(exitPath) { + // Make sure our scope information is up to date! + exitPath.scope.crawl(); + + // Replace all things that are only referenced once. + // This nested traversal approach inspired by https://github.com/babel/babel/issues/15544#issuecomment-1540542863 + exitPath.traverse({ + VariableDeclarator: visitSubpath, + FunctionDeclaration: visitSubpath, + }); + function visitSubpath( + path: + | NodePath + | NodePath, + ) { + if (!t.isIdentifier(path.node.id)) { + return; + } + const bindingName = path.node.id.name; + const scope = t.isFunctionDeclaration(path.node) + ? path.scope.parent + : path.scope; + // Only optimize at top level + if (scope !== exitPath.scope) { + return; } - if (!t.isIdentifier(binding.path.node.id)) { - continue; + const binding = scope.bindings[bindingName]; + if (!binding) { + return; } - const expr = t.isFunctionDeclaration(binding.path.node) + const expr = t.isFunctionDeclaration(path.node) ? // Convert function to expression t.functionExpression( - binding.path.node.id, - binding.path.node.params, - binding.path.node.body, - binding.path.node.generator, - binding.path.node.async, + path.node.id, + path.node.params, + path.node.body, + path.node.generator, + path.node.async, ) - : binding.path.node.init; + : path.node.init; if (!expr) { - continue; + return; } // Skip if it's an export - const statementPath = binding.path.getStatementParent(); + const statementPath = path.getStatementParent(); if ( !statementPath || t.isExportNamedDeclaration(statementPath.node) || t.isExportDefaultDeclaration(statementPath.node) ) { - continue; + return; } // Only replace if it's only referenced once (we don't want duplicates) if (binding.referencePaths.length !== 1) { - continue; + return; } const targetPath = binding.referencePaths[0]; const parent = targetPath.parent; @@ -222,7 +238,7 @@ export const optimize = (inAst: t.File, runs = 1): t.File => { parent.callee === targetPath.node && (!t.isArrowFunctionExpression(expr) || t.isBlock(expr.body)) ) { - continue; + return; } // It's allowed if: @@ -231,12 +247,14 @@ export const optimize = (inAst: t.File, runs = 1): t.File => { const targetFunctionParent = targetPath.getFunctionParent(); const sourceFunctionParent = path.getFunctionParent(); if (targetFunctionParent !== sourceFunctionParent) { - continue; + return; } targetPath.replaceWith(expr); - binding.path.remove(); - binding.path.scope.removeBinding(bindingName); + // This stopping is important to avoid 'Container is falsy' errors. + targetPath.stop(); + scope.removeBinding(bindingName); + path.remove(); } }, }, diff --git a/yarn.lock b/yarn.lock index c9e52d876a..58d8e78677 100644 --- a/yarn.lock +++ b/yarn.lock @@ -213,15 +213,15 @@ __metadata: languageName: node linkType: hard -"@babel/cli@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/cli@npm:7.22.10" +"@babel/cli@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/cli@npm:7.25.6" dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.17" + "@jridgewell/trace-mapping": "npm:^0.3.25" "@nicolo-ribaudo/chokidar-2": "npm:2.1.8-no-fsevents.3" - chokidar: "npm:^3.4.0" - commander: "npm:^4.0.1" - convert-source-map: "npm:^1.1.0" + chokidar: "npm:^3.6.0" + commander: "npm:^6.2.0" + convert-source-map: "npm:^2.0.0" fs-readdir-recursive: "npm:^1.1.0" glob: "npm:^7.2.0" make-dir: "npm:^2.1.0" @@ -236,24 +236,24 @@ __metadata: bin: babel: ./bin/babel.js babel-external-helpers: ./bin/babel-external-helpers.js - checksum: 594752c3a53c06972e78347419c2ca370263e4a79c6c28e68084f902a66d307ca63f17f9a8a794b897ec15e630e93cabc55c994d30b489dc22024724f6d389a3 + checksum: e375a7406a86839882b6063e95f9b381f1675787035c69e30f35cd37976bc2227e2299005cf4197f767d0b89f2296599fb950acfc8d74c6da6100781c85f3988 languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.10, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.8.3": - version: 7.22.13 - resolution: "@babel/code-frame@npm:7.22.13" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.24.7, @babel/code-frame@npm:^7.8.3": + version: 7.24.7 + resolution: "@babel/code-frame@npm:7.24.7" dependencies: - "@babel/highlight": "npm:^7.22.13" - chalk: "npm:^2.4.2" - checksum: eeb7e25e1ffe306d8e161d03a9d8e301be6942e69f4ce3c75e99005e199fa528ca25dfba6b18631af6ffa7d9c63e3ddfa554c42d88762f1d3ad4ea462f392dff + "@babel/highlight": "npm:^7.24.7" + picocolors: "npm:^1.0.0" + checksum: b68e0c37f49cf4f1e0574c4b2996c5bc13aacc110277ca7711013c0b4188920f817eb6fae2c6cd32a923a9303599862fbf146c9b724f76f435e80aead327c250 languageName: node linkType: hard -"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/compat-data@npm:7.22.9" - checksum: 47680d554f62ce2f6b45eac819dd0f7a02c9e19872ab026aa6c97696048c111335e38fd23de60c23eb992c5ef7c8891af3ef0f16f514fe4d73c2e7b5a4c67109 +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.2, @babel/compat-data@npm:^7.25.4": + version: 7.25.4 + resolution: "@babel/compat-data@npm:7.25.4" + checksum: f3f868f283ea06e5c7ed34592f615923304b7c8869ff17fcd0b390019c263f1773dcf847f7663d92273bb05106a04ba9e6be876875154f34d0b0047ef5290a8d languageName: node linkType: hard @@ -281,121 +281,120 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.18.6, @babel/core@npm:^7.19.6, @babel/core@npm:^7.22.11, @babel/core@npm:^7.6.4": - version: 7.22.11 - resolution: "@babel/core@npm:7.22.11" +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.18.6, @babel/core@npm:^7.19.6, @babel/core@npm:^7.25.2, @babel/core@npm:^7.6.4": + version: 7.25.2 + resolution: "@babel/core@npm:7.25.2" dependencies: "@ampproject/remapping": "npm:^2.2.0" - "@babel/code-frame": "npm:^7.22.10" - "@babel/generator": "npm:^7.22.10" - "@babel/helper-compilation-targets": "npm:^7.22.10" - "@babel/helper-module-transforms": "npm:^7.22.9" - "@babel/helpers": "npm:^7.22.11" - "@babel/parser": "npm:^7.22.11" - "@babel/template": "npm:^7.22.5" - "@babel/traverse": "npm:^7.22.11" - "@babel/types": "npm:^7.22.11" - convert-source-map: "npm:^1.7.0" + "@babel/code-frame": "npm:^7.24.7" + "@babel/generator": "npm:^7.25.0" + "@babel/helper-compilation-targets": "npm:^7.25.2" + "@babel/helper-module-transforms": "npm:^7.25.2" + "@babel/helpers": "npm:^7.25.0" + "@babel/parser": "npm:^7.25.0" + "@babel/template": "npm:^7.25.0" + "@babel/traverse": "npm:^7.25.2" + "@babel/types": "npm:^7.25.2" + convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: ed42baab55b0fa9b67c50b368920ae415b6d0c49d933e3c8fdc38af4b81dd083b124539b8368d6f737b354cb9cb953b8b1e33123665f2c6a68d155e529de103a + checksum: b9f0b23df11186fb3c36fbaf65e22a3dc77bc1271a8eef3d35c1707e5ae1cfe60399ed36cf762d2fc77c33f10be53aae687333ca650b0e37e6bd11341ae9f873 languageName: node linkType: hard -"@babel/eslint-parser@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/eslint-parser@npm:7.22.11" +"@babel/eslint-parser@npm:^7.25.1": + version: 7.25.1 + resolution: "@babel/eslint-parser@npm:7.25.1" dependencies: "@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1" eslint-visitor-keys: "npm:^2.1.0" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.11.0 - eslint: ^7.5.0 || ^8.0.0 - checksum: 8aeb2a6acc33ee786c1c50dcae71e365744c6198a2554c6605677df761f3f12e517f847efd625f8c319d8b0d5256e079feb4303b93beae7b01a4b805ef6a04bf + eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 + checksum: 05ae957dc02af174a25b90d7654cfba5f78dae7a9fbf0dac3969470afb21c6ee7eca563717618822a190d4d8c6653b140d1fae0e743a86ec65367b419a1c75eb languageName: node linkType: hard -"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.18.7, @babel/generator@npm:^7.22.10, @babel/generator@npm:^7.23.0, @babel/generator@npm:^7.7.2": - version: 7.23.0 - resolution: "@babel/generator@npm:7.23.0" +"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.18.7, @babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6, @babel/generator@npm:^7.7.2": + version: 7.25.6 + resolution: "@babel/generator@npm:7.25.6" dependencies: - "@babel/types": "npm:^7.23.0" - "@jridgewell/gen-mapping": "npm:^0.3.2" - "@jridgewell/trace-mapping": "npm:^0.3.17" + "@babel/types": "npm:^7.25.6" + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^2.5.1" - checksum: 518c1c2a9129b71c5317d131234d62d2f0451fdb91e8c12a46ecb485bfa3117a783e8756cb1ee47bc806cd0a1d1c705c8d612ec64c9dadff1d4a4c3008147e68 + checksum: c941e702b74f35ed59f63bd4918c771f2742e7109b33a2092bb1cb2c4752764ec805b8b3f5577e9f6d6415c23514338126da9ec6d326a7289bdb3b3a5f67d169 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: cb5f731472426a11625c41f797c8554d10e188c73f074bffb90be51efa028ccff0961ef88ef69dc42d88843149d0aad75f4569f2276836fb5a8b291a1e3217a8 + "@babel/types": "npm:^7.24.7" + checksum: 2287abfa5da0e692f1a1204ca10a5329f788b8ab10b8c84c4e46fb6a76c512ea24047b54c79fc301f9da9c758de0f328e0ce303d91bed9297447e033565cd4a0 languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": - version: 7.22.10 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.10" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.10" - checksum: 1b8c634ae9ac9ee9a156dd07850fe95162b85dcc9b652cd88dc1f3c7e26eed12e46ef50811384c57c842016e011045e6873b48249d53ba932187369318bfcf78 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 33a49e24d1e5f594e20f340d30459d4f760491725e456eb01d09d2686879bc2f5d7b5a87eba37afe2024d5b6442aa9817a3af90a6ee8d87826a29db8162351c6 languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.22.10, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6": - version: 7.22.10 - resolution: "@babel/helper-compilation-targets@npm:7.22.10" +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.7, @babel/helper-compilation-targets@npm:^7.24.8, @babel/helper-compilation-targets@npm:^7.25.2": + version: 7.25.2 + resolution: "@babel/helper-compilation-targets@npm:7.25.2" dependencies: - "@babel/compat-data": "npm:^7.22.9" - "@babel/helper-validator-option": "npm:^7.22.5" - browserslist: "npm:^4.21.9" + "@babel/compat-data": "npm:^7.25.2" + "@babel/helper-validator-option": "npm:^7.24.8" + browserslist: "npm:^4.23.1" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" - checksum: f86efae50a0174fd2982e7638565dc3d45e338a38c4e4462d2458d4ec25244ebcf2dc8ec40e0c9cc792da09c6d9c0a5fa707ade15b947bebc58dd642636cfdfd + checksum: c9a4a00f68a5aeef994f002a1eb5b9b7f153825c6dfa5c2f8292f7b52bc7caffbbd75c5dc53fda3637774f724ab96205f3190f5dc75550a1b44283f4219cce5f languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.22.11, @babel/helper-create-class-features-plugin@npm:^7.22.5": - version: 7.22.11 - resolution: "@babel/helper-create-class-features-plugin@npm:7.22.11" - dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-function-name": "npm:^7.22.5" - "@babel/helper-member-expression-to-functions": "npm:^7.22.5" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.22.9" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.22.6" +"@babel/helper-create-class-features-plugin@npm:^7.24.7, @babel/helper-create-class-features-plugin@npm:^7.25.0, @babel/helper-create-class-features-plugin@npm:^7.25.4": + version: 7.25.4 + resolution: "@babel/helper-create-class-features-plugin@npm:7.25.4" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-member-expression-to-functions": "npm:^7.24.8" + "@babel/helper-optimise-call-expression": "npm:^7.24.7" + "@babel/helper-replace-supers": "npm:^7.25.0" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + "@babel/traverse": "npm:^7.25.4" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 1ce7e17a3ec31f7d342f912a65b70fc72c8c95941e9b66dfec0296d2c36a8997936c6d857328659f0e75b6a7b1401198d540bb20d5c9701342214c4388b4e17e + checksum: 5388c71c99a1d99ed34d7755dbb7fcda50c7032628b4a32140fa1e4117abad3e071784a0897ab89fe4e9599d68c8ed0eba4106a8f6e3ca9d03c4375bde75b83d languageName: node linkType: hard -"@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:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.24.7, @babel/helper-create-regexp-features-plugin@npm:^7.25.0, @babel/helper-create-regexp-features-plugin@npm:^7.25.2": + version: 7.25.2 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.25.2" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" regexpu-core: "npm:^5.3.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 34f6477dfd25669977c49a334c2af54230f28d523437a2f41cf46d05c7a12d53618421b2ac01af16722d8c2bc5be31fc7b73a4d8435f0e93a802ac6632cedce8 + checksum: c4b490b96e0ce015ddc7bcce247583db7a8d58c39d8e06dc50337ab5482d8a6015d610bd13f7e82c9e18cba7d0815161054f5fd98056ecd601cb628858ead93e languageName: node linkType: hard -"@babel/helper-define-polyfill-provider@npm:^0.4.2": - version: 0.4.2 - resolution: "@babel/helper-define-polyfill-provider@npm:0.4.2" +"@babel/helper-define-polyfill-provider@npm:^0.6.2": + version: 0.6.2 + resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2" dependencies: "@babel/helper-compilation-targets": "npm:^7.22.6" "@babel/helper-plugin-utils": "npm:^7.22.5" @@ -404,75 +403,50 @@ __metadata: resolve: "npm:^1.14.2" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 0710cf1d1192840713ed5b459078aa7ab3d48bf0e05996667fea24aa175b51859873578dbb251e7844ccea63975059c588b8536614de13e574dc82f887f36aef - languageName: node - linkType: hard - -"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5": - version: 7.22.20 - resolution: "@babel/helper-environment-visitor@npm:7.22.20" - checksum: 104196721e54b045109cc1d4d86a3b267a73eb6f90313a74eb3ed70dc26802d43f7d024c94421f221653a85dbc04a5e03b20a6c38bfed908f0d8f629eb70778a + checksum: bd910091eb3a4345b35e25f86171a0fd95b0c2f3c0862c35a32e84c7ae2f112e3081788df0c6bb37f45b52a4dd3cfacc8d0c58dbe4f91f537e80a0ed3666ae67 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/helper-function-name@npm:7.23.0" +"@babel/helper-member-expression-to-functions@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-member-expression-to-functions@npm:7.24.8" dependencies: - "@babel/template": "npm:^7.22.15" - "@babel/types": "npm:^7.23.0" - checksum: be30108c9340693aebc77d2b939b19874c72f6db8ff55eb5dda31e5b16b47ca70c1bb7df6b58ac62961b5b09300a3481c544673c50ebeba819e19a7631e0df68 + "@babel/traverse": "npm:^7.24.8" + "@babel/types": "npm:^7.24.8" + checksum: f9afa8556f8af8f3b757b9f86f1f42615aa571089e6225ab0eebc744be1dea3db8d03cb4b93ba342b04b30caa55a40999bb2f4baf0960bf48fd9c8e63f9351fc languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-hoist-variables@npm:7.22.5" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 4df8aa58aebff5d80a12a8dad40220d69f900ef05f62dde1f52cbe162e1e7d4ab621b6352ab8e570e50ec1799ef34158f8b0050ec27fb393566faa68a9b05f3b - languageName: node - linkType: hard - -"@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-module-imports@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: cb8b7094880668c96192e083386453ea04cf09b460bd62f17e66bef4c49a23a029d8021e3342fa0cc549a20757104da010490b0e291bb66c2060dfc8c1def07d + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: d5f08d9b107f6e728db59f926a14e9d2f860ceee39eedb9d1f7a2a9db09a86221b2d66864427085e8ee5ae58989229cd1f2c901b612bec3938665151a91883fd languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-module-imports@npm:7.22.5" +"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.24.7, @babel/helper-module-transforms@npm:^7.24.8, @babel/helper-module-transforms@npm:^7.25.0, @babel/helper-module-transforms@npm:^7.25.2": + version: 7.25.2 + resolution: "@babel/helper-module-transforms@npm:7.25.2" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 5475de0bbd3611a38b8746a2c74495aaad560a283b6c647f9d044bb91bb9375fd8412ea8adae9d077a61d77af6a5138e40ab7f206a6403a2f15f87b9e0aa2aaa - languageName: node - linkType: hard - -"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/helper-module-transforms@npm:7.22.9" - dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-module-imports": "npm:^7.22.5" - "@babel/helper-simple-access": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.22.6" - "@babel/helper-validator-identifier": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-simple-access": "npm:^7.24.7" + "@babel/helper-validator-identifier": "npm:^7.24.7" + "@babel/traverse": "npm:^7.25.2" peerDependencies: "@babel/core": ^7.0.0 - checksum: 7a7ab3008a12cb985274c6447043dc7a92ac6d0d0ba2d593237ff7f9190d8b6eece6797463b05c7797e5540a38b3d410c41006e02794e6168ff182f5d3a95f86 + checksum: a34db184831cb987008d113fb82ad34ef7d10f88f58f4de0b45ab7ecca3556fda196ce92eaac06f5e1af5b07b035fcd79a1b055add6d1c5b27daf4b0405f5897 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-optimise-call-expression@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 91217326c7d694ddca65401d39a870fae8ef9cb51714b5a6abc8210e03dfb68e434bb27d62601ef4927ceb5efd4361cd514d53f8ed1c353e9a935ac3c39dd905 + "@babel/types": "npm:^7.24.7" + checksum: 74ce90ef3612f52fb275d1dfcddccf7754ae68171fb1397a6035d9422f7571a004b3f62a7634575e327ca0660721e4e5f48e51a10be1f9744bbb219bfe8c48af languageName: node linkType: hard @@ -483,150 +457,180 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.22.5 - resolution: "@babel/helper-plugin-utils@npm:7.22.5" - checksum: 23ff057d726c34aba3f5741ed5440d0e664ee0707fba35db5ce8839dd4c24cd53345a5233fe901cd054b09e5f016e81eef99c27621b5737829bf001676ee11ae +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.24.8, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.24.8 + resolution: "@babel/helper-plugin-utils@npm:7.24.8" + checksum: 14207b7dc69e1a099b04fb13d3d5a1e23558f3a50edd9253ee0a599cf2c700cc6cf959f4d385f6958c2d3d9821f454ec4ea1070c94e5e8a1ed5a925230621816 languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.22.5, @babel/helper-remap-async-to-generator@npm:^7.22.9": - version: 7.22.9 - resolution: "@babel/helper-remap-async-to-generator@npm:7.22.9" +"@babel/helper-remap-async-to-generator@npm:^7.24.7, @babel/helper-remap-async-to-generator@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/helper-remap-async-to-generator@npm:7.25.0" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-wrap-function": "npm:^7.22.9" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-wrap-function": "npm:^7.25.0" + "@babel/traverse": "npm:^7.25.0" peerDependencies: "@babel/core": ^7.0.0 - checksum: 9a36350a8a4e80c9d8fce3747e8395e6be27408a935235380ea16477a35110b7dafc93dd7f373e3711ed72d9fbff9962e570d92a8294c81d976eca8140c3eb60 + checksum: ea894e16e17db22df39e80f47407a3618b80f547c09a41e15b4d70546eeac6de79f46f45863ba58d4389fc98a65459d75c2ef54b90ee60431a656fd505341980 languageName: node linkType: hard -"@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:^7.24.7, @babel/helper-replace-supers@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/helper-replace-supers@npm:7.25.0" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-member-expression-to-functions": "npm:^7.22.5" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-member-expression-to-functions": "npm:^7.24.8" + "@babel/helper-optimise-call-expression": "npm:^7.24.7" + "@babel/traverse": "npm:^7.25.0" peerDependencies: "@babel/core": ^7.0.0 - checksum: 57f33bcd675518ed97fa0a9ff91a80e34061d5a8c2f26bda5898285ff034dae805cf08b5a72b3f008a05a6db9fd4da3113be3b442cb862b808f115f391b26e62 - languageName: node - linkType: hard - -"@babel/helper-simple-access@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-simple-access@npm:7.22.5" - dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 5a9c37a63b15f3495a46a39dea481043d0363db886117021225849ac4a06664fda9615d62ab6f836224d89fb43189f45b4f48c2057c2f4441b0da5daf6ac3f13 + checksum: 8884c6ab44aacb64c224e7814c43dfb45bc98d2637f90a1a2a70d41ae41f6527009797be42b550e22cc5cb497037f1d708b05a83f32768b55998d26d72c8eebf languageName: node linkType: hard -"@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-simple-access@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-simple-access@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 17c52fefcad4207dfeeb7f071cb006ea61a0d9e1de113b72b295e17bb4cb8d1b690cce977f459b589f1540d4b6044ca97d11ec994542a978f71dff2bf66c1817 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 01080da8e6118dfd6d94a80e7f60d5bf5d6fb5f5eb9375404d7fddfd520b0ad7ba11cf4f1c214ae586d13167940224dc14ed6bd4e99828bd7feeaee17064d001 languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.22.6": - version: 7.22.6 - resolution: "@babel/helper-split-export-declaration@npm:7.22.6" +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 35931a3825b1b6dbb92685b71d204d172e19ee9a2121ec9e0f5319b85f631b875db043aebdcd5ef367952eb2b8fa7a4e5d71a95e749824b46d2e251aebcccb62 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 3456585c19836c4acbbafaa288a4bc4931e284800febbbc4ec2030c98de0381679cf961b86cae1f382ca8c516b10386f54445f0eb53a73c73e78f7c3c2d82d8f languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-string-parser@npm:7.22.5" - checksum: b998b01b4778859c301ede18aea41abb0dcd0497191bdb216aa561741fe74f8651a8d7a486d4151a448c44d37a5a8603c0296b4d4e2f5388989dd86003952ad4 +"@babel/helper-string-parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-string-parser@npm:7.24.8" + checksum: ed08f455989140e7dd69c2cf6570f2aa471782d6e16c57df478c3fc8cc63583d9cb6fef15a9f51846dcea069976332e516554d34f97a46f1a0db9188c447f9fd languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5": - version: 7.22.20 - resolution: "@babel/helper-validator-identifier@npm:7.22.20" - checksum: 7eb30962ba37b25098b35572f0d27eb600355195922b5cfbc3ae6b3451320754770add9f871a9c8358f169e01e84082eb66e6d94e71660a63beeacefe46f8f6d +"@babel/helper-validator-identifier@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-identifier@npm:7.24.7" + checksum: a61e0399e447fbf4c671c47d0b4e97e4d9c01b5b2f293a0ce979ddfab6444f6ac134123eaf61234929e3c37bce7093ac701b306697205d00ef2f36f7c3e12339 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-validator-option@npm:7.22.5" - checksum: d6b2f3a8995894f3b6ee58d4b6a64de3a0083b99553485988ba956e2925c6f85a4d1430ae48a0338dc6847cac486abdf9a4393c79c37d9be78cf821006438584 +"@babel/helper-validator-option@npm:^7.24.7, @babel/helper-validator-option@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-validator-option@npm:7.24.8" + checksum: 3698cbda5e12abcce20fb999fea5d63d500142f3211d752ac01c31de5db8d8465bf7da7e0d7caf58f483592a2fdf25c401aaca5f96ee38038fde12ba26c39bf0 languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.22.9": - version: 7.22.10 - resolution: "@babel/helper-wrap-function@npm:7.22.10" +"@babel/helper-wrap-function@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/helper-wrap-function@npm:7.25.0" dependencies: - "@babel/helper-function-name": "npm:^7.22.5" - "@babel/template": "npm:^7.22.5" - "@babel/types": "npm:^7.22.10" - checksum: 8036dcfe93e48d5d14f0ce08720fc0ba37c08779a10944f6f182118e2f69fd59101a6a44307d5cd261ebbdaeb4328d45449e7e3601a892c239b8e6b3b6612554 + "@babel/template": "npm:^7.25.0" + "@babel/traverse": "npm:^7.25.0" + "@babel/types": "npm:^7.25.0" + checksum: f4c1b277015a9637d6a8ff665c6945c50dfbd4f7d837fed8a7cdd866d7b506db77cbe8eb9533996d7411bad3743fad4d30a5e0a6aae0e6ebdbd5847a7d2b3faa languageName: node linkType: hard -"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/helpers@npm:7.22.11" +"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.25.0": + version: 7.25.6 + resolution: "@babel/helpers@npm:7.25.6" dependencies: - "@babel/template": "npm:^7.22.5" - "@babel/traverse": "npm:^7.22.11" - "@babel/types": "npm:^7.22.11" - checksum: 33191b14090fc3465ba8f513767590f9ff95ecce3540efa827f5754e6a5c35ed6ed92ab6a30c41375a57f6454038d4b456927b64e180a1f0827f9322b369d231 + "@babel/template": "npm:^7.25.0" + "@babel/types": "npm:^7.25.6" + checksum: d77d36175fd2f06090b292f73100cbc8a46374c58a1a35389716b553b2ca6d929844a2e3d1d0b668dc837a747a6c798541adb247b8df441f6cfb5aa155046998 languageName: node linkType: hard -"@babel/highlight@npm:^7.22.13": - version: 7.22.13 - resolution: "@babel/highlight@npm:7.22.13" +"@babel/highlight@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/highlight@npm:7.24.7" dependencies: - "@babel/helper-validator-identifier": "npm:^7.22.5" + "@babel/helper-validator-identifier": "npm:^7.24.7" chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" - checksum: 8b9ca89bbeccab408bbdabb641245115affb8d9c94c14e97daa31a517254b2fc5391532d906ca4bcb8512212aacc716a017019741896a74667c56a7da9b56e7b + picocolors: "npm:^1.0.0" + checksum: 3bf9eb352db1cbd769d8bd9391b222f5738392702e85cf2656d516ff8aec5b11fad773a3cbed855d0f465e4d2fa25442c746239fe958930b60e7903de8b9aaf6 languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.18.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.11, @babel/parser@npm:^7.22.14, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/parser@npm:7.23.0" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.18.8, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/parser@npm:7.25.6" + dependencies: + "@babel/types": "npm:^7.25.6" bin: parser: ./bin/babel-parser.js - checksum: df0c3471dde640f36cdaf1584d862087a0d089b81f8b85e11dfa74b6c6106cafd3ef5a5abeb0523e5884434d1fb54ba78224efaf2c478a816926bd1984a36646 + checksum: 4cf0bcbbf207be4307d9898e3de82ca03f754b13da02cdbc8b33f34b2c6349e4acc8a4ac115423370292d29bec43c52352a9390d7c7097bdf90ade2c64f22e01 languageName: node linkType: hard -"@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-firefox-class-in-computed-class-key@npm:^7.25.3": + version: 7.25.3 + resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.3" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/traverse": "npm:^7.25.3" peerDependencies: "@babel/core": ^7.0.0 - checksum: c8600be951404db56bc75be50cdb1d490468d12dbb6189035908dd73c26bb4597fef94749f10126318077dbd04dd9509e45fa9d7f9d64bc8859b4a629d3a09b7 + checksum: 20a8c29102c76021e2f00fd47d0064b767630d9db259aa239a5ed320a21e53f38d2298769cebf9a07a30fbc1c579173e570311497dd8dda89668e81aecc22c4a languageName: node linkType: hard -"@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-safari-class-field-initializer-scope@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/plugin-transform-optional-chaining": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 175af974e5c75e5e14e3758cc19586a35d696c6fed09c7a205ef255a74609628a5dc85744221ba8a8f8bd5d35abf0b57f1468f72d08c07e1c1dd1843335b8fff + languageName: node + linkType: hard + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.24.8" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 5cd8c62eb4925d4be930f368acdc9d89f931b705b05e6d502af8d8acc11f9df36956e628a2955062e18aa55efeb8b047b6a47e4a368f921a9a5ee9741d0ef701 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.7" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.13.0 - checksum: 7902822ae36a0b286e2805ada86e88150d2f17ab9818ff264e2aaeb482f661b85b5819cfdbc551fdcb9f3bbf3ebb936c4b50fb2e75a046d1e72d75110df4f51f + checksum: 558f24fb2e03d6c122e57118cfd10fd9eeae5a7663c1c54c35ff317c13625c4e571705265a4c724a6b773f69a7caa02e2193a16533b44d22b91f22db499c830a + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/traverse": "npm:^7.25.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 3bcb0a2e943369646ee6b0c8d85aa90310e02b96c4a8efbf44a780a0327ef9b2a4b722dbfe87c8ed04f072c86c205f7a9b3fe995f68c523e4ac4af8e0259247e languageName: node linkType: hard @@ -718,25 +722,25 @@ __metadata: languageName: node linkType: hard -"@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:^7.24.7": + version: 7.25.6 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.25.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: cbed5306521dc8dfc23209d7499fccbcde3208b0ae0a7780dfd269f46009e51284c6be06aad74890fd44325e2977a47941ab92e033f9a8f1be648816e4222a68 + checksum: ae1346a275bd3292ef191e7369983618eff0d6017a44095a805652482c0bc5f6ab98cef926f8de9535d30e164d2bbbd9749b361be481d490accff67efb57790a languageName: node linkType: hard -"@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:^7.24.7": + version: 7.25.6 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.25.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b18967e4b6dabdb0d35b60825d78fe92a18f3c1f3ddeeba7b559c132e163070a40b253faf5a5662ac11360d79c1b04b06e97e35d5646df60608e585650929c3b + checksum: 23a3ea81ab48f0b33031b43c24c859ba18419ac03b3d1dd00681318a07a8e3c172ff89b196f4469dc5489de86ba32ee55345f2dff7eab48c35cfd9ee00b2b025 languageName: node linkType: hard @@ -773,14 +777,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.22.5, @babel/plugin-syntax-jsx@npm:^7.7.2": - version: 7.22.5 - resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" +"@babel/plugin-syntax-jsx@npm:^7.24.7, @babel/plugin-syntax-jsx@npm:^7.7.2": + version: 7.24.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6ddd9a5ad7d16700c9cb5b809af274c64d95c25a37034918c26027416b42b29d4e32b8d423452dbbead27619dea41588165155e9c066a5e3c7345dac78341ff3 + checksum: 953972f5bde0dbdfff77af5de3299e7c23bc49347d420abc6635a6fba0f5134c4658a4e8fc6354a2d9584d014b49b7acd46ba9cc06b3f543345ef953c0e60780 languageName: node linkType: hard @@ -872,14 +876,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.22.5, @babel/plugin-syntax-typescript@npm:^7.7.2": - version: 7.22.5 - resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" +"@babel/plugin-syntax-typescript@npm:^7.24.7, @babel/plugin-syntax-typescript@npm:^7.7.2": + version: 7.25.4 + resolution: "@babel/plugin-syntax-typescript@npm:7.25.4" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 641b5169ddd1cf26616fab454616f12049a3996165b9d8bdeec7e9ca0c6f256b97c7c595d3adc11b360593287aad0ebc01cdf4a7d7fe603cba581913d52d82ad + checksum: 978948f520f3f540f7117167453ddafba59f6bc5621fa75ecb1ae2e391ffff15742f6d774c8ecdc29149561f0a297ad82ee33a83ecb2d1da91cd64b6cd20af82 languageName: node linkType: hard @@ -895,457 +899,466 @@ __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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: dc87fc0e9dc848e4d1db2c28dc8c1bb6bc85b83a5b791ced2d878f4b38ff72543a4e87bb78f4d74ddaec9a33da813a019b4be4ef218b7250d539a34fd9c601ea + checksum: ade3794bf9d0d493f1c705d66655d017d6a3947ea7d497761ed3a69aaaf4b0d3ccda5087174a83b4d2b7bd065444d8bf649845fc57096661116dcd89d7abd7ca languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.11" +"@babel/plugin-transform-async-generator-functions@npm:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.25.4" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-remap-async-to-generator": "npm:^7.22.9" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-remap-async-to-generator": "npm:^7.25.0" "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/traverse": "npm:^7.25.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 8c7236a5cd29b052d3de46bb21b36201df992ff922e6b7156f5638fb4b15d5b5d7839d8718ab3bb79efd91c1d94c4fbe22905145cab3df58d2d5971e8c558f42 + checksum: a8b1e5a78bcb9977ed399ccc813cd58f79a2175fd84d8009ae2f252df660bf88444117b973674776533dc985144065f1f02090adac21d772766ba319c7f90a4e languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.7" dependencies: - "@babel/helper-module-imports": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-remap-async-to-generator": "npm:^7.22.5" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-remap-async-to-generator": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: fbc7b2ff4509b8a32bd949d375b6036cab209c9bbacf5e3f64ccd34e82b8933b37473df2d113a1c2174927ade2ca233d6977ea050a2cfbfb997790c3912ed45a + checksum: ad9dbb3467f89ddc82e5e3b63db0e29e7f2c5b82881b3a69bc4e3478dd1115f230971a07eb7beaecadb5b940479b40ac84fa9f5402c38be957976cdc940def7c languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 368de8c5139303200c39cdd1df7681d6d4e7de96ab63ae5116ab18d290ac399cf15bd237c0a549ae1d38a3f984300e4378693ff0cc611b69c23bb24d92b910eb + checksum: 547d5034ba19e2edc74e640bb7386023352322cbc57668f166e3832b128b16a943a53032b348851cf06ef8a9c252047707465312c6e80d74a0203c16763decef languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-block-scoping@npm:7.22.10" +"@babel/plugin-transform-block-scoping@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-transform-block-scoping@npm:7.25.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6e6107e20eb7bdc57eb2051a2438bfdfd859c279b9056ca62ef3ce22076581c2fa95792a37291107aff658e64c9a48e0579e7ea05e50416b43d5d5c453b5ecae + checksum: 9db11266e4624501cf181871bc7bb783d7770b6cc5a21673ee9ea95c2fc7e45808bcf545671d6439045ba0b1c59115edb7997046ac53c2fc51469757beaf6f02 languageName: node linkType: hard -"@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:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-class-properties@npm:7.25.4" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.25.4" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 44131eea8a040bb87a570315b8f038b101f22e4fd3567bee3febbc6a0a06743370e3638cdf6790091e3f36f1fc1581b7de32cbaa7228f8f0a3f742b081a2edfe + checksum: 2e337921bee34562cb3d5c61c5b69e396d2c89df736616361bb1922adb7a400997bcf773b9a4fec0f70cfbd2e0f7161f09d3a01d7869c26bb5f98192d5de80a3 languageName: node linkType: hard -"@babel/plugin-transform-class-static-block@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-class-static-block@npm:7.22.11" +"@babel/plugin-transform-class-static-block@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-class-static-block@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.22.11" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.12.0 - checksum: 5cd377accc14ff5c12732a42ac8917ce527ccb696cdc437d87e63e0d59d452bf87e7de5e6880a24ff9fe2685440a551aba5fc87f23fd466f698d9bda86ebba20 + checksum: fd4d22b10ce1f20df5fce66e7a7c7c8ceb6a659bc4b338043610d5d5d2920bc13c5fe3542da018243b56a81b861e391d047bfa3ed472e4f53f67d0dd5aa223dc languageName: node linkType: hard -"@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:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-classes@npm:7.25.4" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-compilation-targets": "npm:^7.22.6" - "@babel/helper-environment-visitor": "npm:^7.22.5" - "@babel/helper-function-name": "npm:^7.22.5" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.22.6" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-compilation-targets": "npm:^7.25.2" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-replace-supers": "npm:^7.25.0" + "@babel/traverse": "npm:^7.25.4" globals: "npm:^11.1.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a40bfc9c2d4c93d74d5f9290a6a7459fa7eca1a161b2dfcb72ee993d423221a4d694d6ffaea43123b55adc8e917fc9edb850093bdc386d27b1288ceb6b1c5f40 + checksum: 661230197bffca55d719781e15f3d8181ff00a7ba7ebd6addccdfcae5eff208e3622640805eb56b79db1ca2fb00269cf6ad81882f54f4c48b2007e0396806be6 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-computed-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/template": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/template": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 5aa56749d99b338206dfe9ae051541f8c9d70ac2882e6ecef687134eb657f15569ad1422a7856e45193891ce65a2d0efc5051afc59bdd3c2c49a087232a1739f + checksum: 956702cab8e65fbaf6a54b678aa71bda25e1f3087078117897f393665fb8b16e6508119dea846a282c56a76ae4a292f0be28cac538ef0bcb6a45c4d8a9f41400 languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-destructuring@npm:7.22.10" +"@babel/plugin-transform-destructuring@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-destructuring@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e1f9f99c2c4f58e987f7cfae996df89c6aafc8f82ba03e247022938ca232fd937573cec6990286edcb875bec18df6cd2e2bd8c07d86505c7dc5721b20c7abe68 + checksum: 270d85b9916bb9bdd3ff21ccd58b5eda3a0e8c8dfd6559b7c6f1dcd3364f57bdf54bad5da03d0c8b958525d8995e9bbec10cc10f244febe0d078e8aafe42ad9c languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" +"@babel/plugin-transform-dotall-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6c9303afec302636381c68cff710faeb06c207ce8ec46a844b5a9d14875f4c6946d809d2ba97c7b421570cf043da45faf09fc8f9b334024fa64f54513c67274b + checksum: da906869785f9322cf8d6c696a5d7451c55059199e8051c0178c4ec9b33663af40db919175e38bf0be9ef86dad1e2537675d98a5b904fb7e43ea8fe4dd92a382 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a016f6feecee3d84ef90dac3f4396f4582073e5fe1a922698fabef477d5ba0b52af10627ba02fee0b024d5dce8e659bf03f588200d35c2eef8f6210cdb79ae6d + checksum: d72b9bd8e338987451d98e4130dadec4b2c8cc17c8b5c655ce6e1920710d7baf085afe902375a8502b23864d772edcb18fe9ff4707da63c34549def9486f9cb2 languageName: node linkType: hard -"@babel/plugin-transform-dynamic-import@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.11" +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.25.0" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.0" + "@babel/helper-plugin-utils": "npm:^7.24.8" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 30c915986819dfe4beb982c0ea218140cfd50068d1a3d7f03bfc9ca307f88f189abcd8dd64430853c0c97fc3849f2e6b8e774fbe8cbfadf030ff22016e5bb18a + languageName: node + linkType: hard + +"@babel/plugin-transform-dynamic-import@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.7" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d4ffc90e56aaf9d379f3dbee3b193774dbef770c449a015bd9e8c319809a2e6b0efc4bb27d15da82b2830db2eee5ab15b44be30da516210bf9f6165b9f0a64aa + checksum: 4098221035cf496aa5e134056e177b17f312807af7e325abd63f86a5b397fb471109f05d2b7a953601d9d0990f337e4476d95ed42f6fddaf84e8e93e8e094fd7 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.7" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e3fcda7a952fd9a5ab3ce4981a3bc30f0c29368d88b93b952efa70842d3f643e95bd99130b987f43852e6b5275e371fee64903db40e298d5ee02ad3eaa57fb4e + checksum: 83609e7401f04a93cef3480d3e1d8c6f9846e419085fd791ca3fdfc4c91fce36535661e33ba3ed3f8c03b6ad7dcc1d819deca7be30a782161ebcaf0ff0bdea00 languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.11" +"@babel/plugin-transform-export-namespace-from@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f6d609a0a4441e866456dd4db90e842952c8ea921c08d27628bd4999e8f4d57ae50ab6eddc44dbda895cdbaf9caebf6f1e35429b3128d238e19fcfe3b5d3ffb1 + checksum: dc85be2cdc743de5cf27c0a16e848806a7d499b0cc6e7bc4581de5ec1054f14adcbaa9fea35270c274377f92c5f4c6d20cb07a00cec600a3eda2faffda3f7e72 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-for-of@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 4cd276e570631797376df72f3de4afb129ed5d7093ef6e6a566c220a26f7f2caf3b85d56dd189ac05a716762d266b52c313de5ec4b2c51a7a8004ccf6cbe8cf4 + checksum: 3afc772df9462c7b9b8f67ed1c85e4e70d071dcd54bf76093b678d4886d139083f704479302153a121e29bd0f9991cd8ec77384e0e58b31f00de9df75e73c8cd languageName: node linkType: hard -"@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:^7.25.1": + version: 7.25.1 + resolution: "@babel/plugin-transform-function-name@npm:7.25.1" dependencies: - "@babel/helper-compilation-targets": "npm:^7.22.5" - "@babel/helper-function-name": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.24.8" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/traverse": "npm:^7.25.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 725bb9f332e602ac1da5288d287bca6fdf042f27a93dab65997f773660a96c622d5ea2f74209618e9cbde0b1e2b8de39512406ac0e4efb53246496bdafa855c2 + checksum: f9459936a686cc48d6ac09f162423083bde26c1b6f1e7d8d3a7fffddaa5bd7b83dfde8234af1efd01f7578b72fd3fdc6af4c4a1b03b02f88eb4b16a3a570b9b9 languageName: node linkType: hard -"@babel/plugin-transform-json-strings@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-json-strings@npm:7.22.11" +"@babel/plugin-transform-json-strings@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-json-strings@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-json-strings": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 3dc4b87a823a137e195309fa842d001c3103ae43036cf90ac2776c294c1cd674a341c27704dfe33086155d3dca916e3a9e3a0199cb2ec7ad47859d767723981a + checksum: fc880beaa90b0dc7b2d872dc61e041cee2e887ef7beed787d274b9166c4cafef6e76350910886b3007fd7c52ad412917744e53c49d43b79c8e4612ca58a0b237 languageName: node linkType: hard -"@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:^7.25.2": + version: 7.25.2 + resolution: "@babel/plugin-transform-literals@npm:7.25.2" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b3e9deedc88f22311c677e79d2648507f2230d7290c4c714d0386d2edda670ac488ab803c6ac1b452e8fed3cd07362a5f4fefac7d442d140c139e2ecadab6fb9 + checksum: 7d7716db47c298ae0af3669a6f7914c042e88b3035fdc82b922a37c253e0a4e8bb99bb8d056f903531245a25a763dfce016469cdb8b0ce24d3fbf807ba93504d languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.11" +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 479b4518f8d8acc9b3ac17ef739c3c3b87c1681bdefdefb13e33fbdd8790764999388014ab91f92127c04d57b18e57340803e07a5587db5fa894ba322c8ac07b + checksum: b553cb8dceac6b49b38071c7a716419cf429f72181a53a5044455da31bd1d92aab3946513d9d87b7cf6811226b0170a5e0c45089d7aa1845fa9748078dd760e2 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 563e2f3bf239d52d53a697e63ab7e30bc17665507f09e689b84a646b573ffa029b42a0a589d0a3116450354d5b8ea311fdc837f4a5f9924ecafb3123e1675a62 + checksum: 9b1d63f4493f1eb19557f6819b34cd75f04b8b4cf0309f57afa7861d633dfee69ac0eef0c013253ea6a79d31020037028bd3ddd857df36af5574c318538fb96f languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-amd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e8f5ab87741973af05b0f2da08d73cb926000d4aac9239603c4a5e53a27f1907634a11e904553928b288f4ce8b4c5b9dfc2f744add3c21af40db7ee8a6519d64 + checksum: 27d977217709d5805a75049ed4262150007dcf65ac77b507a47263d061e26b590e4cdf696b236c903c86b2000ce83ca390324e8fc5a51a89803bcc62e3b5e9c6 languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.22.11" +"@babel/plugin-transform-modules-commonjs@npm:^7.24.7, @babel/plugin-transform-modules-commonjs@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.8" dependencies: - "@babel/helper-module-transforms": "npm:^7.22.9" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.24.8" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-simple-access": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7a0aea65366a1d2b78ceeb409507f30e434c414e8c3e72dbaeae2e8e5fedfc6a152f57a7b6d45540c9500805d46072fbf9da17c64cb0133f2dd709c83a60f3c0 + checksum: f03cf492f86df20876460fa9c4955658f8b4a80f5e73d326a2c936919831b590a5e33cf31ebfbdb7cd3ee7c9d6338637ba0be59fb75f92b4fdeed47e6a71bd87 languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.11" +"@babel/plugin-transform-modules-systemjs@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.25.0" dependencies: - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-module-transforms": "npm:^7.22.9" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-validator-identifier": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.25.0" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-validator-identifier": "npm:^7.24.7" + "@babel/traverse": "npm:^7.25.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 002628252232c9e43dc772ef92bbc685302372229fd2ced00eb756bdb3479c5fc40cd34ee7d0670869b38f32091ad943c287a698d5e1192d765c218e070dadc2 + checksum: e42fd47947b2170c39db035a37e458cb760a169bf851c4eed71aaf23c706aa3def49912dde62a6cbe563315395ef6649375d5a88c01f8b1322e95e6c3bc673f4 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-umd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c668f9189fc96498bd8ccd2592b7db1e96ae375830bf0e00bf6e75f0d9427c9ebac75fa96608fe74632b8659170bfb0bc53a6b2e252be44d9e33b258771ab327 + checksum: 8fb27a3c82bfc66c291bdc86131304323d6a40878d02c7bb94cbf7ca2554bbe52bd4e29794128ab5c67c594e8a39444205c4612198348e73d034a0104aa206e1 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 81ad65c1f169c1b6373e6b20f9252542caa99133912bffd238cde32f609c87aa628db7cb226f8db99d73cac18dd8d7b2f13c585884371e03bc1d63da35cbf218 + checksum: a268eef68465687168a45742b1ec10898def7d113ebe0fe603543ed05f3cfcdacbdaef13c7d10ca3a02a511fb0da2914c48bc5428d21bcc262db88d220f10dcd languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-new-target@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 241f7e6fc744e56f14653d638f58cab7a8ab65d2af9dca32a83ca303ab4eaa86d01d288882acc7e390a71b5edd6fbe4c2595f2ff15ad09c0bd72bf44125ce0a1 + checksum: ad6709f39c4f4b87ec2e698ac10c46b139ef7809e277a983912cd3aff7cca7d1b73ffeb1c747603afdd6fd8a9bc930d78f8224742df71ee5e4ad08a19eeb3fc2 languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.11" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9b0ce459c44039f77fe11cfb75a5eb4d5bde409cd883fe40becf187ddd95c3c49519368a0fa82fbfad5bd5a1b90037557fa3d36bcfb598d2c7fb3c08a3676869 + checksum: f0e4ee60b6983f9c5490e27af869366126641de54cb5fb932c00aad00f8edda5c788751f371dcc8f2c3bddad6b280b0298f0438628e36c39f82fe58f21ad8cf0 languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.11" +"@babel/plugin-transform-numeric-separator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c2ca7382234e2177915c7e77a5277fe94b79b728c75bc8763608bb8757bf7e02d73a0da134d7307ca67e758f805f214a064c486a9111912015c6f424d27e13a0 + checksum: f229d87c42d66cc007651e3f9ee9d731612188cff6e17dc5c414fb88dbaf1641b4c205cd8444dd67161092feefdfbd84a10e14aabb78144e82ccbbb36611c553 languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.11" +"@babel/plugin-transform-object-rest-spread@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.7" dependencies: - "@babel/compat-data": "npm:^7.22.9" - "@babel/helper-compilation-targets": "npm:^7.22.10" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.22.5" + "@babel/plugin-transform-parameters": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: d8b18afc5a232c64a8ab2e53ff57bb237cd428934da1095696e1bc210e45265f5aeea8658620823859a64e16cc4f773a27cfef186a29d0374b189762e8823025 + checksum: 4cf8f916164648c7450c22db806fb16f75eba69a38dd57d36355e29d5ac34a99a2671d659802f4d2d6808840f248bb39514d39b8a1a659a189fb7b3c1a3bca2d languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-super@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-replace-supers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e1477f67934e0243dc9c7decaad03bac731bceec06760e611fa622be0e3ec977f729a6a0d71a4ccc18f1a2213c4e3bdb2065ca97901f8e802ae097d655440f46 + checksum: 2516788657f3a24ca7cb8846d3db7b20ee65e988825a7a3204aaf96579876bb423ae987ceaa4c5d11c4ade613ae1a656f8519303f70bd895852ad2143e5e2626 languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.11" +"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 0184feb7fc4fadb86ec5cc84b8b70d27d068b35920cbada3474a4c9e035e7fe68b05e64d9cb0609dd535cb76c776ff44d7f23ae76a355948127f9725a5898a2e + checksum: 33855eb3646d9ed2bc60dab4df9f699e5d901483e0c5d04c04f7b5dc5bad1f689a6d1223ea8362fab7e4bd1b3b01ec42c5a69f5a059203abfe1f2c887ed3d4dc languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.22.12, @babel/plugin-transform-optional-chaining@npm:^7.22.5": - version: 7.22.12 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.22.12" +"@babel/plugin-transform-optional-chaining@npm:^7.24.7, @babel/plugin-transform-optional-chaining@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: a78afd3eca3e55e202f90ed3e39a1c3ec4abf95d9d7f65cdb2213e7cb6aa860efeb2812e0b31abb28004454f58a71aa814570a313ecf522a735bc99c0285e879 + checksum: f6a7d56e9944981d6b9cfd0547e9beb055acf06594895acd5ef0cf8cc9ceea749155f073d63c742996bde767c23e41688caa4c65526b00167a6c1b54a335e8d7 languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.12.1, @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:^7.12.1, @babel/plugin-transform-parameters@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-parameters@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: fa39c08284514c69ce12284b13d9d955588b9a114094851ed62490384693e9dfd279bc287a3603920be20005c88f6dace38dcd50b36cc9f17a11e04bbf94ace5 + checksum: f4c2cfd1493eeebd5243db472b06b1e44e153dc72b5ed7c4416dcfd1e68250043312f56990359db12f09b1363545fa4b06b3c7583c2d9de5cc1bd3fde1fbcad0 languageName: node linkType: hard -"@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:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-private-methods@npm:7.25.4" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-class-features-plugin": "npm:^7.25.4" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e813345fa2b5f7fc04bddb202a185354ddc79e66be09a362319ab6722733dc6e420ab19a364b080ff23239ceab52df6dfd1bd01c20636bf8372d5f7864f5e0b8 + checksum: fd7d0ea62e503c30e716a7ec1e94952d015833bb08ec969bf8a48a98aa94a153a72c8f89c466c3b6d0cde1fee3a49bd9e76e016821b967ea16555ff1b65cc5b2 languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.11" +"@babel/plugin-transform-private-property-in-object@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-create-class-features-plugin": "npm:^7.22.11" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c3dee88c19db34209d988c7d13c2890344f012d2b8b15fad25e7a71ac696becac058eb6cba969578785c06cb63c72753b958d02d3bb4e30d69ead9b83bf776ec + checksum: b75615a11d8714579381ab3eb08207db6d99113590c2fde011cfe46c52936f09ccdac8140f79780584cbfe0a67d36a1de4a69694c912e63c6bf3a512e8c62736 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-property-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b6f80738eb3fdadc6c83872381a7b0801d7d093c600eeb62a09bd65de4f34d0b3a9d30a92349b081bb7755236a83dd4a45cb832979033ea142bd8c0250c47031 + checksum: 1fe0257573cb0832d3bbc6381e541fd4ac181345a5177c1369958b087a1a33e06d101943860c7e200453ea4d2b7cc8c515d35c89fa8ea93f26088d74f3b27b0d languageName: node linkType: hard @@ -1360,229 +1373,233 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-react-display-name@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-display-name@npm:7.22.5" +"@babel/plugin-transform-react-display-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-display-name@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c196915612cf3131b230b2021ea2cb4fce57d9d332c6e8da7abe74347b8b9b95ec1eea559743530f8c3eb3e16578fce938d9a9351568a83759fee85040604912 + checksum: 4b141544d1ed2b0ab310a4678adf60865ffac3e5f87c60f9d82d353d3fda9c1f15604d03405a0e1ad52e8e9d47c2810eba4fa2b3315576f85c78023cd9106592 languageName: node linkType: hard -"@babel/plugin-transform-react-jsx-development@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5" +"@babel/plugin-transform-react-jsx-development@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.24.7" dependencies: - "@babel/plugin-transform-react-jsx": "npm:^7.22.5" + "@babel/plugin-transform-react-jsx": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 50f4b91a2ce1fc255e9d6b6803b4c52f9e1938fbdc431a02fe3d85f1faf7bf7494925c22d84e201804c20e5e2ca1ff7cabaf289b1f738147caa406b904c927cc + checksum: 19b4b6d5f2f1dfbde901550cc7312d3ad4b7829f2bbcb8d9b33411a50973f4fd3a18d353674b216fd4970a9ef5b26e6ba7c573483a11e3e3d8651f9a94fcd7a2 languageName: node linkType: hard -"@babel/plugin-transform-react-jsx@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-jsx@npm:7.22.5" +"@babel/plugin-transform-react-jsx@npm:^7.24.7": + version: 7.25.2 + resolution: "@babel/plugin-transform-react-jsx@npm:7.25.2" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-module-imports": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/plugin-syntax-jsx": "npm:^7.22.5" - "@babel/types": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/plugin-syntax-jsx": "npm:^7.24.7" + "@babel/types": "npm:^7.25.2" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: e0dc70e2182000aa4898a66ca935d9a126349c8d5f7e05413140ce936bce47d571502f79ee1b9c16928dad0a4c09d028c752475dd750a6f979da2849969fbb68 + checksum: 81082faa6aef7ef9515ae13a42fcc04913ef86a03c0c91e449793c7c274ecc67b493e8edbc3d22577666ba9b44b693322b19ebac094f222fe26a57ff65f1fde0 languageName: node linkType: hard -"@babel/plugin-transform-react-pure-annotations@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.22.5" +"@babel/plugin-transform-react-pure-annotations@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 426713bc850c99e4f0decb42df1c158d9d2f9bcf885622aab86af73ada959c85a76ddc13b56bd1bdef889545b95d3848d23ee696bf1e0dea86e69477da6f4515 + checksum: 8c1981ea78eb8ef45c1f987a3af34a81731316f297cca5654c36db5dbfee291d732b6fc5f86f20f6516cdd4b5d440cf568fb8db657389cfb339bcbc3cabef348 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-regenerator@npm:7.22.10" +"@babel/plugin-transform-regenerator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-regenerator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" regenerator-transform: "npm:^0.15.2" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: ab702ce2c154b32b0abdca95d44ce65b97c03a54b2d790baa03b0b7f828a3f2f17818e9409fe55ab75b7370a8d4196d2396ce6158b88c6a301f4c5fcecc065ac + checksum: ceb4353a75648cfca8bce2e7080b73937f5520173bd778c70524c947ecce622d6099f0eb26877a0d7cada3d9ed1b55caff8edc6f82ea4be01d647a376d35f110 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-reserved-words@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 9ec414f40f8a3b5d76dd2de933244b5819d5255e21fee1dda4594ac4a90724fc3e555b1cfe77c2dc6f14e5625b4a1c292619d952aa0f4d73715291292477f74f + checksum: 72dd2a9fe59a42f57d7b5157aea2ba586b1baf744dbe4f299ee1003cfb71e3e6f5ce86fc82c5646cbd96ea8bc93327effbcb3a034631a6632c9f12c9dc1da06e languageName: node linkType: hard -"@babel/plugin-transform-runtime@npm:^7.18.6, @babel/plugin-transform-runtime@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-runtime@npm:7.22.10" +"@babel/plugin-transform-runtime@npm:^7.18.6, @babel/plugin-transform-runtime@npm:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-runtime@npm:7.25.4" dependencies: - "@babel/helper-module-imports": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" - babel-plugin-polyfill-corejs2: "npm:^0.4.5" - babel-plugin-polyfill-corejs3: "npm:^0.8.3" - babel-plugin-polyfill-regenerator: "npm:^0.5.2" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.8" + babel-plugin-polyfill-corejs2: "npm:^0.4.10" + babel-plugin-polyfill-corejs3: "npm:^0.10.6" + babel-plugin-polyfill-regenerator: "npm:^0.6.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b1ff7f139b34fb1c8e93806df9023d4b14e80abbce11ceda3ffe6694c7128f57d5f359b2f51e3fb77ba3dacc54051ac963d71e5d51df398fd789489784a763f5 + checksum: 4429ede8bd9256dd53ddbeec1cf644ac53431d60a3c406ae0eabd187b860bdc26a18fc8ed01256547c4f7ed255943c189bed472e3055279ff7d4e938932fb9d3 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: b9cbcd6ccc056f71e14c09e7a5502956a0c76ef2c588d6a7fd9b878787769f62240d7a7c271a42e70088a0fd7cc75045c4a231186abb211183413d24df7fa8dc + checksum: bdc1d23f6f0e8dc8e4727c2137a31cef33f66bc27fc65ed8083578b48a24f5a99a9815845b411e0ed3c64f568aa942926802aa6333356371ba1622bdd1954531 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-spread@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7b86800cb5ca8390e4e45a05201de0cfcfaad18b499b6e60d903073d9a606a346bb1b8902b7f000fbb4679c97e8ec85815e9491d0a2bfad67342fbd281d22720 + checksum: c271fc58433abeeab0af8a97c5c5882efd74239de42e672719b168837311c912e891d31e93172daf75939f06ab0c30af23d25a2dc56e17d035ca57b049dd39c1 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 30a6095dd8bc4ff8fc3dc77aa83ab4a6928cff6bb3d0bc799ad5f88f57d02c4415f07dd32fa38b0d40f5b29bca82c6be2fd3b470a246d88592eefef02dec449e + checksum: d42b8399801c28183f14da0c897e66ba850d1946aa3139759f917a4ceadb84877f56cc82fca183ad8fb5bf44a50d9556394e69234e6e974d275d1200260cabce languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-template-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 6e3e5710a39ecfd74524eb55a12ffaccfb6a5fcb923661f1269c5e77c261ece893913995af5e1b2559a0bf5bb32a589b4bad358c19e1fa91528fcf00cb044b14 + checksum: bada96c7c72cb098e18b5c2bb6f18fc2bd64a1e7b774bde1205f9aa04149812b698c4c72cdf199f5f8e40b91796cf1db96d82dfb6b45dec450f364e0ef926d05 languageName: node linkType: hard -"@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:^7.24.8": + version: 7.24.8 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.8" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 7d4c6e51112a0359f5a77e566786edf6551eb78f5ca308bc083bb470434cfe1c6f2652d8130964cc1a8cea6be9edb8ff19506bbddb1b7ce5c7f6db037c22f70c + checksum: f13b9575132a97e026fd4bc2450bf30a235161d5e1accd250672a48a104b4ac8be80e785c02bb2ebd4e3151dd8cf6278bb5092999b7ad0587e2ac9f418f5174d languageName: node linkType: hard -"@babel/plugin-transform-typescript@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-typescript@npm:7.22.11" +"@babel/plugin-transform-typescript@npm:^7.24.7": + version: 7.25.2 + resolution: "@babel/plugin-transform-typescript@npm:7.25.2" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-create-class-features-plugin": "npm:^7.22.11" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/plugin-syntax-typescript": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-create-class-features-plugin": "npm:^7.25.0" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + "@babel/plugin-syntax-typescript": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c068db48581ccd645d2f6286ac9194bf02dbe77485ea50e06e47de4b6266c10c01dd2a0697a936046843f2bc52e218659469da508219a3a5ec7191e6157240d4 + checksum: 5742acbf826f12b3ab749d3442988445d1a74d4bf49303e2872c63cac1881ce7578762188872be0b5bf336043a8e6726040dc7f2e09fdc587afbaa7ad12b6188 languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.10" +"@babel/plugin-transform-unicode-escapes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: eb9d2f4a70090987c58c2ccab031556f6d1d54d5df8762ef312da45fa55cf4a855ac74f3a3f1385a2f3d7b0220277a981e929140dcd5a7a9b45dd7de7158606c + checksum: 8c19dc0c8fe6c8c3c2ea2a039600a0e6cecf7e5603af9df97a449b6eb58874649458f17f985af642f756ab78012f5250b2a5905a9f016bf93b7122d7e18252aa languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: c65f8b3f36dda27ffa972ad141bcb9ab3034514480a8a507a3c60c5cdc28274a522464e15b110810e4d6a408a2f1bcd3fd368dfa6cb5399dae8894429efe7cb0 + checksum: 5518d0353c7e4f8a3ee404e9c86c14555c902cc6e714e80ee98aaa6c97805afc4ae8fb46b6f6d686c93701e26caee36a4d1828e1b04abe09e4c0842790b819a0 languageName: node linkType: hard -"@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:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 1bdcad555e5c98e24dd84cd6c0833fce9b5cd2485e968e1952cc6eb160fb3d4938075cd5a47e7a96e2d381f617a79498f85abe28ef430203ca331638e7693e1f + checksum: a3c2d0f8d25b91c6a1151fb01eab1947887fdc1068c051564102755cd37d27df4982b1b3bf52e01b6e8329cb5d6fd3e037522506cbc7013f91be87ca5a7c40d2 languageName: node linkType: hard -"@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:^7.25.4": + version: 7.25.4 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.25.4" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.2" + "@babel/helper-plugin-utils": "npm:^7.24.8" peerDependencies: "@babel/core": ^7.0.0 - checksum: d14e65180a0a96b12593bd0fc261269e33d65f41d561cd6ad5fd93d89b1da15c0513dd1bf9f33438894c1b10e3225453aee792eab0aac38f35b0a3f6335146eb + checksum: 8fcb6b4f69798520d911a4f794e680b992d68be72ac6de4bbfedc0252f9c2bfefaad4c38890baefe456fe2426ed87ed0c8de48e49e449acd35ff4a8aabbaaae3 languageName: node linkType: hard -"@babel/preset-env@npm:^7.18.6, @babel/preset-env@npm:^7.19.4, @babel/preset-env@npm:^7.22.14, @babel/preset-env@npm:^7.6.3": - version: 7.22.14 - resolution: "@babel/preset-env@npm:7.22.14" +"@babel/preset-env@npm:^7.18.6, @babel/preset-env@npm:^7.19.4, @babel/preset-env@npm:^7.25.4, @babel/preset-env@npm:^7.6.3": + version: 7.25.4 + resolution: "@babel/preset-env@npm:7.25.4" dependencies: - "@babel/compat-data": "npm:^7.22.9" - "@babel/helper-compilation-targets": "npm:^7.22.10" - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-validator-option": "npm:^7.22.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.22.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.22.5" + "@babel/compat-data": "npm:^7.25.4" + "@babel/helper-compilation-targets": "npm:^7.25.2" + "@babel/helper-plugin-utils": "npm:^7.24.8" + "@babel/helper-validator-option": "npm:^7.24.8" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.25.3" + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.25.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.25.0" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.25.0" "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators": "npm:^7.8.4" "@babel/plugin-syntax-class-properties": "npm:^7.12.13" "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - "@babel/plugin-syntax-import-assertions": "npm:^7.22.5" - "@babel/plugin-syntax-import-attributes": "npm:^7.22.5" + "@babel/plugin-syntax-import-assertions": "npm:^7.24.7" + "@babel/plugin-syntax-import-attributes": "npm:^7.24.7" "@babel/plugin-syntax-import-meta": "npm:^7.10.4" "@babel/plugin-syntax-json-strings": "npm:^7.8.3" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" @@ -1594,64 +1611,64 @@ __metadata: "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" - "@babel/plugin-transform-arrow-functions": "npm:^7.22.5" - "@babel/plugin-transform-async-generator-functions": "npm:^7.22.11" - "@babel/plugin-transform-async-to-generator": "npm:^7.22.5" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.22.5" - "@babel/plugin-transform-block-scoping": "npm:^7.22.10" - "@babel/plugin-transform-class-properties": "npm:^7.22.5" - "@babel/plugin-transform-class-static-block": "npm:^7.22.11" - "@babel/plugin-transform-classes": "npm:^7.22.6" - "@babel/plugin-transform-computed-properties": "npm:^7.22.5" - "@babel/plugin-transform-destructuring": "npm:^7.22.10" - "@babel/plugin-transform-dotall-regex": "npm:^7.22.5" - "@babel/plugin-transform-duplicate-keys": "npm:^7.22.5" - "@babel/plugin-transform-dynamic-import": "npm:^7.22.11" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.22.5" - "@babel/plugin-transform-export-namespace-from": "npm:^7.22.11" - "@babel/plugin-transform-for-of": "npm:^7.22.5" - "@babel/plugin-transform-function-name": "npm:^7.22.5" - "@babel/plugin-transform-json-strings": "npm:^7.22.11" - "@babel/plugin-transform-literals": "npm:^7.22.5" - "@babel/plugin-transform-logical-assignment-operators": "npm:^7.22.11" - "@babel/plugin-transform-member-expression-literals": "npm:^7.22.5" - "@babel/plugin-transform-modules-amd": "npm:^7.22.5" - "@babel/plugin-transform-modules-commonjs": "npm:^7.22.11" - "@babel/plugin-transform-modules-systemjs": "npm:^7.22.11" - "@babel/plugin-transform-modules-umd": "npm:^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.22.5" - "@babel/plugin-transform-new-target": "npm:^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.22.11" - "@babel/plugin-transform-numeric-separator": "npm:^7.22.11" - "@babel/plugin-transform-object-rest-spread": "npm:^7.22.11" - "@babel/plugin-transform-object-super": "npm:^7.22.5" - "@babel/plugin-transform-optional-catch-binding": "npm:^7.22.11" - "@babel/plugin-transform-optional-chaining": "npm:^7.22.12" - "@babel/plugin-transform-parameters": "npm:^7.22.5" - "@babel/plugin-transform-private-methods": "npm:^7.22.5" - "@babel/plugin-transform-private-property-in-object": "npm:^7.22.11" - "@babel/plugin-transform-property-literals": "npm:^7.22.5" - "@babel/plugin-transform-regenerator": "npm:^7.22.10" - "@babel/plugin-transform-reserved-words": "npm:^7.22.5" - "@babel/plugin-transform-shorthand-properties": "npm:^7.22.5" - "@babel/plugin-transform-spread": "npm:^7.22.5" - "@babel/plugin-transform-sticky-regex": "npm:^7.22.5" - "@babel/plugin-transform-template-literals": "npm:^7.22.5" - "@babel/plugin-transform-typeof-symbol": "npm:^7.22.5" - "@babel/plugin-transform-unicode-escapes": "npm:^7.22.10" - "@babel/plugin-transform-unicode-property-regex": "npm:^7.22.5" - "@babel/plugin-transform-unicode-regex": "npm:^7.22.5" - "@babel/plugin-transform-unicode-sets-regex": "npm:^7.22.5" + "@babel/plugin-transform-arrow-functions": "npm:^7.24.7" + "@babel/plugin-transform-async-generator-functions": "npm:^7.25.4" + "@babel/plugin-transform-async-to-generator": "npm:^7.24.7" + "@babel/plugin-transform-block-scoped-functions": "npm:^7.24.7" + "@babel/plugin-transform-block-scoping": "npm:^7.25.0" + "@babel/plugin-transform-class-properties": "npm:^7.25.4" + "@babel/plugin-transform-class-static-block": "npm:^7.24.7" + "@babel/plugin-transform-classes": "npm:^7.25.4" + "@babel/plugin-transform-computed-properties": "npm:^7.24.7" + "@babel/plugin-transform-destructuring": "npm:^7.24.8" + "@babel/plugin-transform-dotall-regex": "npm:^7.24.7" + "@babel/plugin-transform-duplicate-keys": "npm:^7.24.7" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.25.0" + "@babel/plugin-transform-dynamic-import": "npm:^7.24.7" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.24.7" + "@babel/plugin-transform-export-namespace-from": "npm:^7.24.7" + "@babel/plugin-transform-for-of": "npm:^7.24.7" + "@babel/plugin-transform-function-name": "npm:^7.25.1" + "@babel/plugin-transform-json-strings": "npm:^7.24.7" + "@babel/plugin-transform-literals": "npm:^7.25.2" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.7" + "@babel/plugin-transform-member-expression-literals": "npm:^7.24.7" + "@babel/plugin-transform-modules-amd": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.8" + "@babel/plugin-transform-modules-systemjs": "npm:^7.25.0" + "@babel/plugin-transform-modules-umd": "npm:^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.24.7" + "@babel/plugin-transform-new-target": "npm:^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.7" + "@babel/plugin-transform-numeric-separator": "npm:^7.24.7" + "@babel/plugin-transform-object-rest-spread": "npm:^7.24.7" + "@babel/plugin-transform-object-super": "npm:^7.24.7" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.8" + "@babel/plugin-transform-parameters": "npm:^7.24.7" + "@babel/plugin-transform-private-methods": "npm:^7.25.4" + "@babel/plugin-transform-private-property-in-object": "npm:^7.24.7" + "@babel/plugin-transform-property-literals": "npm:^7.24.7" + "@babel/plugin-transform-regenerator": "npm:^7.24.7" + "@babel/plugin-transform-reserved-words": "npm:^7.24.7" + "@babel/plugin-transform-shorthand-properties": "npm:^7.24.7" + "@babel/plugin-transform-spread": "npm:^7.24.7" + "@babel/plugin-transform-sticky-regex": "npm:^7.24.7" + "@babel/plugin-transform-template-literals": "npm:^7.24.7" + "@babel/plugin-transform-typeof-symbol": "npm:^7.24.8" + "@babel/plugin-transform-unicode-escapes": "npm:^7.24.7" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.24.7" + "@babel/plugin-transform-unicode-regex": "npm:^7.24.7" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.25.4" "@babel/preset-modules": "npm:0.1.6-no-external-plugins" - "@babel/types": "npm:^7.22.11" - babel-plugin-polyfill-corejs2: "npm:^0.4.5" - babel-plugin-polyfill-corejs3: "npm:^0.8.3" - babel-plugin-polyfill-regenerator: "npm:^0.5.2" - core-js-compat: "npm:^3.31.0" + babel-plugin-polyfill-corejs2: "npm:^0.4.10" + babel-plugin-polyfill-corejs3: "npm:^0.10.6" + babel-plugin-polyfill-regenerator: "npm:^0.6.1" + core-js-compat: "npm:^3.37.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: fe2886ed9019297d0f227b0846db05d1c2a16a57c1e0c2199348d61c5c8e133e1c8205b9d185d19168587466b55917230e9226976f984ed53d76cf425b5c4edf + checksum: 6cc8fb41273caa4e8acdd226e0a541f2be5d6a1b9f4a5be25e68690b27106408cf2e1e6d8745451a13cebc250102ea00a9f3ee2f18e0697f297470672fcad5da languageName: node linkType: hard @@ -1668,34 +1685,34 @@ __metadata: languageName: node linkType: hard -"@babel/preset-react@npm:^7.18.6, @babel/preset-react@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/preset-react@npm:7.22.5" +"@babel/preset-react@npm:^7.18.6, @babel/preset-react@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/preset-react@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-validator-option": "npm:^7.22.5" - "@babel/plugin-transform-react-display-name": "npm:^7.22.5" - "@babel/plugin-transform-react-jsx": "npm:^7.22.5" - "@babel/plugin-transform-react-jsx-development": "npm:^7.22.5" - "@babel/plugin-transform-react-pure-annotations": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-validator-option": "npm:^7.24.7" + "@babel/plugin-transform-react-display-name": "npm:^7.24.7" + "@babel/plugin-transform-react-jsx": "npm:^7.24.7" + "@babel/plugin-transform-react-jsx-development": "npm:^7.24.7" + "@babel/plugin-transform-react-pure-annotations": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 04e555c691f0071bdeda478a6aa54e5f97ae6904b5920567390bf8fde3a9877caf1ca68c3da67f1424d6aba58711e56d158dcb64a81c467cfad5ce735a17dc6f + checksum: ac11767b789fc27c441c78a1b1676e95803495aba73b3f005aab350e6c166602bf4c4ae222177afb357c1ff243517b610b2510c98a014353be9d97c2dd3a709e languageName: node linkType: hard -"@babel/preset-typescript@npm:^7.18.6, @babel/preset-typescript@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/preset-typescript@npm:7.22.11" +"@babel/preset-typescript@npm:^7.18.6, @babel/preset-typescript@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/preset-typescript@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.22.5" - "@babel/helper-validator-option": "npm:^7.22.5" - "@babel/plugin-syntax-jsx": "npm:^7.22.5" - "@babel/plugin-transform-modules-commonjs": "npm:^7.22.11" - "@babel/plugin-transform-typescript": "npm:^7.22.11" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-validator-option": "npm:^7.24.7" + "@babel/plugin-syntax-jsx": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.7" + "@babel/plugin-transform-typescript": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: f2a8bc4ace26eb3dd29483c5e58938d76a3226b2ed45d38b90838d4d611dd78a5d17ba7de051f6b31ec069cb26fb652631651db3f887749c9733bcc2c9eaab1d + checksum: 0b0ce61949e5c630302009152448acf40e958d29d0feb211cd5698416752e1b855061b4df0954f24aa8d875ee32d074c9d761c72644e83826c96de6b0c2b3ab5 languageName: node linkType: hard @@ -1725,43 +1742,40 @@ __metadata: languageName: node linkType: hard -"@babel/template@npm:^7.12.7, @babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5, @babel/template@npm:^7.3.3, @babel/template@npm:^7.4.4": - version: 7.22.15 - resolution: "@babel/template@npm:7.22.15" +"@babel/template@npm:^7.12.7, @babel/template@npm:^7.24.7, @babel/template@npm:^7.25.0, @babel/template@npm:^7.3.3, @babel/template@npm:^7.4.4": + version: 7.25.0 + resolution: "@babel/template@npm:7.25.0" dependencies: - "@babel/code-frame": "npm:^7.22.13" - "@babel/parser": "npm:^7.22.15" - "@babel/types": "npm:^7.22.15" - checksum: 25a49a16b024f5b80d539eaf4ba999ff7bb2d4679f223aed50e3d66d304904fefb7be02201a6db89a954e6f3b0b78a1e8c758cdec794a05f324c7d44590a86d3 + "@babel/code-frame": "npm:^7.24.7" + "@babel/parser": "npm:^7.25.0" + "@babel/types": "npm:^7.25.0" + checksum: 785de2f530cd3705937012e0c64714b8f0747ded2a008155953d28013f24d5955ec4c253d27ed94b3d7b37f8acc6ba470df885e29e4dc3c3e1d793babf0c090d languageName: node linkType: hard -"@babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.18.8, @babel/traverse@npm:^7.22.11, @babel/traverse@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/traverse@npm:7.23.2" +"@babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.18.8, @babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0, @babel/traverse@npm:^7.25.1, @babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/traverse@npm:7.25.6" dependencies: - "@babel/code-frame": "npm:^7.22.13" - "@babel/generator": "npm:^7.23.0" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.22.6" - "@babel/parser": "npm:^7.23.0" - "@babel/types": "npm:^7.23.0" - debug: "npm:^4.1.0" + "@babel/code-frame": "npm:^7.24.7" + "@babel/generator": "npm:^7.25.6" + "@babel/parser": "npm:^7.25.6" + "@babel/template": "npm:^7.25.0" + "@babel/types": "npm:^7.25.6" + debug: "npm:^4.3.1" globals: "npm:^11.1.0" - checksum: 5a1484c9d6fe70749970d8fd5fb9a7ad75b3c851f9604ae9efeadf0b9773aaa2f5d93ab6498b88291a8f2d44d5dfbcc2ba701503abd24e1a98bf3d08a82fe544 + checksum: 11f4229ae92b99d1869c819d1da9e4b40e34c38079c80c0379b49b9b0b4ff12f8b427ebb8a04985127ca67e72f11c522c3f2d71b4dc0d7cc1facc0d9c1b17252 languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.7, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.10, @babel/types@npm:^7.22.11, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.23.0 - resolution: "@babel/types@npm:7.23.0" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.7, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": + version: 7.25.6 + resolution: "@babel/types@npm:7.25.6" dependencies: - "@babel/helper-string-parser": "npm:^7.22.5" - "@babel/helper-validator-identifier": "npm:^7.22.20" + "@babel/helper-string-parser": "npm:^7.24.8" + "@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" - checksum: 707d32fdeb1dc4f9f1d1f659f7c01e99c656d2de4f47f6b4449f43dadb473e872510f8fcb7581565ecf69d46e0609b32143ffc99491015078dd623ed7b9c8f59 + checksum: 4baf413d1cb6149c247c8c3d4e137ca62a812316e09f8b5024ae81b67ff5c4eee7333bb2917428ae0ba710e0da71ed8cdf1411503662b8e02a8062938afce298 languageName: node linkType: hard @@ -3740,9 +3754,9 @@ __metadata: languageName: node linkType: hard -"@jest/transform@npm:^29.6.4": - version: 29.6.4 - resolution: "@jest/transform@npm:29.6.4" +"@jest/transform@npm:^29.6.4, @jest/transform@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/transform@npm:29.7.0" dependencies: "@babel/core": "npm:^7.11.6" "@jest/types": "npm:^29.6.3" @@ -3752,14 +3766,14 @@ __metadata: convert-source-map: "npm:^2.0.0" fast-json-stable-stringify: "npm:^2.1.0" graceful-fs: "npm:^4.2.9" - jest-haste-map: "npm:^29.6.4" + jest-haste-map: "npm:^29.7.0" jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" micromatch: "npm:^4.0.4" pirates: "npm:^4.0.4" slash: "npm:^3.0.0" write-file-atomic: "npm:^4.0.2" - checksum: b6eee5b995337560642a2a12bccf21e77f5116ce4fe1b1a0938da4faa5e24055bc59bc26a181344880e67b8c40290276c3bf79940fffa33538b0142249478a59 + checksum: f4b933b58683dd7b97ac91a99551bee886b0e204e85c1e75e2007ba01d87ed9d6996382982f98785eff4eff0539b8825dcc221c783db03705c973538806de5f5 languageName: node linkType: hard @@ -3777,14 +3791,14 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": - version: 0.3.3 - resolution: "@jridgewell/gen-mapping@npm:0.3.3" +"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.5 + resolution: "@jridgewell/gen-mapping@npm:0.3.5" dependencies: - "@jridgewell/set-array": "npm:^1.0.1" + "@jridgewell/set-array": "npm:^1.2.1" "@jridgewell/sourcemap-codec": "npm:^1.4.10" - "@jridgewell/trace-mapping": "npm:^0.3.9" - checksum: b90bc3ab62856ed90cd1e224ec2a7644b1247821931de118e59da1c3cf0b66438160e43e493ed267709983e738918ae10aa008928814c3e7a4bc26df8383a8a3 + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: a3360b0d86419a86bea650f4ca5bc33b36511879065d31a40175b9f9d3eb130f43b1f3f3e0e0a5a3ff519b02bb09541deddc13805599073676ea1e9c3c9af4ce languageName: node linkType: hard @@ -3795,10 +3809,10 @@ __metadata: languageName: node linkType: hard -"@jridgewell/set-array@npm:^1.0.1": - version: 1.1.2 - resolution: "@jridgewell/set-array@npm:1.1.2" - checksum: e7e3f00d10622a6e48cc59041537f99972ed110dca8bfdf575be101c5920d4e4d4fab315d601df9aebbd6b97f4ce857f0347902701ed034a0627ca554b64db0f +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 6770c20c60671ed520116f3f9264b20ddf770c345a5a3c2d5af339a0341c1506e84a5739914f3a3bca8dc059f1a90415a8f229a765f23123a2e4ac7b0c562551 languageName: node linkType: hard @@ -3829,7 +3843,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.9": +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25, @jridgewell/trace-mapping@npm:^0.3.9": version: 0.3.25 resolution: "@jridgewell/trace-mapping@npm:0.3.25" dependencies: @@ -5177,22 +5191,22 @@ __metadata: languageName: node linkType: hard -"@types/babel__generator@npm:*, @types/babel__generator@npm:^7.6.4": - version: 7.6.4 - resolution: "@types/babel__generator@npm:7.6.4" +"@types/babel__generator@npm:*, @types/babel__generator@npm:^7.6.8": + version: 7.6.8 + resolution: "@types/babel__generator@npm:7.6.8" dependencies: "@babel/types": "npm:^7.0.0" - checksum: 2e66f16ed0a281f0dc050a8ef4cc9866b790cef758d8defe7c51cb045f6226d2224379fd18d7a17618619b3c6db863aff29db75eb1110c603822455e5985c27d + checksum: 5e8d674e4c96bfbc3b3162ad66c9ec3d306a292ed532ea3304f9e26210483687bd9c65833ff2e7d25bd341b6c67954b0f20ca512dc33dacd5df5c094ea117a45 languageName: node linkType: hard -"@types/babel__template@npm:*, @types/babel__template@npm:^7.4.1": - version: 7.4.1 - resolution: "@types/babel__template@npm:7.4.1" +"@types/babel__template@npm:*, @types/babel__template@npm:^7.4.4": + version: 7.4.4 + resolution: "@types/babel__template@npm:7.4.4" dependencies: "@babel/parser": "npm:^7.1.0" "@babel/types": "npm:^7.0.0" - checksum: ba9a947c2d7f52aae25cc4d9d1a2e47901e43f04a85b9d05603411761cd0253f983f41e34b771703328d8608150ba7292bdad4fffc20177ee42bc621f176e083 + checksum: 4df6c4de0abc18173e835045d439766dec10827e46afd2f27f1db4c973208dc774ba035166103a80dedefc364e3ffdcdc00239a9181a0ea3155252c20e7e5105 languageName: node linkType: hard @@ -7125,11 +7139,11 @@ __metadata: languageName: node linkType: hard -"babel-jest@npm:^29.6.4": - version: 29.6.4 - resolution: "babel-jest@npm:29.6.4" +"babel-jest@npm:^29.6.4, babel-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "babel-jest@npm:29.7.0" dependencies: - "@jest/transform": "npm:^29.6.4" + "@jest/transform": "npm:^29.7.0" "@types/babel__core": "npm:^7.1.14" babel-plugin-istanbul: "npm:^6.1.1" babel-preset-jest: "npm:^29.6.3" @@ -7138,7 +7152,7 @@ __metadata: slash: "npm:^3.0.0" peerDependencies: "@babel/core": ^7.8.0 - checksum: ba2157d286cf57de8425642f3bd2321e0bf88d478eda25ccc664aea2e483b848b7ad041a05d2b7745d23fe3cd76c3ce0cef391828e4b7ea03254272a629be3e4 + checksum: 1942f678ee7dab1884a0ae8cc036d39b9bcc09557a00b5672c1def03bc2528c16e0a67f0fbce197441e7ceea7bf87102986708de1f9692f321d8abeb008f776e languageName: node linkType: hard @@ -7212,39 +7226,39 @@ __metadata: languageName: node linkType: hard -"babel-plugin-polyfill-corejs2@npm:^0.4.5": - version: 0.4.5 - resolution: "babel-plugin-polyfill-corejs2@npm:0.4.5" +"babel-plugin-polyfill-corejs2@npm:^0.4.10": + version: 0.4.11 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.11" dependencies: "@babel/compat-data": "npm:^7.22.6" - "@babel/helper-define-polyfill-provider": "npm:^0.4.2" + "@babel/helper-define-polyfill-provider": "npm:^0.6.2" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: e763b49159e719b7e9dbc758e8af921063282d635ba8b6130d60c9fdc21235d92448f116fd840fcd801d13488af647be73435a8315bf26e091f856d7a8a2fdac + checksum: e5577d16e79fdb82d0111e46ff57646b9c420907afd35acd1f53219799138bcddf34d6cf05434f4130da45c594772aa0fbcbd52a4191948f349fbf0a89bf81c1 languageName: node linkType: hard -"babel-plugin-polyfill-corejs3@npm:^0.8.3": - version: 0.8.3 - resolution: "babel-plugin-polyfill-corejs3@npm:0.8.3" +"babel-plugin-polyfill-corejs3@npm:^0.10.6": + version: 0.10.6 + resolution: "babel-plugin-polyfill-corejs3@npm:0.10.6" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.4.2" - core-js-compat: "npm:^3.31.0" + "@babel/helper-define-polyfill-provider": "npm:^0.6.2" + core-js-compat: "npm:^3.38.0" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 98d0730a6d12423332a4ab928c1606eafaaa2b386bb47705b509e4c6d9056c83882cd81dfeface75463d4864629541de24c0ffbf93611fcb8d259357a0b7ff31 + checksum: 44fde76dca5e4f9035bf076fcea1e6785d7c33c1f80ba1eb71c89ee2932b97179c8bcc0f0e16b532bfb1f326dde61b171e249b2b1ab860714278a43d57dbab53 languageName: node linkType: hard -"babel-plugin-polyfill-regenerator@npm:^0.5.2": - version: 0.5.2 - resolution: "babel-plugin-polyfill-regenerator@npm:0.5.2" +"babel-plugin-polyfill-regenerator@npm:^0.6.1": + version: 0.6.2 + resolution: "babel-plugin-polyfill-regenerator@npm:0.6.2" dependencies: - "@babel/helper-define-polyfill-provider": "npm:^0.4.2" + "@babel/helper-define-polyfill-provider": "npm:^0.6.2" peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 4dff16541521305fb8c163a29f82bd193698535c43f86612ff1cda0b69d12e9bc31d7dc656aaca32fc4b7f58439ad49b3eb26e050a3cf2aa9b27281195414e25 + checksum: a1d16a37e6c7aacd2a90c175e5714c5178719552dca9c8b8d23243c768c476f24c59614d3b40e4a464daac53f1da3ada4193e53039e87c9b9b199d3f79e6333a languageName: node linkType: hard @@ -7494,17 +7508,17 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.0.0, browserslist@npm:^4.18.1, browserslist@npm:^4.21.10, browserslist@npm:^4.21.4, browserslist@npm:^4.21.9": - version: 4.21.10 - resolution: "browserslist@npm:4.21.10" +"browserslist@npm:^4.0.0, browserslist@npm:^4.18.1, browserslist@npm:^4.21.10, browserslist@npm:^4.21.4, browserslist@npm:^4.23.1, browserslist@npm:^4.23.3": + version: 4.23.3 + resolution: "browserslist@npm:4.23.3" dependencies: - caniuse-lite: "npm:^1.0.30001517" - electron-to-chromium: "npm:^1.4.477" - node-releases: "npm:^2.0.13" - update-browserslist-db: "npm:^1.0.11" + caniuse-lite: "npm:^1.0.30001646" + electron-to-chromium: "npm:^1.5.4" + node-releases: "npm:^2.0.18" + update-browserslist-db: "npm:^1.1.0" bin: browserslist: cli.js - checksum: 0629781752b944917074c93566a65baaf47e9c02d76f79c524d940b4e485217d17633baa50c8bf572a9c04b58ef70cc7b8da59f409f841b42e33dac69695cfec + checksum: fd49ae0ea2a679e678954007d459fb1dfb6d30d4175d89c98d6f0091cb31c3c3d1e211e0cf956711f1e76af2e2b54cf249e1e7badbca737969b3ea581b9e1258 languageName: node linkType: hard @@ -7733,10 +7747,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001517, caniuse-lite@npm:^1.0.30001520": - version: 1.0.30001525 - resolution: "caniuse-lite@npm:1.0.30001525" - checksum: ef9a570fcef1f003d3ab3944589788fa6a42af010764aaeaa4315bc2bdc8dc8dbc7cf4497008c687a8e311b5557f3374c52484c6459a89a2e8a45ed1029c3d13 +"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001520, caniuse-lite@npm:^1.0.30001646": + version: 1.0.30001660 + resolution: "caniuse-lite@npm:1.0.30001660" + checksum: 86cbdcbba9cbcb6e46b6d983e18dbd8f45c5352af2254cc61a4ec6fa278667cb9221e32f06d1d43e969ce83c45c5be10930c756ab3adcabba9945c8a77aab67e languageName: node linkType: hard @@ -7868,7 +7882,7 @@ __metadata: languageName: node linkType: hard -"chokidar@npm:3.5.3, chokidar@npm:^3.4.0, chokidar@npm:^3.4.2, chokidar@npm:^3.5.2, chokidar@npm:^3.5.3": +"chokidar@npm:3.5.3": version: 3.5.3 resolution: "chokidar@npm:3.5.3" dependencies: @@ -7887,6 +7901,25 @@ __metadata: languageName: node linkType: hard +"chokidar@npm:^3.4.2, chokidar@npm:^3.5.2, chokidar@npm:^3.5.3, chokidar@npm:^3.6.0": + version: 3.6.0 + resolution: "chokidar@npm:3.6.0" + dependencies: + anymatch: "npm:~3.1.2" + braces: "npm:~3.0.2" + fsevents: "npm:~2.3.2" + glob-parent: "npm:~5.1.2" + is-binary-path: "npm:~2.1.0" + is-glob: "npm:~4.0.1" + normalize-path: "npm:~3.0.0" + readdirp: "npm:~3.6.0" + dependenciesMeta: + fsevents: + optional: true + checksum: 0af37e6ac9c6cbe394f212bc52ad7f55bb3e7eca475d69ab7eb3d39c2ce0943a0547ac5cf2271239d78ae04e912cb5affd6b88dae65f4560115e152ee9d0b192 + languageName: node + linkType: hard + "chownr@npm:^1.1.1": version: 1.1.4 resolution: "chownr@npm:1.1.4" @@ -8246,6 +8279,13 @@ __metadata: languageName: node linkType: hard +"commander@npm:^6.2.0": + version: 6.2.1 + resolution: "commander@npm:6.2.1" + checksum: c52b3cba040d015dc2788bed08041dd2e4734bc79b4ac0e1829544fa09e0844b746b956e9f5f87dee4f62870ab63239f22e2e2d30b242eef392df1501dee319d + languageName: node + linkType: hard + "commander@npm:^8.3.0": version: 8.3.0 resolution: "commander@npm:8.3.0" @@ -8376,7 +8416,7 @@ __metadata: languageName: node linkType: hard -"convert-source-map@npm:^1.1.0, convert-source-map@npm:^1.6.0, convert-source-map@npm:^1.7.0": +"convert-source-map@npm:^1.6.0, convert-source-map@npm:^1.7.0": version: 1.9.0 resolution: "convert-source-map@npm:1.9.0" checksum: 7c665ec75a792623eff22413a59fb6646770063eb871efe7550cfba4f17177137ea300f964c2763db69355384398de491126fbe064fa83b25e3023b87711b6e4 @@ -8467,12 +8507,12 @@ __metadata: languageName: node linkType: hard -"core-js-compat@npm:^3.31.0": - version: 3.32.1 - resolution: "core-js-compat@npm:3.32.1" +"core-js-compat@npm:^3.37.1, core-js-compat@npm:^3.38.0": + version: 3.38.1 + resolution: "core-js-compat@npm:3.38.1" dependencies: - browserslist: "npm:^4.21.10" - checksum: 74c037aba2cb128b6366a017010fff8e296d1cffabbdd51bd1c7ae95a1bdff70fab43e8910eab3ce08fbe9a5d2b35a39bc437508378d54fb880361cefb341049 + browserslist: "npm:^4.23.3" + checksum: d6e8fec39b02b5b750c12c0751c6290ff1e1ab20a045777431e35208b7a9ee59f37b1e463ebb9b40a2d6dd066cf5807ca896e2d2e722f1670ebd028b37d95f01 languageName: node linkType: hard @@ -9365,7 +9405,19 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:4.3.4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": + version: 4.3.7 + resolution: "debug@npm:4.3.7" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 864966e858b7ef037b4704b2d730aac5bbdd5b130e897e4b7a3786b6a64973e018d3334c3df44e42786facf4d9d78a0109f2a03cfb36e185eac294aa018195e8 + languageName: node + linkType: hard + +"debug@npm:4.3.4": version: 4.3.4 resolution: "debug@npm:4.3.4" dependencies: @@ -9930,10 +9982,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.477": - version: 1.4.508 - resolution: "electron-to-chromium@npm:1.4.508" - checksum: 4909eda744e23e1124ee6b7e4de7f9cb359b947822f2b26e2d54a2ee64dcbad33f60fcd42e4f029a707645e07c6ece770d8983724b5e91fcd11df54c7f3020bc +"electron-to-chromium@npm:^1.5.4": + version: 1.5.25 + resolution: "electron-to-chromium@npm:1.5.25" + checksum: 8469c2ba96aadbb18c0a6ba31aa9dce9acd160e57eb8e620f51e80812141ef87fdaecefb216494fc83843e77d02382df5ed23e643cafd7e5d0ef823ae78ce6de languageName: node linkType: hard @@ -10214,10 +10266,10 @@ __metadata: languageName: node linkType: hard -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: 37f3535f99193a5ff755af30866bb55828aff044bdc14e1844d0965470ba87ef686761fbbf2cea02955f1bb8510f72c3308e7dbe2d794fa85058a33bf60ea372 +"escalade@npm:^3.1.1, escalade@npm:^3.1.2": + version: 3.2.0 + resolution: "escalade@npm:3.2.0" + checksum: 34c0881433eeaf9b78c256cb5aa5f53eccf06d92919fd0e350e4ae05cba07723c28cf2f08bf1298654ad5be74ae9c401193ebfba45bfd2b6050209cd93274682 languageName: node linkType: hard @@ -10294,7 +10346,7 @@ __metadata: version: 0.0.0-use.local resolution: "eslint-plugin-graphile-export@workspace:utils/eslint-plugin-graphile-export" dependencies: - "@babel/types": "npm:^7.22.11" + "@babel/types": "npm:^7.25.6" "@types/eslint": "npm:^8.44.2" "@types/estree": "npm:^1.0.1" "@types/jest": "npm:^29.5.4" @@ -12064,13 +12116,13 @@ __metadata: version: 0.0.0-use.local resolution: "graphile-export@workspace:utils/graphile-export" dependencies: - "@babel/generator": "npm:^7.22.10" - "@babel/parser": "npm:^7.22.14" - "@babel/template": "npm:^7.22.5" - "@babel/traverse": "npm:^7.23.2" - "@babel/types": "npm:^7.22.11" - "@types/babel__generator": "npm:^7.6.4" - "@types/babel__template": "npm:^7.4.1" + "@babel/generator": "npm:^7.25.6" + "@babel/parser": "npm:^7.25.6" + "@babel/template": "npm:^7.25.0" + "@babel/traverse": "npm:^7.25.6" + "@babel/types": "npm:^7.25.6" + "@types/babel__generator": "npm:^7.6.8" + "@types/babel__template": "npm:^7.4.4" "@types/jest": "npm:^29.5.4" "@types/node": "npm:^20.5.7" "@types/prettier": "npm:^3.0.0" @@ -13858,9 +13910,9 @@ __metadata: languageName: node linkType: hard -"jest-haste-map@npm:^29.6.4": - version: 29.6.4 - resolution: "jest-haste-map@npm:29.6.4" +"jest-haste-map@npm:^29.6.4, jest-haste-map@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-haste-map@npm:29.7.0" dependencies: "@jest/types": "npm:^29.6.3" "@types/graceful-fs": "npm:^4.1.3" @@ -13870,14 +13922,14 @@ __metadata: fsevents: "npm:^2.3.2" graceful-fs: "npm:^4.2.9" jest-regex-util: "npm:^29.6.3" - jest-util: "npm:^29.6.3" - jest-worker: "npm:^29.6.4" + jest-util: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" micromatch: "npm:^4.0.4" walker: "npm:^1.0.8" dependenciesMeta: fsevents: optional: true - checksum: 95c2bac9be4f72ead41610ae64c24dfdae6cedfaa38e492d4a2576208b7b71ea368495e07a0037ee440be7ad38e8592cf4eba5b072c68071723cafd60cab9e2b + checksum: 53a04a9479c37726eb77e9f0d74e3dbdb508953263556819b297f91fd5cb943d479a0e500f21df5c246a8ac2dded3d9b0fbe0bbcc04f56ebd1f4eb501aa6930c languageName: node linkType: hard @@ -14096,9 +14148,9 @@ __metadata: languageName: node linkType: hard -"jest-util@npm:^29.6.3": - version: 29.6.3 - resolution: "jest-util@npm:29.6.3" +"jest-util@npm:^29.6.3, jest-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-util@npm:29.7.0" dependencies: "@jest/types": "npm:^29.6.3" "@types/node": "npm:*" @@ -14106,7 +14158,7 @@ __metadata: ci-info: "npm:^3.2.0" graceful-fs: "npm:^4.2.9" picomatch: "npm:^2.2.3" - checksum: b25426e85b5149038c84404c83da4ed901bd7ff571e022658aa30785f4b99ef7824159c3da8243c732190935c61ad86c573ebb5632ce0511170eb6e7c319ba39 + checksum: bca94bdfe28adbcf7f1fa929d2de7777e88e3bdf89e4797f33687bf64198ec936386da7009ebc6dfc3221a76b12b7526f1153ba695a0af965d07a4367d1aa5a2 languageName: node linkType: hard @@ -14151,15 +14203,15 @@ __metadata: languageName: node linkType: hard -"jest-worker@npm:^29.1.2, jest-worker@npm:^29.6.4": - version: 29.6.4 - resolution: "jest-worker@npm:29.6.4" +"jest-worker@npm:^29.1.2, jest-worker@npm:^29.6.4, jest-worker@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-worker@npm:29.7.0" dependencies: "@types/node": "npm:*" - jest-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" merge-stream: "npm:^2.0.0" supports-color: "npm:^8.0.0" - checksum: fb162410eeb2113a8030a01b34f40d43646ac3a8b57753d8ac95225df90cdd8153c0fa47c12cad7e18e02a0cd69573d68cdc436d688e3557436816a893d0ce1a + checksum: 9492d4d7547c6ff654025e685cd6effcb8ca08273fbcdacaa4813f487c8715394229d63ae5a58525b26095987485c1ef7b25466e6f188fbce985b53169a87408 languageName: node linkType: hard @@ -15975,7 +16027,7 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.1.3, ms@npm:^2.0.0, ms@npm:^2.1.1": +"ms@npm:2.1.3, ms@npm:^2.0.0, ms@npm:^2.1.1, ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" checksum: 78c12f6b473a022ebacc393fc14b76fe40b8feda7218124b86c4684e440e10377a063bec1d3902df1f74714f02b74b36ad7d3a6de9e2fbffa26fc29e5ce018fc @@ -16199,10 +16251,10 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^2.0.13": - version: 2.0.13 - resolution: "node-releases@npm:2.0.13" - checksum: 6afceac2e86ad4717880f659f37c37708cda4dfc7fae6b935236a693fe7d810daf62cacf819bdda80e159ef5e5fac35e06f2d2c4d0422f99c451be92eb54b5b0 +"node-releases@npm:^2.0.18": + version: 2.0.18 + resolution: "node-releases@npm:2.0.18" + checksum: c75e28565bcb43d30fbdc74ab576f6166634a104b81c14c4675fe2dde85cf37a9f021ef34ada8add15dd50a00cf2fa6806c208e5cf7b33b233f3dcd113773820 languageName: node linkType: hard @@ -17060,10 +17112,10 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: 447e1f6e4953522a3947f2effa93dca66f2436a7c275327ba1a7fb526eab369fc9847d77ebcd734dc483322256f34b431e93a325e44726e4ec390c11cc7f5c87 +"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": + version: 1.1.0 + resolution: "picocolors@npm:1.1.0" + checksum: c50c02971eac77ff2bb5c32d786de3013c922281e76ece616ecb4aed2ffdb85c504e6b1cdcbb2c571b70400c4035df33df336f5e31e8d2aa49ec34045e883b56 languageName: node linkType: hard @@ -18980,15 +19032,15 @@ __metadata: version: 0.0.0-use.local resolution: "root-workspace-0b6124@workspace:." dependencies: - "@babel/cli": "npm:^7.22.10" - "@babel/core": "npm:^7.22.11" - "@babel/eslint-parser": "npm:^7.22.11" + "@babel/cli": "npm:^7.25.6" + "@babel/core": "npm:^7.25.2" + "@babel/eslint-parser": "npm:^7.25.1" "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-modules-commonjs": "npm:^7.22.11" - "@babel/plugin-transform-runtime": "npm:^7.22.10" - "@babel/preset-env": "npm:^7.22.14" - "@babel/preset-react": "npm:^7.22.5" - "@babel/preset-typescript": "npm:^7.22.11" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.8" + "@babel/plugin-transform-runtime": "npm:^7.25.4" + "@babel/preset-env": "npm:^7.25.4" + "@babel/preset-react": "npm:^7.24.7" + "@babel/preset-typescript": "npm:^7.24.7" "@changesets/changelog-github": "npm:^0.4.8" "@changesets/cli": "npm:^2.26.2" "@knodes/typedoc-plugin-monorepo-readmes": "npm:^0.23.1" @@ -19002,7 +19054,7 @@ __metadata: "@typescript-eslint/eslint-plugin": "npm:^6.5.0" "@typescript-eslint/parser": "npm:^6.5.0" "@typescript-eslint/typescript-estree": "npm:^6.5.0" - babel-jest: "npm:^29.6.4" + babel-jest: "npm:^29.7.0" babel-plugin-transform-import-meta: "npm:^2.2.1" concurrently: "npm:^8.2.1" eslint: "npm:^8.48.0" @@ -21406,17 +21458,17 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.11": - version: 1.0.11 - resolution: "update-browserslist-db@npm:1.0.11" +"update-browserslist-db@npm:^1.1.0": + version: 1.1.0 + resolution: "update-browserslist-db@npm:1.1.0" dependencies: - escalade: "npm:^3.1.1" - picocolors: "npm:^1.0.0" + escalade: "npm:^3.1.2" + picocolors: "npm:^1.0.1" peerDependencies: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: adce84b01c28606050eb73df75b36404fe531727484ebc5a3f6d12c23413155a82205a7c773ee05b8fb27d0fa719e66c970fb90ecced57a54106b89249dd6bb3 + checksum: b4db7b5818bcea712cbe25786df2711eb0706238ce70f5a5de33300695a5e12acb3fdc4711f6622b24a1f96a345f1ed45c95b6eac305ed6ef30490dbec53179c languageName: node linkType: hard