From 320050a2632d9177c2547da49bcfe3b234ef0c0e Mon Sep 17 00:00:00 2001
From: Jamie Stackhouse <1956521+itsjamie@users.noreply.github.com>
Date: Mon, 10 Aug 2026 00:07:22 -0300
Subject: [PATCH] feat(babel)!: support Babel 8
BREAKING CHANGES:
Babel 8 is now required (@babel/core ^8.0.0); Babel 7 users should
stay on v7 of this plugin. The package is ESM-only and requires
Node ^22.18.0 || >=24.11.0 to match Babel 8. require() keeps working
on supported Node versions via require(esm). The deprecated
runtimeHelpers and externalHelpers options were removed, as was the
@types/babel__core optional peer dependency. The rollup peer range
is now >=4.0.0.
resolves #2014
---
packages/babel/README.md | 47 +-
packages/babel/package.json | 46 +-
packages/babel/rollup.config.mjs | 41 -
.../babel/scripts/run-tests-if-supported.mjs | 22 +
packages/babel/src/index.js | 35 +-
packages/babel/src/package.json | 3 -
packages/babel/src/preflightCheck.js | 3 +-
packages/babel/src/transformCode.js | 3 +-
packages/babel/test/as-input-plugin.mjs | 19 +-
packages/babel/test/as-output-plugin.mjs | 59 +-
packages/babel/test/fixtures/.babelrc | 2 +-
.../babel/test/fixtures/checks/foo/.babelrc | 2 +-
.../babel/test/fixtures/class-loose/.babelrc | 8 +-
.../test/fixtures/external-helpers/.babelrc | 2 +-
.../babel/test/fixtures/ignored-file/.babelrc | 2 +-
.../fixtures/proposal-decorators/.babelrc | 4 +-
.../runtime-helpers-builtins/.babelrc | 6 -
.../fixtures/runtime-helpers-builtins/main.js | 1 -
.../runtime-helpers-commonjs/.babelrc | 2 +-
.../fixtures/runtime-helpers-esm/.babelrc | 6 +-
.../test/fixtures/runtime-helpers/.babelrc | 2 +-
packages/babel/types/index.d.ts | 20 +-
pnpm-lock.yaml | 1892 +++++++++--------
23 files changed, 1153 insertions(+), 1074 deletions(-)
delete mode 100644 packages/babel/rollup.config.mjs
create mode 100644 packages/babel/scripts/run-tests-if-supported.mjs
delete mode 100644 packages/babel/src/package.json
delete mode 100644 packages/babel/test/fixtures/runtime-helpers-builtins/.babelrc
delete mode 100644 packages/babel/test/fixtures/runtime-helpers-builtins/main.js
diff --git a/packages/babel/README.md b/packages/babel/README.md
index c5f2662e1..9b6e1584e 100644
--- a/packages/babel/README.md
+++ b/packages/babel/README.md
@@ -26,7 +26,15 @@ Using Rollup with `@rollup/plugin-babel` makes the process far easier.
## Requirements
-This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v1.20.0+.
+This plugin requires Node.js `^22.18.0 || >=24.11.0` (the range supported by Babel 8), Rollup v4.0.0+ and `@babel/core` v8.0.0+. If you are on Babel 7, use `@rollup/plugin-babel` v7.
+
+This package is published as ES modules only. `require('@rollup/plugin-babel')` keeps working on the supported Node versions via [`require(esm)`](https://nodejs.org/api/modules.html#loading-ecmascript-modules-using-require).
+
+## Migration to v8
+
+- Babel 7 is no longer supported, see the [Babel 8 migration guide](https://babeljs.io/docs/v8-migration) for upgrading your Babel configuration.
+- The `runtimeHelpers` and `externalHelpers` plugin options (deprecated since v5 in favour of `babelHelpers`) have been removed.
+- The `@types/babel__core` optional peer dependency is gone; Babel 8 ships its own TypeScript types.
## Install
@@ -110,7 +118,7 @@ const filter = createFilter(include, exclude, {});
### `extensions`
Type: `Array[...String]`
-Default: `['.js', '.jsx', '.es6', '.es', '.mjs']`
+Default: `['.js', '.jsx', '.es6', '.es', '.mjs', '.cjs']`
An array of file extensions that Babel should transpile. If you want to transpile TypeScript files with this plugin it's essential to include `.ts` and `.tsx` in this option.
@@ -291,7 +299,7 @@ By default, helpers e.g. when transpiling classes will be inserted at the top of
Alternatively, you can use imported runtime helpers by adding the `@babel/transform-runtime` plugin. This will make `@babel/runtime` an external dependency of your project, see [@babel/plugin-transform-runtime](https://babeljs.io/docs/en/babel-plugin-transform-runtime) for details.
-Note that this will only work for `es` and `cjs` formats, and you need to make sure to set the `useESModules` option of `@babel/plugin-transform-runtime` to `true` if you create ES output:
+Note that this will only work for `es` and `cjs` formats. Helpers are always imported as `@babel/runtime/helpers/`; whether the ESM or CommonJS flavour is used is resolved from `@babel/runtime`'s `package.json#exports`:
```js
rollup.rollup({...})
@@ -299,7 +307,7 @@ rollup.rollup({...})
format: 'es',
plugins: [getBabelOutputPlugin({
presets: ['@babel/preset-env'],
- plugins: [['@babel/plugin-transform-runtime', { useESModules: true }]]
+ plugins: ['@babel/plugin-transform-runtime']
})]
}))
```
@@ -309,7 +317,7 @@ rollup.rollup({...})
export default class Foo {}
// output
-import _classCallCheck from '@babel/runtime/helpers/esm/classCallCheck';
+import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
var Foo = function Foo() {
_classCallCheck(this, Foo);
@@ -318,35 +326,6 @@ var Foo = function Foo() {
export default Foo;
```
-And for CommonJS:
-
-```js
-rollup.rollup({...})
-.then(bundle => bundle.generate({
- format: 'cjs',
- plugins: [getBabelOutputPlugin({
- presets: ['@babel/preset-env'],
- plugins: [['@babel/plugin-transform-runtime', { useESModules: false }]]
- })]
-}))
-```
-
-```js
-// input
-export default class Foo {}
-
-// output
-('use strict');
-
-var _classCallCheck = require('@babel/runtime/helpers/classCallCheck');
-
-var Foo = function Foo() {
- _classCallCheck(this, Foo);
-};
-
-module.exports = Foo;
-```
-
Another option is to use `@babel/plugin-external-helpers`, which will reference the global `babelHelpers` object. It is your responsibility to make sure this global variable exists.
## Custom plugin builder
diff --git a/packages/babel/package.json b/packages/babel/package.json
index 30fc774d9..82819e9a8 100644
--- a/packages/babel/package.json
+++ b/packages/babel/package.json
@@ -13,33 +13,25 @@
"author": "Rich Harris",
"homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme",
"bugs": "https://github.com/rollup/plugins/issues",
- "main": "./dist/cjs/index.js",
- "module": "./dist/es/index.js",
+ "type": "module",
"exports": {
"types": "./types/index.d.ts",
- "import": "./dist/es/index.js",
- "default": "./dist/cjs/index.js"
+ "default": "./src/index.js"
},
"engines": {
- "node": ">=14.0.0"
+ "node": "^22.18.0 || >=24.11.0"
},
"scripts": {
- "build": "rollup -c",
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
- "ci:lint": "pnpm build && pnpm lint",
+ "ci:lint": "pnpm lint",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "pnpm test -- --reporter=verbose",
- "prebuild": "del-cli dist",
- "prepare": "if [ ! -d 'dist' ]; then pnpm build; fi",
- "prerelease": "pnpm build",
- "pretest": "pnpm build",
"release": "pnpm --workspace-root package:release $(pwd)",
- "test": "vitest --config ../../.config/vitest.config.mts run",
- "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
+ "test": "node ./scripts/run-tests-if-supported.mjs",
+ "test:ts": "tsc types/index.d.ts test/types.ts --noEmit --esModuleInterop"
},
"files": [
- "dist",
- "!dist/**/*.map",
+ "src",
"types",
"README.md",
"LICENSE"
@@ -53,34 +45,28 @@
"es6"
],
"peerDependencies": {
- "@babel/core": "^7.0.0",
- "@types/babel__core": "^7.1.9",
- "rollup": "^2.0.0||^3.0.0||^4.0.0"
+ "@babel/core": "^8.0.0",
+ "rollup": ">=4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
- },
- "@types/babel__core": {
- "optional": true
}
},
"dependencies": {
- "@babel/helper-module-imports": "^7.18.6",
+ "@babel/helper-module-imports": "^8.0.0",
"@rollup/pluginutils": "^5.0.1",
"workerpool": "^9.0.0"
},
"devDependencies": {
- "@babel/core": "^7.19.1",
- "@babel/plugin-external-helpers": "^7.18.6",
- "@babel/plugin-proposal-decorators": "^7.19.1",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-transform-runtime": "^7.19.1",
- "@babel/preset-env": "^7.19.1",
+ "@babel/core": "^8.0.1",
+ "@babel/plugin-external-helpers": "^8.0.1",
+ "@babel/plugin-proposal-decorators": "^8.0.2",
+ "@babel/plugin-transform-runtime": "^8.0.1",
+ "@babel/preset-env": "^8.0.2",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
- "@types/babel__core": "^7.1.9",
- "rollup": "^4.0.0-24",
+ "rollup": "^4.0.0",
"source-map": "^0.7.4"
},
"types": "./types/index.d.ts",
diff --git a/packages/babel/rollup.config.mjs b/packages/babel/rollup.config.mjs
deleted file mode 100644
index 4124e6fc1..000000000
--- a/packages/babel/rollup.config.mjs
+++ /dev/null
@@ -1,41 +0,0 @@
-import { readFileSync } from 'fs';
-
-import { createConfig, emitModulePackageFile } from '../../shared/rollup.config.mjs';
-
-import { babel } from './src/index.js';
-
-const pkg = JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf8'));
-
-export default {
- ...createConfig({ pkg }),
- input: {
- index: './src/index.js',
- worker: './src/worker.js'
- },
- output: [
- {
- format: 'cjs',
- dir: 'dist/cjs',
- exports: 'named',
- footer(chunkInfo) {
- if (chunkInfo.name === 'index') {
- return 'module.exports = Object.assign(exports.default, exports);';
- }
- return null;
- },
- sourcemap: true
- },
- {
- format: 'es',
- dir: 'dist/es',
- plugins: [emitModulePackageFile()],
- sourcemap: true
- }
- ],
- plugins: [
- babel({
- presets: [['@babel/preset-env', { targets: { node: 14 } }]],
- babelHelpers: 'bundled'
- })
- ]
-};
diff --git a/packages/babel/scripts/run-tests-if-supported.mjs b/packages/babel/scripts/run-tests-if-supported.mjs
new file mode 100644
index 000000000..eb484fbd2
--- /dev/null
+++ b/packages/babel/scripts/run-tests-if-supported.mjs
@@ -0,0 +1,22 @@
+#!/usr/bin/env node
+// Babel 8 requires Node ^22.18.0 || >=24.11.0, but the repo-wide CI matrix also
+// runs older Node versions. Skip this package's tests there instead of failing.
+import { spawn } from 'node:child_process';
+
+const [major, minor] = process.versions.node.split('.').map(Number);
+const supported = (major === 22 && minor >= 18) || (major === 24 && minor >= 11) || major >= 25;
+
+if (!supported) {
+ // eslint-disable-next-line no-console
+ console.log(
+ `skipping tests: Babel 8 requires Node ^22.18.0 || >=24.11.0 (running ${process.versions.node})`
+ );
+ process.exit(0);
+}
+
+const child = spawn(
+ 'vitest',
+ ['--config', '../../.config/vitest.config.mts', 'run', ...process.argv.slice(2)],
+ { stdio: 'inherit', shell: process.platform === 'win32' }
+);
+child.on('exit', (code) => process.exit(code ?? 1));
diff --git a/packages/babel/src/index.js b/packages/babel/src/index.js
index 6284e824e..09c0e401f 100644
--- a/packages/babel/src/index.js
+++ b/packages/babel/src/index.js
@@ -31,26 +31,8 @@ const unpackOptions = ({
};
};
-const warnAboutDeprecatedHelpersOption = ({ deprecatedOption, suggestion }) => {
- // eslint-disable-next-line no-console
- console.warn(
- `\`${deprecatedOption}\` has been removed in favor a \`babelHelpers\` option. Try changing your configuration to \`${suggestion}\`. ` +
- `Refer to the documentation to learn more: https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers`
- );
-};
-
const unpackInputPluginOptions = ({ skipPreflightCheck = false, ...rest }) => {
- if ('runtimeHelpers' in rest) {
- warnAboutDeprecatedHelpersOption({
- deprecatedOption: 'runtimeHelpers',
- suggestion: `babelHelpers: 'runtime'`
- });
- } else if ('externalHelpers' in rest) {
- warnAboutDeprecatedHelpersOption({
- deprecatedOption: 'externalHelpers',
- suggestion: `babelHelpers: 'external'`
- });
- } else if (!rest.babelHelpers) {
+ if (!rest.babelHelpers) {
// eslint-disable-next-line no-console
console.warn(
"babelHelpers: 'bundled' option was used by default. It is recommended to configure this option explicitly, read more here: " +
@@ -330,11 +312,8 @@ function createBabelOutputPluginFactory(customCallback = returnObject) {
excludeChunks,
exclude,
extensions,
- externalHelpers,
- externalHelpersWhitelist,
include,
parallel,
- runtimeHelpers,
...babelOptions
} = unpackOutputPluginOptions(pluginOptionsWithOverrides, outputOptions);
/* eslint-enable no-unused-vars */
@@ -392,3 +371,15 @@ export { createBabelInputPluginFactory, createBabelOutputPluginFactory };
export default getBabelInputPlugin;
// support `rollup -c —plugin babel`
export { getBabelInputPlugin as babel };
+
+// make `require('@rollup/plugin-babel')` return the callable default export with
+// the named exports attached, like the removed CJS build did
+const cjsExports = Object.assign(getBabelInputPlugin, {
+ default: getBabelInputPlugin,
+ babel: getBabelInputPlugin,
+ getBabelInputPlugin,
+ getBabelOutputPlugin,
+ createBabelInputPluginFactory,
+ createBabelOutputPluginFactory
+});
+export { cjsExports as 'module.exports' };
diff --git a/packages/babel/src/package.json b/packages/babel/src/package.json
deleted file mode 100644
index 3dbc1ca59..000000000
--- a/packages/babel/src/package.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "type": "module"
-}
diff --git a/packages/babel/src/preflightCheck.js b/packages/babel/src/preflightCheck.js
index ae1e43407..2e0f27ff0 100644
--- a/packages/babel/src/preflightCheck.js
+++ b/packages/babel/src/preflightCheck.js
@@ -34,8 +34,7 @@ function helpersTestTransform() {
const mismatchError = (actual, expected, filename) =>
`You have declared using "${expected}" babelHelpers, but transforming ${filename} resulted in "${actual}". Please check your configuration.`;
-// Revert to /\/helpers\/(esm\/)?inherits/ when Babel 8 gets released, this was fixed in https://github.com/babel/babel/issues/14185
-const inheritsHelperRe = /[\\/]+helpers[\\/]+(esm[\\/]+)?inherits/;
+const inheritsHelperRe = /\/helpers\/(esm\/)?inherits/;
export default async function preflightCheck(error, babelHelpers, transformOptions) {
const finalOptions = addBabelPlugin(transformOptions, helpersTestTransform);
diff --git a/packages/babel/src/transformCode.js b/packages/babel/src/transformCode.js
index 3be62e11c..1fd65c5c2 100644
--- a/packages/babel/src/transformCode.js
+++ b/packages/babel/src/transformCode.js
@@ -14,8 +14,7 @@ export default async function transformCode({
skipPreflightCheck,
babelHelpers
}) {
- // loadPartialConfigAsync has become available in @babel/core@7.8.0
- const config = await (babel.loadPartialConfigAsync || babel.loadPartialConfig)(babelOptions);
+ const config = await babel.loadPartialConfigAsync(babelOptions);
// file is ignored by babel
if (!config) {
diff --git a/packages/babel/test/as-input-plugin.mjs b/packages/babel/test/as-input-plugin.mjs
index c388a5b2e..d5d80dfc1 100644
--- a/packages/babel/test/as-input-plugin.mjs
+++ b/packages/babel/test/as-input-plugin.mjs
@@ -216,7 +216,8 @@ test('generates sourcemap by default', async () => {
source: 'test/fixtures/class/main.js'.split(nodePath.sep).join('/'),
line: 3,
column: 12,
- name: target
+ // Babel 8 no longer records a name mapping for identifiers whose text is unchanged
+ name: null
});
});
test('works with proposal-decorators (rollup/rollup-plugin-babel#18)', async () => {
@@ -273,7 +274,7 @@ var Foo = /*#__PURE__*/_createClass(function Foo() {
module.exports = Foo;
`);
});
-test('allows transform-runtime to inject esm version of helpers', async () => {
+test('allows transform-runtime to inject helpers in esm output', async () => {
const warnings = [];
const code = await generate(
'runtime-helpers-esm/main.js',
@@ -290,11 +291,11 @@ test('allows transform-runtime to inject esm version of helpers', async () => {
}
);
expect(warnings).toEqual([
- `"@babel/runtime/helpers/esm/createClass" is imported by "test/fixtures/runtime-helpers-esm/main.js", but could not be resolved – treating it as an external dependency.`,
- `"@babel/runtime/helpers/esm/classCallCheck" is imported by "test/fixtures/runtime-helpers-esm/main.js", but could not be resolved – treating it as an external dependency.`
+ `"@babel/runtime/helpers/createClass" is imported by "test/fixtures/runtime-helpers-esm/main.js", but could not be resolved – treating it as an external dependency.`,
+ `"@babel/runtime/helpers/classCallCheck" is imported by "test/fixtures/runtime-helpers-esm/main.js", but could not be resolved – treating it as an external dependency.`
]);
- expect(code).toBe(`import _createClass from '@babel/runtime/helpers/esm/createClass';
-import _classCallCheck from '@babel/runtime/helpers/esm/classCallCheck';
+ expect(code).toBe(`import _createClass from '@babel/runtime/helpers/createClass';
+import _classCallCheck from '@babel/runtime/helpers/classCallCheck';
var Foo = /*#__PURE__*/_createClass(function Foo() {
_classCallCheck(this, Foo);
@@ -573,7 +574,7 @@ test('can be used as an input plugin while transforming the output', async () =>
input: `${FIXTURES}basic/main.js`,
plugins: [
getBabelOutputPlugin({
- presets: ['@babel/env']
+ presets: [['@babel/env', { targets: { ie: '11' } }]]
})
]
});
@@ -587,7 +588,7 @@ test('works as a CJS plugin', async () => {
input: `${FIXTURES}basic/main.js`,
plugins: [
babelPluginCjs({
- presets: ['@babel/env']
+ presets: [['@babel/env', { targets: { ie: '11' } }]]
})
]
});
@@ -603,7 +604,7 @@ test('works in parallel as a CJS plugin', async () => {
plugins: [
babelPluginCjs({
babelHelpers: 'bundled',
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
parallel: true
})
]
diff --git a/packages/babel/test/as-output-plugin.mjs b/packages/babel/test/as-output-plugin.mjs
index e33e33bd1..5b2e16ebc 100644
--- a/packages/babel/test/as-output-plugin.mjs
+++ b/packages/babel/test/as-output-plugin.mjs
@@ -55,7 +55,7 @@ async function generate(input, babelOptions = {}, generateOptions = {}, rollupOp
}
test('allows running the plugin on the output via output options', async () => {
const code = await generate('basic/main.js', {
- presets: ['@babel/env']
+ presets: [['@babel/env', { targets: { ie: '11' } }]]
});
expect(code.includes('const')).toBe(false);
});
@@ -63,19 +63,12 @@ test('ignores .babelrc when transforming the output by default', async () => {
const code = await generate('basic/main.js');
expect(code.includes('const')).toBe(true);
});
-test("allows transform-runtime to be used with `useESModules: false` (the default) and `format: 'cjs'`", async () => {
+test("allows transform-runtime to be used with `format: 'cjs'`", async () => {
const code = await generate(
'runtime-helpers/main.js',
{
- presets: ['@babel/env'],
- plugins: [
- [
- '@babel/transform-runtime',
- {
- useESModules: false
- }
- ]
- ]
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
+ plugins: ['@babel/transform-runtime']
},
{
format: 'cjs'
@@ -83,34 +76,27 @@ test("allows transform-runtime to be used with `useESModules: false` (the defaul
);
expect(code).toBe(`'use strict';
-var _createClass = require("@babel/runtime/helpers/createClass");
-var _classCallCheck = require("@babel/runtime/helpers/classCallCheck");
+var _createClass = require("@babel/runtime/helpers/createClass").default;
+var _classCallCheck = require("@babel/runtime/helpers/classCallCheck").default;
var Foo = /*#__PURE__*/_createClass(function Foo() {
_classCallCheck(this, Foo);
});
module.exports = Foo;
`);
});
-test("allows transform-runtime to be used with `useESModules: true` and `format: 'es'`", async () => {
+test("allows transform-runtime to be used with `format: 'es'`", async () => {
const code = await generate(
'runtime-helpers/main.js',
{
- presets: ['@babel/env'],
- plugins: [
- [
- '@babel/transform-runtime',
- {
- useESModules: true
- }
- ]
- ]
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
+ plugins: ['@babel/transform-runtime']
},
{
format: 'es'
}
);
- expect(code).toBe(`import _createClass from "@babel/runtime/helpers/esm/createClass";
-import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
+ expect(code).toBe(`import _createClass from "@babel/runtime/helpers/createClass";
+import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
var Foo = /*#__PURE__*/_createClass(function Foo() {
_classCallCheck(this, Foo);
});
@@ -144,7 +130,8 @@ test('generates sourcemap by default', async () => {
source: 'test/fixtures/class/main.js'.split(nodePath.sep).join('/'),
line: 3,
column: 12,
- name: target
+ // Babel 8 no longer records a name mapping for identifiers whose text is unchanged
+ name: null
});
});
test('allows using external-helpers plugin even if the externalHelpers flag is not passed', async () => {
@@ -152,7 +139,7 @@ test('allows using external-helpers plugin even if the externalHelpers flag is n
const code = await generate(
'external-helpers/main.js',
{
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
plugins: ['@babel/external-helpers']
},
{},
@@ -192,7 +179,7 @@ test('warns when using the "include" option', async () => {
}
);
expect(warnings).toEqual([
- 'The "include", "exclude" and "extensions" options are ignored when transforming the output.'
+ '[plugin babel] The "include", "exclude" and "extensions" options are ignored when transforming the output.'
]);
});
test('transforms all chunks in a code-splitting setup', async () => {
@@ -205,15 +192,14 @@ test('transforms all chunks in a code-splitting setup', async () => {
format: 'es',
plugins: [
getBabelOutputPlugin({
- plugins: ['@babel/syntax-dynamic-import'],
- presets: ['@babel/env']
+ presets: [['@babel/env', { targets: { ie: '11' } }]]
})
]
},
true
);
expect(output.map(({ code }) => code)).toEqual([
- `import('./dep--s88I99N.js').then(function (result) {
+ `import('./dep-D_rFPbwT.js').then(function (result) {
return console.log(result);
});
`,
@@ -235,7 +221,7 @@ test('transforms all chunks when preserving modules', async () => {
preserveModules: true,
plugins: [
getBabelOutputPlugin({
- presets: ['@babel/env']
+ presets: [['@babel/env', { targets: { ie: '11' } }]]
})
]
},
@@ -313,7 +299,7 @@ test('allows using a Rollup output format other than esm or cjs with allowAllFor
const code = await generate(
'basic/main.js',
{
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
allowAllFormats: true
},
{
@@ -336,6 +322,7 @@ test('allows using Babel to transform to other formats', async () => {
[
'@babel/env',
{
+ targets: { ie: '11' },
modules: 'umd'
}
]
@@ -391,7 +378,7 @@ test('allows excluding manual chunks from output transform via `excludeChunks`',
plugins: [
getBabelOutputPlugin({
// Transform generated code but skip the 'vendor' manual chunk
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
excludeChunks: ['vendor']
})
]
@@ -410,7 +397,7 @@ test('works in parallel', async () => {
format: 'es',
plugins: [
getBabelOutputPlugin({
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
parallel: true
})
]
@@ -424,7 +411,7 @@ test('works in parallel with specified worker count', async () => {
format: 'es',
plugins: [
getBabelOutputPlugin({
- presets: ['@babel/env'],
+ presets: [['@babel/env', { targets: { ie: '11' } }]],
parallel: 2
})
]
diff --git a/packages/babel/test/fixtures/.babelrc b/packages/babel/test/fixtures/.babelrc
index 7afd6ac9b..c20d98771 100644
--- a/packages/babel/test/fixtures/.babelrc
+++ b/packages/babel/test/fixtures/.babelrc
@@ -1,3 +1,3 @@
{
- "presets": [ "@babel/env" ]
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ]
}
diff --git a/packages/babel/test/fixtures/checks/foo/.babelrc b/packages/babel/test/fixtures/checks/foo/.babelrc
index e5772e85f..234aeca9d 100644
--- a/packages/babel/test/fixtures/checks/foo/.babelrc
+++ b/packages/babel/test/fixtures/checks/foo/.babelrc
@@ -1,3 +1,3 @@
{
- "presets": [ ["@babel/env", { "exclude": ["transform-classes"] }] ]
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" }, "exclude": ["transform-classes"] }] ]
}
diff --git a/packages/babel/test/fixtures/class-loose/.babelrc b/packages/babel/test/fixtures/class-loose/.babelrc
index ebc0723a3..555f7ae73 100644
--- a/packages/babel/test/fixtures/class-loose/.babelrc
+++ b/packages/babel/test/fixtures/class-loose/.babelrc
@@ -1,3 +1,9 @@
{
- "presets": [ ["@babel/env", { "loose": true } ] ]
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
+ "assumptions": {
+ "constantSuper": true,
+ "noClassCalls": true,
+ "setClassMethods": true,
+ "superIsCallableConstructor": true
+ }
}
diff --git a/packages/babel/test/fixtures/external-helpers/.babelrc b/packages/babel/test/fixtures/external-helpers/.babelrc
index e47433bbe..b0bc4eec2 100644
--- a/packages/babel/test/fixtures/external-helpers/.babelrc
+++ b/packages/babel/test/fixtures/external-helpers/.babelrc
@@ -1,4 +1,4 @@
{
- "presets": [ "@babel/env" ],
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
"plugins": [ "@babel/external-helpers" ]
}
diff --git a/packages/babel/test/fixtures/ignored-file/.babelrc b/packages/babel/test/fixtures/ignored-file/.babelrc
index 4b1e11832..703b3e656 100644
--- a/packages/babel/test/fixtures/ignored-file/.babelrc
+++ b/packages/babel/test/fixtures/ignored-file/.babelrc
@@ -1,4 +1,4 @@
{
- "presets": [ ["@babel/env", { "loose": true } ] ],
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
"ignore": ["ignored.js"]
}
diff --git a/packages/babel/test/fixtures/proposal-decorators/.babelrc b/packages/babel/test/fixtures/proposal-decorators/.babelrc
index 013c94484..f8640b0c2 100644
--- a/packages/babel/test/fixtures/proposal-decorators/.babelrc
+++ b/packages/babel/test/fixtures/proposal-decorators/.babelrc
@@ -1,6 +1,6 @@
{
- "presets": [ "@babel/env" ],
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
"plugins": [
- ["@babel/proposal-decorators", { "legacy": true }]
+ ["@babel/proposal-decorators", { "version": "legacy" }]
]
}
diff --git a/packages/babel/test/fixtures/runtime-helpers-builtins/.babelrc b/packages/babel/test/fixtures/runtime-helpers-builtins/.babelrc
deleted file mode 100644
index f78c11b52..000000000
--- a/packages/babel/test/fixtures/runtime-helpers-builtins/.babelrc
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "presets": [ "@babel/env" ],
- "plugins": [
- [ "@babel/transform-runtime" ]
- ]
-}
diff --git a/packages/babel/test/fixtures/runtime-helpers-builtins/main.js b/packages/babel/test/fixtures/runtime-helpers-builtins/main.js
deleted file mode 100644
index 780411100..000000000
--- a/packages/babel/test/fixtures/runtime-helpers-builtins/main.js
+++ /dev/null
@@ -1 +0,0 @@
-export default class Foo {}
diff --git a/packages/babel/test/fixtures/runtime-helpers-commonjs/.babelrc b/packages/babel/test/fixtures/runtime-helpers-commonjs/.babelrc
index d213a808e..f8a152c5a 100644
--- a/packages/babel/test/fixtures/runtime-helpers-commonjs/.babelrc
+++ b/packages/babel/test/fixtures/runtime-helpers-commonjs/.babelrc
@@ -1,4 +1,4 @@
{
- "presets": [ ["@babel/env", { "modules": "cjs" }] ],
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" }, "modules": "cjs" }] ],
"plugins": [ "@babel/transform-runtime" ]
}
diff --git a/packages/babel/test/fixtures/runtime-helpers-esm/.babelrc b/packages/babel/test/fixtures/runtime-helpers-esm/.babelrc
index a71688281..d093603cf 100644
--- a/packages/babel/test/fixtures/runtime-helpers-esm/.babelrc
+++ b/packages/babel/test/fixtures/runtime-helpers-esm/.babelrc
@@ -1,6 +1,4 @@
{
- "presets": [ "@babel/env" ],
- "plugins": [
- [ "@babel/transform-runtime", { "useESModules": true } ]
- ]
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
+ "plugins": [ "@babel/transform-runtime" ]
}
diff --git a/packages/babel/test/fixtures/runtime-helpers/.babelrc b/packages/babel/test/fixtures/runtime-helpers/.babelrc
index 9492d1fa9..f34db6025 100644
--- a/packages/babel/test/fixtures/runtime-helpers/.babelrc
+++ b/packages/babel/test/fixtures/runtime-helpers/.babelrc
@@ -1,4 +1,4 @@
{
- "presets": [ "@babel/env" ],
+ "presets": [ ["@babel/env", { "targets": { "ie": "11" } }] ],
"plugins": [ "@babel/external-helpers", "@babel/transform-runtime" ]
}
diff --git a/packages/babel/types/index.d.ts b/packages/babel/types/index.d.ts
index 5a2f8a144..0756a6fa9 100644
--- a/packages/babel/types/index.d.ts
+++ b/packages/babel/types/index.d.ts
@@ -3,7 +3,7 @@ import type { FilterPattern } from '@rollup/pluginutils';
import type * as babelCore from '@babel/core';
export interface RollupBabelInputPluginOptions
- extends Omit {
+ extends Omit {
/**
* A picomatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there.
* @default undefined;
@@ -26,7 +26,7 @@ export interface RollupBabelInputPluginOptions
filter?: (id: string, code: string) => Promise | boolean;
/**
* An array of file extensions that Babel should transpile. If you want to transpile TypeScript files with this plugin it's essential to include .ts and .tsx in this option.
- * @default ['.js', '.jsx', '.es6', '.es', '.mjs']
+ * @default ['.js', '.jsx', '.es6', '.es', '.mjs', '.cjs']
*/
extensions?: string[];
/**
@@ -50,7 +50,7 @@ export interface RollupBabelInputPluginOptions
}
export interface RollupBabelOutputPluginOptions
- extends Omit {
+ extends Omit {
/**
* Use with other formats than UMD/IIFE.
* @default false
@@ -96,28 +96,28 @@ export interface RollupBabelCustomPluginResultOptions {
code: string;
customOptions: Record;
config: babelCore.PartialConfig;
- transformOptions: babelCore.TransformOptions;
+ transformOptions: babelCore.InputOptions;
}
export type RollupBabelCustomInputPluginConfig = (
this: TransformPluginContext,
cfg: babelCore.PartialConfig,
options: RollupBabelCustomPluginConfigOptions
-) => babelCore.TransformOptions;
+) => babelCore.InputOptions;
export type RollupBabelCustomInputPluginResult = (
this: TransformPluginContext,
- result: babelCore.BabelFileResult,
+ result: babelCore.FileResult,
options: RollupBabelCustomPluginResultOptions
-) => babelCore.BabelFileResult;
+) => babelCore.FileResult;
export type RollupBabelCustomOutputPluginConfig = (
this: PluginContext,
cfg: babelCore.PartialConfig,
options: RollupBabelCustomPluginConfigOptions
-) => babelCore.TransformOptions;
+) => babelCore.InputOptions;
export type RollupBabelCustomOutputPluginResult = (
this: PluginContext,
- result: babelCore.BabelFileResult,
+ result: babelCore.FileResult,
options: RollupBabelCustomPluginResultOptions
-) => babelCore.BabelFileResult;
+) => babelCore.FileResult;
export interface RollupBabelCustomInputPlugin {
options?: RollupBabelCustomInputPluginOptions;
config?: RollupBabelCustomInputPluginConfig;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 50b4dd75d..f7ad04048 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -126,45 +126,39 @@ importers:
packages/babel:
dependencies:
'@babel/helper-module-imports':
- specifier: ^7.18.6
- version: 7.18.6
+ specifier: ^8.0.0
+ version: 8.0.0
'@rollup/pluginutils':
specifier: ^5.0.1
- version: 5.0.1(rollup@4.0.0-24)
+ version: 5.0.1(rollup@4.52.5)
workerpool:
specifier: ^9.0.0
version: 9.3.4
devDependencies:
'@babel/core':
- specifier: ^7.19.1
- version: 7.19.3
+ specifier: ^8.0.1
+ version: 8.0.1
'@babel/plugin-external-helpers':
- specifier: ^7.18.6
- version: 7.18.6(@babel/core@7.19.3)
+ specifier: ^8.0.1
+ version: 8.0.1(@babel/core@8.0.1)
'@babel/plugin-proposal-decorators':
- specifier: ^7.19.1
- version: 7.19.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-dynamic-import':
- specifier: ^7.8.3
- version: 7.8.3(@babel/core@7.19.3)
+ specifier: ^8.0.2
+ version: 8.0.2(@babel/core@8.0.1)
'@babel/plugin-transform-runtime':
- specifier: ^7.19.1
- version: 7.19.1(@babel/core@7.19.3)
+ specifier: ^8.0.1
+ version: 8.0.1(@babel/core@8.0.1)
'@babel/preset-env':
- specifier: ^7.19.1
- version: 7.19.4(@babel/core@7.19.3)
+ specifier: ^8.0.2
+ version: 8.0.2(@babel/core@8.0.1)
'@rollup/plugin-json':
specifier: ^5.0.0
- version: 5.0.0(rollup@4.0.0-24)
+ version: 5.0.0(rollup@4.52.5)
'@rollup/plugin-node-resolve':
specifier: ^15.0.0
- version: 15.0.0(rollup@4.0.0-24)
- '@types/babel__core':
- specifier: ^7.1.9
- version: 7.1.19
+ version: 15.0.0(rollup@4.52.5)
rollup:
- specifier: ^4.0.0-24
- version: 4.0.0-24
+ specifier: ^4.0.0
+ version: 4.52.5
source-map:
specifier: ^0.7.4
version: 0.7.4
@@ -840,25 +834,41 @@ packages:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@8.0.0':
+ resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/compat-data@7.19.4':
resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@8.0.0':
+ resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/core@7.19.3':
resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==}
engines: {node: '>=6.9.0'}
+ '@babel/core@8.0.1':
+ resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/generator@7.19.4':
resolution: {integrity: sha512-5T2lY5vXqS+5UEit/5TwcIUeCnwgCljcF8IQRT6XRQPBrvLeq5V8W+URv+GvwoF3FP8tkhp++evVyDzkDGzNmA==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@8.0.0':
+ resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-annotate-as-pure@7.18.6':
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.18.9':
- resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-annotate-as-pure@8.0.0':
+ resolution: {integrity: sha512-NSpMkMsvvZqzThJ0p1B02cbtA2ObEyfBvq950bmNkyxsxvcxwhvvCB036rKhlEnuBBo30bOrk13u3FzlKSoRrw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helper-compilation-targets@7.19.3':
resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==}
@@ -866,35 +876,46 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-compilation-targets@8.0.0':
+ resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-create-class-features-plugin@7.19.0':
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.19.0':
- resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-create-class-features-plugin@8.0.1':
+ resolution: {integrity: sha512-++t3ZktzlLmASAxIlxeXQK9Z2YwUafYGYcvGBFevqOqt16HozVHStUoQvWD09fzAZOb/uJGpUTBuGK41AJAuOA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^8.0.0
- '@babel/helper-define-polyfill-provider@0.3.3':
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ '@babel/helper-create-regexp-features-plugin@8.0.1':
+ resolution: {integrity: sha512-PydTbcVTiIfVweHMeY1u3MslaD/ZzvnaTNhJp+7ghofelLWshF66Ckc/ZsjStfvRQIKQ4uVG0yEJucyDtyrWgw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.4.0-0
+ '@babel/core': ^8.0.0
+
+ '@babel/helper-define-polyfill-provider@1.0.0':
+ resolution: {integrity: sha512-9jzVaTeZyXRDKTgUnNzcPQMO8y0ga3o+Z4fKjNet9Fcx7slgKa83qRbz0EwROSd6qO6CoEe/HQszqSPKb5lhkw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0
'@babel/helper-environment-visitor@7.18.9':
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-explode-assignable-expression@7.18.6':
- resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-function-name@7.19.0':
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@8.0.0':
+ resolution: {integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-hoist-variables@7.18.6':
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
@@ -903,39 +924,69 @@ packages:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@8.0.0':
+ resolution: {integrity: sha512-xkXrMbtk87Gk7+oKBVmBc6EORg/Qwx++AHESldmHkpvG8wgccdhJJFwrzqlF382Fk8wfXhJHWE/g/43QvEGNPQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@8.0.0':
+ resolution: {integrity: sha512-NZ7mSS93o4ndX4KrbD7W8Sf3QT8Qe24PrnFyUcuOPDzK6faqDFKjY9RG7he7+I7FdiQ4llpnosFqzrXa+Vy3Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-module-transforms@7.19.0':
resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-transforms@8.0.1':
+ resolution: {integrity: sha512-UgAhl1kqiW5ciE0yCXqqvnb4H2n3IELJ7lIIQRezwDPilPEZX5i+Rvbja9MFTkwUn2biEiSMeV31aUzR4Lwakw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-optimise-call-expression@7.18.6':
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-optimise-call-expression@8.0.0':
+ resolution: {integrity: sha512-3W6satvtPuCUkUx63S2jMoW9EQNYkADgs1HTfufmL7gCmAulHMKupA/12WNz4A0GMMFn/YnWWwqOT9IZrJHQjg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-plugin-utils@7.19.0':
resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.18.9':
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@8.0.1':
+ resolution: {integrity: sha512-3PKFgjTyPlhFhorfP+SjKQxLViIL++zWjFOO4hGriYU+Bsm983DxEM1JmDRJVWXV0O9npu+xXRqz7Pbd3mh70g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^8.0.0
+
+ '@babel/helper-remap-async-to-generator@8.0.1':
+ resolution: {integrity: sha512-baAKuLEMmu6BCSY3tuiU7qglM1qOZt6F1SrFScA241oNqksxkxfEZEKztlGRmoVns9AQ5UgArH7RsUEjxWnzgQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
'@babel/helper-replace-supers@7.19.1':
resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-replace-supers@8.0.1':
+ resolution: {integrity: sha512-B1SZADIcy3tmH8CmWvj4SHi/oAPom4UL3uknTc2QRNsPVLFk/sPnZvQL/8kj7Y5omvjMqie0vklvs6XM4OLW5Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ peerDependencies:
+ '@babel/core': ^8.0.0
+
'@babel/helper-simple-access@7.19.4':
resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.18.9':
- resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@8.0.0':
+ resolution: {integrity: sha512-xmCA9kP3IhySsqhzwIdWGlDN/1A4cCKNBO/uwZx/3YzmDoMePwno2Q5/Bq0q+tYaKbeF940YiKV/kaW8Mzvpjw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helper-split-export-declaration@7.18.6':
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
@@ -945,22 +996,38 @@ packages:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@8.0.0':
+ resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-validator-identifier@7.19.1':
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@8.0.4':
+ resolution: {integrity: sha512-4wFaiLd0bVo4cIoTXI3zKI038NIWE/cr3jvBjejOVYVxV/m8Ltav1USiGzG1fmS5J2RhgEOgXNNK46cRPnRsrg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/helper-validator-option@7.18.6':
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.19.0':
- resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@8.0.0':
+ resolution: {integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
+ '@babel/helper-wrap-function@8.0.0':
+ resolution: {integrity: sha512-Qpm8+wi5xfDkBfollanwriCcKniFfBmMmaKB01GVM6VGzKXo1fdxosZp04qEr5HM+LKhwr3hG1yRy8+ORsficA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
'@babel/helpers@7.19.4':
resolution: {integrity: sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@8.0.0':
+ resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/highlight@7.18.6':
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
@@ -970,440 +1037,399 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6':
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9':
- resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
-
- '@babel/plugin-external-helpers@7.18.6':
- resolution: {integrity: sha512-wNqc87qjLvsD1PIMQBzLn1bMuTlGzqLzM/1VGQ22Wm51cbCWS9k71ydp5iZS4hjwQNuTWSn/xbZkkusNENwtZg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-async-generator-functions@7.19.1':
- resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-class-properties@7.18.6':
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-class-static-block@7.18.6':
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
- peerDependencies:
- '@babel/core': ^7.12.0
-
- '@babel/plugin-proposal-decorators@7.19.3':
- resolution: {integrity: sha512-MbgXtNXqo7RTKYIXVchVJGPvaVufQH3pxvQyfbGvNw1DObIhph+PesYXJTcd8J4DdWibvf6Z2eanOyItX8WnJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/parser@8.0.4':
+ resolution: {integrity: sha512-srpptsAkEbbNIC/q8nT7o+m6CQe8CJUTV/t7MYc9NnWlgYVtHOb7JH6SorxMhN0kuRJjVqXbKClG6xSbPtzz+g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+ hasBin: true
- '@babel/plugin-proposal-dynamic-import@7.18.6':
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.1':
+ resolution: {integrity: sha512-Ytgjjne4RnG3Oig7ik+NfY4ebRY30BPptVkkyu1f72eINJXRM3/bkU++tIc5aPvyLmo4KH20avq0xJ2o+9aEnw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-export-namespace-from@7.18.9':
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.1':
+ resolution: {integrity: sha512-X7pAMBhuKluA7UfwZNvKN0XVVu/AGeo84Z75eJl85rcb8J2aBzLK92btahM1X5h0oi0QIrbe0qIMA/0+4Buk7w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-json-strings@7.18.6':
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.1':
+ resolution: {integrity: sha512-DJviKTxYfH0hFwnMiW4dnPyMGzS3Hrr4zUfXl1zwQ0QiGlGlNYklLoPSYEQr8S7nau0/K7NdQjTh0qbYuyFjCA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-logical-assignment-operators@7.18.9':
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.1':
+ resolution: {integrity: sha512-DmR/N+B9+4PbURFj4+zdnWj49/PFAnK2bn8+E4ZAmwn3J5QCxnbG7Ep6aRfz9M8Aw+rBro0kIJQycvzFpl4buQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.1':
+ resolution: {integrity: sha512-x8bi0LFVD2xkULjfNn+hCMg16yAFHAM9fS/ThSFeYBi+0MP9K6qcY2BZb4urUwC7PYtEy5wPe6TKjOEjXrCGFA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-numeric-separator@7.18.6':
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.1':
+ resolution: {integrity: sha512-P8+RN2n7ts2s1vnE+lXdHYf+dhnmcGSen/kWzBsVluT9Sey5AqmcRXYWlHqgQxaNlKTD5YMa1tf5z4d1v8W88w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-object-rest-spread@7.19.4':
- resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
+ '@babel/plugin-external-helpers@8.0.1':
+ resolution: {integrity: sha512-hp/z1bAO4v/dAk7P0sf1NsezoRRB4jvBCWyuCOCYHFxH0iRDvtT0kV+MRf/8Y4UPsDtRRCOhP5HYCtG9XOYEyQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-optional-catch-binding@7.18.6':
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
+ '@babel/plugin-proposal-decorators@8.0.2':
+ resolution: {integrity: sha512-+C6O6KKXU7BBq1GNaIkFJxrALUVGRcr+WeWm4OcuRl3h+l/CmNfcTLMrT2Lm3uvGBimBH/8pEBRrXJFLoO67Gg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-optional-chaining@7.18.9':
- resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
+ '@babel/plugin-syntax-decorators@8.0.1':
+ resolution: {integrity: sha512-NI+0S/6MvR6GlcQFwjDZ+WIc2qvG6TXN534lYs9llNldwW4b7Dh6KTtk030FA0xWdYGs4t1lWo+OEWN8wGB+Nw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-private-methods@7.18.6':
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ '@babel/plugin-syntax-typescript@7.18.6':
+ resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-private-property-in-object@7.18.6':
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
+ '@babel/plugin-transform-arrow-functions@8.0.1':
+ resolution: {integrity: sha512-o/gr7kRlq3PKLLuYth4udOsrC7geBerti+QtwPeyxMOsEQO1d8kDHqk9r2PtMx2y9i8FG7tzyTerfv1yMLSMsQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-proposal-unicode-property-regex@7.18.6':
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
+ '@babel/plugin-transform-async-generator-functions@8.0.1':
+ resolution: {integrity: sha512-kqnSMF1YHBzuiQrl68675i5Ma1oljvo+SJsNEZFZVBu5BUrVIZm9KId3ui2PdtLK2sv2zM8sJnjPDfgLxQlEqQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ '@babel/plugin-transform-async-to-generator@8.0.1':
+ resolution: {integrity: sha512-e1jmmEU4p2Lx64sA1+EF8e8/RxPuegzbXcEbmFp5alDyLE+f2ViUpZ77bRWMXzihTwgVVmn/TOpqDbAuS5g1Ew==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ '@babel/plugin-transform-block-scoped-functions@8.0.1':
+ resolution: {integrity: sha512-0V97/gcf7LIgPieEiK1YT0eXa18XJFSLOTZjzEZhA9SJIqZhD/IwGUrCitBzXSmnGCP7hchwC6svHtJ/Eidcpg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-block-scoping@8.0.1':
+ resolution: {integrity: sha512-HxiQvKsSCs2jOmMhjDrooHaZYOy6W8bqwXp/zjdgPjsNrda6tK9/CH3a/cVIeg6ge3hSS02ALqvqgIo4rTsuSg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-decorators@7.19.0':
- resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-class-properties@8.0.1':
+ resolution: {integrity: sha512-tORnYiVhIHnKj90TgbSZXrO24f9oEpA6MgFxpIDSKKlHv7AzBIRhkMlYevanueLNYaQXqZWarfCgXM4bWTfNiw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-dynamic-import@7.8.3':
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ '@babel/plugin-transform-class-static-block@8.0.1':
+ resolution: {integrity: sha512-NEVK+L0Le8h8tJ+IK0CGS5y9Yi1ZHxLj6M5PeanhMFuq9aSo0XI+Wtmbuyop6fTNukOm7ORNntf/kwid891vqQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ '@babel/plugin-transform-classes@8.0.1':
+ resolution: {integrity: sha512-phwyCES8kIMAdVOFw25ztmgAvkl2G+TvUv7azUYyrlR1Qoo3eLJC/MU3MGUKFZ4BWtsJ1NTJM1lKRLzKbswg7w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-import-assertions@7.18.6':
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-computed-properties@8.0.1':
+ resolution: {integrity: sha512-i4l3OGLO8DUDcwdnyraOvILbhqdUf4QgfzhVxSOSzRy49XKXrY7pwaSg9gDSKmhZfNPrEMciBSJSciQh/CjB1A==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-json-strings@7.8.3':
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ '@babel/plugin-transform-destructuring@8.0.1':
+ resolution: {integrity: sha512-RtR8uLDl0QcCmqMNIkM8gmDeYZ3rS0ZH+sa+I6sfc09yFoqfp9AEPgBstq9KyfVb0lFCVSRFfJXCI70FIl5ccw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ '@babel/plugin-transform-dotall-regex@8.0.1':
+ resolution: {integrity: sha512-czOUoSaZljJ92yu+bYlXqb/UBN8K9daNCob/B6/7nthSvfGP6YhCnfqD64XWfyb2dN4ypxALNplApoJrsMd4fw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ '@babel/plugin-transform-duplicate-keys@8.0.1':
+ resolution: {integrity: sha512-kNnVLkxFUEcTtCyB5PFVQ5Xoy88Bk1lU/ZgDu97CW8eNhRH2Wsiy8Sq5l5dFnwtIUYjzsXHU77jUy1W5AtGSIw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-numeric-separator@7.10.4':
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.1':
+ resolution: {integrity: sha512-Tv43P47o6fuHgBL7HLHQg3WKXohW9CEUGjLtnCDW27yJLK0zKUdTTqREbZbycNHA83hewMjde5tF6ekrHu9bAA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-object-rest-spread@7.8.3':
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ '@babel/plugin-transform-dynamic-import@8.0.1':
+ resolution: {integrity: sha512-AS9GlgKc43tJNRu7yOvLaTko4qmdOb+8M69uNS8i421WLO20eVez7LdG5khKdi8E0LIQpYzzzdGIrdXWnO753g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-optional-catch-binding@7.8.3':
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ '@babel/plugin-transform-explicit-resource-management@8.0.1':
+ resolution: {integrity: sha512-VzDIYwBlLCpV6mJfloRdJm8HmYnMqs7O+bGha8yfg2kP7jAdxeCw6yZBVBeaKKQUThtSU52iy+3lB7DhYsbOBA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-optional-chaining@7.8.3':
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ '@babel/plugin-transform-exponentiation-operator@8.0.1':
+ resolution: {integrity: sha512-DsZvUUklUmDQ7d2vp+VjqgUWD51mGxhZZ1FPdPP9Hcj0vsgGUKX+zEBGp/vzB1O5PZUxWT/Euq5fu39M9dm9wg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-private-property-in-object@7.14.5':
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-export-namespace-from@8.0.1':
+ resolution: {integrity: sha512-bFzznm46bvWGaTYKle3iolbBJ+oPBfUjwCPesxlFE3SQ7DaY9EHf/8Y5ZzrodKJi8JDdcAyaVWaDUSVyhULh0g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-top-level-await@7.14.5':
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-for-of@8.0.1':
+ resolution: {integrity: sha512-rpeXtgELjpIBQH/+YmyFlD9timPEVCyqY+TNednzoeoTYvXSBEeUvYnYE+BK8rB8m6hHiNK7aL9QWKhGifEJCw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-syntax-typescript@7.18.6':
- resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-function-name@8.0.1':
+ resolution: {integrity: sha512-H1L/JfPf3CqmubuaiZaquXKQ8MRs4YWSsgRllkTviM8TafcCNnlvc4/fJZ3rXP8HmFM+/Bg+TlsPehUI9BtDFA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-arrow-functions@7.18.6':
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-json-strings@8.0.1':
+ resolution: {integrity: sha512-Mowp8X0J6p7ZehLU82B5e65te2uuSeDHyxrEROwEAS2VKXNXssfw5ZMqhY7k9iXTsOv1Xs/49G3lDCj9Vvw8qQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-async-to-generator@7.18.6':
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-literals@8.0.1':
+ resolution: {integrity: sha512-ai7kfPRcfyUV1EszXoF1PvL3IuJoCuH08WSEPoRcJTWfZZ55VL/rcfvbVY16QLA3jjbzzSneQSoCtD3L6OyUjw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-block-scoped-functions@7.18.6':
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-logical-assignment-operators@8.0.1':
+ resolution: {integrity: sha512-Emvtr5zkEGyCNAmt+qKD5EUh8G0RbxV9EZWrDdX0LuVy5tBq1B3fOIslvVF9aCJmpnwS/AvAT53b9LxAZyXlng==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-block-scoping@7.19.4':
- resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-member-expression-literals@8.0.1':
+ resolution: {integrity: sha512-3Axi9abnyGsm/hh6DsKPZ1Cr9fTtKqS7w0Ig5g12mU269YclpH8pV3xMln2vPLexXgUp6S6L+I06d9/YOLfRKA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-classes@7.19.0':
- resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-modules-amd@8.0.1':
+ resolution: {integrity: sha512-FDdhET8y1YFDNRuoynqSf23WTzbBBpbIB2oRrlFX7YYm9uWtFvJDSD1r/epBSjfPkOjeaaLgRW9xNnt3JGx46A==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-computed-properties@7.18.9':
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-modules-commonjs@8.0.1':
+ resolution: {integrity: sha512-PMuzulWrrzFNmY3lXSk/tV9NRb7y0eZZLJY4UEo2TKszroxvUZHAPPi+T9FDyrQhod+TQA+t+8/QYaaMpiEuhA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-destructuring@7.19.4':
- resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-modules-systemjs@8.0.1':
+ resolution: {integrity: sha512-0NEHanXmnFEnfT2dLKTXnu7m8GXFsnxRgteBC2aH21hYMBwAgxu5dcTdi/Eg+ToI1HbZe0CHwz4XRLgRNQhYoQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-dotall-regex@7.18.6':
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-modules-umd@8.0.1':
+ resolution: {integrity: sha512-XKTa2J2MdkmbVEeChq9f7Or0VYcsF0NyVBgytRyeN9F+J+ETAB2SHhfkG4toz/ssuU0i+h/QgJ6ddo5YakSQcA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-duplicate-keys@7.18.9':
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-named-capturing-groups-regex@8.0.1':
+ resolution: {integrity: sha512-zCHu+Jr2gTdJE48lN9SV/kXueCW2M79mKtKJc/ttfzzr/jvgdQdCd17RADMqFRQc/25MLxdtjTmlD0HSAMOlIQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-exponentiation-operator@7.18.6':
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-new-target@8.0.1':
+ resolution: {integrity: sha512-QSQxVg1x4PuOuhWUs4Y9u+x9Y+ER8z6G3tC+bDLBzvoOrNLJrEBQLRnwrTP8e5klihAw6Z+e9X5RjdAKcAGapA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-for-of@7.18.8':
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-nullish-coalescing-operator@8.0.1':
+ resolution: {integrity: sha512-AgCJAmQLF7+PtsK79wJqr4xJ2StHCXlz7JL5CVFP4HejJx25Tk6yl1ZrXvi0cKh3VGDVnfVxefxnrpsBirgpyQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-function-name@7.18.9':
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-numeric-separator@8.0.1':
+ resolution: {integrity: sha512-it2DmUyLIA1GQUXlFDEnI+/G89mTgxndnAiZYpW8xYR6LboblfirMqiWJeTna5uypQJg7viTT4D1iEURRtFcfw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-literals@7.18.9':
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-object-rest-spread@8.0.1':
+ resolution: {integrity: sha512-VmxkDu6bBdbxRzqn6E93hYucug4OVa6svSO19W//vVzNUGAmQzk3QRyHyyEtfcjSLR3NWfRsWwVM9zExLmd+2w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-member-expression-literals@7.18.6':
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-object-super@8.0.1':
+ resolution: {integrity: sha512-fDkPXRTRKGm25bAq01q82UM4ypPqdVXCwphUUm4t1dL01fGIG0v8KRvT+4BjhMAtRxtPuI34t5Vs7yjRgs3ZgQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-modules-amd@7.18.6':
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-optional-catch-binding@8.0.1':
+ resolution: {integrity: sha512-b2OQ74uGliyATcasTjxGy2O/86UI/n+EN4juB4EMfEwTi9j9uq70PuP0L8fW77vfRY66gO/YoTo/WbIdQ/Si1g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-modules-commonjs@7.18.6':
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-optional-chaining@8.0.1':
+ resolution: {integrity: sha512-WtRS1c94lZGpGHxYLXMEWeoMVcuv8nkiyr8BTs6OYZv7N3Y9xVE8nbdFIl4lDJH6aH8/pLhqAQOL69d/WI9WdA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-modules-systemjs@7.19.0':
- resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-parameters@8.0.1':
+ resolution: {integrity: sha512-IIwRqroW0CYQwR6+3pnmu27z+H98poScWdnov8z6osumMeEsFxAFBBsDS2CFk2jFpPlGqVr89jK/HXO6i5DzxQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-modules-umd@7.18.6':
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-private-methods@8.0.1':
+ resolution: {integrity: sha512-TrFCGcXaVDh6S5IRhmLSRTY9H80VTCMQWnZtzBRg4RWg3KCLmdmsmj4M15kZAPZfoPkWL/SJb4em3Py/vOiX8g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-named-capturing-groups-regex@7.19.1':
- resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-private-property-in-object@8.0.1':
+ resolution: {integrity: sha512-e+yfOqSYBZaf3PARpiQkjZrpWYgmcFLhK+1tevh2CpHR1O9/36IdyPnAZusESX5nzVV/XZTDAtQBRLa8HPT5Dw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-new-target@7.18.6':
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-property-literals@8.0.1':
+ resolution: {integrity: sha512-Z/qx4cxUtYR1nt7XWRutObPxDks98fEYsjWbVeKEqZH6y3AGknmgzCqmHf2FHWZCl1DfoPeuJY+3hZ+35D+2tg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-object-super@7.18.6':
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-regenerator@8.0.2':
+ resolution: {integrity: sha512-aFfsjCRYducRV4dPnpsBbdRkLjboca9FVDg6HZCgy0Ahvk2ZQ/2exmCRC5qS9P6rsWwrmIheNaIM6A1j2F8KMA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-parameters@7.18.8':
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-regexp-modifiers@8.0.1':
+ resolution: {integrity: sha512-02ITRDBesPdTYU0oShAzERwEPzozOUQSXlz3qrt8JGuhalBJQv9z5NjgHJPC9sS3Fsam8gDtfAEpBnqZwUIdjQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-property-literals@7.18.6':
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-reserved-words@8.0.1':
+ resolution: {integrity: sha512-+aykZi7ZP3U84veqfJXm3HhPZGddWFi64g7jr0ni6tb1zel+1ey+SL+IRKPoZXFyFqvYEsoqrmx4PyEJRlHl/Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-regenerator@7.18.6':
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-runtime@8.0.1':
+ resolution: {integrity: sha512-MPDpKBrxn+thQay3eJmUiSeHswiT7MkINb48hHkX6OzodB149PKq1kred+lpMebrDzHA+G1ekCQnlYSkyEqAOw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-reserved-words@7.18.6':
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-shorthand-properties@8.0.1':
+ resolution: {integrity: sha512-JddANd9yPVH8dYgVoNkqAH5BftnsDxFpG51Zas7sc6F3poz5QWcejHNGO8a/57IX5ByjGSzEmYk9Z7ZMa5MWaw==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-runtime@7.19.1':
- resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-spread@8.0.1':
+ resolution: {integrity: sha512-O9Bw9FyxlSw1SlMg3S82/GKNZ0x77RPbHezotEy1JTlIM/vk6WO8jW1iF+iTiKLOXNvi+b+LZ9t77Gi+Q0FhGg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-shorthand-properties@7.18.6':
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-sticky-regex@8.0.1':
+ resolution: {integrity: sha512-IsVP6WrZZQdaG2zLmeKwWiI+ua2NB5L1+f77C2/8z2NCDz7uxlIA/lnwocYOJk9PXcOC2sZgRls3LN4XpNduzQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-spread@7.19.0':
- resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-template-literals@8.0.1':
+ resolution: {integrity: sha512-JXvtj5+BJA9Qv3prDzW2z2DkGTJNmG0BObTdUD03STiu1Jr4fNQkQy3hYZgPL46a2RjcuhwBMYf49BOuJ98gnA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-sticky-regex@7.18.6':
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-typeof-symbol@8.0.1':
+ resolution: {integrity: sha512-+wJoxgxP2gtey0UMUOMhzMMji2XHO/Uu6MXUh/r5Yhc2jngKzK/wFxY2WNe4UCaRcMvCb4gcnB8wIgFXJsocXg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-template-literals@7.18.9':
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ '@babel/plugin-transform-typescript@7.19.3':
+ resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.18.9':
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-unicode-escapes@8.0.1':
+ resolution: {integrity: sha512-TAXJepIJ6vZphytTwcf+LuXi2M2ZWI43VCqNw+1ZZLPP/38Z1A8j4Mahvg8kqDgMOSM/cakk+hedTJCiw3jQuQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-typescript@7.19.3':
- resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-unicode-property-regex@8.0.1':
+ resolution: {integrity: sha512-zjBN9tSMSuomNDfurL69Gf7+v4D2t5uI1mSZaYJDo88SKpbduhCXqtxH7Tx66iCF6caWYwnBzSM0tnCozmQq5Q==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-unicode-escapes@7.18.10':
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-unicode-regex@8.0.1':
+ resolution: {integrity: sha512-v0oO83cvT5lwbcIVRShpx4vaHD8AvM9IBowsQuTeP+kGmhh3recJQs33Bl6dlo3/2g9amlznLbFGn4VJbPCJqA==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/plugin-transform-unicode-regex@7.18.6':
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
+ '@babel/plugin-transform-unicode-sets-regex@8.0.1':
+ resolution: {integrity: sha512-MlQeyS0K7gh0XNeLBMS/3Z07HjDOKhA7xm2L18GyxOXyiFHI9E+ZuQ4mFYmcLjluXsE/Wf6dABIqZvKpKw0Z3w==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/preset-env@7.19.4':
- resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==}
- engines: {node: '>=6.9.0'}
+ '@babel/preset-env@8.0.2':
+ resolution: {integrity: sha512-CUGLn9hNBCF/eXnwdFAWERbniCcXCRvnKwLV9fegeUEIqv7YlU2MepsWMMM54GcILx5XYMnRh+JAL+K5G+mK6g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
- '@babel/preset-modules@0.1.5':
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ '@babel/preset-modules@0.2.0':
+ resolution: {integrity: sha512-yz0RBN2fx4fjCeFcTWsWgL7PxSRltvTa0Qg14HkWCU3qS8MO7ZSJlBVbGceynd5C9NsJwwUHNQD3dc6tYO+jqQ==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^8.0.0
'@babel/runtime@7.19.4':
resolution: {integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==}
@@ -1413,14 +1439,26 @@ packages:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
+ '@babel/template@8.0.0':
+ resolution: {integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/traverse@7.19.4':
resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@8.0.4':
+ resolution: {integrity: sha512-bZnmqzGG8UZneG1lLxBoWIH0G6Gr1D846Yu4/3XnY6FhCndMR49u26nTY08u/dAxWmLWF9vGQOuC+84FfIUoeg==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@babel/types@7.19.4':
resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==}
engines: {node: '>=6.9.0'}
+ '@babel/types@8.0.4':
+ resolution: {integrity: sha512-eY+Yn3dCqTGmyiq2QRU66lA5FL8lqqqvecHt0fF3uHONIa7ToYsaCiWV8lOKqAs0Rb2SjixiKFROngnulPtt2g==}
+ engines: {node: ^22.18.0 || >=24.11.0}
+
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
@@ -1686,6 +1724,9 @@ packages:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
'@jridgewell/gen-mapping@0.3.2':
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
@@ -1713,6 +1754,9 @@ packages:
'@jridgewell/trace-mapping@0.3.16':
resolution: {integrity: sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA==}
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
@@ -2157,9 +2201,15 @@ packages:
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+ '@types/gensync@1.0.5':
+ resolution: {integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg==}
+
'@types/http-cache-semantics@4.0.1':
resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==}
+ '@types/jsesc@2.5.1':
+ resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -2510,27 +2560,20 @@ packages:
'@ava/typescript':
optional: true
- babel-plugin-dynamic-import-node@2.3.3:
- resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
-
- babel-plugin-polyfill-corejs2@0.3.3:
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-corejs3@0.6.0:
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-regenerator@0.4.1:
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
+ babel-plugin-polyfill-corejs3@1.0.0:
+ resolution: {integrity: sha512-yIkslVjbmml2Xjb6XhFW7lISXHsqk6cesxTdDsXoMom4Lnb99DbD3OQbSOoM5Z+ASh8YXYaLAsRQrU2Jeh3Qig==}
+ engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.4.0 || ^8.0.0
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ baseline-browser-mapping@2.11.13:
+ resolution: {integrity: sha512-k9HNuUVMlqVjQ9UHzfPjIqiDbWw7WqT1AoT7GL8VwvF3r0ZfArtgiSPAlmupyNquNgOJHTuH4CKYf8ttMTWBTQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
@@ -2556,6 +2599,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.28.8:
+ resolution: {integrity: sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
buble@0.20.0:
resolution: {integrity: sha512-/1gnaMQE8xvd5qsNBl+iTuyjJ9XxeaVxAMF86dQ4EyxFJOZtsgOS8Ra+7WHgZTam5IFDtt4BguN0sH0tVTKrOw==}
hasBin: true
@@ -2612,6 +2660,9 @@ packages:
caniuse-lite@1.0.30001418:
resolution: {integrity: sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==}
+ caniuse-lite@1.0.30001809:
+ resolution: {integrity: sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==}
+
cbor@8.1.0:
resolution: {integrity: sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==}
engines: {node: '>=12.19'}
@@ -2744,12 +2795,16 @@ packages:
convert-source-map@1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
convert-to-spaces@2.0.1:
resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- core-js-compat@3.25.5:
- resolution: {integrity: sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==}
+ core-js-compat@3.50.0:
+ resolution: {integrity: sha512-XGpFGbMLHwSt74YLTKho7Ib242qi6O8MSX+sRokV4oz7iKXvQWGYZthjIhjRGMxjzVkAubBO512dKGYcefmX3Q==}
+ engines: {node: '>=6.4.0'}
cosmiconfig@7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
@@ -2953,6 +3008,9 @@ packages:
electron-to-chromium@1.4.276:
resolution: {integrity: sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==}
+ electron-to-chromium@1.5.403:
+ resolution: {integrity: sha512-MQsYmdaLzvaCX5j+ZZBr5Fm6uCCnPQcRtlvmvRlWqrXy+BH2O4ffXIAScF+JQznQWB9brWp4lSD9Z4yNmaf2BA==}
+
emittery@0.11.0:
resolution: {integrity: sha512-S/7tzL6v5i+4iJd627Nhv9cLFIo5weAIlGccqJFpnBoDB8U1TF2k5tez4J/QNuxyyhWuFqHg1L84Kd3m7iXg6g==}
engines: {node: '>=12'}
@@ -2963,6 +3021,10 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+ empathic@2.0.1:
+ resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==}
+ engines: {node: '>=14'}
+
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
@@ -3012,6 +3074,10 @@ packages:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
@@ -3526,6 +3592,9 @@ packages:
resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==}
engines: {node: '>=8'}
+ import-meta-resolve@4.2.0:
+ resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -3736,6 +3805,9 @@ packages:
resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
engines: {node: '>= 0.8'}
+ js-tokens@10.0.0:
+ resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -3756,6 +3828,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -3780,6 +3857,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
@@ -3885,6 +3967,10 @@ packages:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
+ lru-cache@11.5.2:
+ resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==}
+ engines: {node: 20 || >=22}
+
lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
@@ -4047,6 +4133,10 @@ packages:
resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==}
engines: {node: '>=8'}
+ node-releases@2.0.53:
+ resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==}
+ engines: {node: '>=18'}
+
node-releases@2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
@@ -4100,6 +4190,10 @@ packages:
resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==}
engines: {node: '>= 0.4'}
+ obug@2.1.4:
+ resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==}
+ engines: {node: '>=12.20.0'}
+
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -4591,8 +4685,8 @@ packages:
resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==}
engines: {node: '>=12'}
- regenerate-unicode-properties@10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
+ regenerate-unicode-properties@10.2.2:
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
regenerate-unicode-properties@8.2.0:
@@ -4605,9 +4699,6 @@ packages:
regenerator-runtime@0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- regenerator-transform@0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
-
regexp.prototype.flags@1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
@@ -4620,22 +4711,22 @@ packages:
resolution: {integrity: sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==}
engines: {node: '>=4'}
- regexpu-core@5.2.1:
- resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
+ regexpu-core@6.4.0:
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
engines: {node: '>=4'}
regjsgen@0.5.2:
resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
- regjsgen@0.7.1:
- resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.6.9:
- resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
+ regjsparser@0.13.2:
+ resolution: {integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==}
hasBin: true
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ regjsparser@0.6.9:
+ resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
hasBin: true
release-zalgo@1.0.0:
@@ -4754,6 +4845,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.8.5:
+ resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
serialize-error@7.0.1:
resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==}
engines: {node: '>=10'}
@@ -5168,8 +5264,8 @@ packages:
resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
+ unicode-match-property-value-ecmascript@2.2.1:
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@1.1.0:
@@ -5186,6 +5282,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.3.0:
+ resolution: {integrity: sha512-x/M6q3w4Ybp91CNaS4S69UnliqR3BzRpOT6LWbksjth0S/+jhfaPJsWjt/TewpT8j9eLIojUf5jr29WextHroA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -5393,8 +5495,15 @@ snapshots:
dependencies:
'@babel/highlight': 7.18.6
+ '@babel/code-frame@8.0.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 8.0.4
+ js-tokens: 10.0.0
+
'@babel/compat-data@7.19.4': {}
+ '@babel/compat-data@8.0.0': {}
+
'@babel/core@7.19.3':
dependencies:
'@ampproject/remapping': 2.2.0
@@ -5415,20 +5524,47 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@8.0.1':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helpers': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+ '@types/gensync': 1.0.5
+ convert-source-map: 2.0.0
+ empathic: 2.0.1
+ gensync: 1.0.0-beta.2
+ import-meta-resolve: 4.2.0
+ json5: 2.2.3
+ obug: 2.1.4
+ semver: 7.8.5
+
'@babel/generator@7.19.4':
dependencies:
'@babel/types': 7.19.4
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
+ '@babel/generator@8.0.0':
+ dependencies:
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/jsesc': 2.5.1
+ jsesc: 3.1.0
+
'@babel/helper-annotate-as-pure@7.18.6':
dependencies:
'@babel/types': 7.19.4
- '@babel/helper-builder-binary-assignment-operator-visitor@7.18.9':
+ '@babel/helper-annotate-as-pure@8.0.0':
dependencies:
- '@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.19.4
+ '@babel/types': 8.0.4
'@babel/helper-compilation-targets@7.19.3(@babel/core@7.19.3)':
dependencies:
@@ -5438,6 +5574,14 @@ snapshots:
browserslist: 4.21.4
semver: 6.3.0
+ '@babel/helper-compilation-targets@8.0.0':
+ dependencies:
+ '@babel/compat-data': 8.0.0
+ '@babel/helper-validator-option': 8.0.0
+ browserslist: 4.28.8
+ lru-cache: 11.5.2
+ semver: 7.8.5
+
'@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.19.3)':
dependencies:
'@babel/core': 7.19.3
@@ -5451,35 +5595,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.19.3)':
+ '@babel/helper-create-class-features-plugin@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.2.1
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-member-expression-to-functions': 8.0.0
+ '@babel/helper-optimise-call-expression': 8.0.0
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+ '@babel/traverse': 8.0.4
+ semver: 7.8.5
- '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.19.3)':
+ '@babel/helper-create-regexp-features-plugin@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- debug: 4.3.4
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ regexpu-core: 6.4.0
+ semver: 7.8.5
+
+ '@babel/helper-define-polyfill-provider@1.0.0(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
'@babel/helper-environment-visitor@7.18.9': {}
- '@babel/helper-explode-assignable-expression@7.18.6':
- dependencies:
- '@babel/types': 7.19.4
-
'@babel/helper-function-name@7.19.0':
dependencies:
'@babel/template': 7.18.10
'@babel/types': 7.19.4
+ '@babel/helper-globals@8.0.0': {}
+
'@babel/helper-hoist-variables@7.18.6':
dependencies:
'@babel/types': 7.19.4
@@ -5488,10 +5637,20 @@ snapshots:
dependencies:
'@babel/types': 7.19.4
+ '@babel/helper-member-expression-to-functions@8.0.0':
+ dependencies:
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helper-module-imports@7.18.6':
dependencies:
'@babel/types': 7.19.4
+ '@babel/helper-module-imports@8.0.0':
+ dependencies:
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/helper-module-transforms@7.19.0':
dependencies:
'@babel/helper-environment-visitor': 7.18.9
@@ -5505,21 +5664,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-validator-identifier': 8.0.4
+ '@babel/traverse': 8.0.4
+
'@babel/helper-optimise-call-expression@7.18.6':
dependencies:
'@babel/types': 7.19.4
+ '@babel/helper-optimise-call-expression@8.0.0':
+ dependencies:
+ '@babel/types': 8.0.4
+
'@babel/helper-plugin-utils@7.19.0': {}
- '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.19.3)':
+ '@babel/helper-plugin-utils@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+
+ '@babel/helper-remap-async-to-generator@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-wrap-function': 8.0.0
+ '@babel/traverse': 8.0.4
'@babel/helper-replace-supers@7.19.1':
dependencies:
@@ -5531,13 +5702,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-member-expression-to-functions': 8.0.0
+ '@babel/helper-optimise-call-expression': 8.0.0
+ '@babel/traverse': 8.0.4
+
'@babel/helper-simple-access@7.19.4':
dependencies:
'@babel/types': 7.19.4
- '@babel/helper-skip-transparent-expression-wrappers@7.18.9':
+ '@babel/helper-skip-transparent-expression-wrappers@8.0.0':
dependencies:
- '@babel/types': 7.19.4
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
'@babel/helper-split-export-declaration@7.18.6':
dependencies:
@@ -5545,18 +5724,21 @@ snapshots:
'@babel/helper-string-parser@7.19.4': {}
+ '@babel/helper-string-parser@8.0.0': {}
+
'@babel/helper-validator-identifier@7.19.1': {}
+ '@babel/helper-validator-identifier@8.0.4': {}
+
'@babel/helper-validator-option@7.18.6': {}
- '@babel/helper-wrap-function@7.19.0':
+ '@babel/helper-validator-option@8.0.0': {}
+
+ '@babel/helper-wrap-function@8.0.0':
dependencies:
- '@babel/helper-function-name': 7.19.0
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
- transitivePeerDependencies:
- - supports-color
+ '@babel/template': 8.0.0
+ '@babel/traverse': 8.0.4
+ '@babel/types': 8.0.4
'@babel/helpers@7.19.4':
dependencies:
@@ -5566,6 +5748,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helpers@8.0.0':
+ dependencies:
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+
'@babel/highlight@7.18.6':
dependencies:
'@babel/helper-validator-identifier': 7.19.1
@@ -5576,431 +5763,337 @@ snapshots:
dependencies:
'@babel/types': 7.19.4
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.19.3)
-
- '@babel/plugin-external-helpers@7.18.6(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
-
- '@babel/plugin-proposal-async-generator-functions@7.19.1(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-decorators@7.19.3(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.19.0(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.19.3)':
+ '@babel/parser@8.0.4':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.3)
+ '@babel/types': 8.0.4
- '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
+ '@babel/plugin-transform-optional-chaining': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-object-rest-spread@7.19.4(@babel/core@7.19.3)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-external-helpers@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-proposal-decorators@8.0.2(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.3)
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-syntax-decorators': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-syntax-decorators@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.19.3)':
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.19.3)
'@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
- '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-arrow-functions@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.19.3)':
+ '@babel/plugin-transform-async-generator-functions@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-remap-async-to-generator': 8.0.1(@babel/core@8.0.1)
+ '@babel/traverse': 8.0.4
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.19.3)':
+ '@babel/plugin-transform-async-to-generator@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-remap-async-to-generator': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.19.3)':
+ '@babel/plugin-transform-block-scoped-functions@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.19.3)':
+ '@babel/plugin-transform-block-scoping@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-class-properties@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-class-static-block@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-classes@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-globals': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
+ '@babel/traverse': 8.0.4
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-computed-properties@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.19.3)':
+ '@babel/plugin-transform-destructuring@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-dotall-regex@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-duplicate-keys@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.19.3)':
+ '@babel/plugin-transform-dynamic-import@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.19.3)':
+ '@babel/plugin-transform-explicit-resource-management@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.19.3)':
+ '@babel/plugin-transform-exponentiation-operator@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-export-namespace-from@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-for-of@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
- '@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-function-name@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-json-strings@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-block-scoping@7.19.4(@babel/core@7.19.3)':
+ '@babel/plugin-transform-literals@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-classes@7.19.0(@babel/core@7.19.3)':
+ '@babel/plugin-transform-logical-assignment-operators@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.19.3(@babel/core@7.19.3)
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-member-expression-literals@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-destructuring@7.19.4(@babel/core@7.19.3)':
+ '@babel/plugin-transform-modules-amd@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-modules-commonjs@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-modules-systemjs@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-validator-identifier': 8.0.4
- '@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-modules-umd@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-for-of@7.18.8(@babel/core@7.19.3)':
+ '@babel/plugin-transform-named-capturing-groups-regex@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-function-name@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-new-target@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3(@babel/core@7.19.3)
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-literals@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-nullish-coalescing-operator@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-numeric-separator@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-object-rest-spread@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-parameters': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-object-super@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-simple-access': 7.19.4
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-modules-systemjs@7.19.0(@babel/core@7.19.3)':
+ '@babel/plugin-transform-optional-catch-binding@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-validator-identifier': 7.19.1
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-optional-chaining@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
- '@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.19.3)':
+ '@babel/plugin-transform-parameters@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-new-target@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-private-methods@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-object-super@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-private-property-in-object@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-annotate-as-pure': 8.0.0
+ '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-parameters@7.18.8(@babel/core@7.19.3)':
+ '@babel/plugin-transform-property-literals@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-regenerator@8.0.2(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-regexp-modifiers@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- regenerator-transform: 0.15.0
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-reserved-words@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-runtime@7.19.1(@babel/core@7.19.3)':
+ '@babel/plugin-transform-runtime@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.3)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.3)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.3)
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-module-imports': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-shorthand-properties@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-spread@7.19.0(@babel/core@7.19.3)':
+ '@babel/plugin-transform-spread@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 8.0.0
- '@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.19.3)':
+ '@babel/plugin-transform-sticky-regex@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-template-literals@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
- '@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.19.3)':
+ '@babel/plugin-transform-typeof-symbol@8.0.1(@babel/core@8.0.1)':
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
'@babel/plugin-transform-typescript@7.19.3(@babel/core@7.19.3)':
dependencies:
@@ -6011,105 +6104,105 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
-
- '@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
-
- '@babel/preset-env@7.19.4(@babel/core@7.19.3)':
- dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3(@babel/core@7.19.3)
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-proposal-async-generator-functions': 7.19.1(@babel/core@7.19.3)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-object-rest-spread': 7.19.4(@babel/core@7.19.3)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.19.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.19.3)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.19.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-import-assertions': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.19.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.19.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.19.3)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.19.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.3)
- '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-block-scoping': 7.19.4(@babel/core@7.19.3)
- '@babel/plugin-transform-classes': 7.19.0(@babel/core@7.19.3)
- '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-destructuring': 7.19.4(@babel/core@7.19.3)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.19.3)
- '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-modules-systemjs': 7.19.0(@babel/core@7.19.3)
- '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.19.3)
- '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.19.3)
- '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.19.3)
- '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.19.3)
- '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.19.3)
- '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/preset-modules': 0.1.5(@babel/core@7.19.3)
- '@babel/types': 7.19.4
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.3)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.3)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.3)
- core-js-compat: 3.25.5
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/preset-modules@0.1.5(@babel/core@7.19.3)':
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.19.3)
- '@babel/types': 7.19.4
+ '@babel/plugin-transform-unicode-escapes@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
+ '@babel/plugin-transform-unicode-property-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
+ '@babel/plugin-transform-unicode-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
+ '@babel/plugin-transform-unicode-sets-regex@8.0.1(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-create-regexp-features-plugin': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+
+ '@babel/preset-env@8.0.2(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/compat-data': 8.0.0
+ '@babel/core': 8.0.1
+ '@babel/helper-compilation-targets': 8.0.0
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/helper-validator-option': 8.0.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-arrow-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-async-generator-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-async-to-generator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-block-scoped-functions': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-block-scoping': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-class-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-class-static-block': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-classes': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-computed-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-destructuring': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dotall-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-duplicate-keys': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dynamic-import': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-explicit-resource-management': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-exponentiation-operator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-export-namespace-from': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-for-of': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-function-name': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-json-strings': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-logical-assignment-operators': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-member-expression-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-amd': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-commonjs': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-systemjs': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-modules-umd': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-named-capturing-groups-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-new-target': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-nullish-coalescing-operator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-numeric-separator': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-object-rest-spread': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-object-super': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-optional-catch-binding': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-optional-chaining': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-parameters': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-private-methods': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-private-property-in-object': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-property-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-regenerator': 8.0.2(@babel/core@8.0.1)
+ '@babel/plugin-transform-regexp-modifiers': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-reserved-words': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-shorthand-properties': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-spread': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-sticky-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-template-literals': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-typeof-symbol': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-escapes': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-property-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-sets-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/preset-modules': 0.2.0(@babel/core@8.0.1)
+ babel-plugin-polyfill-corejs3: 1.0.0(@babel/core@8.0.1)
+ core-js-compat: 3.50.0
+ semver: 7.8.5
+
+ '@babel/preset-modules@0.2.0(@babel/core@8.0.1)':
+ dependencies:
+ '@babel/core': 8.0.1
+ '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-dotall-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/plugin-transform-unicode-property-regex': 8.0.1(@babel/core@8.0.1)
+ '@babel/types': 8.0.4
esutils: 2.0.3
'@babel/runtime@7.19.4':
@@ -6122,6 +6215,12 @@ snapshots:
'@babel/parser': 7.19.4
'@babel/types': 7.19.4
+ '@babel/template@8.0.0':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/types': 8.0.4
+
'@babel/traverse@7.19.4':
dependencies:
'@babel/code-frame': 7.18.6
@@ -6137,12 +6236,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@8.0.4':
+ dependencies:
+ '@babel/code-frame': 8.0.0
+ '@babel/generator': 8.0.0
+ '@babel/helper-globals': 8.0.0
+ '@babel/parser': 8.0.4
+ '@babel/template': 8.0.0
+ '@babel/types': 8.0.4
+ obug: 2.1.4
+
'@babel/types@7.19.4':
dependencies:
'@babel/helper-string-parser': 7.19.4
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
+ '@babel/types@8.0.4':
+ dependencies:
+ '@babel/helper-string-parser': 8.0.0
+ '@babel/helper-validator-identifier': 8.0.4
+
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
@@ -6364,6 +6478,11 @@ snapshots:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/gen-mapping@0.3.13':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
+
'@jridgewell/gen-mapping@0.3.2':
dependencies:
'@jridgewell/set-array': 1.1.2
@@ -6390,6 +6509,11 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/trace-mapping@0.3.31':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.5.5
+
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.0
@@ -6447,6 +6571,12 @@ snapshots:
optionalDependencies:
rollup: 4.0.0-24
+ '@rollup/plugin-json@5.0.0(rollup@4.52.5)':
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ optionalDependencies:
+ rollup: 4.52.5
+
'@rollup/plugin-node-resolve@15.0.0(rollup@4.0.0-24)':
dependencies:
'@rollup/pluginutils': 4.2.1
@@ -6503,6 +6633,14 @@ snapshots:
optionalDependencies:
rollup: 4.0.0-24
+ '@rollup/pluginutils@5.0.1(rollup@4.52.5)':
+ dependencies:
+ '@types/estree': 1.0.0
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.52.5
+
'@rollup/pluginutils@5.0.4(rollup@4.0.0-24)':
dependencies:
'@types/estree': 1.0.0
@@ -6710,19 +6848,23 @@ snapshots:
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.2
+ optional: true
'@types/babel__generator@7.6.4':
dependencies:
'@babel/types': 7.19.4
+ optional: true
'@types/babel__template@7.4.1':
dependencies:
'@babel/parser': 7.19.4
'@babel/types': 7.19.4
+ optional: true
'@types/babel__traverse@7.18.2':
dependencies:
'@babel/types': 7.19.4
+ optional: true
'@types/buble@0.19.2':
dependencies:
@@ -6753,8 +6895,12 @@ snapshots:
'@types/estree@1.0.8': {}
+ '@types/gensync@1.0.5': {}
+
'@types/http-cache-semantics@4.0.1': {}
+ '@types/jsesc@2.5.1': {}
+
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
@@ -7188,36 +7334,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-dynamic-import-node@2.3.3:
+ babel-plugin-polyfill-corejs3@1.0.0(@babel/core@8.0.1):
dependencies:
- object.assign: 4.1.4
-
- babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.19.3):
- dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.3)
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.19.3):
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.3)
- core-js-compat: 3.25.5
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.19.3):
- dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.3)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 8.0.1
+ '@babel/helper-define-polyfill-provider': 1.0.0(@babel/core@8.0.1)
+ core-js-compat: 3.50.0
balanced-match@1.0.2: {}
+ baseline-browser-mapping@2.11.13: {}
+
binary-extensions@2.2.0: {}
blueimp-md5@2.19.0: {}
@@ -7244,6 +7370,14 @@ snapshots:
node-releases: 2.0.6
update-browserslist-db: 1.0.10(browserslist@4.21.4)
+ browserslist@4.28.8:
+ dependencies:
+ baseline-browser-mapping: 2.11.13
+ caniuse-lite: 1.0.30001809
+ electron-to-chromium: 1.5.403
+ node-releases: 2.0.53
+ update-browserslist-db: 1.3.0(browserslist@4.28.8)
+
buble@0.20.0:
dependencies:
acorn: 6.4.2
@@ -7312,6 +7446,8 @@ snapshots:
caniuse-lite@1.0.30001418: {}
+ caniuse-lite@1.0.30001809: {}
+
cbor@8.1.0:
dependencies:
nofilter: 3.1.0
@@ -7454,11 +7590,13 @@ snapshots:
dependencies:
safe-buffer: 5.1.2
+ convert-source-map@2.0.0: {}
+
convert-to-spaces@2.0.1: {}
- core-js-compat@3.25.5:
+ core-js-compat@3.50.0:
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.28.8
cosmiconfig@7.0.1:
dependencies:
@@ -7683,12 +7821,16 @@ snapshots:
electron-to-chromium@1.4.276: {}
+ electron-to-chromium@1.5.403: {}
+
emittery@0.11.0: {}
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
+ empathic@2.0.1: {}
+
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
@@ -7792,6 +7934,8 @@ snapshots:
escalade@3.1.1: {}
+ escalade@3.2.0: {}
+
escape-string-regexp@1.0.5: {}
escape-string-regexp@2.0.0: {}
@@ -8408,6 +8552,8 @@ snapshots:
dependencies:
resolve-from: 5.0.0
+ import-meta-resolve@4.2.0: {}
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -8588,6 +8734,8 @@ snapshots:
js-string-escape@1.0.1: {}
+ js-tokens@10.0.0: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -8603,6 +8751,8 @@ snapshots:
jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-even-better-errors@2.3.1: {}
@@ -8619,6 +8769,8 @@ snapshots:
json5@2.2.1: {}
+ json5@2.2.3: {}
+
jsonparse@1.3.1: {}
just-extend@4.2.1: {}
@@ -8725,6 +8877,8 @@ snapshots:
lowercase-keys@2.0.0: {}
+ lru-cache@11.5.2: {}
+
lru-cache@6.0.0:
dependencies:
yallist: 4.0.0
@@ -8890,6 +9044,8 @@ snapshots:
dependencies:
process-on-spawn: 1.0.0
+ node-releases@2.0.53: {}
+
node-releases@2.0.6: {}
nofilter@3.1.0: {}
@@ -8971,6 +9127,8 @@ snapshots:
define-properties: 1.1.4
es-abstract: 1.20.4
+ obug@2.1.4: {}
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -9430,7 +9588,7 @@ snapshots:
indent-string: 5.0.0
strip-indent: 4.0.0
- regenerate-unicode-properties@10.1.0:
+ regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -9442,10 +9600,6 @@ snapshots:
regenerator-runtime@0.13.9: {}
- regenerator-transform@0.15.0:
- dependencies:
- '@babel/runtime': 7.19.4
-
regexp.prototype.flags@1.4.3:
dependencies:
call-bind: 1.0.2
@@ -9463,24 +9617,24 @@ snapshots:
unicode-match-property-ecmascript: 1.0.4
unicode-match-property-value-ecmascript: 1.2.0
- regexpu-core@5.2.1:
+ regexpu-core@6.4.0:
dependencies:
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
- regjsgen: 0.7.1
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.2
+ regjsgen: 0.8.0
+ regjsparser: 0.13.2
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.2.1
regjsgen@0.5.2: {}
- regjsgen@0.7.1: {}
+ regjsgen@0.8.0: {}
- regjsparser@0.6.9:
+ regjsparser@0.13.2:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.1.0
- regjsparser@0.9.1:
+ regjsparser@0.6.9:
dependencies:
jsesc: 0.5.0
@@ -9631,6 +9785,8 @@ snapshots:
dependencies:
lru-cache: 6.0.0
+ semver@7.8.5: {}
+
serialize-error@7.0.1:
dependencies:
type-fest: 0.13.1
@@ -10038,7 +10194,7 @@ snapshots:
unicode-match-property-value-ecmascript@1.2.0: {}
- unicode-match-property-value-ecmascript@2.0.0: {}
+ unicode-match-property-value-ecmascript@2.2.1: {}
unicode-property-aliases-ecmascript@1.1.0: {}
@@ -10050,6 +10206,12 @@ snapshots:
escalade: 3.1.1
picocolors: 1.0.0
+ update-browserslist-db@1.3.0(browserslist@4.28.8):
+ dependencies:
+ browserslist: 4.28.8
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
uri-js@4.4.1:
dependencies:
punycode: 2.1.1