├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── rollup.config.ts ├── src └── index.tsx └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: '@typescript-eslint/parser', 3 | parserOptions: { 4 | ecmaVersion: 'latest', 5 | sourceType: 'module', 6 | project: './tsconfig.json', 7 | createDefaultProgram: true, 8 | }, 9 | plugins: ['@typescript-eslint'], 10 | extends: ['react-app', 'plugin:@typescript-eslint/recommended', 'prettier'], 11 | env: { 12 | browser: true, 13 | node: true, 14 | es6: true, 15 | }, 16 | settings: { 17 | 'import/resolver': { node: { extensions: ['.ts', '.tsx'] } }, 18 | }, 19 | }; 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2012-2022 Howard Yang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-with-stable 2 | 3 | [![npm](https://img.shields.io/npm/v/react-with-stable?style=flat-square)](https://www.npmjs.com/package/react-with-stable) 4 | [![npm bundle size](https://img.shields.io/bundlephobia/minzip/react-with-stable?style=flat-square)](https://bundlephobia.com/result?p=react-with-stable) 5 | [![npm type definitions](https://img.shields.io/npm/types/typescript?style=flat-square)](https://github.com/oney/react-with-stable/blob/master/src/index.tsx) 6 | [![GitHub](https://img.shields.io/github/license/oney/react-with-stable?style=flat-square)](https://github.com/oney/react-with-stable/blob/master/LICENSE) 7 | 8 | This package provides stable **inline callbacks** when passing props. 9 | 10 | Please ⭐ star this repo if it's useful! 11 | 12 | ## Stable inline event callback 13 | 14 | Take [this example](https://github.com/reactjs/rfcs/blob/useevent/text/0000-useevent.md#reading-stateprops-in-event-handlers-breaks-optimizations) from `useEvent` RFC. 15 | ```jsx 16 | import { withStable } from "react-with-stable"; 17 | 18 | const SendButton = withStable(["onClick"], ({ onClick }) => ( 19 | 20 | )); 21 | 22 | function Chat() { 23 | const [text, setText] = useState(''); 24 | return { sendMessage(text); }} />; 25 | } 26 | ``` 27 | 28 | No matter how `text` state changes, the `Chat` component never re-renders because `onClick` is declared as a stable prop. 29 | But when `onClick` fires as an event handler, it will get the latest `text` value. 30 | 31 | Note: don't use `onClick` in rendering. 32 | 33 | ## Stable inline callback for render or effect 34 | ```jsx 35 | import { withStable, depFn } from "react-with-stable"; 36 | 37 | const Render = withStable([], ({ render }) => { 38 | useEffect(() => { 39 | console.log(render()); 40 | }, [render]); 41 | return
{render()}; 42 | }); 43 | 44 | export default function App() { 45 | const [text, setText] = React.useState("a"); 46 | const [other, setOther] = React.useState("a"); 47 | 48 | return ( 49 |
50 | `render: ${text}`, [text])}/> 51 |
52 | ); 53 | } 54 | ``` 55 | 56 | When `other` changes but `text` doesn't change, the `Render` component never re-renders because its props `render` callback is wrapped by `depFn` with the dependency which is `text`. 57 | 58 | You can consider `depFn` as inline `useCallback` that provides memo callbacks when the dependencies are the same. 59 | 60 | ## Demo 61 | Please check [this codesandbox example](https://codesandbox.io/s/withstable-hoc-ogfep7?file=/src/App.tsx). It proves that the `withStable` wrapped components never re-render unless 62 | 1. other non-stable props change 63 | OR 64 | 2. dependencies of `depFn` wrapped callback change. 65 | 66 | ## Explanation 67 | This package basically does the same thing as `useEventHandler` like [many](https://github.com/Volune/use-event-callback) [community](https://ahooks.js.org/hooks/use-memoized-fn) [implementaion](https://reactjs.org/docs/hooks-faq.html#how-to-read-an-often-changing-value-from-usecallback) and [`useEvent` RFC](https://github.com/reactjs/rfcs/pull/220) the React team is working on. The difference is that it wraps callbacks in HOC, so it can provide stable identity for **inline callback** where hook methods can't achieve it. 68 | 69 | You have to explicitly provide stable prop keys in the first parameter of `withStable` like `withStable(["onClick"],`. This is actually better in concept in most scenario because it should be the callback consumer (i.e. `Chat` component) to know this prop (`onClick`) is stable and only used in events. 70 | 71 | For `depFn` usage, just consider it as inline `useCallback`, and list all values used in the callback to the second parameter. 72 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-with-stable", 3 | "version": "0.2.0", 4 | "description": "React withStable HOC", 5 | "license": "MIT", 6 | "keywords": [ 7 | "react", 8 | "hoc", 9 | "stable-callback", 10 | "react-with-stable" 11 | ], 12 | "repository": "https://github.com/oney/react-with-stable.git", 13 | "author": "Howard Yang ", 14 | "homepage": "https://github.com/oney/react-with-stable", 15 | "bugs": "https://github.com/oney/react-with-stable/issues", 16 | "main": "dist/react-with-stable.cjs.js", 17 | "module": "dist/react-with-stable.esm.js", 18 | "types": "dist/react-with-stable.d.ts", 19 | "files": [ 20 | "dist" 21 | ], 22 | "scripts": { 23 | "watch": "rollup -wc --configPlugin @rollup/plugin-typescript", 24 | "build": "rm -rf dist && rollup -c --configPlugin @rollup/plugin-typescript" 25 | }, 26 | "peerDependencies": { 27 | "react": ">=16.8.0", 28 | "react-dom": ">=16.8.0" 29 | }, 30 | "devDependencies": { 31 | "@rollup/plugin-typescript": "^8.3.2", 32 | "@types/node": "^17.0.35", 33 | "@types/react": "^18.0.9", 34 | "@types/react-dom": "^18.0.5", 35 | "@typescript-eslint/eslint-plugin": "^5.26.0", 36 | "@typescript-eslint/parser": "^5.26.0", 37 | "eslint": "^8.16.0", 38 | "eslint-config-prettier": "^8.5.0", 39 | "eslint-config-react-app": "^7.0.1", 40 | "eslint-plugin-import": "^2.26.0", 41 | "prettier": "^2.6.2", 42 | "react": "^18.1.0", 43 | "react-dom": "^18.1.0", 44 | "rollup": "^2.74.1", 45 | "rollup-plugin-dts": "^4.2.1", 46 | "tslib": "^2.4.0", 47 | "typescript": "^4.6.4" 48 | }, 49 | "eslintIgnore": [ 50 | "dist" 51 | ], 52 | "prettier": { 53 | "singleQuote": true 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.3 2 | 3 | specifiers: 4 | '@rollup/plugin-typescript': ^8.3.2 5 | '@types/node': ^17.0.35 6 | '@types/react': ^18.0.9 7 | '@types/react-dom': ^18.0.5 8 | '@typescript-eslint/eslint-plugin': ^5.26.0 9 | '@typescript-eslint/parser': ^5.26.0 10 | eslint: ^8.16.0 11 | eslint-config-prettier: ^8.5.0 12 | eslint-config-react-app: ^7.0.1 13 | eslint-plugin-import: ^2.26.0 14 | prettier: ^2.6.2 15 | react: ^18.1.0 16 | react-dom: ^18.1.0 17 | rollup: ^2.74.1 18 | rollup-plugin-dts: ^4.2.1 19 | tslib: ^2.4.0 20 | typescript: ^4.6.4 21 | 22 | devDependencies: 23 | '@rollup/plugin-typescript': 8.3.2_259b674e2843eb0fd9f2d7fd95b5b7a6 24 | '@types/node': 17.0.35 25 | '@types/react': 18.0.9 26 | '@types/react-dom': 18.0.5 27 | '@typescript-eslint/eslint-plugin': 5.26.0_3538258888b78689808cec7bffc2237a 28 | '@typescript-eslint/parser': 5.26.0_eslint@8.16.0+typescript@4.6.4 29 | eslint: 8.16.0 30 | eslint-config-prettier: 8.5.0_eslint@8.16.0 31 | eslint-config-react-app: 7.0.1_eslint@8.16.0+typescript@4.6.4 32 | eslint-plugin-import: 2.26.0_eslint@8.16.0 33 | prettier: 2.6.2 34 | react: 18.1.0 35 | react-dom: 18.1.0_react@18.1.0 36 | rollup: 2.74.1 37 | rollup-plugin-dts: 4.2.1_rollup@2.74.1+typescript@4.6.4 38 | tslib: 2.4.0 39 | typescript: 4.6.4 40 | 41 | packages: 42 | 43 | /@ampproject/remapping/2.2.0: 44 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} 45 | engines: {node: '>=6.0.0'} 46 | dependencies: 47 | '@jridgewell/gen-mapping': 0.1.1 48 | '@jridgewell/trace-mapping': 0.3.13 49 | dev: true 50 | 51 | /@babel/code-frame/7.16.7: 52 | resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} 53 | engines: {node: '>=6.9.0'} 54 | dependencies: 55 | '@babel/highlight': 7.17.12 56 | dev: true 57 | 58 | /@babel/compat-data/7.17.10: 59 | resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} 60 | engines: {node: '>=6.9.0'} 61 | dev: true 62 | 63 | /@babel/core/7.18.0: 64 | resolution: {integrity: sha512-Xyw74OlJwDijToNi0+6BBI5mLLR5+5R3bcSH80LXzjzEGEUlvNzujEE71BaD/ApEZHAvFI/Mlmp4M5lIkdeeWw==} 65 | engines: {node: '>=6.9.0'} 66 | dependencies: 67 | '@ampproject/remapping': 2.2.0 68 | '@babel/code-frame': 7.16.7 69 | '@babel/generator': 7.18.0 70 | '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 71 | '@babel/helper-module-transforms': 7.18.0 72 | '@babel/helpers': 7.18.0 73 | '@babel/parser': 7.18.0 74 | '@babel/template': 7.16.7 75 | '@babel/traverse': 7.18.0 76 | '@babel/types': 7.18.0 77 | convert-source-map: 1.8.0 78 | debug: 4.3.4 79 | gensync: 1.0.0-beta.2 80 | json5: 2.2.1 81 | semver: 6.3.0 82 | transitivePeerDependencies: 83 | - supports-color 84 | dev: true 85 | 86 | /@babel/eslint-parser/7.17.0_@babel+core@7.18.0+eslint@8.16.0: 87 | resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} 88 | engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 89 | peerDependencies: 90 | '@babel/core': '>=7.11.0' 91 | eslint: ^7.5.0 || ^8.0.0 92 | dependencies: 93 | '@babel/core': 7.18.0 94 | eslint: 8.16.0 95 | eslint-scope: 5.1.1 96 | eslint-visitor-keys: 2.1.0 97 | semver: 6.3.0 98 | dev: true 99 | 100 | /@babel/generator/7.18.0: 101 | resolution: {integrity: sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==} 102 | engines: {node: '>=6.9.0'} 103 | dependencies: 104 | '@babel/types': 7.18.0 105 | '@jridgewell/gen-mapping': 0.3.1 106 | jsesc: 2.5.2 107 | dev: true 108 | 109 | /@babel/helper-annotate-as-pure/7.16.7: 110 | resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} 111 | engines: {node: '>=6.9.0'} 112 | dependencies: 113 | '@babel/types': 7.18.0 114 | dev: true 115 | 116 | /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: 117 | resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} 118 | engines: {node: '>=6.9.0'} 119 | dependencies: 120 | '@babel/helper-explode-assignable-expression': 7.16.7 121 | '@babel/types': 7.18.0 122 | dev: true 123 | 124 | /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0: 125 | resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} 126 | engines: {node: '>=6.9.0'} 127 | peerDependencies: 128 | '@babel/core': ^7.0.0 129 | dependencies: 130 | '@babel/compat-data': 7.17.10 131 | '@babel/core': 7.18.0 132 | '@babel/helper-validator-option': 7.16.7 133 | browserslist: 4.20.3 134 | semver: 6.3.0 135 | dev: true 136 | 137 | /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0: 138 | resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} 139 | engines: {node: '>=6.9.0'} 140 | peerDependencies: 141 | '@babel/core': ^7.0.0 142 | dependencies: 143 | '@babel/core': 7.18.0 144 | '@babel/helper-annotate-as-pure': 7.16.7 145 | '@babel/helper-environment-visitor': 7.16.7 146 | '@babel/helper-function-name': 7.17.9 147 | '@babel/helper-member-expression-to-functions': 7.17.7 148 | '@babel/helper-optimise-call-expression': 7.16.7 149 | '@babel/helper-replace-supers': 7.16.7 150 | '@babel/helper-split-export-declaration': 7.16.7 151 | transitivePeerDependencies: 152 | - supports-color 153 | dev: true 154 | 155 | /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.0: 156 | resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} 157 | engines: {node: '>=6.9.0'} 158 | peerDependencies: 159 | '@babel/core': ^7.0.0 160 | dependencies: 161 | '@babel/core': 7.18.0 162 | '@babel/helper-annotate-as-pure': 7.16.7 163 | regexpu-core: 5.0.1 164 | dev: true 165 | 166 | /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.0: 167 | resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} 168 | peerDependencies: 169 | '@babel/core': ^7.4.0-0 170 | dependencies: 171 | '@babel/core': 7.18.0 172 | '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 173 | '@babel/helper-module-imports': 7.16.7 174 | '@babel/helper-plugin-utils': 7.17.12 175 | '@babel/traverse': 7.18.0 176 | debug: 4.3.4 177 | lodash.debounce: 4.0.8 178 | resolve: 1.22.0 179 | semver: 6.3.0 180 | transitivePeerDependencies: 181 | - supports-color 182 | dev: true 183 | 184 | /@babel/helper-environment-visitor/7.16.7: 185 | resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} 186 | engines: {node: '>=6.9.0'} 187 | dependencies: 188 | '@babel/types': 7.18.0 189 | dev: true 190 | 191 | /@babel/helper-explode-assignable-expression/7.16.7: 192 | resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} 193 | engines: {node: '>=6.9.0'} 194 | dependencies: 195 | '@babel/types': 7.18.0 196 | dev: true 197 | 198 | /@babel/helper-function-name/7.17.9: 199 | resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} 200 | engines: {node: '>=6.9.0'} 201 | dependencies: 202 | '@babel/template': 7.16.7 203 | '@babel/types': 7.18.0 204 | dev: true 205 | 206 | /@babel/helper-hoist-variables/7.16.7: 207 | resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} 208 | engines: {node: '>=6.9.0'} 209 | dependencies: 210 | '@babel/types': 7.18.0 211 | dev: true 212 | 213 | /@babel/helper-member-expression-to-functions/7.17.7: 214 | resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} 215 | engines: {node: '>=6.9.0'} 216 | dependencies: 217 | '@babel/types': 7.18.0 218 | dev: true 219 | 220 | /@babel/helper-module-imports/7.16.7: 221 | resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} 222 | engines: {node: '>=6.9.0'} 223 | dependencies: 224 | '@babel/types': 7.18.0 225 | dev: true 226 | 227 | /@babel/helper-module-transforms/7.18.0: 228 | resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} 229 | engines: {node: '>=6.9.0'} 230 | dependencies: 231 | '@babel/helper-environment-visitor': 7.16.7 232 | '@babel/helper-module-imports': 7.16.7 233 | '@babel/helper-simple-access': 7.17.7 234 | '@babel/helper-split-export-declaration': 7.16.7 235 | '@babel/helper-validator-identifier': 7.16.7 236 | '@babel/template': 7.16.7 237 | '@babel/traverse': 7.18.0 238 | '@babel/types': 7.18.0 239 | transitivePeerDependencies: 240 | - supports-color 241 | dev: true 242 | 243 | /@babel/helper-optimise-call-expression/7.16.7: 244 | resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} 245 | engines: {node: '>=6.9.0'} 246 | dependencies: 247 | '@babel/types': 7.18.0 248 | dev: true 249 | 250 | /@babel/helper-plugin-utils/7.17.12: 251 | resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} 252 | engines: {node: '>=6.9.0'} 253 | dev: true 254 | 255 | /@babel/helper-remap-async-to-generator/7.16.8: 256 | resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==} 257 | engines: {node: '>=6.9.0'} 258 | dependencies: 259 | '@babel/helper-annotate-as-pure': 7.16.7 260 | '@babel/helper-wrap-function': 7.16.8 261 | '@babel/types': 7.18.0 262 | transitivePeerDependencies: 263 | - supports-color 264 | dev: true 265 | 266 | /@babel/helper-replace-supers/7.16.7: 267 | resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} 268 | engines: {node: '>=6.9.0'} 269 | dependencies: 270 | '@babel/helper-environment-visitor': 7.16.7 271 | '@babel/helper-member-expression-to-functions': 7.17.7 272 | '@babel/helper-optimise-call-expression': 7.16.7 273 | '@babel/traverse': 7.18.0 274 | '@babel/types': 7.18.0 275 | transitivePeerDependencies: 276 | - supports-color 277 | dev: true 278 | 279 | /@babel/helper-simple-access/7.17.7: 280 | resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} 281 | engines: {node: '>=6.9.0'} 282 | dependencies: 283 | '@babel/types': 7.18.0 284 | dev: true 285 | 286 | /@babel/helper-skip-transparent-expression-wrappers/7.16.0: 287 | resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} 288 | engines: {node: '>=6.9.0'} 289 | dependencies: 290 | '@babel/types': 7.18.0 291 | dev: true 292 | 293 | /@babel/helper-split-export-declaration/7.16.7: 294 | resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} 295 | engines: {node: '>=6.9.0'} 296 | dependencies: 297 | '@babel/types': 7.18.0 298 | dev: true 299 | 300 | /@babel/helper-validator-identifier/7.16.7: 301 | resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} 302 | engines: {node: '>=6.9.0'} 303 | dev: true 304 | 305 | /@babel/helper-validator-option/7.16.7: 306 | resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} 307 | engines: {node: '>=6.9.0'} 308 | dev: true 309 | 310 | /@babel/helper-wrap-function/7.16.8: 311 | resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} 312 | engines: {node: '>=6.9.0'} 313 | dependencies: 314 | '@babel/helper-function-name': 7.17.9 315 | '@babel/template': 7.16.7 316 | '@babel/traverse': 7.18.0 317 | '@babel/types': 7.18.0 318 | transitivePeerDependencies: 319 | - supports-color 320 | dev: true 321 | 322 | /@babel/helpers/7.18.0: 323 | resolution: {integrity: sha512-AE+HMYhmlMIbho9nbvicHyxFwhrO+xhKB6AhRxzl8w46Yj0VXTZjEsAoBVC7rB2I0jzX+yWyVybnO08qkfx6kg==} 324 | engines: {node: '>=6.9.0'} 325 | dependencies: 326 | '@babel/template': 7.16.7 327 | '@babel/traverse': 7.18.0 328 | '@babel/types': 7.18.0 329 | transitivePeerDependencies: 330 | - supports-color 331 | dev: true 332 | 333 | /@babel/highlight/7.17.12: 334 | resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} 335 | engines: {node: '>=6.9.0'} 336 | dependencies: 337 | '@babel/helper-validator-identifier': 7.16.7 338 | chalk: 2.4.2 339 | js-tokens: 4.0.0 340 | dev: true 341 | 342 | /@babel/parser/7.18.0: 343 | resolution: {integrity: sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg==} 344 | engines: {node: '>=6.0.0'} 345 | hasBin: true 346 | dev: true 347 | 348 | /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.0: 349 | resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==} 350 | engines: {node: '>=6.9.0'} 351 | peerDependencies: 352 | '@babel/core': ^7.0.0 353 | dependencies: 354 | '@babel/core': 7.18.0 355 | '@babel/helper-plugin-utils': 7.17.12 356 | dev: true 357 | 358 | /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.0: 359 | resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==} 360 | engines: {node: '>=6.9.0'} 361 | peerDependencies: 362 | '@babel/core': ^7.13.0 363 | dependencies: 364 | '@babel/core': 7.18.0 365 | '@babel/helper-plugin-utils': 7.17.12 366 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 367 | '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0 368 | dev: true 369 | 370 | /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.0: 371 | resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==} 372 | engines: {node: '>=6.9.0'} 373 | peerDependencies: 374 | '@babel/core': ^7.0.0-0 375 | dependencies: 376 | '@babel/core': 7.18.0 377 | '@babel/helper-plugin-utils': 7.17.12 378 | '@babel/helper-remap-async-to-generator': 7.16.8 379 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 380 | transitivePeerDependencies: 381 | - supports-color 382 | dev: true 383 | 384 | /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.0: 385 | resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} 386 | engines: {node: '>=6.9.0'} 387 | peerDependencies: 388 | '@babel/core': ^7.0.0-0 389 | dependencies: 390 | '@babel/core': 7.18.0 391 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 392 | '@babel/helper-plugin-utils': 7.17.12 393 | transitivePeerDependencies: 394 | - supports-color 395 | dev: true 396 | 397 | /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.0: 398 | resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==} 399 | engines: {node: '>=6.9.0'} 400 | peerDependencies: 401 | '@babel/core': ^7.12.0 402 | dependencies: 403 | '@babel/core': 7.18.0 404 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 405 | '@babel/helper-plugin-utils': 7.17.12 406 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 407 | transitivePeerDependencies: 408 | - supports-color 409 | dev: true 410 | 411 | /@babel/plugin-proposal-decorators/7.17.12_@babel+core@7.18.0: 412 | resolution: {integrity: sha512-gL0qSSeIk/VRfTDgtQg/EtejENssN/r3p5gJsPie1UacwiHibprpr19Z0pcK3XKuqQvjGVxsQ37Tl1MGfXzonA==} 413 | engines: {node: '>=6.9.0'} 414 | peerDependencies: 415 | '@babel/core': ^7.0.0-0 416 | dependencies: 417 | '@babel/core': 7.18.0 418 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 419 | '@babel/helper-plugin-utils': 7.17.12 420 | '@babel/helper-replace-supers': 7.16.7 421 | '@babel/helper-split-export-declaration': 7.16.7 422 | '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.0 423 | charcodes: 0.2.0 424 | transitivePeerDependencies: 425 | - supports-color 426 | dev: true 427 | 428 | /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.0: 429 | resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} 430 | engines: {node: '>=6.9.0'} 431 | peerDependencies: 432 | '@babel/core': ^7.0.0-0 433 | dependencies: 434 | '@babel/core': 7.18.0 435 | '@babel/helper-plugin-utils': 7.17.12 436 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 437 | dev: true 438 | 439 | /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.0: 440 | resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==} 441 | engines: {node: '>=6.9.0'} 442 | peerDependencies: 443 | '@babel/core': ^7.0.0-0 444 | dependencies: 445 | '@babel/core': 7.18.0 446 | '@babel/helper-plugin-utils': 7.17.12 447 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 448 | dev: true 449 | 450 | /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.0: 451 | resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==} 452 | engines: {node: '>=6.9.0'} 453 | peerDependencies: 454 | '@babel/core': ^7.0.0-0 455 | dependencies: 456 | '@babel/core': 7.18.0 457 | '@babel/helper-plugin-utils': 7.17.12 458 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 459 | dev: true 460 | 461 | /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.0: 462 | resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==} 463 | engines: {node: '>=6.9.0'} 464 | peerDependencies: 465 | '@babel/core': ^7.0.0-0 466 | dependencies: 467 | '@babel/core': 7.18.0 468 | '@babel/helper-plugin-utils': 7.17.12 469 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 470 | dev: true 471 | 472 | /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.0: 473 | resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} 474 | engines: {node: '>=6.9.0'} 475 | peerDependencies: 476 | '@babel/core': ^7.0.0-0 477 | dependencies: 478 | '@babel/core': 7.18.0 479 | '@babel/helper-plugin-utils': 7.17.12 480 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 481 | dev: true 482 | 483 | /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.0: 484 | resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} 485 | engines: {node: '>=6.9.0'} 486 | peerDependencies: 487 | '@babel/core': ^7.0.0-0 488 | dependencies: 489 | '@babel/core': 7.18.0 490 | '@babel/helper-plugin-utils': 7.17.12 491 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 492 | dev: true 493 | 494 | /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.0: 495 | resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==} 496 | engines: {node: '>=6.9.0'} 497 | peerDependencies: 498 | '@babel/core': ^7.0.0-0 499 | dependencies: 500 | '@babel/compat-data': 7.17.10 501 | '@babel/core': 7.18.0 502 | '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 503 | '@babel/helper-plugin-utils': 7.17.12 504 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 505 | '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 506 | dev: true 507 | 508 | /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.0: 509 | resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} 510 | engines: {node: '>=6.9.0'} 511 | peerDependencies: 512 | '@babel/core': ^7.0.0-0 513 | dependencies: 514 | '@babel/core': 7.18.0 515 | '@babel/helper-plugin-utils': 7.17.12 516 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 517 | dev: true 518 | 519 | /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.0: 520 | resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} 521 | engines: {node: '>=6.9.0'} 522 | peerDependencies: 523 | '@babel/core': ^7.0.0-0 524 | dependencies: 525 | '@babel/core': 7.18.0 526 | '@babel/helper-plugin-utils': 7.17.12 527 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 528 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 529 | dev: true 530 | 531 | /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.0: 532 | resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==} 533 | engines: {node: '>=6.9.0'} 534 | peerDependencies: 535 | '@babel/core': ^7.0.0-0 536 | dependencies: 537 | '@babel/core': 7.18.0 538 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 539 | '@babel/helper-plugin-utils': 7.17.12 540 | transitivePeerDependencies: 541 | - supports-color 542 | dev: true 543 | 544 | /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.0: 545 | resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==} 546 | engines: {node: '>=6.9.0'} 547 | peerDependencies: 548 | '@babel/core': ^7.0.0-0 549 | dependencies: 550 | '@babel/core': 7.18.0 551 | '@babel/helper-annotate-as-pure': 7.16.7 552 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 553 | '@babel/helper-plugin-utils': 7.17.12 554 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 555 | transitivePeerDependencies: 556 | - supports-color 557 | dev: true 558 | 559 | /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.0: 560 | resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==} 561 | engines: {node: '>=4'} 562 | peerDependencies: 563 | '@babel/core': ^7.0.0-0 564 | dependencies: 565 | '@babel/core': 7.18.0 566 | '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 567 | '@babel/helper-plugin-utils': 7.17.12 568 | dev: true 569 | 570 | /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.0: 571 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} 572 | peerDependencies: 573 | '@babel/core': ^7.0.0-0 574 | dependencies: 575 | '@babel/core': 7.18.0 576 | '@babel/helper-plugin-utils': 7.17.12 577 | dev: true 578 | 579 | /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.0: 580 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} 581 | peerDependencies: 582 | '@babel/core': ^7.0.0-0 583 | dependencies: 584 | '@babel/core': 7.18.0 585 | '@babel/helper-plugin-utils': 7.17.12 586 | dev: true 587 | 588 | /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.0: 589 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} 590 | engines: {node: '>=6.9.0'} 591 | peerDependencies: 592 | '@babel/core': ^7.0.0-0 593 | dependencies: 594 | '@babel/core': 7.18.0 595 | '@babel/helper-plugin-utils': 7.17.12 596 | dev: true 597 | 598 | /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.0: 599 | resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==} 600 | engines: {node: '>=6.9.0'} 601 | peerDependencies: 602 | '@babel/core': ^7.0.0-0 603 | dependencies: 604 | '@babel/core': 7.18.0 605 | '@babel/helper-plugin-utils': 7.17.12 606 | dev: true 607 | 608 | /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.0: 609 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} 610 | peerDependencies: 611 | '@babel/core': ^7.0.0-0 612 | dependencies: 613 | '@babel/core': 7.18.0 614 | '@babel/helper-plugin-utils': 7.17.12 615 | dev: true 616 | 617 | /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.0: 618 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} 619 | peerDependencies: 620 | '@babel/core': ^7.0.0-0 621 | dependencies: 622 | '@babel/core': 7.18.0 623 | '@babel/helper-plugin-utils': 7.17.12 624 | dev: true 625 | 626 | /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.0: 627 | resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==} 628 | engines: {node: '>=6.9.0'} 629 | peerDependencies: 630 | '@babel/core': ^7.0.0-0 631 | dependencies: 632 | '@babel/core': 7.18.0 633 | '@babel/helper-plugin-utils': 7.17.12 634 | dev: true 635 | 636 | /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.0: 637 | resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==} 638 | engines: {node: '>=6.9.0'} 639 | peerDependencies: 640 | '@babel/core': ^7.0.0-0 641 | dependencies: 642 | '@babel/core': 7.18.0 643 | '@babel/helper-plugin-utils': 7.17.12 644 | dev: true 645 | 646 | /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.0: 647 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} 648 | peerDependencies: 649 | '@babel/core': ^7.0.0-0 650 | dependencies: 651 | '@babel/core': 7.18.0 652 | '@babel/helper-plugin-utils': 7.17.12 653 | dev: true 654 | 655 | /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.0: 656 | resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} 657 | engines: {node: '>=6.9.0'} 658 | peerDependencies: 659 | '@babel/core': ^7.0.0-0 660 | dependencies: 661 | '@babel/core': 7.18.0 662 | '@babel/helper-plugin-utils': 7.17.12 663 | dev: true 664 | 665 | /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.0: 666 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} 667 | peerDependencies: 668 | '@babel/core': ^7.0.0-0 669 | dependencies: 670 | '@babel/core': 7.18.0 671 | '@babel/helper-plugin-utils': 7.17.12 672 | dev: true 673 | 674 | /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.0: 675 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} 676 | peerDependencies: 677 | '@babel/core': ^7.0.0-0 678 | dependencies: 679 | '@babel/core': 7.18.0 680 | '@babel/helper-plugin-utils': 7.17.12 681 | dev: true 682 | 683 | /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.0: 684 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} 685 | peerDependencies: 686 | '@babel/core': ^7.0.0-0 687 | dependencies: 688 | '@babel/core': 7.18.0 689 | '@babel/helper-plugin-utils': 7.17.12 690 | dev: true 691 | 692 | /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.0: 693 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} 694 | peerDependencies: 695 | '@babel/core': ^7.0.0-0 696 | dependencies: 697 | '@babel/core': 7.18.0 698 | '@babel/helper-plugin-utils': 7.17.12 699 | dev: true 700 | 701 | /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.0: 702 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} 703 | peerDependencies: 704 | '@babel/core': ^7.0.0-0 705 | dependencies: 706 | '@babel/core': 7.18.0 707 | '@babel/helper-plugin-utils': 7.17.12 708 | dev: true 709 | 710 | /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.0: 711 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} 712 | peerDependencies: 713 | '@babel/core': ^7.0.0-0 714 | dependencies: 715 | '@babel/core': 7.18.0 716 | '@babel/helper-plugin-utils': 7.17.12 717 | dev: true 718 | 719 | /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.0: 720 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} 721 | engines: {node: '>=6.9.0'} 722 | peerDependencies: 723 | '@babel/core': ^7.0.0-0 724 | dependencies: 725 | '@babel/core': 7.18.0 726 | '@babel/helper-plugin-utils': 7.17.12 727 | dev: true 728 | 729 | /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.0: 730 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} 731 | engines: {node: '>=6.9.0'} 732 | peerDependencies: 733 | '@babel/core': ^7.0.0-0 734 | dependencies: 735 | '@babel/core': 7.18.0 736 | '@babel/helper-plugin-utils': 7.17.12 737 | dev: true 738 | 739 | /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.0: 740 | resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} 741 | engines: {node: '>=6.9.0'} 742 | peerDependencies: 743 | '@babel/core': ^7.0.0-0 744 | dependencies: 745 | '@babel/core': 7.18.0 746 | '@babel/helper-plugin-utils': 7.17.12 747 | dev: true 748 | 749 | /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.0: 750 | resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==} 751 | engines: {node: '>=6.9.0'} 752 | peerDependencies: 753 | '@babel/core': ^7.0.0-0 754 | dependencies: 755 | '@babel/core': 7.18.0 756 | '@babel/helper-plugin-utils': 7.17.12 757 | dev: true 758 | 759 | /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.0: 760 | resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==} 761 | engines: {node: '>=6.9.0'} 762 | peerDependencies: 763 | '@babel/core': ^7.0.0-0 764 | dependencies: 765 | '@babel/core': 7.18.0 766 | '@babel/helper-module-imports': 7.16.7 767 | '@babel/helper-plugin-utils': 7.17.12 768 | '@babel/helper-remap-async-to-generator': 7.16.8 769 | transitivePeerDependencies: 770 | - supports-color 771 | dev: true 772 | 773 | /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.0: 774 | resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} 775 | engines: {node: '>=6.9.0'} 776 | peerDependencies: 777 | '@babel/core': ^7.0.0-0 778 | dependencies: 779 | '@babel/core': 7.18.0 780 | '@babel/helper-plugin-utils': 7.17.12 781 | dev: true 782 | 783 | /@babel/plugin-transform-block-scoping/7.17.12_@babel+core@7.18.0: 784 | resolution: {integrity: sha512-jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ==} 785 | engines: {node: '>=6.9.0'} 786 | peerDependencies: 787 | '@babel/core': ^7.0.0-0 788 | dependencies: 789 | '@babel/core': 7.18.0 790 | '@babel/helper-plugin-utils': 7.17.12 791 | dev: true 792 | 793 | /@babel/plugin-transform-classes/7.17.12_@babel+core@7.18.0: 794 | resolution: {integrity: sha512-cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw==} 795 | engines: {node: '>=6.9.0'} 796 | peerDependencies: 797 | '@babel/core': ^7.0.0-0 798 | dependencies: 799 | '@babel/core': 7.18.0 800 | '@babel/helper-annotate-as-pure': 7.16.7 801 | '@babel/helper-environment-visitor': 7.16.7 802 | '@babel/helper-function-name': 7.17.9 803 | '@babel/helper-optimise-call-expression': 7.16.7 804 | '@babel/helper-plugin-utils': 7.17.12 805 | '@babel/helper-replace-supers': 7.16.7 806 | '@babel/helper-split-export-declaration': 7.16.7 807 | globals: 11.12.0 808 | transitivePeerDependencies: 809 | - supports-color 810 | dev: true 811 | 812 | /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.0: 813 | resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==} 814 | engines: {node: '>=6.9.0'} 815 | peerDependencies: 816 | '@babel/core': ^7.0.0-0 817 | dependencies: 818 | '@babel/core': 7.18.0 819 | '@babel/helper-plugin-utils': 7.17.12 820 | dev: true 821 | 822 | /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.0: 823 | resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==} 824 | engines: {node: '>=6.9.0'} 825 | peerDependencies: 826 | '@babel/core': ^7.0.0-0 827 | dependencies: 828 | '@babel/core': 7.18.0 829 | '@babel/helper-plugin-utils': 7.17.12 830 | dev: true 831 | 832 | /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.0: 833 | resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} 834 | engines: {node: '>=6.9.0'} 835 | peerDependencies: 836 | '@babel/core': ^7.0.0-0 837 | dependencies: 838 | '@babel/core': 7.18.0 839 | '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 840 | '@babel/helper-plugin-utils': 7.17.12 841 | dev: true 842 | 843 | /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.0: 844 | resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==} 845 | engines: {node: '>=6.9.0'} 846 | peerDependencies: 847 | '@babel/core': ^7.0.0-0 848 | dependencies: 849 | '@babel/core': 7.18.0 850 | '@babel/helper-plugin-utils': 7.17.12 851 | dev: true 852 | 853 | /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.0: 854 | resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} 855 | engines: {node: '>=6.9.0'} 856 | peerDependencies: 857 | '@babel/core': ^7.0.0-0 858 | dependencies: 859 | '@babel/core': 7.18.0 860 | '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 861 | '@babel/helper-plugin-utils': 7.17.12 862 | dev: true 863 | 864 | /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.0: 865 | resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==} 866 | engines: {node: '>=6.9.0'} 867 | peerDependencies: 868 | '@babel/core': ^7.0.0-0 869 | dependencies: 870 | '@babel/core': 7.18.0 871 | '@babel/helper-plugin-utils': 7.17.12 872 | '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.0 873 | dev: true 874 | 875 | /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.0: 876 | resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==} 877 | engines: {node: '>=6.9.0'} 878 | peerDependencies: 879 | '@babel/core': ^7.0.0-0 880 | dependencies: 881 | '@babel/core': 7.18.0 882 | '@babel/helper-plugin-utils': 7.17.12 883 | dev: true 884 | 885 | /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.0: 886 | resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} 887 | engines: {node: '>=6.9.0'} 888 | peerDependencies: 889 | '@babel/core': ^7.0.0-0 890 | dependencies: 891 | '@babel/core': 7.18.0 892 | '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 893 | '@babel/helper-function-name': 7.17.9 894 | '@babel/helper-plugin-utils': 7.17.12 895 | dev: true 896 | 897 | /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.0: 898 | resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==} 899 | engines: {node: '>=6.9.0'} 900 | peerDependencies: 901 | '@babel/core': ^7.0.0-0 902 | dependencies: 903 | '@babel/core': 7.18.0 904 | '@babel/helper-plugin-utils': 7.17.12 905 | dev: true 906 | 907 | /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.0: 908 | resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} 909 | engines: {node: '>=6.9.0'} 910 | peerDependencies: 911 | '@babel/core': ^7.0.0-0 912 | dependencies: 913 | '@babel/core': 7.18.0 914 | '@babel/helper-plugin-utils': 7.17.12 915 | dev: true 916 | 917 | /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.0: 918 | resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==} 919 | engines: {node: '>=6.9.0'} 920 | peerDependencies: 921 | '@babel/core': ^7.0.0-0 922 | dependencies: 923 | '@babel/core': 7.18.0 924 | '@babel/helper-module-transforms': 7.18.0 925 | '@babel/helper-plugin-utils': 7.17.12 926 | babel-plugin-dynamic-import-node: 2.3.3 927 | transitivePeerDependencies: 928 | - supports-color 929 | dev: true 930 | 931 | /@babel/plugin-transform-modules-commonjs/7.18.0_@babel+core@7.18.0: 932 | resolution: {integrity: sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==} 933 | engines: {node: '>=6.9.0'} 934 | peerDependencies: 935 | '@babel/core': ^7.0.0-0 936 | dependencies: 937 | '@babel/core': 7.18.0 938 | '@babel/helper-module-transforms': 7.18.0 939 | '@babel/helper-plugin-utils': 7.17.12 940 | '@babel/helper-simple-access': 7.17.7 941 | babel-plugin-dynamic-import-node: 2.3.3 942 | transitivePeerDependencies: 943 | - supports-color 944 | dev: true 945 | 946 | /@babel/plugin-transform-modules-systemjs/7.18.0_@babel+core@7.18.0: 947 | resolution: {integrity: sha512-vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ==} 948 | engines: {node: '>=6.9.0'} 949 | peerDependencies: 950 | '@babel/core': ^7.0.0-0 951 | dependencies: 952 | '@babel/core': 7.18.0 953 | '@babel/helper-hoist-variables': 7.16.7 954 | '@babel/helper-module-transforms': 7.18.0 955 | '@babel/helper-plugin-utils': 7.17.12 956 | '@babel/helper-validator-identifier': 7.16.7 957 | babel-plugin-dynamic-import-node: 2.3.3 958 | transitivePeerDependencies: 959 | - supports-color 960 | dev: true 961 | 962 | /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.0: 963 | resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==} 964 | engines: {node: '>=6.9.0'} 965 | peerDependencies: 966 | '@babel/core': ^7.0.0-0 967 | dependencies: 968 | '@babel/core': 7.18.0 969 | '@babel/helper-module-transforms': 7.18.0 970 | '@babel/helper-plugin-utils': 7.17.12 971 | transitivePeerDependencies: 972 | - supports-color 973 | dev: true 974 | 975 | /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.0: 976 | resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==} 977 | engines: {node: '>=6.9.0'} 978 | peerDependencies: 979 | '@babel/core': ^7.0.0 980 | dependencies: 981 | '@babel/core': 7.18.0 982 | '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 983 | '@babel/helper-plugin-utils': 7.17.12 984 | dev: true 985 | 986 | /@babel/plugin-transform-new-target/7.17.12_@babel+core@7.18.0: 987 | resolution: {integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==} 988 | engines: {node: '>=6.9.0'} 989 | peerDependencies: 990 | '@babel/core': ^7.0.0-0 991 | dependencies: 992 | '@babel/core': 7.18.0 993 | '@babel/helper-plugin-utils': 7.17.12 994 | dev: true 995 | 996 | /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.0: 997 | resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} 998 | engines: {node: '>=6.9.0'} 999 | peerDependencies: 1000 | '@babel/core': ^7.0.0-0 1001 | dependencies: 1002 | '@babel/core': 7.18.0 1003 | '@babel/helper-plugin-utils': 7.17.12 1004 | '@babel/helper-replace-supers': 7.16.7 1005 | transitivePeerDependencies: 1006 | - supports-color 1007 | dev: true 1008 | 1009 | /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.0: 1010 | resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} 1011 | engines: {node: '>=6.9.0'} 1012 | peerDependencies: 1013 | '@babel/core': ^7.0.0-0 1014 | dependencies: 1015 | '@babel/core': 7.18.0 1016 | '@babel/helper-plugin-utils': 7.17.12 1017 | dev: true 1018 | 1019 | /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.0: 1020 | resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} 1021 | engines: {node: '>=6.9.0'} 1022 | peerDependencies: 1023 | '@babel/core': ^7.0.0-0 1024 | dependencies: 1025 | '@babel/core': 7.18.0 1026 | '@babel/helper-plugin-utils': 7.17.12 1027 | dev: true 1028 | 1029 | /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.0: 1030 | resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} 1031 | engines: {node: '>=6.9.0'} 1032 | peerDependencies: 1033 | '@babel/core': ^7.0.0-0 1034 | dependencies: 1035 | '@babel/core': 7.18.0 1036 | '@babel/helper-plugin-utils': 7.17.12 1037 | dev: true 1038 | 1039 | /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.0: 1040 | resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} 1041 | engines: {node: '>=6.9.0'} 1042 | peerDependencies: 1043 | '@babel/core': ^7.0.0-0 1044 | dependencies: 1045 | '@babel/core': 7.18.0 1046 | '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0 1047 | dev: true 1048 | 1049 | /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.0: 1050 | resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} 1051 | engines: {node: '>=6.9.0'} 1052 | peerDependencies: 1053 | '@babel/core': ^7.0.0-0 1054 | dependencies: 1055 | '@babel/core': 7.18.0 1056 | '@babel/helper-annotate-as-pure': 7.16.7 1057 | '@babel/helper-module-imports': 7.16.7 1058 | '@babel/helper-plugin-utils': 7.17.12 1059 | '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0 1060 | '@babel/types': 7.18.0 1061 | dev: true 1062 | 1063 | /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.0: 1064 | resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==} 1065 | engines: {node: '>=6.9.0'} 1066 | peerDependencies: 1067 | '@babel/core': ^7.0.0-0 1068 | dependencies: 1069 | '@babel/core': 7.18.0 1070 | '@babel/helper-annotate-as-pure': 7.16.7 1071 | '@babel/helper-plugin-utils': 7.17.12 1072 | dev: true 1073 | 1074 | /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.0: 1075 | resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==} 1076 | engines: {node: '>=6.9.0'} 1077 | peerDependencies: 1078 | '@babel/core': ^7.0.0-0 1079 | dependencies: 1080 | '@babel/core': 7.18.0 1081 | '@babel/helper-plugin-utils': 7.17.12 1082 | regenerator-transform: 0.15.0 1083 | dev: true 1084 | 1085 | /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.0: 1086 | resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==} 1087 | engines: {node: '>=6.9.0'} 1088 | peerDependencies: 1089 | '@babel/core': ^7.0.0-0 1090 | dependencies: 1091 | '@babel/core': 7.18.0 1092 | '@babel/helper-plugin-utils': 7.17.12 1093 | dev: true 1094 | 1095 | /@babel/plugin-transform-runtime/7.18.0_@babel+core@7.18.0: 1096 | resolution: {integrity: sha512-7kM/jJ3DD/y1hDPn0jov12DoUIFsxLiItprhNydUSibxaywaxNqKwq+ODk72J9ePn4LWobIc5ik6TAJhVl8IkQ==} 1097 | engines: {node: '>=6.9.0'} 1098 | peerDependencies: 1099 | '@babel/core': ^7.0.0-0 1100 | dependencies: 1101 | '@babel/core': 7.18.0 1102 | '@babel/helper-module-imports': 7.16.7 1103 | '@babel/helper-plugin-utils': 7.17.12 1104 | babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0 1105 | babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0 1106 | babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0 1107 | semver: 6.3.0 1108 | transitivePeerDependencies: 1109 | - supports-color 1110 | dev: true 1111 | 1112 | /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.0: 1113 | resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} 1114 | engines: {node: '>=6.9.0'} 1115 | peerDependencies: 1116 | '@babel/core': ^7.0.0-0 1117 | dependencies: 1118 | '@babel/core': 7.18.0 1119 | '@babel/helper-plugin-utils': 7.17.12 1120 | dev: true 1121 | 1122 | /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.0: 1123 | resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==} 1124 | engines: {node: '>=6.9.0'} 1125 | peerDependencies: 1126 | '@babel/core': ^7.0.0-0 1127 | dependencies: 1128 | '@babel/core': 7.18.0 1129 | '@babel/helper-plugin-utils': 7.17.12 1130 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 1131 | dev: true 1132 | 1133 | /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.0: 1134 | resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} 1135 | engines: {node: '>=6.9.0'} 1136 | peerDependencies: 1137 | '@babel/core': ^7.0.0-0 1138 | dependencies: 1139 | '@babel/core': 7.18.0 1140 | '@babel/helper-plugin-utils': 7.17.12 1141 | dev: true 1142 | 1143 | /@babel/plugin-transform-template-literals/7.17.12_@babel+core@7.18.0: 1144 | resolution: {integrity: sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==} 1145 | engines: {node: '>=6.9.0'} 1146 | peerDependencies: 1147 | '@babel/core': ^7.0.0-0 1148 | dependencies: 1149 | '@babel/core': 7.18.0 1150 | '@babel/helper-plugin-utils': 7.17.12 1151 | dev: true 1152 | 1153 | /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.0: 1154 | resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==} 1155 | engines: {node: '>=6.9.0'} 1156 | peerDependencies: 1157 | '@babel/core': ^7.0.0-0 1158 | dependencies: 1159 | '@babel/core': 7.18.0 1160 | '@babel/helper-plugin-utils': 7.17.12 1161 | dev: true 1162 | 1163 | /@babel/plugin-transform-typescript/7.18.1_@babel+core@7.18.0: 1164 | resolution: {integrity: sha512-F+RJmL479HJmC0KeqqwEGZMg1P7kWArLGbAKfEi9yPthJyMNjF+DjxFF/halfQvq1Q9GFM4TUbYDNV8xe4Ctqg==} 1165 | engines: {node: '>=6.9.0'} 1166 | peerDependencies: 1167 | '@babel/core': ^7.0.0-0 1168 | dependencies: 1169 | '@babel/core': 7.18.0 1170 | '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 1171 | '@babel/helper-plugin-utils': 7.17.12 1172 | '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0 1173 | transitivePeerDependencies: 1174 | - supports-color 1175 | dev: true 1176 | 1177 | /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.0: 1178 | resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} 1179 | engines: {node: '>=6.9.0'} 1180 | peerDependencies: 1181 | '@babel/core': ^7.0.0-0 1182 | dependencies: 1183 | '@babel/core': 7.18.0 1184 | '@babel/helper-plugin-utils': 7.17.12 1185 | dev: true 1186 | 1187 | /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.0: 1188 | resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} 1189 | engines: {node: '>=6.9.0'} 1190 | peerDependencies: 1191 | '@babel/core': ^7.0.0-0 1192 | dependencies: 1193 | '@babel/core': 7.18.0 1194 | '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 1195 | '@babel/helper-plugin-utils': 7.17.12 1196 | dev: true 1197 | 1198 | /@babel/preset-env/7.18.0_@babel+core@7.18.0: 1199 | resolution: {integrity: sha512-cP74OMs7ECLPeG1reiCQ/D/ypyOxgfm8uR6HRYV23vTJ7Lu1nbgj9DQDo/vH59gnn7GOAwtTDPPYV4aXzsMKHA==} 1200 | engines: {node: '>=6.9.0'} 1201 | peerDependencies: 1202 | '@babel/core': ^7.0.0-0 1203 | dependencies: 1204 | '@babel/compat-data': 7.17.10 1205 | '@babel/core': 7.18.0 1206 | '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 1207 | '@babel/helper-plugin-utils': 7.17.12 1208 | '@babel/helper-validator-option': 7.16.7 1209 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.0 1210 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.0 1211 | '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.0 1212 | '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0 1213 | '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.0 1214 | '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.0 1215 | '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.0 1216 | '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.0 1217 | '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.0 1218 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.0 1219 | '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.0 1220 | '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.0 1221 | '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.0 1222 | '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0 1223 | '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.0 1224 | '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.0 1225 | '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0 1226 | '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 1227 | '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.0 1228 | '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 1229 | '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 1230 | '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 1231 | '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.0 1232 | '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 1233 | '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 1234 | '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 1235 | '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 1236 | '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 1237 | '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 1238 | '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 1239 | '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 1240 | '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.0 1241 | '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.0 1242 | '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.0 1243 | '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.0 1244 | '@babel/plugin-transform-block-scoping': 7.17.12_@babel+core@7.18.0 1245 | '@babel/plugin-transform-classes': 7.17.12_@babel+core@7.18.0 1246 | '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.0 1247 | '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.0 1248 | '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0 1249 | '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.0 1250 | '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.0 1251 | '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.0 1252 | '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.0 1253 | '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.0 1254 | '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.0 1255 | '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.0 1256 | '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0 1257 | '@babel/plugin-transform-modules-systemjs': 7.18.0_@babel+core@7.18.0 1258 | '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.0 1259 | '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.0 1260 | '@babel/plugin-transform-new-target': 7.17.12_@babel+core@7.18.0 1261 | '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.0 1262 | '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 1263 | '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.0 1264 | '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.0 1265 | '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.0 1266 | '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.0 1267 | '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.0 1268 | '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.0 1269 | '@babel/plugin-transform-template-literals': 7.17.12_@babel+core@7.18.0 1270 | '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.0 1271 | '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.0 1272 | '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.0 1273 | '@babel/preset-modules': 0.1.5_@babel+core@7.18.0 1274 | '@babel/types': 7.18.0 1275 | babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0 1276 | babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0 1277 | babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0 1278 | core-js-compat: 3.22.6 1279 | semver: 6.3.0 1280 | transitivePeerDependencies: 1281 | - supports-color 1282 | dev: true 1283 | 1284 | /@babel/preset-modules/0.1.5_@babel+core@7.18.0: 1285 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} 1286 | peerDependencies: 1287 | '@babel/core': ^7.0.0-0 1288 | dependencies: 1289 | '@babel/core': 7.18.0 1290 | '@babel/helper-plugin-utils': 7.17.12 1291 | '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0 1292 | '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0 1293 | '@babel/types': 7.18.0 1294 | esutils: 2.0.3 1295 | dev: true 1296 | 1297 | /@babel/preset-react/7.17.12_@babel+core@7.18.0: 1298 | resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==} 1299 | engines: {node: '>=6.9.0'} 1300 | peerDependencies: 1301 | '@babel/core': ^7.0.0-0 1302 | dependencies: 1303 | '@babel/core': 7.18.0 1304 | '@babel/helper-plugin-utils': 7.17.12 1305 | '@babel/helper-validator-option': 7.16.7 1306 | '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.0 1307 | '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0 1308 | '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.0 1309 | '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.0 1310 | dev: true 1311 | 1312 | /@babel/preset-typescript/7.17.12_@babel+core@7.18.0: 1313 | resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} 1314 | engines: {node: '>=6.9.0'} 1315 | peerDependencies: 1316 | '@babel/core': ^7.0.0-0 1317 | dependencies: 1318 | '@babel/core': 7.18.0 1319 | '@babel/helper-plugin-utils': 7.17.12 1320 | '@babel/helper-validator-option': 7.16.7 1321 | '@babel/plugin-transform-typescript': 7.18.1_@babel+core@7.18.0 1322 | transitivePeerDependencies: 1323 | - supports-color 1324 | dev: true 1325 | 1326 | /@babel/runtime-corejs3/7.18.0: 1327 | resolution: {integrity: sha512-G5FaGZOWORq9zthDjIrjib5XlcddeqLbIiDO3YQsut6j7aGf76xn0umUC/pA6+nApk3hQJF4JzLzg5PCl6ewJg==} 1328 | engines: {node: '>=6.9.0'} 1329 | dependencies: 1330 | core-js-pure: 3.22.6 1331 | regenerator-runtime: 0.13.9 1332 | dev: true 1333 | 1334 | /@babel/runtime/7.18.0: 1335 | resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==} 1336 | engines: {node: '>=6.9.0'} 1337 | dependencies: 1338 | regenerator-runtime: 0.13.9 1339 | dev: true 1340 | 1341 | /@babel/template/7.16.7: 1342 | resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} 1343 | engines: {node: '>=6.9.0'} 1344 | dependencies: 1345 | '@babel/code-frame': 7.16.7 1346 | '@babel/parser': 7.18.0 1347 | '@babel/types': 7.18.0 1348 | dev: true 1349 | 1350 | /@babel/traverse/7.18.0: 1351 | resolution: {integrity: sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==} 1352 | engines: {node: '>=6.9.0'} 1353 | dependencies: 1354 | '@babel/code-frame': 7.16.7 1355 | '@babel/generator': 7.18.0 1356 | '@babel/helper-environment-visitor': 7.16.7 1357 | '@babel/helper-function-name': 7.17.9 1358 | '@babel/helper-hoist-variables': 7.16.7 1359 | '@babel/helper-split-export-declaration': 7.16.7 1360 | '@babel/parser': 7.18.0 1361 | '@babel/types': 7.18.0 1362 | debug: 4.3.4 1363 | globals: 11.12.0 1364 | transitivePeerDependencies: 1365 | - supports-color 1366 | dev: true 1367 | 1368 | /@babel/types/7.18.0: 1369 | resolution: {integrity: sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==} 1370 | engines: {node: '>=6.9.0'} 1371 | dependencies: 1372 | '@babel/helper-validator-identifier': 7.16.7 1373 | to-fast-properties: 2.0.0 1374 | dev: true 1375 | 1376 | /@eslint/eslintrc/1.3.0: 1377 | resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} 1378 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1379 | dependencies: 1380 | ajv: 6.12.6 1381 | debug: 4.3.4 1382 | espree: 9.3.2 1383 | globals: 13.15.0 1384 | ignore: 5.2.0 1385 | import-fresh: 3.3.0 1386 | js-yaml: 4.1.0 1387 | minimatch: 3.1.2 1388 | strip-json-comments: 3.1.1 1389 | transitivePeerDependencies: 1390 | - supports-color 1391 | dev: true 1392 | 1393 | /@humanwhocodes/config-array/0.9.5: 1394 | resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} 1395 | engines: {node: '>=10.10.0'} 1396 | dependencies: 1397 | '@humanwhocodes/object-schema': 1.2.1 1398 | debug: 4.3.4 1399 | minimatch: 3.1.2 1400 | transitivePeerDependencies: 1401 | - supports-color 1402 | dev: true 1403 | 1404 | /@humanwhocodes/object-schema/1.2.1: 1405 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 1406 | dev: true 1407 | 1408 | /@jridgewell/gen-mapping/0.1.1: 1409 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} 1410 | engines: {node: '>=6.0.0'} 1411 | dependencies: 1412 | '@jridgewell/set-array': 1.1.1 1413 | '@jridgewell/sourcemap-codec': 1.4.13 1414 | dev: true 1415 | 1416 | /@jridgewell/gen-mapping/0.3.1: 1417 | resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} 1418 | engines: {node: '>=6.0.0'} 1419 | dependencies: 1420 | '@jridgewell/set-array': 1.1.1 1421 | '@jridgewell/sourcemap-codec': 1.4.13 1422 | '@jridgewell/trace-mapping': 0.3.13 1423 | dev: true 1424 | 1425 | /@jridgewell/resolve-uri/3.0.7: 1426 | resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} 1427 | engines: {node: '>=6.0.0'} 1428 | dev: true 1429 | 1430 | /@jridgewell/set-array/1.1.1: 1431 | resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} 1432 | engines: {node: '>=6.0.0'} 1433 | dev: true 1434 | 1435 | /@jridgewell/sourcemap-codec/1.4.13: 1436 | resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} 1437 | dev: true 1438 | 1439 | /@jridgewell/trace-mapping/0.3.13: 1440 | resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} 1441 | dependencies: 1442 | '@jridgewell/resolve-uri': 3.0.7 1443 | '@jridgewell/sourcemap-codec': 1.4.13 1444 | dev: true 1445 | 1446 | /@nodelib/fs.scandir/2.1.5: 1447 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1448 | engines: {node: '>= 8'} 1449 | dependencies: 1450 | '@nodelib/fs.stat': 2.0.5 1451 | run-parallel: 1.2.0 1452 | dev: true 1453 | 1454 | /@nodelib/fs.stat/2.0.5: 1455 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1456 | engines: {node: '>= 8'} 1457 | dev: true 1458 | 1459 | /@nodelib/fs.walk/1.2.8: 1460 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1461 | engines: {node: '>= 8'} 1462 | dependencies: 1463 | '@nodelib/fs.scandir': 2.1.5 1464 | fastq: 1.13.0 1465 | dev: true 1466 | 1467 | /@rollup/plugin-typescript/8.3.2_259b674e2843eb0fd9f2d7fd95b5b7a6: 1468 | resolution: {integrity: sha512-MtgyR5LNHZr3GyN0tM7gNO9D0CS+Y+vflS4v/PHmrX17JCkHUYKvQ5jN5o3cz1YKllM3duXUqu3yOHwMPUxhDg==} 1469 | engines: {node: '>=8.0.0'} 1470 | peerDependencies: 1471 | rollup: ^2.14.0 1472 | tslib: '*' 1473 | typescript: '>=3.7.0' 1474 | dependencies: 1475 | '@rollup/pluginutils': 3.1.0_rollup@2.74.1 1476 | resolve: 1.22.0 1477 | rollup: 2.74.1 1478 | tslib: 2.4.0 1479 | typescript: 4.6.4 1480 | dev: true 1481 | 1482 | /@rollup/pluginutils/3.1.0_rollup@2.74.1: 1483 | resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} 1484 | engines: {node: '>= 8.0.0'} 1485 | peerDependencies: 1486 | rollup: ^1.20.0||^2.0.0 1487 | dependencies: 1488 | '@types/estree': 0.0.39 1489 | estree-walker: 1.0.1 1490 | picomatch: 2.3.1 1491 | rollup: 2.74.1 1492 | dev: true 1493 | 1494 | /@rushstack/eslint-patch/1.1.3: 1495 | resolution: {integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==} 1496 | dev: true 1497 | 1498 | /@types/estree/0.0.39: 1499 | resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} 1500 | dev: true 1501 | 1502 | /@types/json-schema/7.0.11: 1503 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 1504 | dev: true 1505 | 1506 | /@types/json5/0.0.29: 1507 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 1508 | dev: true 1509 | 1510 | /@types/node/17.0.35: 1511 | resolution: {integrity: sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg==} 1512 | dev: true 1513 | 1514 | /@types/parse-json/4.0.0: 1515 | resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} 1516 | dev: true 1517 | 1518 | /@types/prop-types/15.7.5: 1519 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 1520 | dev: true 1521 | 1522 | /@types/react-dom/18.0.5: 1523 | resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} 1524 | dependencies: 1525 | '@types/react': 18.0.9 1526 | dev: true 1527 | 1528 | /@types/react/18.0.9: 1529 | resolution: {integrity: sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==} 1530 | dependencies: 1531 | '@types/prop-types': 15.7.5 1532 | '@types/scheduler': 0.16.2 1533 | csstype: 3.1.0 1534 | dev: true 1535 | 1536 | /@types/scheduler/0.16.2: 1537 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} 1538 | dev: true 1539 | 1540 | /@typescript-eslint/eslint-plugin/5.26.0_3538258888b78689808cec7bffc2237a: 1541 | resolution: {integrity: sha512-oGCmo0PqnRZZndr+KwvvAUvD3kNE4AfyoGCwOZpoCncSh4MVD06JTE8XQa2u9u+NX5CsyZMBTEc2C72zx38eYA==} 1542 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1543 | peerDependencies: 1544 | '@typescript-eslint/parser': ^5.0.0 1545 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1546 | typescript: '*' 1547 | peerDependenciesMeta: 1548 | typescript: 1549 | optional: true 1550 | dependencies: 1551 | '@typescript-eslint/parser': 5.26.0_eslint@8.16.0+typescript@4.6.4 1552 | '@typescript-eslint/scope-manager': 5.26.0 1553 | '@typescript-eslint/type-utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 1554 | '@typescript-eslint/utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 1555 | debug: 4.3.4 1556 | eslint: 8.16.0 1557 | functional-red-black-tree: 1.0.1 1558 | ignore: 5.2.0 1559 | regexpp: 3.2.0 1560 | semver: 7.3.7 1561 | tsutils: 3.21.0_typescript@4.6.4 1562 | typescript: 4.6.4 1563 | transitivePeerDependencies: 1564 | - supports-color 1565 | dev: true 1566 | 1567 | /@typescript-eslint/experimental-utils/5.26.0_eslint@8.16.0+typescript@4.6.4: 1568 | resolution: {integrity: sha512-OgUGXC/teXD8PYOkn33RSwBJPVwL0I2ipm5OHr9g9cfAhVrPC2DxQiWqaq88MNO5mbr/ZWnav3EVBpuwDreS5Q==} 1569 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1570 | peerDependencies: 1571 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1572 | dependencies: 1573 | '@typescript-eslint/utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 1574 | eslint: 8.16.0 1575 | transitivePeerDependencies: 1576 | - supports-color 1577 | - typescript 1578 | dev: true 1579 | 1580 | /@typescript-eslint/parser/5.26.0_eslint@8.16.0+typescript@4.6.4: 1581 | resolution: {integrity: sha512-n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q==} 1582 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1583 | peerDependencies: 1584 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1585 | typescript: '*' 1586 | peerDependenciesMeta: 1587 | typescript: 1588 | optional: true 1589 | dependencies: 1590 | '@typescript-eslint/scope-manager': 5.26.0 1591 | '@typescript-eslint/types': 5.26.0 1592 | '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.6.4 1593 | debug: 4.3.4 1594 | eslint: 8.16.0 1595 | typescript: 4.6.4 1596 | transitivePeerDependencies: 1597 | - supports-color 1598 | dev: true 1599 | 1600 | /@typescript-eslint/scope-manager/5.26.0: 1601 | resolution: {integrity: sha512-gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw==} 1602 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1603 | dependencies: 1604 | '@typescript-eslint/types': 5.26.0 1605 | '@typescript-eslint/visitor-keys': 5.26.0 1606 | dev: true 1607 | 1608 | /@typescript-eslint/type-utils/5.26.0_eslint@8.16.0+typescript@4.6.4: 1609 | resolution: {integrity: sha512-7ccbUVWGLmcRDSA1+ADkDBl5fP87EJt0fnijsMFTVHXKGduYMgienC/i3QwoVhDADUAPoytgjbZbCOMj4TY55A==} 1610 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1611 | peerDependencies: 1612 | eslint: '*' 1613 | typescript: '*' 1614 | peerDependenciesMeta: 1615 | typescript: 1616 | optional: true 1617 | dependencies: 1618 | '@typescript-eslint/utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 1619 | debug: 4.3.4 1620 | eslint: 8.16.0 1621 | tsutils: 3.21.0_typescript@4.6.4 1622 | typescript: 4.6.4 1623 | transitivePeerDependencies: 1624 | - supports-color 1625 | dev: true 1626 | 1627 | /@typescript-eslint/types/5.26.0: 1628 | resolution: {integrity: sha512-8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA==} 1629 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1630 | dev: true 1631 | 1632 | /@typescript-eslint/typescript-estree/5.26.0_typescript@4.6.4: 1633 | resolution: {integrity: sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==} 1634 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1635 | peerDependencies: 1636 | typescript: '*' 1637 | peerDependenciesMeta: 1638 | typescript: 1639 | optional: true 1640 | dependencies: 1641 | '@typescript-eslint/types': 5.26.0 1642 | '@typescript-eslint/visitor-keys': 5.26.0 1643 | debug: 4.3.4 1644 | globby: 11.1.0 1645 | is-glob: 4.0.3 1646 | semver: 7.3.7 1647 | tsutils: 3.21.0_typescript@4.6.4 1648 | typescript: 4.6.4 1649 | transitivePeerDependencies: 1650 | - supports-color 1651 | dev: true 1652 | 1653 | /@typescript-eslint/utils/5.26.0_eslint@8.16.0+typescript@4.6.4: 1654 | resolution: {integrity: sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==} 1655 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1656 | peerDependencies: 1657 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 1658 | dependencies: 1659 | '@types/json-schema': 7.0.11 1660 | '@typescript-eslint/scope-manager': 5.26.0 1661 | '@typescript-eslint/types': 5.26.0 1662 | '@typescript-eslint/typescript-estree': 5.26.0_typescript@4.6.4 1663 | eslint: 8.16.0 1664 | eslint-scope: 5.1.1 1665 | eslint-utils: 3.0.0_eslint@8.16.0 1666 | transitivePeerDependencies: 1667 | - supports-color 1668 | - typescript 1669 | dev: true 1670 | 1671 | /@typescript-eslint/visitor-keys/5.26.0: 1672 | resolution: {integrity: sha512-wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q==} 1673 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1674 | dependencies: 1675 | '@typescript-eslint/types': 5.26.0 1676 | eslint-visitor-keys: 3.3.0 1677 | dev: true 1678 | 1679 | /acorn-jsx/5.3.2_acorn@8.7.1: 1680 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1681 | peerDependencies: 1682 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1683 | dependencies: 1684 | acorn: 8.7.1 1685 | dev: true 1686 | 1687 | /acorn/8.7.1: 1688 | resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} 1689 | engines: {node: '>=0.4.0'} 1690 | hasBin: true 1691 | dev: true 1692 | 1693 | /ajv/6.12.6: 1694 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1695 | dependencies: 1696 | fast-deep-equal: 3.1.3 1697 | fast-json-stable-stringify: 2.1.0 1698 | json-schema-traverse: 0.4.1 1699 | uri-js: 4.4.1 1700 | dev: true 1701 | 1702 | /ansi-regex/5.0.1: 1703 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1704 | engines: {node: '>=8'} 1705 | dev: true 1706 | 1707 | /ansi-styles/3.2.1: 1708 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1709 | engines: {node: '>=4'} 1710 | dependencies: 1711 | color-convert: 1.9.3 1712 | dev: true 1713 | 1714 | /ansi-styles/4.3.0: 1715 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1716 | engines: {node: '>=8'} 1717 | dependencies: 1718 | color-convert: 2.0.1 1719 | dev: true 1720 | 1721 | /argparse/2.0.1: 1722 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1723 | dev: true 1724 | 1725 | /aria-query/4.2.2: 1726 | resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} 1727 | engines: {node: '>=6.0'} 1728 | dependencies: 1729 | '@babel/runtime': 7.18.0 1730 | '@babel/runtime-corejs3': 7.18.0 1731 | dev: true 1732 | 1733 | /array-includes/3.1.5: 1734 | resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} 1735 | engines: {node: '>= 0.4'} 1736 | dependencies: 1737 | call-bind: 1.0.2 1738 | define-properties: 1.1.4 1739 | es-abstract: 1.20.1 1740 | get-intrinsic: 1.1.1 1741 | is-string: 1.0.7 1742 | dev: true 1743 | 1744 | /array-union/2.1.0: 1745 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1746 | engines: {node: '>=8'} 1747 | dev: true 1748 | 1749 | /array.prototype.flat/1.3.0: 1750 | resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} 1751 | engines: {node: '>= 0.4'} 1752 | dependencies: 1753 | call-bind: 1.0.2 1754 | define-properties: 1.1.4 1755 | es-abstract: 1.20.1 1756 | es-shim-unscopables: 1.0.0 1757 | dev: true 1758 | 1759 | /array.prototype.flatmap/1.3.0: 1760 | resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==} 1761 | engines: {node: '>= 0.4'} 1762 | dependencies: 1763 | call-bind: 1.0.2 1764 | define-properties: 1.1.4 1765 | es-abstract: 1.20.1 1766 | es-shim-unscopables: 1.0.0 1767 | dev: true 1768 | 1769 | /ast-types-flow/0.0.7: 1770 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 1771 | dev: true 1772 | 1773 | /axe-core/4.4.2: 1774 | resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==} 1775 | engines: {node: '>=12'} 1776 | dev: true 1777 | 1778 | /axobject-query/2.2.0: 1779 | resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} 1780 | dev: true 1781 | 1782 | /babel-plugin-dynamic-import-node/2.3.3: 1783 | resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} 1784 | dependencies: 1785 | object.assign: 4.1.2 1786 | dev: true 1787 | 1788 | /babel-plugin-macros/3.1.0: 1789 | resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} 1790 | engines: {node: '>=10', npm: '>=6'} 1791 | dependencies: 1792 | '@babel/runtime': 7.18.0 1793 | cosmiconfig: 7.0.1 1794 | resolve: 1.22.0 1795 | dev: true 1796 | 1797 | /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.0: 1798 | resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} 1799 | peerDependencies: 1800 | '@babel/core': ^7.0.0-0 1801 | dependencies: 1802 | '@babel/compat-data': 7.17.10 1803 | '@babel/core': 7.18.0 1804 | '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0 1805 | semver: 6.3.0 1806 | transitivePeerDependencies: 1807 | - supports-color 1808 | dev: true 1809 | 1810 | /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.0: 1811 | resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} 1812 | peerDependencies: 1813 | '@babel/core': ^7.0.0-0 1814 | dependencies: 1815 | '@babel/core': 7.18.0 1816 | '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0 1817 | core-js-compat: 3.22.6 1818 | transitivePeerDependencies: 1819 | - supports-color 1820 | dev: true 1821 | 1822 | /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.0: 1823 | resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} 1824 | peerDependencies: 1825 | '@babel/core': ^7.0.0-0 1826 | dependencies: 1827 | '@babel/core': 7.18.0 1828 | '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0 1829 | transitivePeerDependencies: 1830 | - supports-color 1831 | dev: true 1832 | 1833 | /babel-plugin-transform-react-remove-prop-types/0.4.24: 1834 | resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} 1835 | dev: true 1836 | 1837 | /babel-preset-react-app/10.0.1: 1838 | resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} 1839 | dependencies: 1840 | '@babel/core': 7.18.0 1841 | '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.0 1842 | '@babel/plugin-proposal-decorators': 7.17.12_@babel+core@7.18.0 1843 | '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.0 1844 | '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.0 1845 | '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0 1846 | '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.0 1847 | '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.0 1848 | '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.0 1849 | '@babel/plugin-transform-runtime': 7.18.0_@babel+core@7.18.0 1850 | '@babel/preset-env': 7.18.0_@babel+core@7.18.0 1851 | '@babel/preset-react': 7.17.12_@babel+core@7.18.0 1852 | '@babel/preset-typescript': 7.17.12_@babel+core@7.18.0 1853 | '@babel/runtime': 7.18.0 1854 | babel-plugin-macros: 3.1.0 1855 | babel-plugin-transform-react-remove-prop-types: 0.4.24 1856 | transitivePeerDependencies: 1857 | - supports-color 1858 | dev: true 1859 | 1860 | /balanced-match/1.0.2: 1861 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1862 | dev: true 1863 | 1864 | /brace-expansion/1.1.11: 1865 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1866 | dependencies: 1867 | balanced-match: 1.0.2 1868 | concat-map: 0.0.1 1869 | dev: true 1870 | 1871 | /braces/3.0.2: 1872 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1873 | engines: {node: '>=8'} 1874 | dependencies: 1875 | fill-range: 7.0.1 1876 | dev: true 1877 | 1878 | /browserslist/4.20.3: 1879 | resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==} 1880 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1881 | hasBin: true 1882 | dependencies: 1883 | caniuse-lite: 1.0.30001342 1884 | electron-to-chromium: 1.4.137 1885 | escalade: 3.1.1 1886 | node-releases: 2.0.4 1887 | picocolors: 1.0.0 1888 | dev: true 1889 | 1890 | /call-bind/1.0.2: 1891 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 1892 | dependencies: 1893 | function-bind: 1.1.1 1894 | get-intrinsic: 1.1.1 1895 | dev: true 1896 | 1897 | /callsites/3.1.0: 1898 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1899 | engines: {node: '>=6'} 1900 | dev: true 1901 | 1902 | /caniuse-lite/1.0.30001342: 1903 | resolution: {integrity: sha512-bn6sOCu7L7jcbBbyNhLg0qzXdJ/PMbybZTH/BA6Roet9wxYRm6Tr9D0s0uhLkOZ6MSG+QU6txUgdpr3MXIVqjA==} 1904 | dev: true 1905 | 1906 | /chalk/2.4.2: 1907 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 1908 | engines: {node: '>=4'} 1909 | dependencies: 1910 | ansi-styles: 3.2.1 1911 | escape-string-regexp: 1.0.5 1912 | supports-color: 5.5.0 1913 | dev: true 1914 | 1915 | /chalk/4.1.2: 1916 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1917 | engines: {node: '>=10'} 1918 | dependencies: 1919 | ansi-styles: 4.3.0 1920 | supports-color: 7.2.0 1921 | dev: true 1922 | 1923 | /charcodes/0.2.0: 1924 | resolution: {integrity: sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==} 1925 | engines: {node: '>=6'} 1926 | dev: true 1927 | 1928 | /color-convert/1.9.3: 1929 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 1930 | dependencies: 1931 | color-name: 1.1.3 1932 | dev: true 1933 | 1934 | /color-convert/2.0.1: 1935 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1936 | engines: {node: '>=7.0.0'} 1937 | dependencies: 1938 | color-name: 1.1.4 1939 | dev: true 1940 | 1941 | /color-name/1.1.3: 1942 | resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} 1943 | dev: true 1944 | 1945 | /color-name/1.1.4: 1946 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1947 | dev: true 1948 | 1949 | /concat-map/0.0.1: 1950 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 1951 | dev: true 1952 | 1953 | /confusing-browser-globals/1.0.11: 1954 | resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} 1955 | dev: true 1956 | 1957 | /convert-source-map/1.8.0: 1958 | resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} 1959 | dependencies: 1960 | safe-buffer: 5.1.2 1961 | dev: true 1962 | 1963 | /core-js-compat/3.22.6: 1964 | resolution: {integrity: sha512-dQ/SxlHcuiywaPIoSUCU6Fx+Mk/H5TXENqd/ZJcK85ta0ZcQkbzHwblxPeL0hF5o+NsT2uK3q9ZOG5TboiVuWw==} 1965 | dependencies: 1966 | browserslist: 4.20.3 1967 | semver: 7.0.0 1968 | dev: true 1969 | 1970 | /core-js-pure/3.22.6: 1971 | resolution: {integrity: sha512-u5yG2VL6NKXz9BZHr9RAm6eWD1DTNjG7jJnJgLGR+Im0whdPcPXqwqxd+dcUrZvpvPan5KMgn/3pI+Q/aGqPOA==} 1972 | requiresBuild: true 1973 | dev: true 1974 | 1975 | /cosmiconfig/7.0.1: 1976 | resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} 1977 | engines: {node: '>=10'} 1978 | dependencies: 1979 | '@types/parse-json': 4.0.0 1980 | import-fresh: 3.3.0 1981 | parse-json: 5.2.0 1982 | path-type: 4.0.0 1983 | yaml: 1.10.2 1984 | dev: true 1985 | 1986 | /cross-spawn/7.0.3: 1987 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 1988 | engines: {node: '>= 8'} 1989 | dependencies: 1990 | path-key: 3.1.1 1991 | shebang-command: 2.0.0 1992 | which: 2.0.2 1993 | dev: true 1994 | 1995 | /csstype/3.1.0: 1996 | resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} 1997 | dev: true 1998 | 1999 | /damerau-levenshtein/1.0.8: 2000 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 2001 | dev: true 2002 | 2003 | /debug/2.6.9: 2004 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 2005 | dependencies: 2006 | ms: 2.0.0 2007 | dev: true 2008 | 2009 | /debug/3.2.7: 2010 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 2011 | dependencies: 2012 | ms: 2.1.3 2013 | dev: true 2014 | 2015 | /debug/4.3.4: 2016 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 2017 | engines: {node: '>=6.0'} 2018 | peerDependencies: 2019 | supports-color: '*' 2020 | peerDependenciesMeta: 2021 | supports-color: 2022 | optional: true 2023 | dependencies: 2024 | ms: 2.1.2 2025 | dev: true 2026 | 2027 | /deep-is/0.1.4: 2028 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 2029 | dev: true 2030 | 2031 | /define-properties/1.1.4: 2032 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} 2033 | engines: {node: '>= 0.4'} 2034 | dependencies: 2035 | has-property-descriptors: 1.0.0 2036 | object-keys: 1.1.1 2037 | dev: true 2038 | 2039 | /dir-glob/3.0.1: 2040 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 2041 | engines: {node: '>=8'} 2042 | dependencies: 2043 | path-type: 4.0.0 2044 | dev: true 2045 | 2046 | /doctrine/2.1.0: 2047 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 2048 | engines: {node: '>=0.10.0'} 2049 | dependencies: 2050 | esutils: 2.0.3 2051 | dev: true 2052 | 2053 | /doctrine/3.0.0: 2054 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 2055 | engines: {node: '>=6.0.0'} 2056 | dependencies: 2057 | esutils: 2.0.3 2058 | dev: true 2059 | 2060 | /electron-to-chromium/1.4.137: 2061 | resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==} 2062 | dev: true 2063 | 2064 | /emoji-regex/9.2.2: 2065 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 2066 | dev: true 2067 | 2068 | /error-ex/1.3.2: 2069 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 2070 | dependencies: 2071 | is-arrayish: 0.2.1 2072 | dev: true 2073 | 2074 | /es-abstract/1.20.1: 2075 | resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} 2076 | engines: {node: '>= 0.4'} 2077 | dependencies: 2078 | call-bind: 1.0.2 2079 | es-to-primitive: 1.2.1 2080 | function-bind: 1.1.1 2081 | function.prototype.name: 1.1.5 2082 | get-intrinsic: 1.1.1 2083 | get-symbol-description: 1.0.0 2084 | has: 1.0.3 2085 | has-property-descriptors: 1.0.0 2086 | has-symbols: 1.0.3 2087 | internal-slot: 1.0.3 2088 | is-callable: 1.2.4 2089 | is-negative-zero: 2.0.2 2090 | is-regex: 1.1.4 2091 | is-shared-array-buffer: 1.0.2 2092 | is-string: 1.0.7 2093 | is-weakref: 1.0.2 2094 | object-inspect: 1.12.1 2095 | object-keys: 1.1.1 2096 | object.assign: 4.1.2 2097 | regexp.prototype.flags: 1.4.3 2098 | string.prototype.trimend: 1.0.5 2099 | string.prototype.trimstart: 1.0.5 2100 | unbox-primitive: 1.0.2 2101 | dev: true 2102 | 2103 | /es-shim-unscopables/1.0.0: 2104 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 2105 | dependencies: 2106 | has: 1.0.3 2107 | dev: true 2108 | 2109 | /es-to-primitive/1.2.1: 2110 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 2111 | engines: {node: '>= 0.4'} 2112 | dependencies: 2113 | is-callable: 1.2.4 2114 | is-date-object: 1.0.5 2115 | is-symbol: 1.0.4 2116 | dev: true 2117 | 2118 | /escalade/3.1.1: 2119 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 2120 | engines: {node: '>=6'} 2121 | dev: true 2122 | 2123 | /escape-string-regexp/1.0.5: 2124 | resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} 2125 | engines: {node: '>=0.8.0'} 2126 | dev: true 2127 | 2128 | /escape-string-regexp/4.0.0: 2129 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 2130 | engines: {node: '>=10'} 2131 | dev: true 2132 | 2133 | /eslint-config-prettier/8.5.0_eslint@8.16.0: 2134 | resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} 2135 | hasBin: true 2136 | peerDependencies: 2137 | eslint: '>=7.0.0' 2138 | dependencies: 2139 | eslint: 8.16.0 2140 | dev: true 2141 | 2142 | /eslint-config-react-app/7.0.1_eslint@8.16.0+typescript@4.6.4: 2143 | resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} 2144 | engines: {node: '>=14.0.0'} 2145 | peerDependencies: 2146 | eslint: ^8.0.0 2147 | dependencies: 2148 | '@babel/core': 7.18.0 2149 | '@babel/eslint-parser': 7.17.0_@babel+core@7.18.0+eslint@8.16.0 2150 | '@rushstack/eslint-patch': 1.1.3 2151 | '@typescript-eslint/eslint-plugin': 5.26.0_3538258888b78689808cec7bffc2237a 2152 | '@typescript-eslint/parser': 5.26.0_eslint@8.16.0+typescript@4.6.4 2153 | babel-preset-react-app: 10.0.1 2154 | confusing-browser-globals: 1.0.11 2155 | eslint: 8.16.0 2156 | eslint-plugin-flowtype: 8.0.3_eslint@8.16.0 2157 | eslint-plugin-import: 2.26.0_eslint@8.16.0 2158 | eslint-plugin-jest: 25.7.0_98134cd9017fbefa9ea2b9974889936b 2159 | eslint-plugin-jsx-a11y: 6.5.1_eslint@8.16.0 2160 | eslint-plugin-react: 7.30.0_eslint@8.16.0 2161 | eslint-plugin-react-hooks: 4.5.0_eslint@8.16.0 2162 | eslint-plugin-testing-library: 5.5.0_eslint@8.16.0+typescript@4.6.4 2163 | transitivePeerDependencies: 2164 | - '@babel/plugin-syntax-flow' 2165 | - '@babel/plugin-transform-react-jsx' 2166 | - jest 2167 | - supports-color 2168 | - typescript 2169 | dev: true 2170 | 2171 | /eslint-import-resolver-node/0.3.6: 2172 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} 2173 | dependencies: 2174 | debug: 3.2.7 2175 | resolve: 1.22.0 2176 | dev: true 2177 | 2178 | /eslint-module-utils/2.7.3: 2179 | resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} 2180 | engines: {node: '>=4'} 2181 | dependencies: 2182 | debug: 3.2.7 2183 | find-up: 2.1.0 2184 | dev: true 2185 | 2186 | /eslint-plugin-flowtype/8.0.3_eslint@8.16.0: 2187 | resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} 2188 | engines: {node: '>=12.0.0'} 2189 | peerDependencies: 2190 | '@babel/plugin-syntax-flow': ^7.14.5 2191 | '@babel/plugin-transform-react-jsx': ^7.14.9 2192 | eslint: ^8.1.0 2193 | dependencies: 2194 | eslint: 8.16.0 2195 | lodash: 4.17.21 2196 | string-natural-compare: 3.0.1 2197 | dev: true 2198 | 2199 | /eslint-plugin-import/2.26.0_eslint@8.16.0: 2200 | resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} 2201 | engines: {node: '>=4'} 2202 | peerDependencies: 2203 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 2204 | dependencies: 2205 | array-includes: 3.1.5 2206 | array.prototype.flat: 1.3.0 2207 | debug: 2.6.9 2208 | doctrine: 2.1.0 2209 | eslint: 8.16.0 2210 | eslint-import-resolver-node: 0.3.6 2211 | eslint-module-utils: 2.7.3 2212 | has: 1.0.3 2213 | is-core-module: 2.9.0 2214 | is-glob: 4.0.3 2215 | minimatch: 3.1.2 2216 | object.values: 1.1.5 2217 | resolve: 1.22.0 2218 | tsconfig-paths: 3.14.1 2219 | dev: true 2220 | 2221 | /eslint-plugin-jest/25.7.0_98134cd9017fbefa9ea2b9974889936b: 2222 | resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} 2223 | engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} 2224 | peerDependencies: 2225 | '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 2226 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 2227 | jest: '*' 2228 | peerDependenciesMeta: 2229 | '@typescript-eslint/eslint-plugin': 2230 | optional: true 2231 | jest: 2232 | optional: true 2233 | dependencies: 2234 | '@typescript-eslint/eslint-plugin': 5.26.0_3538258888b78689808cec7bffc2237a 2235 | '@typescript-eslint/experimental-utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 2236 | eslint: 8.16.0 2237 | transitivePeerDependencies: 2238 | - supports-color 2239 | - typescript 2240 | dev: true 2241 | 2242 | /eslint-plugin-jsx-a11y/6.5.1_eslint@8.16.0: 2243 | resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} 2244 | engines: {node: '>=4.0'} 2245 | peerDependencies: 2246 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 2247 | dependencies: 2248 | '@babel/runtime': 7.18.0 2249 | aria-query: 4.2.2 2250 | array-includes: 3.1.5 2251 | ast-types-flow: 0.0.7 2252 | axe-core: 4.4.2 2253 | axobject-query: 2.2.0 2254 | damerau-levenshtein: 1.0.8 2255 | emoji-regex: 9.2.2 2256 | eslint: 8.16.0 2257 | has: 1.0.3 2258 | jsx-ast-utils: 3.3.0 2259 | language-tags: 1.0.5 2260 | minimatch: 3.1.2 2261 | dev: true 2262 | 2263 | /eslint-plugin-react-hooks/4.5.0_eslint@8.16.0: 2264 | resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==} 2265 | engines: {node: '>=10'} 2266 | peerDependencies: 2267 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 2268 | dependencies: 2269 | eslint: 8.16.0 2270 | dev: true 2271 | 2272 | /eslint-plugin-react/7.30.0_eslint@8.16.0: 2273 | resolution: {integrity: sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==} 2274 | engines: {node: '>=4'} 2275 | peerDependencies: 2276 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 2277 | dependencies: 2278 | array-includes: 3.1.5 2279 | array.prototype.flatmap: 1.3.0 2280 | doctrine: 2.1.0 2281 | eslint: 8.16.0 2282 | estraverse: 5.3.0 2283 | jsx-ast-utils: 3.3.0 2284 | minimatch: 3.1.2 2285 | object.entries: 1.1.5 2286 | object.fromentries: 2.0.5 2287 | object.hasown: 1.1.1 2288 | object.values: 1.1.5 2289 | prop-types: 15.8.1 2290 | resolve: 2.0.0-next.3 2291 | semver: 6.3.0 2292 | string.prototype.matchall: 4.0.7 2293 | dev: true 2294 | 2295 | /eslint-plugin-testing-library/5.5.0_eslint@8.16.0+typescript@4.6.4: 2296 | resolution: {integrity: sha512-eWQ19l6uWL7LW8oeMyQVSGjVYFnBqk7DMHjadm0yOHBvX3Xi9OBrsNuxoAMdX4r7wlQ5WWpW46d+CB6FWFL/PQ==} 2297 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} 2298 | peerDependencies: 2299 | eslint: ^7.5.0 || ^8.0.0 2300 | dependencies: 2301 | '@typescript-eslint/utils': 5.26.0_eslint@8.16.0+typescript@4.6.4 2302 | eslint: 8.16.0 2303 | transitivePeerDependencies: 2304 | - supports-color 2305 | - typescript 2306 | dev: true 2307 | 2308 | /eslint-scope/5.1.1: 2309 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 2310 | engines: {node: '>=8.0.0'} 2311 | dependencies: 2312 | esrecurse: 4.3.0 2313 | estraverse: 4.3.0 2314 | dev: true 2315 | 2316 | /eslint-scope/7.1.1: 2317 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} 2318 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2319 | dependencies: 2320 | esrecurse: 4.3.0 2321 | estraverse: 5.3.0 2322 | dev: true 2323 | 2324 | /eslint-utils/3.0.0_eslint@8.16.0: 2325 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 2326 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 2327 | peerDependencies: 2328 | eslint: '>=5' 2329 | dependencies: 2330 | eslint: 8.16.0 2331 | eslint-visitor-keys: 2.1.0 2332 | dev: true 2333 | 2334 | /eslint-visitor-keys/2.1.0: 2335 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 2336 | engines: {node: '>=10'} 2337 | dev: true 2338 | 2339 | /eslint-visitor-keys/3.3.0: 2340 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 2341 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2342 | dev: true 2343 | 2344 | /eslint/8.16.0: 2345 | resolution: {integrity: sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==} 2346 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2347 | hasBin: true 2348 | dependencies: 2349 | '@eslint/eslintrc': 1.3.0 2350 | '@humanwhocodes/config-array': 0.9.5 2351 | ajv: 6.12.6 2352 | chalk: 4.1.2 2353 | cross-spawn: 7.0.3 2354 | debug: 4.3.4 2355 | doctrine: 3.0.0 2356 | escape-string-regexp: 4.0.0 2357 | eslint-scope: 7.1.1 2358 | eslint-utils: 3.0.0_eslint@8.16.0 2359 | eslint-visitor-keys: 3.3.0 2360 | espree: 9.3.2 2361 | esquery: 1.4.0 2362 | esutils: 2.0.3 2363 | fast-deep-equal: 3.1.3 2364 | file-entry-cache: 6.0.1 2365 | functional-red-black-tree: 1.0.1 2366 | glob-parent: 6.0.2 2367 | globals: 13.15.0 2368 | ignore: 5.2.0 2369 | import-fresh: 3.3.0 2370 | imurmurhash: 0.1.4 2371 | is-glob: 4.0.3 2372 | js-yaml: 4.1.0 2373 | json-stable-stringify-without-jsonify: 1.0.1 2374 | levn: 0.4.1 2375 | lodash.merge: 4.6.2 2376 | minimatch: 3.1.2 2377 | natural-compare: 1.4.0 2378 | optionator: 0.9.1 2379 | regexpp: 3.2.0 2380 | strip-ansi: 6.0.1 2381 | strip-json-comments: 3.1.1 2382 | text-table: 0.2.0 2383 | v8-compile-cache: 2.3.0 2384 | transitivePeerDependencies: 2385 | - supports-color 2386 | dev: true 2387 | 2388 | /espree/9.3.2: 2389 | resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} 2390 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2391 | dependencies: 2392 | acorn: 8.7.1 2393 | acorn-jsx: 5.3.2_acorn@8.7.1 2394 | eslint-visitor-keys: 3.3.0 2395 | dev: true 2396 | 2397 | /esquery/1.4.0: 2398 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 2399 | engines: {node: '>=0.10'} 2400 | dependencies: 2401 | estraverse: 5.3.0 2402 | dev: true 2403 | 2404 | /esrecurse/4.3.0: 2405 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 2406 | engines: {node: '>=4.0'} 2407 | dependencies: 2408 | estraverse: 5.3.0 2409 | dev: true 2410 | 2411 | /estraverse/4.3.0: 2412 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 2413 | engines: {node: '>=4.0'} 2414 | dev: true 2415 | 2416 | /estraverse/5.3.0: 2417 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2418 | engines: {node: '>=4.0'} 2419 | dev: true 2420 | 2421 | /estree-walker/1.0.1: 2422 | resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} 2423 | dev: true 2424 | 2425 | /esutils/2.0.3: 2426 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 2427 | engines: {node: '>=0.10.0'} 2428 | dev: true 2429 | 2430 | /fast-deep-equal/3.1.3: 2431 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 2432 | dev: true 2433 | 2434 | /fast-glob/3.2.11: 2435 | resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} 2436 | engines: {node: '>=8.6.0'} 2437 | dependencies: 2438 | '@nodelib/fs.stat': 2.0.5 2439 | '@nodelib/fs.walk': 1.2.8 2440 | glob-parent: 5.1.2 2441 | merge2: 1.4.1 2442 | micromatch: 4.0.5 2443 | dev: true 2444 | 2445 | /fast-json-stable-stringify/2.1.0: 2446 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 2447 | dev: true 2448 | 2449 | /fast-levenshtein/2.0.6: 2450 | resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} 2451 | dev: true 2452 | 2453 | /fastq/1.13.0: 2454 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 2455 | dependencies: 2456 | reusify: 1.0.4 2457 | dev: true 2458 | 2459 | /file-entry-cache/6.0.1: 2460 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 2461 | engines: {node: ^10.12.0 || >=12.0.0} 2462 | dependencies: 2463 | flat-cache: 3.0.4 2464 | dev: true 2465 | 2466 | /fill-range/7.0.1: 2467 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 2468 | engines: {node: '>=8'} 2469 | dependencies: 2470 | to-regex-range: 5.0.1 2471 | dev: true 2472 | 2473 | /find-up/2.1.0: 2474 | resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} 2475 | engines: {node: '>=4'} 2476 | dependencies: 2477 | locate-path: 2.0.0 2478 | dev: true 2479 | 2480 | /flat-cache/3.0.4: 2481 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 2482 | engines: {node: ^10.12.0 || >=12.0.0} 2483 | dependencies: 2484 | flatted: 3.2.5 2485 | rimraf: 3.0.2 2486 | dev: true 2487 | 2488 | /flatted/3.2.5: 2489 | resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} 2490 | dev: true 2491 | 2492 | /fs.realpath/1.0.0: 2493 | resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} 2494 | dev: true 2495 | 2496 | /fsevents/2.3.2: 2497 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 2498 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2499 | os: [darwin] 2500 | dev: true 2501 | optional: true 2502 | 2503 | /function-bind/1.1.1: 2504 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 2505 | dev: true 2506 | 2507 | /function.prototype.name/1.1.5: 2508 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 2509 | engines: {node: '>= 0.4'} 2510 | dependencies: 2511 | call-bind: 1.0.2 2512 | define-properties: 1.1.4 2513 | es-abstract: 1.20.1 2514 | functions-have-names: 1.2.3 2515 | dev: true 2516 | 2517 | /functional-red-black-tree/1.0.1: 2518 | resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} 2519 | dev: true 2520 | 2521 | /functions-have-names/1.2.3: 2522 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 2523 | dev: true 2524 | 2525 | /gensync/1.0.0-beta.2: 2526 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2527 | engines: {node: '>=6.9.0'} 2528 | dev: true 2529 | 2530 | /get-intrinsic/1.1.1: 2531 | resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} 2532 | dependencies: 2533 | function-bind: 1.1.1 2534 | has: 1.0.3 2535 | has-symbols: 1.0.3 2536 | dev: true 2537 | 2538 | /get-symbol-description/1.0.0: 2539 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 2540 | engines: {node: '>= 0.4'} 2541 | dependencies: 2542 | call-bind: 1.0.2 2543 | get-intrinsic: 1.1.1 2544 | dev: true 2545 | 2546 | /glob-parent/5.1.2: 2547 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2548 | engines: {node: '>= 6'} 2549 | dependencies: 2550 | is-glob: 4.0.3 2551 | dev: true 2552 | 2553 | /glob-parent/6.0.2: 2554 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 2555 | engines: {node: '>=10.13.0'} 2556 | dependencies: 2557 | is-glob: 4.0.3 2558 | dev: true 2559 | 2560 | /glob/7.2.3: 2561 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 2562 | dependencies: 2563 | fs.realpath: 1.0.0 2564 | inflight: 1.0.6 2565 | inherits: 2.0.4 2566 | minimatch: 3.1.2 2567 | once: 1.4.0 2568 | path-is-absolute: 1.0.1 2569 | dev: true 2570 | 2571 | /globals/11.12.0: 2572 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 2573 | engines: {node: '>=4'} 2574 | dev: true 2575 | 2576 | /globals/13.15.0: 2577 | resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} 2578 | engines: {node: '>=8'} 2579 | dependencies: 2580 | type-fest: 0.20.2 2581 | dev: true 2582 | 2583 | /globby/11.1.0: 2584 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 2585 | engines: {node: '>=10'} 2586 | dependencies: 2587 | array-union: 2.1.0 2588 | dir-glob: 3.0.1 2589 | fast-glob: 3.2.11 2590 | ignore: 5.2.0 2591 | merge2: 1.4.1 2592 | slash: 3.0.0 2593 | dev: true 2594 | 2595 | /has-bigints/1.0.2: 2596 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 2597 | dev: true 2598 | 2599 | /has-flag/3.0.0: 2600 | resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} 2601 | engines: {node: '>=4'} 2602 | dev: true 2603 | 2604 | /has-flag/4.0.0: 2605 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2606 | engines: {node: '>=8'} 2607 | dev: true 2608 | 2609 | /has-property-descriptors/1.0.0: 2610 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 2611 | dependencies: 2612 | get-intrinsic: 1.1.1 2613 | dev: true 2614 | 2615 | /has-symbols/1.0.3: 2616 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 2617 | engines: {node: '>= 0.4'} 2618 | dev: true 2619 | 2620 | /has-tostringtag/1.0.0: 2621 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 2622 | engines: {node: '>= 0.4'} 2623 | dependencies: 2624 | has-symbols: 1.0.3 2625 | dev: true 2626 | 2627 | /has/1.0.3: 2628 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 2629 | engines: {node: '>= 0.4.0'} 2630 | dependencies: 2631 | function-bind: 1.1.1 2632 | dev: true 2633 | 2634 | /ignore/5.2.0: 2635 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} 2636 | engines: {node: '>= 4'} 2637 | dev: true 2638 | 2639 | /import-fresh/3.3.0: 2640 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2641 | engines: {node: '>=6'} 2642 | dependencies: 2643 | parent-module: 1.0.1 2644 | resolve-from: 4.0.0 2645 | dev: true 2646 | 2647 | /imurmurhash/0.1.4: 2648 | resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} 2649 | engines: {node: '>=0.8.19'} 2650 | dev: true 2651 | 2652 | /inflight/1.0.6: 2653 | resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} 2654 | dependencies: 2655 | once: 1.4.0 2656 | wrappy: 1.0.2 2657 | dev: true 2658 | 2659 | /inherits/2.0.4: 2660 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2661 | dev: true 2662 | 2663 | /internal-slot/1.0.3: 2664 | resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} 2665 | engines: {node: '>= 0.4'} 2666 | dependencies: 2667 | get-intrinsic: 1.1.1 2668 | has: 1.0.3 2669 | side-channel: 1.0.4 2670 | dev: true 2671 | 2672 | /is-arrayish/0.2.1: 2673 | resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} 2674 | dev: true 2675 | 2676 | /is-bigint/1.0.4: 2677 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2678 | dependencies: 2679 | has-bigints: 1.0.2 2680 | dev: true 2681 | 2682 | /is-boolean-object/1.1.2: 2683 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2684 | engines: {node: '>= 0.4'} 2685 | dependencies: 2686 | call-bind: 1.0.2 2687 | has-tostringtag: 1.0.0 2688 | dev: true 2689 | 2690 | /is-callable/1.2.4: 2691 | resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} 2692 | engines: {node: '>= 0.4'} 2693 | dev: true 2694 | 2695 | /is-core-module/2.9.0: 2696 | resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} 2697 | dependencies: 2698 | has: 1.0.3 2699 | dev: true 2700 | 2701 | /is-date-object/1.0.5: 2702 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2703 | engines: {node: '>= 0.4'} 2704 | dependencies: 2705 | has-tostringtag: 1.0.0 2706 | dev: true 2707 | 2708 | /is-extglob/2.1.1: 2709 | resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} 2710 | engines: {node: '>=0.10.0'} 2711 | dev: true 2712 | 2713 | /is-glob/4.0.3: 2714 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2715 | engines: {node: '>=0.10.0'} 2716 | dependencies: 2717 | is-extglob: 2.1.1 2718 | dev: true 2719 | 2720 | /is-negative-zero/2.0.2: 2721 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 2722 | engines: {node: '>= 0.4'} 2723 | dev: true 2724 | 2725 | /is-number-object/1.0.7: 2726 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 2727 | engines: {node: '>= 0.4'} 2728 | dependencies: 2729 | has-tostringtag: 1.0.0 2730 | dev: true 2731 | 2732 | /is-number/7.0.0: 2733 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2734 | engines: {node: '>=0.12.0'} 2735 | dev: true 2736 | 2737 | /is-regex/1.1.4: 2738 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2739 | engines: {node: '>= 0.4'} 2740 | dependencies: 2741 | call-bind: 1.0.2 2742 | has-tostringtag: 1.0.0 2743 | dev: true 2744 | 2745 | /is-shared-array-buffer/1.0.2: 2746 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 2747 | dependencies: 2748 | call-bind: 1.0.2 2749 | dev: true 2750 | 2751 | /is-string/1.0.7: 2752 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2753 | engines: {node: '>= 0.4'} 2754 | dependencies: 2755 | has-tostringtag: 1.0.0 2756 | dev: true 2757 | 2758 | /is-symbol/1.0.4: 2759 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2760 | engines: {node: '>= 0.4'} 2761 | dependencies: 2762 | has-symbols: 1.0.3 2763 | dev: true 2764 | 2765 | /is-weakref/1.0.2: 2766 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 2767 | dependencies: 2768 | call-bind: 1.0.2 2769 | dev: true 2770 | 2771 | /isexe/2.0.0: 2772 | resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} 2773 | dev: true 2774 | 2775 | /js-tokens/4.0.0: 2776 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2777 | dev: true 2778 | 2779 | /js-yaml/4.1.0: 2780 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2781 | hasBin: true 2782 | dependencies: 2783 | argparse: 2.0.1 2784 | dev: true 2785 | 2786 | /jsesc/0.5.0: 2787 | resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} 2788 | hasBin: true 2789 | dev: true 2790 | 2791 | /jsesc/2.5.2: 2792 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 2793 | engines: {node: '>=4'} 2794 | hasBin: true 2795 | dev: true 2796 | 2797 | /json-parse-even-better-errors/2.3.1: 2798 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 2799 | dev: true 2800 | 2801 | /json-schema-traverse/0.4.1: 2802 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2803 | dev: true 2804 | 2805 | /json-stable-stringify-without-jsonify/1.0.1: 2806 | resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} 2807 | dev: true 2808 | 2809 | /json5/1.0.1: 2810 | resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} 2811 | hasBin: true 2812 | dependencies: 2813 | minimist: 1.2.6 2814 | dev: true 2815 | 2816 | /json5/2.2.1: 2817 | resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} 2818 | engines: {node: '>=6'} 2819 | hasBin: true 2820 | dev: true 2821 | 2822 | /jsx-ast-utils/3.3.0: 2823 | resolution: {integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==} 2824 | engines: {node: '>=4.0'} 2825 | dependencies: 2826 | array-includes: 3.1.5 2827 | object.assign: 4.1.2 2828 | dev: true 2829 | 2830 | /language-subtag-registry/0.3.21: 2831 | resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==} 2832 | dev: true 2833 | 2834 | /language-tags/1.0.5: 2835 | resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=} 2836 | dependencies: 2837 | language-subtag-registry: 0.3.21 2838 | dev: true 2839 | 2840 | /levn/0.4.1: 2841 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2842 | engines: {node: '>= 0.8.0'} 2843 | dependencies: 2844 | prelude-ls: 1.2.1 2845 | type-check: 0.4.0 2846 | dev: true 2847 | 2848 | /lines-and-columns/1.2.4: 2849 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2850 | dev: true 2851 | 2852 | /locate-path/2.0.0: 2853 | resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} 2854 | engines: {node: '>=4'} 2855 | dependencies: 2856 | p-locate: 2.0.0 2857 | path-exists: 3.0.0 2858 | dev: true 2859 | 2860 | /lodash.debounce/4.0.8: 2861 | resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=} 2862 | dev: true 2863 | 2864 | /lodash.merge/4.6.2: 2865 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2866 | dev: true 2867 | 2868 | /lodash/4.17.21: 2869 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2870 | dev: true 2871 | 2872 | /loose-envify/1.4.0: 2873 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2874 | hasBin: true 2875 | dependencies: 2876 | js-tokens: 4.0.0 2877 | dev: true 2878 | 2879 | /lru-cache/6.0.0: 2880 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2881 | engines: {node: '>=10'} 2882 | dependencies: 2883 | yallist: 4.0.0 2884 | dev: true 2885 | 2886 | /magic-string/0.26.2: 2887 | resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} 2888 | engines: {node: '>=12'} 2889 | dependencies: 2890 | sourcemap-codec: 1.4.8 2891 | dev: true 2892 | 2893 | /merge2/1.4.1: 2894 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2895 | engines: {node: '>= 8'} 2896 | dev: true 2897 | 2898 | /micromatch/4.0.5: 2899 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2900 | engines: {node: '>=8.6'} 2901 | dependencies: 2902 | braces: 3.0.2 2903 | picomatch: 2.3.1 2904 | dev: true 2905 | 2906 | /minimatch/3.1.2: 2907 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2908 | dependencies: 2909 | brace-expansion: 1.1.11 2910 | dev: true 2911 | 2912 | /minimist/1.2.6: 2913 | resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} 2914 | dev: true 2915 | 2916 | /ms/2.0.0: 2917 | resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} 2918 | dev: true 2919 | 2920 | /ms/2.1.2: 2921 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2922 | dev: true 2923 | 2924 | /ms/2.1.3: 2925 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2926 | dev: true 2927 | 2928 | /natural-compare/1.4.0: 2929 | resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} 2930 | dev: true 2931 | 2932 | /node-releases/2.0.4: 2933 | resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} 2934 | dev: true 2935 | 2936 | /object-assign/4.1.1: 2937 | resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} 2938 | engines: {node: '>=0.10.0'} 2939 | dev: true 2940 | 2941 | /object-inspect/1.12.1: 2942 | resolution: {integrity: sha512-Y/jF6vnvEtOPGiKD1+q+X0CiUYRQtEHp89MLLUJ7TUivtH8Ugn2+3A7Rynqk7BRsAoqeOQWnFnjpDrKSxDgIGA==} 2943 | dev: true 2944 | 2945 | /object-keys/1.1.1: 2946 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2947 | engines: {node: '>= 0.4'} 2948 | dev: true 2949 | 2950 | /object.assign/4.1.2: 2951 | resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} 2952 | engines: {node: '>= 0.4'} 2953 | dependencies: 2954 | call-bind: 1.0.2 2955 | define-properties: 1.1.4 2956 | has-symbols: 1.0.3 2957 | object-keys: 1.1.1 2958 | dev: true 2959 | 2960 | /object.entries/1.1.5: 2961 | resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} 2962 | engines: {node: '>= 0.4'} 2963 | dependencies: 2964 | call-bind: 1.0.2 2965 | define-properties: 1.1.4 2966 | es-abstract: 1.20.1 2967 | dev: true 2968 | 2969 | /object.fromentries/2.0.5: 2970 | resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} 2971 | engines: {node: '>= 0.4'} 2972 | dependencies: 2973 | call-bind: 1.0.2 2974 | define-properties: 1.1.4 2975 | es-abstract: 1.20.1 2976 | dev: true 2977 | 2978 | /object.hasown/1.1.1: 2979 | resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} 2980 | dependencies: 2981 | define-properties: 1.1.4 2982 | es-abstract: 1.20.1 2983 | dev: true 2984 | 2985 | /object.values/1.1.5: 2986 | resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} 2987 | engines: {node: '>= 0.4'} 2988 | dependencies: 2989 | call-bind: 1.0.2 2990 | define-properties: 1.1.4 2991 | es-abstract: 1.20.1 2992 | dev: true 2993 | 2994 | /once/1.4.0: 2995 | resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} 2996 | dependencies: 2997 | wrappy: 1.0.2 2998 | dev: true 2999 | 3000 | /optionator/0.9.1: 3001 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 3002 | engines: {node: '>= 0.8.0'} 3003 | dependencies: 3004 | deep-is: 0.1.4 3005 | fast-levenshtein: 2.0.6 3006 | levn: 0.4.1 3007 | prelude-ls: 1.2.1 3008 | type-check: 0.4.0 3009 | word-wrap: 1.2.3 3010 | dev: true 3011 | 3012 | /p-limit/1.3.0: 3013 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 3014 | engines: {node: '>=4'} 3015 | dependencies: 3016 | p-try: 1.0.0 3017 | dev: true 3018 | 3019 | /p-locate/2.0.0: 3020 | resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} 3021 | engines: {node: '>=4'} 3022 | dependencies: 3023 | p-limit: 1.3.0 3024 | dev: true 3025 | 3026 | /p-try/1.0.0: 3027 | resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} 3028 | engines: {node: '>=4'} 3029 | dev: true 3030 | 3031 | /parent-module/1.0.1: 3032 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 3033 | engines: {node: '>=6'} 3034 | dependencies: 3035 | callsites: 3.1.0 3036 | dev: true 3037 | 3038 | /parse-json/5.2.0: 3039 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 3040 | engines: {node: '>=8'} 3041 | dependencies: 3042 | '@babel/code-frame': 7.16.7 3043 | error-ex: 1.3.2 3044 | json-parse-even-better-errors: 2.3.1 3045 | lines-and-columns: 1.2.4 3046 | dev: true 3047 | 3048 | /path-exists/3.0.0: 3049 | resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} 3050 | engines: {node: '>=4'} 3051 | dev: true 3052 | 3053 | /path-is-absolute/1.0.1: 3054 | resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} 3055 | engines: {node: '>=0.10.0'} 3056 | dev: true 3057 | 3058 | /path-key/3.1.1: 3059 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3060 | engines: {node: '>=8'} 3061 | dev: true 3062 | 3063 | /path-parse/1.0.7: 3064 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 3065 | dev: true 3066 | 3067 | /path-type/4.0.0: 3068 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 3069 | engines: {node: '>=8'} 3070 | dev: true 3071 | 3072 | /picocolors/1.0.0: 3073 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 3074 | dev: true 3075 | 3076 | /picomatch/2.3.1: 3077 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3078 | engines: {node: '>=8.6'} 3079 | dev: true 3080 | 3081 | /prelude-ls/1.2.1: 3082 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 3083 | engines: {node: '>= 0.8.0'} 3084 | dev: true 3085 | 3086 | /prettier/2.6.2: 3087 | resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==} 3088 | engines: {node: '>=10.13.0'} 3089 | hasBin: true 3090 | dev: true 3091 | 3092 | /prop-types/15.8.1: 3093 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 3094 | dependencies: 3095 | loose-envify: 1.4.0 3096 | object-assign: 4.1.1 3097 | react-is: 16.13.1 3098 | dev: true 3099 | 3100 | /punycode/2.1.1: 3101 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 3102 | engines: {node: '>=6'} 3103 | dev: true 3104 | 3105 | /queue-microtask/1.2.3: 3106 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3107 | dev: true 3108 | 3109 | /react-dom/18.1.0_react@18.1.0: 3110 | resolution: {integrity: sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w==} 3111 | peerDependencies: 3112 | react: ^18.1.0 3113 | dependencies: 3114 | loose-envify: 1.4.0 3115 | react: 18.1.0 3116 | scheduler: 0.22.0 3117 | dev: true 3118 | 3119 | /react-is/16.13.1: 3120 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 3121 | dev: true 3122 | 3123 | /react/18.1.0: 3124 | resolution: {integrity: sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==} 3125 | engines: {node: '>=0.10.0'} 3126 | dependencies: 3127 | loose-envify: 1.4.0 3128 | dev: true 3129 | 3130 | /regenerate-unicode-properties/10.0.1: 3131 | resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} 3132 | engines: {node: '>=4'} 3133 | dependencies: 3134 | regenerate: 1.4.2 3135 | dev: true 3136 | 3137 | /regenerate/1.4.2: 3138 | resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} 3139 | dev: true 3140 | 3141 | /regenerator-runtime/0.13.9: 3142 | resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} 3143 | dev: true 3144 | 3145 | /regenerator-transform/0.15.0: 3146 | resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} 3147 | dependencies: 3148 | '@babel/runtime': 7.18.0 3149 | dev: true 3150 | 3151 | /regexp.prototype.flags/1.4.3: 3152 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 3153 | engines: {node: '>= 0.4'} 3154 | dependencies: 3155 | call-bind: 1.0.2 3156 | define-properties: 1.1.4 3157 | functions-have-names: 1.2.3 3158 | dev: true 3159 | 3160 | /regexpp/3.2.0: 3161 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 3162 | engines: {node: '>=8'} 3163 | dev: true 3164 | 3165 | /regexpu-core/5.0.1: 3166 | resolution: {integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==} 3167 | engines: {node: '>=4'} 3168 | dependencies: 3169 | regenerate: 1.4.2 3170 | regenerate-unicode-properties: 10.0.1 3171 | regjsgen: 0.6.0 3172 | regjsparser: 0.8.4 3173 | unicode-match-property-ecmascript: 2.0.0 3174 | unicode-match-property-value-ecmascript: 2.0.0 3175 | dev: true 3176 | 3177 | /regjsgen/0.6.0: 3178 | resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} 3179 | dev: true 3180 | 3181 | /regjsparser/0.8.4: 3182 | resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} 3183 | hasBin: true 3184 | dependencies: 3185 | jsesc: 0.5.0 3186 | dev: true 3187 | 3188 | /resolve-from/4.0.0: 3189 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 3190 | engines: {node: '>=4'} 3191 | dev: true 3192 | 3193 | /resolve/1.22.0: 3194 | resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} 3195 | hasBin: true 3196 | dependencies: 3197 | is-core-module: 2.9.0 3198 | path-parse: 1.0.7 3199 | supports-preserve-symlinks-flag: 1.0.0 3200 | dev: true 3201 | 3202 | /resolve/2.0.0-next.3: 3203 | resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} 3204 | dependencies: 3205 | is-core-module: 2.9.0 3206 | path-parse: 1.0.7 3207 | dev: true 3208 | 3209 | /reusify/1.0.4: 3210 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3211 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3212 | dev: true 3213 | 3214 | /rimraf/3.0.2: 3215 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 3216 | hasBin: true 3217 | dependencies: 3218 | glob: 7.2.3 3219 | dev: true 3220 | 3221 | /rollup-plugin-dts/4.2.1_rollup@2.74.1+typescript@4.6.4: 3222 | resolution: {integrity: sha512-eaxQZNUJ5iQcxNGlpJ1CUgG4OSVqWjDZ3nNSWBIoGrpcote2aNphSe1RJOaSYkb8dwn3o+rYm1vvld/5z3EGSQ==} 3223 | engines: {node: '>=v12.22.11'} 3224 | peerDependencies: 3225 | rollup: ^2.70 3226 | typescript: ^4.6 3227 | dependencies: 3228 | magic-string: 0.26.2 3229 | rollup: 2.74.1 3230 | typescript: 4.6.4 3231 | optionalDependencies: 3232 | '@babel/code-frame': 7.16.7 3233 | dev: true 3234 | 3235 | /rollup/2.74.1: 3236 | resolution: {integrity: sha512-K2zW7kV8Voua5eGkbnBtWYfMIhYhT9Pel2uhBk2WO5eMee161nPze/XRfvEQPFYz7KgrCCnmh2Wy0AMFLGGmMA==} 3237 | engines: {node: '>=10.0.0'} 3238 | hasBin: true 3239 | optionalDependencies: 3240 | fsevents: 2.3.2 3241 | dev: true 3242 | 3243 | /run-parallel/1.2.0: 3244 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3245 | dependencies: 3246 | queue-microtask: 1.2.3 3247 | dev: true 3248 | 3249 | /safe-buffer/5.1.2: 3250 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 3251 | dev: true 3252 | 3253 | /scheduler/0.22.0: 3254 | resolution: {integrity: sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==} 3255 | dependencies: 3256 | loose-envify: 1.4.0 3257 | dev: true 3258 | 3259 | /semver/6.3.0: 3260 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 3261 | hasBin: true 3262 | dev: true 3263 | 3264 | /semver/7.0.0: 3265 | resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} 3266 | hasBin: true 3267 | dev: true 3268 | 3269 | /semver/7.3.7: 3270 | resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} 3271 | engines: {node: '>=10'} 3272 | hasBin: true 3273 | dependencies: 3274 | lru-cache: 6.0.0 3275 | dev: true 3276 | 3277 | /shebang-command/2.0.0: 3278 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3279 | engines: {node: '>=8'} 3280 | dependencies: 3281 | shebang-regex: 3.0.0 3282 | dev: true 3283 | 3284 | /shebang-regex/3.0.0: 3285 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3286 | engines: {node: '>=8'} 3287 | dev: true 3288 | 3289 | /side-channel/1.0.4: 3290 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 3291 | dependencies: 3292 | call-bind: 1.0.2 3293 | get-intrinsic: 1.1.1 3294 | object-inspect: 1.12.1 3295 | dev: true 3296 | 3297 | /slash/3.0.0: 3298 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3299 | engines: {node: '>=8'} 3300 | dev: true 3301 | 3302 | /sourcemap-codec/1.4.8: 3303 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 3304 | dev: true 3305 | 3306 | /string-natural-compare/3.0.1: 3307 | resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} 3308 | dev: true 3309 | 3310 | /string.prototype.matchall/4.0.7: 3311 | resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==} 3312 | dependencies: 3313 | call-bind: 1.0.2 3314 | define-properties: 1.1.4 3315 | es-abstract: 1.20.1 3316 | get-intrinsic: 1.1.1 3317 | has-symbols: 1.0.3 3318 | internal-slot: 1.0.3 3319 | regexp.prototype.flags: 1.4.3 3320 | side-channel: 1.0.4 3321 | dev: true 3322 | 3323 | /string.prototype.trimend/1.0.5: 3324 | resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} 3325 | dependencies: 3326 | call-bind: 1.0.2 3327 | define-properties: 1.1.4 3328 | es-abstract: 1.20.1 3329 | dev: true 3330 | 3331 | /string.prototype.trimstart/1.0.5: 3332 | resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} 3333 | dependencies: 3334 | call-bind: 1.0.2 3335 | define-properties: 1.1.4 3336 | es-abstract: 1.20.1 3337 | dev: true 3338 | 3339 | /strip-ansi/6.0.1: 3340 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3341 | engines: {node: '>=8'} 3342 | dependencies: 3343 | ansi-regex: 5.0.1 3344 | dev: true 3345 | 3346 | /strip-bom/3.0.0: 3347 | resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} 3348 | engines: {node: '>=4'} 3349 | dev: true 3350 | 3351 | /strip-json-comments/3.1.1: 3352 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3353 | engines: {node: '>=8'} 3354 | dev: true 3355 | 3356 | /supports-color/5.5.0: 3357 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3358 | engines: {node: '>=4'} 3359 | dependencies: 3360 | has-flag: 3.0.0 3361 | dev: true 3362 | 3363 | /supports-color/7.2.0: 3364 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3365 | engines: {node: '>=8'} 3366 | dependencies: 3367 | has-flag: 4.0.0 3368 | dev: true 3369 | 3370 | /supports-preserve-symlinks-flag/1.0.0: 3371 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3372 | engines: {node: '>= 0.4'} 3373 | dev: true 3374 | 3375 | /text-table/0.2.0: 3376 | resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} 3377 | dev: true 3378 | 3379 | /to-fast-properties/2.0.0: 3380 | resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} 3381 | engines: {node: '>=4'} 3382 | dev: true 3383 | 3384 | /to-regex-range/5.0.1: 3385 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3386 | engines: {node: '>=8.0'} 3387 | dependencies: 3388 | is-number: 7.0.0 3389 | dev: true 3390 | 3391 | /tsconfig-paths/3.14.1: 3392 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} 3393 | dependencies: 3394 | '@types/json5': 0.0.29 3395 | json5: 1.0.1 3396 | minimist: 1.2.6 3397 | strip-bom: 3.0.0 3398 | dev: true 3399 | 3400 | /tslib/1.14.1: 3401 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 3402 | dev: true 3403 | 3404 | /tslib/2.4.0: 3405 | resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} 3406 | dev: true 3407 | 3408 | /tsutils/3.21.0_typescript@4.6.4: 3409 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 3410 | engines: {node: '>= 6'} 3411 | peerDependencies: 3412 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 3413 | dependencies: 3414 | tslib: 1.14.1 3415 | typescript: 4.6.4 3416 | dev: true 3417 | 3418 | /type-check/0.4.0: 3419 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3420 | engines: {node: '>= 0.8.0'} 3421 | dependencies: 3422 | prelude-ls: 1.2.1 3423 | dev: true 3424 | 3425 | /type-fest/0.20.2: 3426 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3427 | engines: {node: '>=10'} 3428 | dev: true 3429 | 3430 | /typescript/4.6.4: 3431 | resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} 3432 | engines: {node: '>=4.2.0'} 3433 | hasBin: true 3434 | dev: true 3435 | 3436 | /unbox-primitive/1.0.2: 3437 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 3438 | dependencies: 3439 | call-bind: 1.0.2 3440 | has-bigints: 1.0.2 3441 | has-symbols: 1.0.3 3442 | which-boxed-primitive: 1.0.2 3443 | dev: true 3444 | 3445 | /unicode-canonical-property-names-ecmascript/2.0.0: 3446 | resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} 3447 | engines: {node: '>=4'} 3448 | dev: true 3449 | 3450 | /unicode-match-property-ecmascript/2.0.0: 3451 | resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 3452 | engines: {node: '>=4'} 3453 | dependencies: 3454 | unicode-canonical-property-names-ecmascript: 2.0.0 3455 | unicode-property-aliases-ecmascript: 2.0.0 3456 | dev: true 3457 | 3458 | /unicode-match-property-value-ecmascript/2.0.0: 3459 | resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} 3460 | engines: {node: '>=4'} 3461 | dev: true 3462 | 3463 | /unicode-property-aliases-ecmascript/2.0.0: 3464 | resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} 3465 | engines: {node: '>=4'} 3466 | dev: true 3467 | 3468 | /uri-js/4.4.1: 3469 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3470 | dependencies: 3471 | punycode: 2.1.1 3472 | dev: true 3473 | 3474 | /v8-compile-cache/2.3.0: 3475 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 3476 | dev: true 3477 | 3478 | /which-boxed-primitive/1.0.2: 3479 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3480 | dependencies: 3481 | is-bigint: 1.0.4 3482 | is-boolean-object: 1.1.2 3483 | is-number-object: 1.0.7 3484 | is-string: 1.0.7 3485 | is-symbol: 1.0.4 3486 | dev: true 3487 | 3488 | /which/2.0.2: 3489 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3490 | engines: {node: '>= 8'} 3491 | hasBin: true 3492 | dependencies: 3493 | isexe: 2.0.0 3494 | dev: true 3495 | 3496 | /word-wrap/1.2.3: 3497 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 3498 | engines: {node: '>=0.10.0'} 3499 | dev: true 3500 | 3501 | /wrappy/1.0.2: 3502 | resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} 3503 | dev: true 3504 | 3505 | /yallist/4.0.0: 3506 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3507 | dev: true 3508 | 3509 | /yaml/1.10.2: 3510 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 3511 | engines: {node: '>= 6'} 3512 | dev: true 3513 | -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- 1 | import typescript from '@rollup/plugin-typescript'; 2 | import dts from 'rollup-plugin-dts'; 3 | import pkg from './package.json'; 4 | 5 | const input = 'src/index.tsx'; 6 | const peer = Object.keys(pkg.peerDependencies); 7 | const external = (id: string) => peer.includes(id); 8 | const plugins = [typescript()]; 9 | 10 | const cjsOutput = { file: pkg.main, format: 'cjs', exports: 'auto' }; 11 | const esmOutput = { file: pkg.module, format: 'es' }; 12 | const dtsOutput = { file: pkg.types, format: 'es' }; 13 | 14 | export default [ 15 | { input, output: cjsOutput, external, plugins }, 16 | { input, output: esmOutput, external, plugins }, 17 | { input, output: dtsOutput, plugins: [dts()] }, 18 | ]; 19 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import React, { ComponentType, MemoExoticComponent } from 'react'; 2 | import type { DependencyList } from 'react'; 3 | 4 | export const Prefix = '__react-with-stable__'; 5 | export const StableSymbol = `${Prefix}StableSymbol`; 6 | export const DepsSymbol = `${Prefix}DepsSymbol`; 7 | 8 | export function areEqual(a: any, b: any): boolean { 9 | if ( 10 | !( 11 | typeof a === 'function' && 12 | a[DepsSymbol] && 13 | typeof b === 'function' && 14 | b[DepsSymbol] 15 | ) 16 | ) { 17 | return a === b; 18 | } 19 | const depsA: any[] = a[DepsSymbol]; 20 | const depsB: any[] = b[DepsSymbol]; 21 | for (const [i, itemA] of depsA.entries()) { 22 | if (!areEqual(itemA, depsB[i])) return false; 23 | } 24 | return true; 25 | } 26 | 27 | export function withStable>( 28 | stableKeys: string[], 29 | Component: T 30 | ): MemoExoticComponent { 31 | const stableSet = new Set(stableKeys); 32 | const Memo = React.memo(Component, (prev, next) => { 33 | for (const k in prev) { 34 | if (!prev.hasOwnProperty(k)) continue; 35 | if (!areEqual(prev[k], next[k])) return false; 36 | } 37 | for (const k in next) { 38 | if (!next.hasOwnProperty(k)) continue; 39 | if (!areEqual(next[k], prev[k])) return false; 40 | } 41 | return true; 42 | }); 43 | function ComponentWithStable(props: any) { 44 | const propsRef = React.useRef(props); 45 | React.useLayoutEffect(() => { 46 | propsRef.current = props; 47 | }); 48 | const cache = React.useMemo(() => ({} as any), []); 49 | 50 | const stable = {} as any; 51 | for (const k in props) { 52 | if (!props.hasOwnProperty(k)) continue; 53 | stable[k] = (() => { 54 | if (typeof props[k] !== 'function') return props[k]; 55 | 56 | if (stableSet.has(k)) { 57 | if (props[k][StableSymbol]) return props[k]; 58 | if (cache[k]) return cache[k]; 59 | cache[k] = (...args: any[]) => propsRef.current[k](...args); 60 | cache[k][StableSymbol] = true; 61 | return cache[k]; 62 | } 63 | 64 | return props[k]; 65 | })(); 66 | } 67 | return ; 68 | } 69 | 70 | return ComponentWithStable as any; 71 | } 72 | 73 | export function depFn any>( 74 | callback: T, 75 | deps: DependencyList 76 | ): T { 77 | (callback as any)[DepsSymbol] = deps; 78 | return callback; 79 | } 80 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "jsx": "react", 4 | "target": "es6", 5 | "module": "esnext", 6 | "moduleResolution": "node", 7 | 8 | "esModuleInterop": true, 9 | "allowSyntheticDefaultImports": true, 10 | "forceConsistentCasingInFileNames": true, 11 | "isolatedModules": true, 12 | "resolveJsonModule": true, 13 | 14 | "strict": true, 15 | "noImplicitAny": true, 16 | "strictNullChecks": true, 17 | "strictFunctionTypes": true, 18 | "strictBindCallApply": true, 19 | "strictPropertyInitialization": true, 20 | "noImplicitThis": true, 21 | "alwaysStrict": true, 22 | 23 | "noUnusedLocals": true, 24 | "noUnusedParameters": true, 25 | "noImplicitReturns": false, 26 | "noFallthroughCasesInSwitch": true 27 | }, 28 | "exclude": ["node_modules", "dist"] 29 | } 30 | --------------------------------------------------------------------------------