diff --git a/.changeset/nine-gifts-attack.md b/.changeset/nine-gifts-attack.md new file mode 100644 index 000000000..370d99b04 --- /dev/null +++ b/.changeset/nine-gifts-attack.md @@ -0,0 +1,18 @@ +--- +'@linaria/atomic': patch +'@linaria/babel-preset': patch +'@linaria/cli': patch +'@linaria/core': patch +'@linaria/esbuild': patch +'@linaria/griffel': patch +'@linaria/babel-plugin-interop': patch +'@linaria/postcss-linaria': patch +'@linaria/react': patch +'@linaria/shaker': patch +'@linaria/tags': patch +'@linaria/testkit': patch +'@linaria/utils': patch +'linaria-website': patch +--- + +Upgrade Babel to support TypeScript 4.9. Fixes #1133. diff --git a/examples/astro-solid/package.json b/examples/astro-solid/package.json index 6fbfabe74..f9f538e64 100644 --- a/examples/astro-solid/package.json +++ b/examples/astro-solid/package.json @@ -6,7 +6,7 @@ "type": "module", "devDependencies": { "@astrojs/solid-js": "^1.2.3", - "@babel/core": "^7.18.6", + "@babel/core": "^7.20.2", "@linaria/core": "workspace:^", "@linaria/shaker": "workspace:^", "@linaria/vite": "workspace:^", diff --git a/examples/rollup/package.json b/examples/rollup/package.json index fb5e51636..5aff1c4b9 100644 --- a/examples/rollup/package.json +++ b/examples/rollup/package.json @@ -7,11 +7,11 @@ "linaria-website": "workspace:^" }, "devDependencies": { - "@babel/core": "^7.18.6", + "@babel/core": "^7.20.2", "@babel/preset-react": "^7.18.6", "@linaria/rollup": "workspace:^", - "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-babel": "^5.3.1", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-image": "^2.1.1", "@rollup/plugin-node-resolve": "^13.3.0", "rollup": "^2.76.0", diff --git a/package.json b/package.json index 6bc830373..4923606d6 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,14 @@ "git-raw-commits": "^2.0.3" }, "devDependencies": { - "@babel/cli": "^7.18.9", - "@babel/core": "^7.18.9", - "@babel/eslint-parser": "^7.18.9", - "@babel/plugin-proposal-class-properties": ">=7", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.20.2", + "@babel/eslint-parser": "^7.19.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/preset-env": ">=7", - "@babel/preset-react": ">=7", - "@babel/preset-typescript": ">=7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.18.6", "@changesets/cli": "^2.22.0", "@commitlint/config-conventional": "^8.3.4", "@types/jest": "^28.1.0", diff --git a/packages/atomic/package.json b/packages/atomic/package.json index 1dbc045be..8e350ea6b 100644 --- a/packages/atomic/package.json +++ b/packages/atomic/package.json @@ -15,7 +15,7 @@ "ts-invariant": "^0.10.3" }, "devDependencies": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.2" }, "engines": { "node": "^12.16.0 || >=13.7.0" diff --git a/packages/babel/package.json b/packages/babel/package.json index d5249197b..ecdcd97ac 100644 --- a/packages/babel/package.json +++ b/packages/babel/package.json @@ -4,12 +4,12 @@ "version": "4.3.0", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", - "@babel/generator": "^7.18.9", + "@babel/core": "^7.20.2", + "@babel/generator": "^7.20.4", "@babel/helper-module-imports": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "@linaria/core": "workspace:^", "@linaria/logger": "workspace:^", "@linaria/shaker": "workspace:^", diff --git a/packages/babel/src/utils/__tests__/__snapshots__/collectTemplateDependencies.test.ts.snap b/packages/babel/src/utils/__tests__/__snapshots__/collectTemplateDependencies.test.ts.snap index 9da5ff50b..17c53eff2 100644 --- a/packages/babel/src/utils/__tests__/__snapshots__/collectTemplateDependencies.test.ts.snap +++ b/packages/babel/src/utils/__tests__/__snapshots__/collectTemplateDependencies.test.ts.snap @@ -4,9 +4,7 @@ exports[`collectTemplateDependencies hoist chain of statements 1`] = ` "import str from \\"module\\"; let arg = str; let variable = arg + \\"2\\"; - const _exp = /*#__PURE__*/() => variable; - function fn() { { const template = tag\`\${_exp()}\`; @@ -16,15 +14,10 @@ function fn() { exports[`collectTemplateDependencies hoist expressions 1`] = ` "import x from \\"module\\"; - const _exp = /*#__PURE__*/() => 42; - const _exp2 = /*#__PURE__*/() => \\"test\\"; - const _exp3 = /*#__PURE__*/() => () => \\"result\\"; - const _exp4 = /*#__PURE__*/() => 21 * x; - function fn() { const template = tag\`\${_exp()}\${_exp2()}\${_exp3()}\${_exp4()}\`; }" @@ -37,9 +30,7 @@ let { } = { variable: result }; - const _exp = /*#__PURE__*/() => variable; - function fn() { const template = tag\`\${_exp()}\`; }" @@ -49,7 +40,6 @@ exports[`collectTemplateDependencies hoistExpression with object 1`] = ` "const _exp = /*#__PURE__*/() => ({ variable: \\"test\\" }).variable; - function fn() { const template = tag\`\${_exp()}\`; }" @@ -67,9 +57,7 @@ exports[`collectTemplateDependencies non-hoistable expression 1`] = ` exports[`collectTemplateDependencies should hoist expressions after imports 1`] = ` "import { styled } from '@linaria/react'; import slugify from '../__fixtures__/slugify'; - const _exp = /*#__PURE__*/() => slugify('test'); - export const Title = styled.h1\` &:before { content: \\"\${_exp()}\\" diff --git a/packages/cli/package.json b/packages/cli/package.json index c38fe0b5f..e08c7fef6 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -7,7 +7,7 @@ }, "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", + "@babel/core": "^7.20.2", "@linaria/babel-preset": "workspace:^", "@linaria/utils": "workspace:^", "glob": "^7.1.3", diff --git a/packages/core/package.json b/packages/core/package.json index cb5609f98..c54308fea 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -9,8 +9,8 @@ "@linaria/utils": "workspace:^" }, "devDependencies": { - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "@types/babel__core": "^7.1.19", "@types/babel__traverse": "^7.17.1", "@types/node": "^17.0.39" diff --git a/packages/esbuild/package.json b/packages/esbuild/package.json index 35d0879e7..c10e375a6 100644 --- a/packages/esbuild/package.json +++ b/packages/esbuild/package.json @@ -4,7 +4,7 @@ "version": "4.2.2", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", + "@babel/core": "^7.20.2", "@linaria/babel-preset": "workspace:^", "@linaria/utils": "workspace:^", "esbuild": "^0.12.5" diff --git a/packages/griffel/package.json b/packages/griffel/package.json index 0e3b71f18..edad4e9ca 100644 --- a/packages/griffel/package.json +++ b/packages/griffel/package.json @@ -11,7 +11,7 @@ "ts-invariant": "^0.10.3" }, "devDependencies": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.2" }, "engines": { "node": "^12.16.0 || >=13.7.0" diff --git a/packages/interop/__tests__/__snapshots__/index.test.ts.snap b/packages/interop/__tests__/__snapshots__/index.test.ts.snap index 1a8707ad6..72007ac19 100644 --- a/packages/interop/__tests__/__snapshots__/index.test.ts.snap +++ b/packages/interop/__tests__/__snapshots__/index.test.ts.snap @@ -7,19 +7,14 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = require(\\"styled-components\\"); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = (0, _styledComponents.css)\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default)} { color: red; } \`; - exports.default = _default;" `; @@ -30,19 +25,14 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _react = _interopRequireDefault(require(\\"linaria/react\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = _react.default.h1\` & > \${_Title.default} { color: red; } \`; - exports.default = _default;" `; @@ -53,19 +43,14 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = _interopRequireDefault(require(\\"styled-components\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = _styledComponents.default.h1\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default.Small)} { color: red; } \`; - exports.default = _default;" `; @@ -76,21 +61,15 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = _interopRequireDefault(require(\\"styled-components\\")); - var _Cmp = _interopRequireDefault(require(\\"./Cmp\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = (0, _styledComponents.default)(_Cmp.default)\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default)} { color: red; } \`; - exports.default = _default;" `; @@ -101,21 +80,15 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = _interopRequireDefault(require(\\"styled-components\\")); - var _Cmp = _interopRequireDefault(require(\\"./Cmp\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = (0, _styledComponents.default)(_Cmp.default).attrs(() => ({}))\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default)} { color: red; } \`; - exports.default = _default;" `; @@ -126,19 +99,14 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = _interopRequireDefault(require(\\"styled-components\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = _styledComponents.default.h1\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default)} { color: red; } \`; - exports.default = _default;" `; @@ -149,18 +117,13 @@ Object.defineProperty(exports, \\"__esModule\\", { value: true }); exports.default = void 0; - var _styledComponents = _interopRequireDefault(require(\\"styled-components\\")); - var _Title = _interopRequireDefault(require(\\"./Title\\")); - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - var _default = _styledComponents.default.h1.attrs(() => ({}))\` & > \${(i => i && i.__linaria ? '.' + i.__linaria.className : i)(_Title.default)} { color: red; } \`; - exports.default = _default;" `; diff --git a/packages/interop/package.json b/packages/interop/package.json index e10f3290f..7c3917c85 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -6,9 +6,9 @@ "email": "anton@evz.name" }, "devDependencies": { - "@babel/core": "^7.18.9", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", + "@babel/core": "^7.20.2", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "@types/babel__core": "^7.1.19", "@types/babel__traverse": "^7.17.1", "dedent": "^0.7.0" diff --git a/packages/postcss-linaria/package.json b/packages/postcss-linaria/package.json index 34477dff2..d6a2bde62 100644 --- a/packages/postcss-linaria/package.json +++ b/packages/postcss-linaria/package.json @@ -4,13 +4,13 @@ "version": "4.1.4", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/generator": "^7.18.9", - "@babel/parser": "^7.18.13", - "@babel/traverse": "^7.18.9", + "@babel/generator": "^7.20.4", + "@babel/parser": "^7.20.3", + "@babel/traverse": "^7.20.1", "stylelint": "^14.11.0" }, "devDependencies": { - "@babel/types": "^7.18.9", + "@babel/types": "^7.20.2", "@types/babel__generator": "^7.6.4", "@types/babel__traverse": "^7.17.1", "postcss": "^8.3.11" diff --git a/packages/react/package.json b/packages/react/package.json index 229f1f03e..a35cfd70d 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -12,7 +12,7 @@ "ts-invariant": "^0.10.3" }, "devDependencies": { - "@babel/types": "^7.18.9", + "@babel/types": "^7.20.2", "@types/babel__core": "^7.1.19", "@types/node": "^17.0.39", "@types/react": ">=16", diff --git a/packages/shaker/package.json b/packages/shaker/package.json index a94d95c07..105c6348c 100644 --- a/packages/shaker/package.json +++ b/packages/shaker/package.json @@ -4,19 +4,19 @@ "version": "4.2.4", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", - "@babel/generator": "^7.18.9", - "@babel/plugin-transform-modules-commonjs": "^7.18.2", - "@babel/plugin-transform-runtime": ">=7", - "@babel/plugin-transform-template-literals": ">=7", - "@babel/preset-env": ">=7", + "@babel/core": "^7.20.2", + "@babel/generator": "^7.20.4", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-runtime": "^7.19.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/preset-env": "^7.20.2", "@linaria/logger": "workspace:^", "@linaria/utils": "workspace:^", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "ts-invariant": "^0.10.3" }, "devDependencies": { - "@babel/types": "^7.18.9", + "@babel/types": "^7.20.2", "@types/babel__core": "^7.1.19", "@types/babel__generator": "^7.6.4", "@types/babel__traverse": "^7.17.1", diff --git a/packages/shaker/src/plugins/__tests__/__snapshots__/shaker-plugin.test.ts.snap b/packages/shaker/src/plugins/__tests__/__snapshots__/shaker-plugin.test.ts.snap index 531585925..f7db846c5 100644 --- a/packages/shaker/src/plugins/__tests__/__snapshots__/shaker-plugin.test.ts.snap +++ b/packages/shaker/src/plugins/__tests__/__snapshots__/shaker-plugin.test.ts.snap @@ -4,14 +4,12 @@ exports[`shaker should delete import 1`] = `"export const Alive = \\"\\";"`; exports[`shaker should keep assigment even if export is marked for removing 1`] = ` "let _a; - exports.a = _a = {}; exports.b = _a;" `; exports[`shaker should keep referenced exports 1`] = ` "var _foo; - _foo = 10; exports.defaultValue = Math.random() * _foo; exports.foo = _foo;" @@ -24,11 +22,9 @@ export { c };" exports[`shaker should process identifiers in void expressions as references 1`] = ` "let _; - function b(b) { void _; } - exports.b = b;" `; @@ -41,17 +37,14 @@ export { b1 };" exports[`shaker should process transpiled enums 1`] = ` "var _Kind; - exports.Kind = void 0; var Kind; - (function (Kind) { Kind[\\"DEFAULT\\"] = \\"default\\"; Kind[\\"TRANSPARENT\\"] = \\"transparent\\"; Kind[\\"RED\\"] = \\"red\\"; Kind[\\"BLACK\\"] = \\"black\\"; })(Kind = _Kind || (_Kind = {})); - export const defaultValue = Kind.DEFAULT; exports.Kind = _Kind;" `; @@ -67,7 +60,6 @@ exports[`shaker should remove unused export 1`] = `"export const a = 1;"`; exports[`shaker should respect implicit references 1`] = ` "let _a; - exports.a = _a = {}; exports.b = _a;" `; diff --git a/packages/tags/package.json b/packages/tags/package.json index 963710772..4b99086c4 100644 --- a/packages/tags/package.json +++ b/packages/tags/package.json @@ -4,13 +4,13 @@ "version": "4.2.0", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/generator": "^7.18.9", + "@babel/generator": "^7.20.4", "@linaria/logger": "workspace:^", "@linaria/utils": "workspace:^" }, "devDependencies": { - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "@types/babel__core": "^7.1.19", "@types/babel__generator": "^7.6.4", "@types/babel__traverse": "^7.17.1", diff --git a/packages/testkit/package.json b/packages/testkit/package.json index 4a00a1a4c..e28fa0683 100644 --- a/packages/testkit/package.json +++ b/packages/testkit/package.json @@ -4,9 +4,9 @@ "version": "4.2.0", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", - "@babel/generator": "^7.18.9", - "@babel/traverse": "^7.18.9", + "@babel/core": "^7.20.2", + "@babel/generator": "^7.20.4", + "@babel/traverse": "^7.20.1", "@linaria/babel-preset": "workspace:^", "@linaria/extractor": "workspace:^", "@linaria/react": "workspace:^", @@ -18,10 +18,10 @@ }, "devDependencies": { "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/plugin-syntax-typescript": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.2", - "@babel/runtime": "^7.18.3", - "@babel/types": "^7.18.9", + "@babel/plugin-syntax-typescript": "^7.20.0", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/runtime": "^7.20.1", + "@babel/types": "^7.20.2", "@linaria/atomic": "workspace:^", "@linaria/core": "workspace:^", "@linaria/griffel": "workspace:^", diff --git a/packages/testkit/src/__snapshots__/babel.test.ts.snap b/packages/testkit/src/__snapshots__/babel.test.ts.snap index c33c47fc7..9d181bedd 100644 --- a/packages/testkit/src/__snapshots__/babel.test.ts.snap +++ b/packages/testkit/src/__snapshots__/babel.test.ts.snap @@ -18,6 +18,7 @@ Dependencies: ./__fixtures__/assignToExport exports[`strategy shaker compiles atomic css 1`] = ` "/* @flow */ + const x = \\"atm_26_5scuol atm_e2_12xxubj\\"; console.log(x);" `; @@ -35,6 +36,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic css with at-rules and property priorities 1`] = ` "/* @flow */ + const x = \\"atm_1h9nsec_idpfg4 atm_7xgmf7_14y27yu atm_ci1k5c_i2wt44 atm_le_1v6z61t\\"; console.log(x);" `; @@ -54,6 +56,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic css with at-rules and pseudo classes 1`] = ` "/* @flow */ + const x = \\"atm_1apu8aw_13q2bts atm_1yli2by_1cnho6b atm_1hwwax4_1osqo2v atm_26_5scuol atm_e2_12xxubj\\"; console.log(x);" `; @@ -74,6 +77,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic css with keyframes 1`] = ` "/* @flow */ + const x = \\"atm_p_x1wbsp atm_26_5scuol atm_e2_12xxubj\\"; console.log(x);" `; @@ -100,6 +104,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic css with property priorities 1`] = ` "/* @flow */ + const y = \\"atm_gz_14y27yu\\"; const x = \\"atm_gi_idpfg4\\"; console.log(x, y);" @@ -118,6 +123,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic css with unique atoms based on key value pairs 1`] = ` "/* @flow */ + const x = \\"atm_e2_12xxubj\\"; const y = \\"atm_e2_tnzek8\\"; console.log(x, y);" @@ -136,12 +142,10 @@ Dependencies: NA exports[`strategy shaker compiles atomic styled with dynamic interpolations as unique variables based on the interpolation text 1`] = ` "/* @flow */ -import { styled } from '@linaria/atomic'; +import { styled } from '@linaria/atomic'; const _exp2 = /*#__PURE__*/() => props => props.color; - const _exp3 = /*#__PURE__*/() => props => props.backgroundColor; - const Component = /*#__PURE__*/styled('div')({ name: \\"Component\\", class: \\"atm_7l_15g95l5 atm_4b_15g95l5 atm_2d_1en4k16 Component_c13jq05\\", @@ -152,11 +156,8 @@ const Component = /*#__PURE__*/styled('div')({ }, atomic: true }); - const _exp4 = /*#__PURE__*/() => props => props.color; - const _exp5 = /*#__PURE__*/() => props => props.color || \\"black\\"; - const Component2 = /*#__PURE__*/styled('div')({ name: \\"Component2\\", class: \\"atm_7l_15g95l5 atm_4b_1kgl01d Component2_c1vhermz\\", @@ -185,10 +186,9 @@ Dependencies: NA exports[`strategy shaker compiles atomic styled with plain css, static and dynamic interpolations 1`] = ` "/* @flow */ -import { styled } from '@linaria/atomic'; +import { styled } from '@linaria/atomic'; const _exp2 = /*#__PURE__*/() => props => props.color; - const Component = /*#__PURE__*/styled('div')({ name: \\"Component\\", class: \\"atm_7l_13q2bts atm_e2_12xxubj atm_gi_12am3vd atm_2d_15g95l5 Component_c13jq05\\", @@ -216,6 +216,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic styled with static css 1`] = ` "/* @flow */ + import { styled } from '@linaria/atomic'; const Component = /*#__PURE__*/styled('div')({ name: \\"Component\\", @@ -239,6 +240,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic styled without colliding by property 1`] = ` "/* @flow */ + import { styled } from '@linaria/atomic'; export const Component = /*#__PURE__*/styled('ul')({ name: \\"Component\\", @@ -268,6 +270,7 @@ Dependencies: NA exports[`strategy shaker compiles atomic styled wrapping other components with extra priority 1`] = ` "/* @flow */ + import { styled } from '@linaria/atomic'; const Component = /*#__PURE__*/styled('div')({ name: \\"Component\\", @@ -275,9 +278,7 @@ const Component = /*#__PURE__*/styled('div')({ propsAsIs: false, atomic: true }); - const _exp = /*#__PURE__*/() => Component; - const ComponentCompositing = /*#__PURE__*/styled(_exp())({ name: \\"ComponentCompositing\\", class: \\"atm_26_5scuol atm_e2_1nzxncv ComponentCompositing_c1vhermz\\", @@ -302,11 +303,10 @@ Dependencies: NA exports[`strategy shaker compiles atoms that are shared between css and styled templates 1`] = ` "/* @flow */ + import { styled } from '@linaria/atomic'; const x = \\"atm_26_5scuol atm_e2_12xxubj\\"; - const _exp2 = /*#__PURE__*/() => props => props.color; - const Component = /*#__PURE__*/styled('div')({ name: \\"Component\\", class: \\"atm_26_5scuol atm_e2_12xxubj atm_gi_19bvopo atm_7l_15g95l5 Component_c1vhermz\\", @@ -495,11 +495,9 @@ exports[`strategy shaker does not strip istanbul coverage sequences 1`] = ` hash: \\"36a1bd3d459d3717fbdf9bd0068161503f8053a5\\" }; var coverage = global[gcv] || (global[gcv] = {}); - if (!coverage[path] || coverage[path].hash !== hash) { coverage[path] = coverageData; } - var actualCoverage = coverage[path]; { // @ts-ignore @@ -509,7 +507,6 @@ exports[`strategy shaker does not strip istanbul coverage sequences 1`] = ` } return actualCoverage; } - cov_2dr9r1nt95(); export const titleClass = \\"titleClass_t13jq05\\";" `; @@ -614,7 +611,6 @@ exports[`strategy shaker evaluates component interpolations 1`] = ` "const { styled } = require('@linaria/react'); - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -648,9 +644,7 @@ exports[`strategy shaker evaluates dependencies with sequence expression 1`] = ` "import { styled } from '@linaria/react'; let external = 0; const color = (external, () => 'blue'); - const _exp = /*#__PURE__*/() => color; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -786,9 +780,7 @@ Dependencies: ./__fixtures__/enums exports[`strategy shaker evaluates interpolations with sequence expression 1`] = ` "import { styled } from '@linaria/react'; - const _exp = /*#__PURE__*/() => (0, () => \\"blue\\"); - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -997,6 +989,7 @@ Dependencies: NA exports[`strategy shaker handles complex component 1`] = ` "// Dead code in this file should be ignored + import deadDep from 'unknown-dependency'; import { styled } from '@linaria/react'; export const deadValue = deadDep(); @@ -1105,9 +1098,7 @@ Dependencies: NA exports[`strategy shaker handles fn passed in variableNameSlug 1`] = ` "import { styled as atomicStyled } from '@linaria/atomic'; import { styled } from '@linaria/react'; - const _exp = /*#__PURE__*/() => props => props.size; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -1116,9 +1107,7 @@ export const Title = /*#__PURE__*/styled('h1')({ \\"_qqvhyq__Title__font-size\\": [_exp(), \\"px\\"] } }); - const _exp2 = /*#__PURE__*/() => props => props.size; - export const Body = /*#__PURE__*/atomicStyled('h1')({ name: \\"Body\\", class: \\"atm_c8_f3y1j4 Body_b1vhermz\\", @@ -1147,17 +1136,13 @@ exports[`strategy shaker handles indirect wrapping another styled component 1`] "const { styled } = require('@linaria/react'); - const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", propsAsIs: false }); - const hoc = Cmp => Cmp; - const _exp = /*#__PURE__*/() => hoc(Title); - export const CustomTitle = /*#__PURE__*/styled(_exp())({ name: \\"CustomTitle\\", class: \\"CustomTitle_c1vhermz\\", @@ -1183,21 +1168,13 @@ Dependencies: NA exports[`strategy shaker handles interpolation followed by unit 1`] = ` "import { styled } from '@linaria/react'; - const size = () => 100; - const shadow = () => 5; - const unit = () => 1; - const _exp = /*#__PURE__*/() => size; - const _exp2 = /*#__PURE__*/() => shadow; - const _exp3 = /*#__PURE__*/() => size; - const _exp4 = /*#__PURE__*/() => props => props.width; - const _exp5 = /*#__PURE__*/() => props => { if (true) { return props.height; @@ -1205,13 +1182,10 @@ const _exp5 = /*#__PURE__*/() => props => { return 200; } }; - const _exp7 = /*#__PURE__*/() => unit; - const _exp8 = /*#__PURE__*/() => function (props) { return 200; }; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -1248,11 +1222,8 @@ Dependencies: NA exports[`strategy shaker handles nested blocks 1`] = ` "import { styled } from '@linaria/react'; - const regular = () => \\"arial\\"; - const _exp = /*#__PURE__*/() => regular; - export const Button = /*#__PURE__*/styled('button')({ name: \\"Button\\", class: \\"Button_b13jq05\\", @@ -1324,23 +1295,18 @@ exports[`strategy shaker handles wrapping another styled component 1`] = ` "const { styled } = require('@linaria/react'); - const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", propsAsIs: false }); - const _exp = /*#__PURE__*/() => Title; - export const BlueTitle = /*#__PURE__*/styled(_exp())({ name: \\"BlueTitle\\", class: \\"BlueTitle_b1vhermz\\", propsAsIs: true }); - const _exp2 = /*#__PURE__*/() => BlueTitle; - export const GreenTitle = /*#__PURE__*/styled(_exp2())({ name: \\"GreenTitle\\", class: \\"GreenTitle_g1egpet8\\", @@ -1392,11 +1358,8 @@ Dependencies: NA exports[`strategy shaker ignores external expressions 1`] = ` "import { styled } from '@linaria/react'; - const generate = props => props.content; - const _exp = /*#__PURE__*/() => generate; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -1423,9 +1386,7 @@ Dependencies: NA exports[`strategy shaker ignores inline arrow function expressions 1`] = ` "import { styled } from '@linaria/react'; - const _exp = /*#__PURE__*/() => props => props.content; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -1452,11 +1413,9 @@ Dependencies: NA exports[`strategy shaker ignores inline vanilla function expressions 1`] = ` "import { styled } from '@linaria/react'; - const _exp = /*#__PURE__*/() => function (props) { return props.content; }; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -1677,15 +1636,10 @@ Dependencies: NA exports[`strategy shaker prevents class name collision 1`] = ` "import { styled } from '@linaria/react'; - const size = () => 100; - const regular = () => \\"arial\\"; - const _exp = /*#__PURE__*/() => size; - const _exp2 = /*#__PURE__*/() => props => props.color; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_twgemqq\\", @@ -1695,9 +1649,7 @@ export const Title = /*#__PURE__*/styled('h1')({ \\"twgemqq-1\\": [_exp2()] } }); - const _exp3 = /*#__PURE__*/() => regular; - export function Something() { const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", @@ -2079,9 +2031,7 @@ exports[`strategy shaker should wrap memoized components 1`] = ` "import React from 'react'; import { styled } from '@linaria/react'; const MyComponent = React.memo(() =>
); - const _exp = /*#__PURE__*/() => MyComponent; - export default /*#__PURE__*/styled(_exp())({ name: \\"source0\\", class: \\"source0_swgemqq\\", @@ -2105,38 +2055,28 @@ exports[`strategy shaker simplifies react components 1`] = ` "import React from 'react'; import { styled } from '@linaria/react'; import constant from './broken-dependency'; - const FuncComponent = props =>
{props.children + constant}
; - class ClassComponent extends React.PureComponent { method() { return constant; } - render() { return
{props.children + constant}
; } - } - const ComplexFunctionComponent = props => { if (import.meta.env.PROD) { return
{props.children + constant}
; } - return null; }; - const _exp = /*#__PURE__*/() => FuncComponent; - export const StyledFunc = /*#__PURE__*/styled(_exp())({ name: \\"StyledFunc\\", class: \\"StyledFunc_swgemqq\\", propsAsIs: true }); - const _exp2 = /*#__PURE__*/() => ClassComponent; - export const StyledClass = /*#__PURE__*/styled(_exp2())({ name: \\"StyledClass\\", class: \\"StyledClass_sjtmpns\\", @@ -2165,15 +2105,10 @@ import React from 'react'; import { createElement } from 'react'; import { styled } from '@linaria/react'; import constant from './broken-dependency'; - const A = () => ReactNS.createElement('div', {}, constant); - const B = () => createElement(A, {}, constant); - const C = () => React.createElement(FuncComponent, {}, constant); - const _exp = /*#__PURE__*/() => C; - export const D = /*#__PURE__*/styled(_exp())({ name: \\"D\\", class: \\"D_dwgemqq\\", @@ -2195,21 +2130,13 @@ Dependencies: NA exports[`strategy shaker simplifies transpiled react components CJS 1`] = ` "var _interopRequireWildcard = require(\\"@babel/runtime/helpers/interopRequireWildcard\\").default; - var React = _interopRequireWildcard(require(\\"react\\")); - var styled = require('@linaria/react').styled; - var constant = require('./broken-dependency').default; - const A = () => React.createElement('div', {}, constant); - const B = () => React.createElement(A, {}, constant); - const C = () => React.createElement(FuncComponent, {}, constant); - const _exp = /*#__PURE__*/() => C; - exports.D = /*#__PURE__*/styled(_exp())({ name: \\"source0\\", class: \\"source0_swgemqq\\", @@ -2342,6 +2269,7 @@ Dependencies: NA exports[`strategy shaker transpiles renamed css and atomic-css imports in the same file 1`] = ` "/* @flow */ + const x = \\"x_x13jq05\\"; const y = \\"atm_26_5scuol\\"; console.log(x, y);" @@ -2379,6 +2307,7 @@ Dependencies: NA exports[`strategy shaker transpiles renamed styled and atomic-styled imports in the same file 1`] = ` "/* @flow */ + import { styled as reactStyled } from '@linaria/react'; import { styled as atomicStyled } from '@linaria/atomic'; const StyledComponent = /*#__PURE__*/reactStyled('div')({ @@ -2386,9 +2315,7 @@ const StyledComponent = /*#__PURE__*/reactStyled('div')({ class: \\"StyledComponent_s13jq05\\", propsAsIs: false }); - const _exp = /*#__PURE__*/() => StyledComponent; - const StyledComponent2 = /*#__PURE__*/reactStyled(_exp())({ name: \\"StyledComponent2\\", class: \\"StyledComponent2_s1vhermz\\", @@ -2400,9 +2327,7 @@ const AtomicComponent = /*#__PURE__*/atomicStyled('div')({ propsAsIs: false, atomic: true }); - const _exp2 = /*#__PURE__*/() => AtomicComponent; - const AtomicComponent2 = /*#__PURE__*/atomicStyled(_exp2())({ name: \\"AtomicComponent2\\", class: \\"atm_26_13q2bts AtomicComponent2_avc9xb3\\", @@ -2477,11 +2402,8 @@ Dependencies: NA exports[`strategy shaker transpiles styled template literal with function and component 1`] = ` "import { styled } from '@linaria/react'; - const Heading = () => null; - const _exp = /*#__PURE__*/() => Heading; - export const Title = /*#__PURE__*/styled(_exp())({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -2549,9 +2471,7 @@ type Props = { className?: string; children?: React.ReactNode; }; - const _exp = /*#__PURE__*/() => (props: Props) => props.className; - export const Title = /*#__PURE__*/styled('div')({ name: \\"Title\\", class: \\"Title_t9vkbjs\\", @@ -2575,6 +2495,26 @@ Dependencies: NA `; +exports[`strategy shaker understands satisfies keyword 1`] = ` +"interface ColorTokenMap { + primary: string; + secondary: string; +} +export const text = \\"text_t9vkbjs\\";" +`; + +exports[`strategy shaker understands satisfies keyword 2`] = ` + +CSS: + +.text_t9vkbjs { + color: #111; +} + +Dependencies: NA + +`; + exports[`strategy shaker uses string passed in classNameSlug 1`] = ` "import { styled } from '@linaria/react'; export const Title = /*#__PURE__*/styled('h1')({ @@ -2599,9 +2539,7 @@ Dependencies: NA exports[`strategy shaker uses string passed in variableNameSlug 1`] = ` "import { styled as atomicStyled } from '@linaria/atomic'; import { styled } from '@linaria/react'; - const _exp = /*#__PURE__*/() => props => props.size; - export const Title = /*#__PURE__*/styled('h1')({ name: \\"Title\\", class: \\"Title_t13jq05\\", @@ -2610,9 +2548,7 @@ export const Title = /*#__PURE__*/styled('h1')({ \\"Title_t13jq05_StyledProcessor_1qqvhyq_0\\": [_exp(), \\"px\\"] } }); - const _exp2 = /*#__PURE__*/() => props => props.size; - export const Body = /*#__PURE__*/atomicStyled('h1')({ name: \\"Body\\", class: \\"atm_c8_1cjuufw Body_b1vhermz\\", @@ -2639,9 +2575,7 @@ Dependencies: NA exports[`strategy shaker uses the same custom property for the same expression 1`] = ` "import { styled } from '@linaria/react'; - const _exp2 = /*#__PURE__*/() => props => props.size; - export const Box = /*#__PURE__*/styled('div')({ name: \\"Box\\", class: \\"Box_b13jq05\\", @@ -2667,11 +2601,8 @@ Dependencies: NA exports[`strategy shaker uses the same custom property for the same identifier 1`] = ` "import { styled } from '@linaria/react'; - const size = () => 100; - const _exp2 = /*#__PURE__*/() => size; - export const Box = /*#__PURE__*/styled('div')({ name: \\"Box\\", class: \\"Box_b13jq05\\", diff --git a/packages/testkit/src/__snapshots__/preeval.test.ts.snap b/packages/testkit/src/__snapshots__/preeval.test.ts.snap index 34bbac39b..de4ddce50 100644 --- a/packages/testkit/src/__snapshots__/preeval.test.ts.snap +++ b/packages/testkit/src/__snapshots__/preeval.test.ts.snap @@ -5,15 +5,12 @@ exports[`preeval should keep getGlobal but remove window-related code 1`] = ` if (typeof globalThis !== \\"undefined\\") { return globalThis; } - if (typeof global !== \\"undefined\\") { return global; } - if (typeof self !== \\"undefined\\") { return self; } - return mockGlobal; }" `; diff --git a/packages/testkit/src/babel.test.ts b/packages/testkit/src/babel.test.ts index 24ddab7ef..08f0338d3 100644 --- a/packages/testkit/src/babel.test.ts +++ b/packages/testkit/src/babel.test.ts @@ -2523,6 +2523,32 @@ describe('strategy shaker', () => { expect(metadata).toMatchSnapshot(); }); + it('understands satisfies keyword', async () => { + const { code, metadata } = await transform( + dedent` + import { css } from "@linaria/core" + + interface ColorTokenMap { + primary: string + secondary: string + } + + const lightTokens = { + primary: "#111", + secondary: "#09f", + } satisfies ColorTokenMap + + export const text = css\` + color: ${'${lightTokens.primary}'}; + \`; + `, + [evaluator, {}, 'ts'] + ); + + expect(code).toMatchSnapshot(); + expect(metadata).toMatchSnapshot(); + }); + it('evaluates chain of reexports', async () => { const { code, metadata } = await transform( dedent` diff --git a/packages/testkit/src/utils/__snapshots__/extractExpression.test.ts.snap b/packages/testkit/src/utils/__snapshots__/extractExpression.test.ts.snap index 3e8009e4f..969ddc58a 100644 --- a/packages/testkit/src/utils/__snapshots__/extractExpression.test.ts.snap +++ b/packages/testkit/src/utils/__snapshots__/extractExpression.test.ts.snap @@ -3,9 +3,7 @@ exports[`extractExpression should extract expression 1`] = ` "let a = 1; let b = 2; - const _exp = /*#__PURE__*/() => a + b; - function foo() { return _exp(); }" @@ -13,13 +11,10 @@ function foo() { exports[`extractExpression should hoist functions 1`] = ` "let a = \\"foo\\"; - let fn = obj => obj.className ?? ''; - const _exp = /*#__PURE__*/() => a + fn({ className: 'bar' }); - function foo() { return _exp(); }" @@ -27,13 +22,10 @@ function foo() { exports[`extractExpression should ignore types 1`] = ` "let a = \\"foo\\"; - let fn = (obj: Props) => obj.className ?? ''; - const _exp = /*#__PURE__*/() => a + fn({ className: 'bar' }); - function foo() { type Props = { className?: string; @@ -45,7 +37,6 @@ function foo() { exports[`extractExpression should inline values and remove bindings 1`] = ` "const _exp = /*#__PURE__*/() => 3; - function foo() { return _exp(); }" @@ -55,9 +46,7 @@ exports[`extractExpression should rename identifier if it already exists in the "const a = 42; let _a = 1; let b = 2; - const _exp = /*#__PURE__*/() => _a + b; - function foo() { return _exp(); }" diff --git a/packages/testkit/src/utils/__snapshots__/removeWithRelated.test.ts.snap b/packages/testkit/src/utils/__snapshots__/removeWithRelated.test.ts.snap index 8bd60df40..e79fb7fea 100644 --- a/packages/testkit/src/utils/__snapshots__/removeWithRelated.test.ts.snap +++ b/packages/testkit/src/utils/__snapshots__/removeWithRelated.test.ts.snap @@ -2,6 +2,7 @@ exports[`removeWithRelated should keep alive used import specifier 1`] = ` "import { b } from './source'; + /* remove */" `; diff --git a/packages/utils/package.json b/packages/utils/package.json index ce5623828..197ce43f9 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -4,12 +4,12 @@ "version": "4.2.4", "bugs": "https://github.com/callstack/linaria/issues", "dependencies": { - "@babel/core": "^7.18.9", - "@babel/plugin-proposal-export-namespace-from": ">=7", - "@babel/plugin-syntax-dynamic-import": ">=7", - "@babel/plugin-transform-modules-commonjs": "^7.18.2", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", + "@babel/core": "^7.20.2", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "@linaria/logger": "workspace:^", "babel-merge": "^3.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 99042a821..5925ae176 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,14 +8,14 @@ importers: .: specifiers: - '@babel/cli': ^7.18.9 - '@babel/core': ^7.18.9 - '@babel/eslint-parser': ^7.18.9 - '@babel/plugin-proposal-class-properties': '>=7' + '@babel/cli': ^7.19.3 + '@babel/core': ^7.20.2 + '@babel/eslint-parser': ^7.19.1 + '@babel/plugin-proposal-class-properties': ^7.18.6 '@babel/plugin-syntax-jsx': ^7.18.6 - '@babel/preset-env': '>=7' - '@babel/preset-react': '>=7' - '@babel/preset-typescript': '>=7' + '@babel/preset-env': ^7.20.2 + '@babel/preset-react': ^7.18.6 + '@babel/preset-typescript': ^7.18.6 '@changesets/cli': ^2.22.0 '@commitlint/config-conventional': ^8.3.4 '@types/jest': ^28.1.0 @@ -49,21 +49,21 @@ importers: dependencies: git-raw-commits: 2.0.11 devDependencies: - '@babel/cli': 7.18.9_@babel+core@7.18.9 - '@babel/core': 7.18.9 - '@babel/eslint-parser': 7.18.9_3vbb7symjhla6hm2wo67qog5xa - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/preset-env': 7.18.2_@babel+core@7.18.9 - '@babel/preset-react': 7.17.12_@babel+core@7.18.9 - '@babel/preset-typescript': 7.17.12_@babel+core@7.18.9 + '@babel/cli': 7.19.3_@babel+core@7.20.2 + '@babel/core': 7.20.2 + '@babel/eslint-parser': 7.19.1_dqmaozfjdqky2zxc6gegrsmqyi + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/preset-env': 7.20.2_@babel+core@7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2 '@changesets/cli': 2.22.0 '@commitlint/config-conventional': 8.3.6 '@types/jest': 28.1.0 '@typescript-eslint/eslint-plugin': 5.30.7_7bimhicebavk6fj2dtw4lk7sqe '@typescript-eslint/parser': 5.30.7_vjep2yp2sits3sqnodefgcbnfi all-contributors-cli: 6.20.0 - babel-jest: 28.1.0_@babel+core@7.18.9 + babel-jest: 28.1.0_@babel+core@7.20.2 codecov: 3.8.3 commitlint: 8.3.6 cross-env: 7.0.3 @@ -90,7 +90,7 @@ importers: examples/astro-solid: specifiers: '@astrojs/solid-js': ^1.2.3 - '@babel/core': ^7.18.6 + '@babel/core': ^7.20.2 '@linaria/core': workspace:^ '@linaria/shaker': workspace:^ '@linaria/vite': workspace:^ @@ -122,7 +122,7 @@ importers: examples/rollup: specifiers: - '@babel/core': ^7.18.6 + '@babel/core': ^7.20.2 '@babel/preset-react': ^7.18.6 '@linaria/rollup': workspace:^ '@rollup/plugin-babel': ^5.3.1 @@ -135,10 +135,10 @@ importers: dependencies: linaria-website: link:../../website devDependencies: - '@babel/core': 7.18.6 - '@babel/preset-react': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 '@linaria/rollup': link:../../packages/rollup - '@rollup/plugin-babel': 5.3.1_ayiqorrx7dutx4scyxuyyyvhga + '@rollup/plugin-babel': 5.3.1_ttenojzoln4b7byjfj4rq2uhfm '@rollup/plugin-commonjs': 22.0.1_rollup@2.76.0 '@rollup/plugin-image': 2.1.1_rollup@2.76.0 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.76.0 @@ -191,7 +191,7 @@ importers: packages/atomic: specifiers: - '@babel/types': ^7.18.9 + '@babel/types': ^7.20.2 '@linaria/core': workspace:^ '@linaria/logger': workspace:^ '@linaria/react': workspace:^ @@ -212,16 +212,16 @@ importers: stylis: 3.5.4 ts-invariant: 0.10.3 devDependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 packages/babel: specifiers: - '@babel/core': ^7.18.9 - '@babel/generator': ^7.18.9 + '@babel/core': ^7.20.2 + '@babel/generator': ^7.20.4 '@babel/helper-module-imports': ^7.18.6 - '@babel/template': ^7.18.6 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/template': ^7.18.10 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@linaria/core': workspace:^ '@linaria/logger': workspace:^ '@linaria/shaker': workspace:^ @@ -245,12 +245,12 @@ importers: ts-jest: ^28.0.4 typescript: ^4.7.4 dependencies: - '@babel/core': 7.18.9 - '@babel/generator': 7.18.9 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 '@babel/helper-module-imports': 7.18.6 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@linaria/core': link:../core '@linaria/logger': link:../logger '@linaria/shaker': link:../shaker @@ -272,12 +272,12 @@ importers: dedent: 0.7.0 jest: 28.1.0_@types+node@17.0.39 strip-ansi: 5.2.0 - ts-jest: 28.0.4_ppxpzp26on3nfwb7yosvsqarey + ts-jest: 28.0.4_7im4dvioa2uvrabfr5amyoxi3e typescript: 4.7.4 packages/cli: specifiers: - '@babel/core': ^7.18.9 + '@babel/core': ^7.20.2 '@linaria/babel-preset': workspace:^ '@linaria/utils': workspace:^ '@types/glob': ^7.2.0 @@ -289,7 +289,7 @@ importers: normalize-path: ^3.0.0 yargs: ^17.5.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 '@linaria/babel-preset': link:../babel '@linaria/utils': link:../utils glob: 7.2.3 @@ -304,8 +304,8 @@ importers: packages/core: specifiers: - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@linaria/logger': workspace:^ '@linaria/tags': workspace:^ '@linaria/utils': workspace:^ @@ -317,21 +317,21 @@ importers: '@linaria/tags': link:../tags '@linaria/utils': link:../utils devDependencies: - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 '@types/node': 17.0.39 packages/esbuild: specifiers: - '@babel/core': ^7.18.9 + '@babel/core': ^7.20.2 '@linaria/babel-preset': workspace:^ '@linaria/utils': workspace:^ '@types/node': ^17.0.39 esbuild: ^0.12.5 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 '@linaria/babel-preset': link:../babel '@linaria/utils': link:../utils esbuild: 0.12.29 @@ -343,7 +343,7 @@ importers: packages/griffel: specifiers: - '@babel/types': ^7.18.9 + '@babel/types': ^7.20.2 '@griffel/core': ^1.5.0 '@linaria/logger': workspace:^ '@linaria/tags': workspace:^ @@ -356,20 +356,20 @@ importers: '@linaria/utils': link:../utils ts-invariant: 0.10.3 devDependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 packages/interop: specifiers: - '@babel/core': ^7.18.9 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/core': ^7.20.2 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@types/babel__core': ^7.1.19 '@types/babel__traverse': ^7.17.1 dedent: ^0.7.0 devDependencies: - '@babel/core': 7.18.9 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/core': 7.20.2 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dedent: 0.7.0 @@ -411,28 +411,28 @@ importers: packages/postcss-linaria: specifiers: - '@babel/generator': ^7.18.9 - '@babel/parser': ^7.18.13 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/generator': ^7.20.4 + '@babel/parser': ^7.20.3 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@types/babel__generator': ^7.6.4 '@types/babel__traverse': ^7.17.1 postcss: ^8.3.11 stylelint: ^14.11.0 dependencies: - '@babel/generator': 7.19.5 - '@babel/parser': 7.18.13 - '@babel/traverse': 7.18.9 + '@babel/generator': 7.20.4 + '@babel/parser': 7.20.3 + '@babel/traverse': 7.20.1 stylelint: 14.11.0 devDependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 '@types/babel__generator': 7.6.4 '@types/babel__traverse': 7.17.1 postcss: 8.4.14 packages/react: specifiers: - '@babel/types': ^7.18.9 + '@babel/types': ^7.20.2 '@emotion/is-prop-valid': ^1.2.0 '@linaria/core': workspace:^ '@linaria/tags': workspace:^ @@ -452,7 +452,7 @@ importers: react-html-attributes: 1.4.6 ts-invariant: 0.10.3 devDependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/node': 17.0.39 '@types/react': 18.0.15 @@ -491,13 +491,13 @@ importers: packages/shaker: specifiers: - '@babel/core': ^7.18.9 - '@babel/generator': ^7.18.9 - '@babel/plugin-transform-modules-commonjs': ^7.18.2 - '@babel/plugin-transform-runtime': '>=7' - '@babel/plugin-transform-template-literals': '>=7' - '@babel/preset-env': '>=7' - '@babel/types': ^7.18.9 + '@babel/core': ^7.20.2 + '@babel/generator': ^7.20.4 + '@babel/plugin-transform-modules-commonjs': ^7.19.6 + '@babel/plugin-transform-runtime': ^7.19.6 + '@babel/plugin-transform-template-literals': ^7.18.9 + '@babel/preset-env': ^7.20.2 + '@babel/types': ^7.20.2 '@linaria/logger': workspace:^ '@linaria/utils': workspace:^ '@types/babel__core': ^7.1.19 @@ -513,18 +513,18 @@ importers: ts-jest: ^28.0.4 typescript: ^4.7.4 dependencies: - '@babel/core': 7.18.9 - '@babel/generator': 7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.9 - '@babel/plugin-transform-runtime': 7.18.2_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.9 - '@babel/preset-env': 7.18.2_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/preset-env': 7.20.2_@babel+core@7.20.2 '@linaria/logger': link:../logger '@linaria/utils': link:../utils babel-plugin-transform-react-remove-prop-types: 0.4.24 ts-invariant: 0.10.3 devDependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/babel__generator': 7.6.4 '@types/babel__traverse': 7.17.1 @@ -533,7 +533,7 @@ importers: '@types/node': 17.0.39 dedent: 0.7.0 jest: 28.1.0_@types+node@17.0.39 - ts-jest: 28.0.4_ppxpzp26on3nfwb7yosvsqarey + ts-jest: 28.0.4_7im4dvioa2uvrabfr5amyoxi3e typescript: 4.7.4 packages/stylelint: @@ -561,9 +561,9 @@ importers: packages/tags: specifiers: - '@babel/generator': ^7.18.9 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/generator': ^7.20.4 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@linaria/logger': workspace:^ '@linaria/utils': workspace:^ '@types/babel__core': ^7.1.19 @@ -571,12 +571,12 @@ importers: '@types/babel__traverse': ^7.17.1 '@types/node': ^17.0.39 dependencies: - '@babel/generator': 7.18.9 + '@babel/generator': 7.20.4 '@linaria/logger': link:../logger '@linaria/utils': link:../utils devDependencies: - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/babel__generator': 7.6.4 '@types/babel__traverse': 7.17.1 @@ -584,14 +584,14 @@ importers: packages/testkit: specifiers: - '@babel/core': ^7.18.9 - '@babel/generator': ^7.18.9 + '@babel/core': ^7.20.2 + '@babel/generator': ^7.20.4 '@babel/plugin-syntax-jsx': ^7.18.6 - '@babel/plugin-syntax-typescript': ^7.18.6 - '@babel/plugin-transform-modules-commonjs': ^7.18.2 - '@babel/runtime': ^7.18.3 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/plugin-syntax-typescript': ^7.20.0 + '@babel/plugin-transform-modules-commonjs': ^7.19.6 + '@babel/runtime': ^7.20.1 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@linaria/atomic': workspace:^ '@linaria/babel-preset': workspace:^ '@linaria/core': workspace:^ @@ -617,9 +617,9 @@ importers: ts-jest: ^28.0.4 typescript: ^4.7.4 dependencies: - '@babel/core': 7.18.9 - '@babel/generator': 7.18.9 - '@babel/traverse': 7.18.9 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/traverse': 7.20.1 '@linaria/babel-preset': link:../babel '@linaria/extractor': link:../extractor '@linaria/react': link:../react @@ -629,11 +629,11 @@ importers: strip-ansi: 5.2.0 typescript: 4.7.4 devDependencies: - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.9 - '@babel/runtime': 7.18.3 - '@babel/types': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/runtime': 7.20.1 + '@babel/types': 7.20.2 '@linaria/atomic': link:../atomic '@linaria/core': link:../core '@linaria/griffel': link:../griffel @@ -649,30 +649,30 @@ importers: babel-plugin-module-resolver: 4.1.0 jest: 28.1.0_@types+node@17.0.39 linaria: link:../linaria - ts-jest: 28.0.4_ppxpzp26on3nfwb7yosvsqarey + ts-jest: 28.0.4_7im4dvioa2uvrabfr5amyoxi3e packages/utils: specifiers: - '@babel/core': ^7.18.9 - '@babel/plugin-proposal-export-namespace-from': '>=7' - '@babel/plugin-syntax-dynamic-import': '>=7' - '@babel/plugin-transform-modules-commonjs': ^7.18.2 - '@babel/traverse': ^7.18.9 - '@babel/types': ^7.18.9 + '@babel/core': ^7.20.2 + '@babel/plugin-proposal-export-namespace-from': ^7.18.9 + '@babel/plugin-syntax-dynamic-import': ^7.8.3 + '@babel/plugin-transform-modules-commonjs': ^7.19.6 + '@babel/traverse': ^7.20.1 + '@babel/types': ^7.20.2 '@linaria/logger': workspace:^ '@types/babel__core': ^7.1.19 '@types/babel__traverse': ^7.17.1 '@types/node': ^17.0.39 babel-merge: ^3.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.9 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/core': 7.20.2 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@linaria/logger': link:../logger - babel-merge: 3.0.0_@babel+core@7.18.9 + babel-merge: 3.0.0_@babel+core@7.20.2 devDependencies: '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 @@ -755,9 +755,9 @@ importers: website: specifiers: - '@babel/cli': ^7.18.9 - '@babel/core': ^7.18.9 - '@babel/runtime': ^7.18.3 + '@babel/cli': ^7.19.3 + '@babel/core': ^7.20.2 + '@babel/runtime': ^7.20.1 '@linaria/atomic': workspace:^ '@linaria/babel-preset': workspace:^ '@linaria/core': workspace:^ @@ -790,7 +790,7 @@ importers: webpack-cli: ^4.9.2 webpack-dev-server: ^4.9.1 dependencies: - '@babel/runtime': 7.18.3 + '@babel/runtime': 7.20.1 '@linaria/atomic': link:../packages/atomic '@linaria/core': link:../packages/core '@linaria/react': link:../packages/react @@ -806,13 +806,13 @@ importers: react: 16.14.0 react-dom: 16.14.0_react@16.14.0 devDependencies: - '@babel/cli': 7.18.9_@babel+core@7.18.9 - '@babel/core': 7.18.9 + '@babel/cli': 7.19.3_@babel+core@7.20.2 + '@babel/core': 7.20.2 '@linaria/babel-preset': link:../packages/babel '@linaria/shaker': link:../packages/shaker '@linaria/stylelint': link:../packages/stylelint '@linaria/webpack5-loader': link:../packages/webpack5-loader - babel-loader: 8.2.5_sqoqrlbh4fciq6urcohea2fb5a + babel-loader: 8.2.5_jzdsusohi23wobhstm6lj7n7ui babel-plugin-module-resolver: 4.1.0 cross-env: 7.0.3 css-hot-loader: 1.4.4 @@ -946,17 +946,17 @@ packages: node-fetch: 3.3.0 dev: true - /@babel/cli/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-e7TOtHVrAXBJGNgoROVxqx0mathd01oJGXIDekRfxdrISnRqfM795APwkDtse9GdyPYivjg3iXiko3sF3W7f5Q==} + /@babel/cli/7.19.3_@babel+core@7.20.2: + resolution: {integrity: sha512-643/TybmaCAe101m2tSVHi9UKpETXP9c/Ff4mD2tAwkdP6esKIfaauZFc67vGEM6r9fekbEGid+sZhbEnSe3dg==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@jridgewell/trace-mapping': 0.3.13 + '@babel/core': 7.20.2 + '@jridgewell/trace-mapping': 0.3.17 commander: 4.1.1 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fs-readdir-recursive: 1.1.0 glob: 7.2.3 make-dir: 2.1.0 @@ -966,75 +966,15 @@ packages: chokidar: 3.5.3 dev: true - /@babel/code-frame/7.16.7: - resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.17.12 - /@babel/code-frame/7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.17.10: - resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} - engines: {node: '>=6.9.0'} - - /@babel/compat-data/7.18.8: - resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} - engines: {node: '>=6.9.0'} - /@babel/compat-data/7.20.1: resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} engines: {node: '>=6.9.0'} - dev: true - - /@babel/core/7.18.6: - resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.5 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-module-transforms': 7.18.8 - '@babel/helpers': 7.18.6 - '@babel/parser': 7.18.8 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.18.8 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/core/7.18.9: - resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.9 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.13 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color /@babel/core/7.20.2: resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} @@ -1057,38 +997,21 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/eslint-parser/7.18.9_3vbb7symjhla6hm2wo67qog5xa: - resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} + /@babel/eslint-parser/7.19.1_dqmaozfjdqky2zxc6gegrsmqyi: + resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.16.0 - eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/generator/7.18.9: - resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.9 - '@jridgewell/gen-mapping': 0.3.2 - jsesc: 2.5.2 - - /@babel/generator/7.19.5: - resolution: {integrity: sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.19.4 - '@jridgewell/gen-mapping': 0.3.2 - jsesc: 2.5.2 - /@babel/generator/7.20.4: resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} engines: {node: '>=6.9.0'} @@ -1096,64 +1019,19 @@ packages: '@babel/types': 7.20.2 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - dev: true - - /@babel/helper-annotate-as-pure/7.16.7: - resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.19.4 /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 - dev: true - - /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: - resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-explode-assignable-expression': 7.16.7 - '@babel/types': 7.19.4 - - /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.9: - resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.9 - '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.3 - semver: 6.3.0 - - /@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.6 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 - semver: 6.3.0 - dev: true + '@babel/types': 7.20.2 - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.9: - resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.9 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.20.3 - semver: 6.3.0 + '@babel/helper-explode-assignable-expression': 7.18.6 + '@babel/types': 7.20.2 /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} @@ -1166,92 +1044,58 @@ packages: '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 - dev: true - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} + /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-member-expression-to-functions': 7.17.7 - '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.18.2 - '@babel/helper-split-export-declaration': 7.16.7 + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - regexpu-core: 5.0.1 + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.2 - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.9: - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.2: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.9 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/traverse': 7.18.2 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/helper-environment-visitor/7.18.2: - resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} - engines: {node: '>=6.9.0'} - - /@babel/helper-environment-visitor/7.18.6: - resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==} - engines: {node: '>=6.9.0'} - dev: true - /@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.16.7: - resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.19.4 - - /@babel/helper-function-name/7.17.9: - resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.16.7 - '@babel/types': 7.19.4 - - /@babel/helper-function-name/7.18.6: - resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.6 - '@babel/types': 7.19.4 - dev: true - - /@babel/helper-function-name/7.18.9: - resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + /@babel/helper-explode-assignable-expression/7.18.6: + resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.6 - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 /@babel/helper-function-name/7.19.0: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} @@ -1259,13 +1103,6 @@ packages: dependencies: '@babel/template': 7.18.10 '@babel/types': 7.20.2 - dev: true - - /@babel/helper-hoist-variables/7.16.7: - resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.19.4 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} @@ -1273,11 +1110,11 @@ packages: dependencies: '@babel/types': 7.20.2 - /@babel/helper-member-expression-to-functions/7.17.7: - resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.2 /@babel/helper-module-imports/7.16.0: resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==} @@ -1286,64 +1123,12 @@ packages: '@babel/types': 7.20.2 dev: true - /@babel/helper-module-imports/7.16.7: - resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.4 - /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.2 - /@babel/helper-module-transforms/7.18.0: - resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.18.2 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/helper-validator-identifier': 7.16.7 - '@babel/template': 7.16.7 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-transforms/7.18.8: - resolution: {integrity: sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.19.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-module-transforms/7.18.9: - resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms/7.20.2: resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} @@ -1358,79 +1143,64 @@ packages: '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-optimise-call-expression/7.16.7: - resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} + /@babel/helper-optimise-call-expression/7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.2 /@babel/helper-plugin-utils/7.17.12: resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} engines: {node: '>=6.9.0'} - - /@babel/helper-plugin-utils/7.18.6: - resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==} - engines: {node: '>=6.9.0'} dev: true /@babel/helper-plugin-utils/7.19.0: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} + dev: true - /@babel/helper-remap-async-to-generator/7.16.8: - resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==} + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-wrap-function': 7.16.8 - '@babel/types': 7.19.4 - transitivePeerDependencies: - - supports-color - /@babel/helper-replace-supers/7.18.2: - resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-member-expression-to-functions': 7.17.7 - '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.2 - '@babel/types': 7.19.4 + '@babel/core': 7.20.2 + '@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.20.2 transitivePeerDependencies: - supports-color - /@babel/helper-simple-access/7.18.2: - resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.18.9 - - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-replace-supers/7.19.1: + resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + transitivePeerDependencies: + - supports-color /@babel/helper-simple-access/7.20.2: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.2 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers/7.16.0: - resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.19.4 - /@babel/helper-split-export-declaration/7.16.7: - resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} + /@babel/helper-skip-transparent-expression-wrappers/7.20.0: + resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.2 /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} @@ -1442,55 +1212,22 @@ packages: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.16.7: - resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} - engines: {node: '>=6.9.0'} - - /@babel/helper-validator-identifier/7.18.6: - resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} - engines: {node: '>=6.9.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-option/7.16.7: - resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} - engines: {node: '>=6.9.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.16.8: - resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.17.9 - '@babel/template': 7.16.7 - '@babel/traverse': 7.18.2 - '@babel/types': 7.19.4 - transitivePeerDependencies: - - supports-color - - /@babel/helpers/7.18.6: - resolution: {integrity: sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.8 - '@babel/types': 7.19.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helpers/7.18.9: - resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + /@babel/helper-wrap-function/7.19.0: + resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color @@ -1503,15 +1240,6 @@ packages: '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color - dev: true - - /@babel/highlight/7.17.12: - resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.19.1 - chalk: 2.4.2 - js-tokens: 4.0.0 /@babel/highlight/7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} @@ -1521,26 +1249,12 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.18.13: - resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.18.9 - /@babel/parser/7.18.4: resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.9 - - /@babel/parser/7.18.8: - resolution: {integrity: sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.19.4 + '@babel/types': 7.20.2 dev: true /@babel/parser/7.20.3: @@ -1549,203 +1263,195 @@ packages: hasBin: true dependencies: '@babel/types': 7.20.2 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 - /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==} + /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.2: + resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==} + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==} + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==} + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==} + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 - /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 - /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==} + /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.9 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 - /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==} + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==} + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==} + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.9: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -1753,17 +1459,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} @@ -1771,68 +1467,50 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.9: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.9: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.9: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.9: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==} + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.2: + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.9: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -1840,45 +1518,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -1887,33 +1536,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.9: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -1921,16 +1553,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.9: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -1938,16 +1561,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -1955,16 +1569,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -1972,16 +1577,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.9: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -1989,26 +1585,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.9: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.9: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -2017,385 +1603,300 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.9: - resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2: + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==} + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==} + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.16.8 + '@babel/core': 7.20.2 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.9: - resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==} + /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.9: - resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==} + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.2 - '@babel/helper-split-export-declaration': 7.16.7 + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@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.20.2 + '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==} + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==} + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==} + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.9: - resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==} + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.2: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.9 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==} + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==} + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2: + resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-transforms': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 - babel-plugin-dynamic-import-node: 2.3.3 + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.9: - resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2: + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-transforms': 7.18.0 - '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-simple-access': 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.18.4_@babel+core@7.18.9: - resolution: {integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==} + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2: + resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-module-transforms': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-identifier': 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 + '@babel/core': 7.20.2 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==} + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-transforms': 7.18.0 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==} + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2: + resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.18.2 - transitivePeerDependencies: - - supports-color - - /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.9 - dev: true + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.6 - dev: true + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 + transitivePeerDependencies: + - supports-color - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.2: + resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.2 - dev: true + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 - dev: true + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 - '@babel/types': 7.18.4 + '@babel/core': 7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/types': 7.19.4 dev: true - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} + /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/types': 7.19.4 dev: true /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2: @@ -2407,285 +1908,259 @@ packages: '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/types': 7.19.4 - dev: true - - /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/types': 7.20.2 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.9: - resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==} + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - regenerator-transform: 0.15.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==} + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-runtime/7.18.2_@babel+core@7.18.9: - resolution: {integrity: sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg==} + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.2: + resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.17.12 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.9 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.9 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==} + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2: + resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.9: - resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==} + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==} + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.9: - resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} + /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.2: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.9: - resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/preset-env/7.18.2_@babel+core@7.18.9: - resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==} + /@babel/preset-env/7.20.2_@babel+core@7.20.2: + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.9 - '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.9 - '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.9 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.9 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.9 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.9 - '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.9 - '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.9 - '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.9 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.9 - '@babel/plugin-transform-modules-systemjs': 7.18.4_@babel+core@7.18.9 - '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.9 - '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.9 - '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.9 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.9 - '@babel/types': 7.18.4 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.9 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.9 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.9 - core-js-compat: 3.22.8 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2 + '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.2 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.2 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.2 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.2 + '@babel/types': 7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2 + core-js-compat: 3.26.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/preset-modules/0.1.5_@babel+core@7.18.9: + /@babel/preset-modules/0.1.5_@babel+core@7.20.2: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.9 - '@babel/types': 7.18.4 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 + '@babel/types': 7.20.2 esutils: 2.0.3 - /@babel/preset-react/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.9 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.9 - '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.9 - dev: true - - /@babel/preset-react/7.18.6_@babel+core@7.18.6: + /@babel/preset-react/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.2 dev: true - /@babel/preset-typescript/7.17.12_@babel+core@7.18.9: - resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} + /@babel/preset-typescript/7.18.6_@babel+core@7.20.2: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.17.12 - '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -2703,14 +2178,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 + dev: true - /@babel/template/7.16.7: - resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} + /@babel/runtime/7.20.1: + resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.16.7 - '@babel/parser': 7.18.4 - '@babel/types': 7.19.4 + regenerator-runtime: 0.13.11 /@babel/template/7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} @@ -2719,67 +2193,6 @@ packages: '@babel/code-frame': 7.18.6 '@babel/parser': 7.20.3 '@babel/types': 7.20.2 - dev: true - - /@babel/template/7.18.6: - resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.13 - '@babel/types': 7.18.9 - - /@babel/traverse/7.18.2: - resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/generator': 7.19.5 - '@babel/helper-environment-visitor': 7.18.2 - '@babel/helper-function-name': 7.17.9 - '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.18.4 - '@babel/types': 7.19.4 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - /@babel/traverse/7.18.8: - resolution: {integrity: sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.5 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.8 - '@babel/types': 7.19.4 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse/7.18.9: - resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.9 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.13 - '@babel/types': 7.18.9 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color /@babel/traverse/7.20.1: resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} @@ -2797,37 +2210,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true - - /@babel/types/7.18.4: - resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.16.7 - to-fast-properties: 2.0.0 - - /@babel/types/7.18.8: - resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.18.6 - to-fast-properties: 2.0.0 - dev: true - - /@babel/types/7.18.9: - resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.18.6 - to-fast-properties: 2.0.0 - - /@babel/types/7.19.4: - resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 - to-fast-properties: 2.0.0 /@babel/types/7.20.2: resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==} @@ -3163,22 +2545,22 @@ packages: postcss: 8.4.16 postcss-selector-parser: 6.0.10 - /@definitelytyped/header-parser/0.0.139: - resolution: {integrity: sha512-AwFhZLziDc4HaeyInk6uar+zp9q/+HSQO4tAOkEDWiCLzqQOInSIakAs8OsuDOmjll+LU6C0MiDRHQWyFgWFtg==} + /@definitelytyped/header-parser/0.0.140: + resolution: {integrity: sha512-bh5odviRpF3zHO9sz8OkxMIN8yqiZQSKzdgNLHLNtAEbme2p42fAzT1tEBkjmUHAJ/zntnBFyn7N/iCTcp5nmw==} dependencies: - '@definitelytyped/typescript-versions': 0.0.139 + '@definitelytyped/typescript-versions': 0.0.140 '@types/parsimmon': 1.10.6 parsimmon: 1.18.1 dev: true - /@definitelytyped/typescript-versions/0.0.139: - resolution: {integrity: sha512-9vhAc/3MhsMawbMMkhlPuvXOtqbxqC9kN88G9JAIujfrKGOnWWRzofo02fadDUMPZfoo4B54EEox9nepNCi5RQ==} + /@definitelytyped/typescript-versions/0.0.140: + resolution: {integrity: sha512-kWzD/k7IywjnVx8/RgCgBD0vZjzuyktrZ/JzwSBpaKZgq7RJZYlkGFhYaZNiRPfhz3A10k3KI/ILK9gcRZ7pkA==} dev: true - /@definitelytyped/utils/0.0.139: - resolution: {integrity: sha512-A1sgPeA6mXpCzjByleGeeah1coT6BPL948wINSSWXDoQ3MrAgHasxc/1R9F4yXDafCwhgOKBfXpT5lE1upZBNw==} + /@definitelytyped/utils/0.0.140: + resolution: {integrity: sha512-uqcZu8jeA+Ul05jxOvs7Sf0Bw2yL7P0YEGGxckmhL/DDx/7VJqE7ZnEGBY2lVgLEwqwQIXeoG7IUWDjBNCnntw==} dependencies: - '@definitelytyped/typescript-versions': 0.0.139 + '@definitelytyped/typescript-versions': 0.0.140 '@qiwi/npm-registry-client': 8.9.1 '@types/node': 14.18.33 charm: 1.0.2 @@ -3436,7 +2818,7 @@ packages: '@jest/test-result': 28.1.0 '@jest/transform': 28.1.0 '@jest/types': 28.1.0 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.17 '@types/node': 18.11.9 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -3470,7 +2852,7 @@ packages: resolution: {integrity: sha512-Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.17 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true @@ -3627,6 +3009,12 @@ packages: dev: true optional: true + /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + dependencies: + eslint-scope: 5.1.1 + dev: true + /@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -3695,7 +3083,7 @@ packages: npmlog: 4.1.2 dev: true - /@rollup/plugin-babel/5.3.1_ayiqorrx7dutx4scyxuyyyvhga: + /@rollup/plugin-babel/5.3.1_ttenojzoln4b7byjfj4rq2uhfm: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3706,8 +3094,8 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.18.6 - '@babel/helper-module-imports': 7.16.7 + '@babel/core': 7.20.2 + '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 3.1.0_rollup@2.76.0 rollup: 2.76.0 dev: true @@ -3835,7 +3223,7 @@ packages: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: '@babel/parser': 7.18.4 - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -3844,20 +3232,20 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.18.4 - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 dev: true /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.18.9 + '@babel/types': 7.20.2 dev: true /@types/body-parser/1.19.2: @@ -4828,6 +4216,14 @@ packages: picomatch: 2.3.1 dev: true + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + /aproba/1.2.0: resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} dev: true @@ -5071,24 +4467,6 @@ packages: js-tokens: 3.0.2 dev: true - /babel-jest/28.1.0_@babel+core@7.18.9: - resolution: {integrity: sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': 7.18.9 - '@jest/transform': 28.1.0 - '@types/babel__core': 7.1.19 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.0.2_@babel+core@7.18.9 - chalk: 4.1.2 - graceful-fs: 4.2.10 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest/28.1.0_@babel+core@7.20.2: resolution: {integrity: sha512-zNKk0yhDZ6QUwfxh9k07GII6siNGMJWVUU49gmFj5gfdqDKLqa2RArXOF2CODp4Dr7dLxN2cvAV+667dGJ4b4w==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -5107,14 +4485,14 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_sqoqrlbh4fciq6urcohea2fb5a: + /babel-loader/8.2.5_jzdsusohi23wobhstm6lj7n7ui: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -5135,21 +4513,16 @@ packages: webpack: 5.75.0_webpack-cli@5.0.0 dev: true - /babel-merge/3.0.0_@babel+core@7.18.9: + /babel-merge/3.0.0_@babel+core@7.20.2: resolution: {integrity: sha512-eBOBtHnzt9xvnjpYNI5HmaPp/b2vMveE5XggzqHnQeHJ8mFIBrBv6WZEVIj5jJ2uwTItkqKo9gWzEEcBxEq0yw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 deepmerge: 2.2.1 object.omit: 3.0.0 dev: false - /babel-plugin-dynamic-import-node/2.3.3: - resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} - dependencies: - object.assign: 4.1.4 - /babel-plugin-file-loader/1.1.1: resolution: {integrity: sha512-ORBZGJHxXv2Pd+lFsVqu4gwraBTTo32ue17MzdbWduT65k3rws9AlVWWmgDP59nFLJCfVkEcLLIbuR2C4lKVjw==} dependencies: @@ -5175,8 +4548,8 @@ packages: resolution: {integrity: sha512-Kizhn/ZL+68ZQHxSnHyuvJv8IchXD62KQxV77TBDV/xoBFBOfgRAk97GNs6hXdTTCiVES9nB2I6+7MXXrk5llQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/template': 7.16.7 - '@babel/types': 7.19.4 + '@babel/template': 7.18.10 + '@babel/types': 7.20.2 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -5204,36 +4577,36 @@ packages: resolve: 1.22.0 dev: true - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.9: - resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.2: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.9 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.9 + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 semver: 6.3.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.9: - resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.9 - core-js-compat: 3.22.8 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 + core-js-compat: 3.26.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.9: - resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.9 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 transitivePeerDependencies: - supports-color @@ -5249,26 +4622,6 @@ packages: regenerator-runtime: 0.10.5 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.9: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.9 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.9 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.9 - dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.2: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -5289,17 +4642,6 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 dev: true - /babel-preset-jest/28.0.2_@babel+core@7.18.9: - resolution: {integrity: sha512-sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.9 - babel-plugin-jest-hoist: 28.0.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.9 - dev: true - /babel-preset-jest/28.0.2_@babel+core@7.20.2: resolution: {integrity: sha512-sYzXIdgIXXroJTFeB3S6sNDWtlJ2dllCdTEsnZ65ACrMojj3hVNFRmnJ1HZtomGi+Be7aqpY/HJ92fr8OhKVkQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -5471,22 +4813,22 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001346 + caniuse-lite: 1.0.30001434 electron-to-chromium: 1.4.145 escalade: 3.1.1 node-releases: 2.0.5 picocolors: 1.0.0 + dev: true /browserslist/4.21.4: resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001434 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 - dev: true /bs-logger/0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -5570,6 +4912,7 @@ packages: dependencies: function-bind: 1.1.1 get-intrinsic: 1.1.1 + dev: true /caller-callsite/2.0.0: resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} @@ -5635,12 +4978,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite/1.0.30001346: - resolution: {integrity: sha512-q6ibZUO2t88QCIPayP/euuDREq+aMAxFE5S70PkrLh0iTDj/zEhgvJRKC2+CvXY6EWc6oQwUR48lL5vCW6jiXQ==} - - /caniuse-lite/1.0.30001431: - resolution: {integrity: sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==} - dev: true + /caniuse-lite/1.0.30001434: + resolution: {integrity: sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==} /capture-stack-trace/1.0.1: resolution: {integrity: sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==} @@ -5731,7 +5070,7 @@ packages: engines: {node: '>= 8.10.0'} requiresBuild: true dependencies: - anymatch: 3.1.2 + anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 @@ -6056,10 +5395,10 @@ packages: resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} dependencies: safe-buffer: 5.1.2 + dev: true /convert-source-map/1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - dev: true /cookie-signature/1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} @@ -6078,11 +5417,10 @@ packages: keygrip: 1.1.0 dev: false - /core-js-compat/3.22.8: - resolution: {integrity: sha512-pQnwg4xtuvc2Bs/5zYQPaEYYSuTxsF7LBWF0SvnVhthZo/Qe+rJpcEekrdNK5DWwDJ0gv0oI9NNX5Mppdy0ctg==} + /core-js-compat/3.26.1: + resolution: {integrity: sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==} dependencies: - browserslist: 4.20.3 - semver: 7.0.0 + browserslist: 4.21.4 /core-js-pure/3.22.8: resolution: {integrity: sha512-bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w==} @@ -6376,6 +5714,7 @@ packages: dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 + dev: true /del-cli/1.1.0: resolution: {integrity: sha512-fAIHB69nofiSIou3Ud00+izclcvqfFWbgRh2xqJeOGJniQ8Zx7q1Z0n1si+H8rsT95Qaro3DFnGgQmQioM/iYw==} @@ -6522,7 +5861,7 @@ packages: peerDependencies: typescript: '*' dependencies: - '@definitelytyped/header-parser': 0.0.139 + '@definitelytyped/header-parser': 0.0.140 command-exists: 1.2.9 rimraf: 3.0.2 semver: 6.3.0 @@ -6538,9 +5877,9 @@ packages: peerDependencies: typescript: '>= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev' dependencies: - '@definitelytyped/header-parser': 0.0.139 - '@definitelytyped/typescript-versions': 0.0.139 - '@definitelytyped/utils': 0.0.139 + '@definitelytyped/header-parser': 0.0.140 + '@definitelytyped/typescript-versions': 0.0.140 + '@definitelytyped/utils': 0.0.140 dts-critic: 3.3.11_typescript@4.7.4 fs-extra: 6.0.1 json-stable-stringify: 1.0.1 @@ -6571,10 +5910,10 @@ packages: /electron-to-chromium/1.4.145: resolution: {integrity: sha512-g4VQCi61gA0t5fJHsalxAc8NpvxC/CEwLAGLfJ+DmkRXTEyntJA7H01771uVD6X6nnViv3GToPgb0QOVA8ivOQ==} + dev: true /electron-to-chromium/1.4.284: resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} - dev: true /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -8171,7 +7510,7 @@ packages: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true /fs-monkey/1.0.3: @@ -8252,6 +7591,7 @@ packages: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 + dev: true /get-intrinsic/1.1.3: resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} @@ -8548,6 +7888,7 @@ packages: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.1.1 + dev: true /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -9415,7 +8756,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.20.2 - '@babel/parser': 7.18.4 + '@babel/parser': 7.20.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -9769,7 +9110,7 @@ packages: resolution: {integrity: sha512-RpA8mpaJ/B2HphDMiDlrAZdDytkmwFqgjDZovM21F35lHGeUeCvYmm6W+sbQ0ydaLpg5bFAUuWG1cjqOl8vqrw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/code-frame': 7.16.7 + '@babel/code-frame': 7.18.6 '@jest/types': 28.1.0 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -9894,10 +9235,10 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.20.2 - '@babel/generator': 7.19.5 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.20.2 - '@babel/traverse': 7.18.2 - '@babel/types': 7.19.4 + '@babel/generator': 7.20.4 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 '@jest/expect-utils': 28.1.0 '@jest/transform': 28.1.0 '@jest/types': 28.1.0 @@ -9915,7 +9256,7 @@ packages: jest-util: 28.1.0 natural-compare: 1.4.0 pretty-format: 28.1.0 - semver: 7.3.7 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true @@ -11219,8 +10560,8 @@ packages: /minimist/1.2.7: resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} - /minipass/3.3.4: - resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==} + /minipass/3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 @@ -11230,7 +10571,7 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 yallist: 4.0.0 dev: true @@ -11355,10 +10696,10 @@ packages: /node-releases/2.0.5: resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} + dev: true /node-releases/2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} - dev: true /normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} @@ -11453,6 +10794,7 @@ packages: /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} + dev: true /object.assign/4.1.2: resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} @@ -11472,6 +10814,7 @@ packages: define-properties: 1.1.4 has-symbols: 1.0.3 object-keys: 1.1.1 + dev: true /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} @@ -12491,8 +11834,8 @@ packages: indent-string: 4.0.0 strip-indent: 3.0.0 - /regenerate-unicode-properties/10.0.1: - resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} + /regenerate-unicode-properties/10.1.0: + resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -12508,13 +11851,17 @@ packages: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true + /regenerator-runtime/0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + /regenerator-runtime/0.13.9: resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + dev: true - /regenerator-transform/0.15.0: - resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} + /regenerator-transform/0.15.1: + resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.18.3 + '@babel/runtime': 7.20.1 /regexp.prototype.flags/1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} @@ -12530,16 +11877,16 @@ packages: engines: {node: '>=8'} dev: true - /regexpu-core/5.0.1: - resolution: {integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==} + /regexpu-core/5.2.2: + resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - regenerate-unicode-properties: 10.0.1 - regjsgen: 0.6.0 - regjsparser: 0.8.4 + regenerate-unicode-properties: 10.1.0 + regjsgen: 0.7.1 + regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 /registry-auth-token/3.4.0: resolution: {integrity: sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==} @@ -12555,11 +11902,11 @@ packages: rc: 1.2.8 dev: true - /regjsgen/0.6.0: - resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} + /regjsgen/0.7.1: + resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} - /regjsparser/0.8.4: - resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} + /regjsparser/0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 @@ -12752,7 +12099,6 @@ packages: is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true /resolve/2.0.0-next.3: resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} @@ -12896,7 +12242,7 @@ packages: /rtl-css-js/1.15.0: resolution: {integrity: sha512-99Cu4wNNIhrI10xxUaABHsdDqzalrSRTie4GeCmbGVuehm4oj+fIy8fTzB+16pmKe8Bv9rl+hxIBez6KxExTew==} dependencies: - '@babel/runtime': 7.18.3 + '@babel/runtime': 7.20.1 dev: false /run-async/2.4.1: @@ -13029,10 +12375,6 @@ packages: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.0.0: - resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} - hasBin: true - /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} @@ -13366,7 +12708,7 @@ packages: resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true /stack-utils/2.0.5: @@ -13806,7 +13148,7 @@ packages: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 3.3.4 + minipass: 3.3.6 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -13867,7 +13209,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.0 terser: 5.14.0 - webpack: 5.73.0 + webpack: 5.73.0_webpack-cli@4.9.2 dev: true /terser-webpack-plugin/5.3.6_webpack@5.75.0: @@ -14069,7 +13411,7 @@ packages: tslib: 2.4.0 dev: false - /ts-jest/28.0.4_ppxpzp26on3nfwb7yosvsqarey: + /ts-jest/28.0.4_7im4dvioa2uvrabfr5amyoxi3e: resolution: {integrity: sha512-S6uRDDdCJBvnZqyGjB4VCnwbQrbgdL8WPeP4jevVSpYsBaeGRQAIS08o3Svav2Ex+oXwLgJ/m7F24TNq62kA1A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -14087,7 +13429,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.18.9 + '@babel/core': 7.20.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 28.1.0_@types+node@17.0.39 @@ -14388,14 +13730,14 @@ packages: engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 - /unicode-match-property-value-ecmascript/2.0.0: - resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} + /unicode-match-property-value-ecmascript/2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} - /unicode-property-aliases-ecmascript/2.0.0: - resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} + /unicode-property-aliases-ecmascript/2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} /unified/10.1.2: @@ -14518,7 +13860,6 @@ packages: browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 - dev: true /update-notifier/2.5.0: resolution: {integrity: sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==} @@ -14602,9 +13943,9 @@ packages: resolution: {integrity: sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 dev: true /validate-npm-package-license/3.0.4: @@ -15191,7 +14532,7 @@ packages: /wide-align/1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: - string-width: 4.2.3 + string-width: 1.0.2 dev: true optional: true diff --git a/website/package.json b/website/package.json index 11e31434f..fdbe0fa54 100644 --- a/website/package.json +++ b/website/package.json @@ -3,7 +3,7 @@ "description": "Linaria website", "version": "4.1.8", "dependencies": { - "@babel/runtime": "^7.18.3", + "@babel/runtime": "^7.20.1", "@linaria/atomic": "workspace:^", "@linaria/core": "workspace:^", "@linaria/react": "workspace:^", @@ -20,8 +20,8 @@ "react-dom": "^16.14.0" }, "devDependencies": { - "@babel/cli": "^7.18.9", - "@babel/core": "^7.18.9", + "@babel/cli": "^7.19.3", + "@babel/core": "^7.20.2", "@linaria/babel-preset": "workspace:^", "@linaria/shaker": "workspace:^", "@linaria/stylelint": "workspace:^",