├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── readme-assets ├── github.svg └── twitter.svg ├── src ├── attributes.ts ├── convert-attributes.ts ├── html-to-jsx.test.ts ├── html-to-jsx.ts ├── index.ts ├── split-merge-tags.test.ts └── split-merge-tags.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Leo Driesch 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

html-to-jsx-transform

2 |

3 | A library for converting an HTML string into a JSX string using ASTs. 4 |

5 |

6 | 7 | MIT License 8 | 9 | 10 | David 11 | 12 | 13 | Open GitHub issues 14 | 15 |

16 |

17 | Documentation 18 | 19 | Development 20 | 21 | Contribute 22 |

23 | 24 | --- 25 | 26 | `html-to-jsx-transform` transforms a string of HTML into JSX. It works by 27 | turning it into an AST using [`parse5`](https://parse5.js.org/index.html), 28 | converting every node to its equivalent JSX node to create a Babel AST and then 29 | stringifying that using 30 | [`@babel/generator`](https://babeljs.io/docs/en/babel-generator). 31 | 32 | The library is tested for a variety of different scenarios, if you happen to 33 | find a flaw please open an issue so we can add it to the test suite. 34 | 35 |
36 | 37 | ## ❯ Documentation 38 | 39 | - [`htmlToJsx`](#htmlToJsx) 40 | 41 |
42 | 43 | ### `htmlToJsx` 44 | 45 | Takes a string of HTML and synchronously returns a string with the equivalent 46 | JSX source code. 47 | 48 | #### Example 49 | 50 | ```ts 51 | import { htmlToJsx } from "html-to-jsx-transform"; 52 | 53 | const jsx = htmlToJsx('

Hello World!

'); 54 | 55 | // jsx === '

Hello World!

'; 56 | ``` 57 | 58 | #### Behavior 59 | 60 | ##### Elements 61 | 62 | - `style` and `script` elements get template literal bodies wrapped in curly 63 | braces 64 | - Adjacent elements are wrapped in a Fragment (`<>...`) 65 | 66 | ##### Attributes 67 | 68 | - `style` attributes are parsed into objects 69 | - Attributes are renamed and casing is adjusted (including SVG) 70 | - Event handlers are converted into arrow functions 71 | - Boolean and numeric attributes are converted into boolean or number values 72 | 73 |
74 | 75 | ## ❯ Development 76 | 77 | This library is best developed by writing test cases first. Tests can be 78 | executed by running `npm test`. 79 | 80 | ### Releasing a new version on NPM 81 | 82 | To release a new version on npm, run `npm version (patch|minor|major)` to 83 | increase the version. This will create a Git tag for you. 84 | 85 | Then run `npm publish`, the `prepublishOnly` hook will test and build the 86 | package and then publish it. 87 | 88 |
89 | 90 | ## ❯ Contribute 91 | 92 | If you think you have any ideas that could benefit the project, feel free to 93 | create an issue or pull request! 94 | 95 |
96 | 97 | --- 98 | 99 |

100 | 101 | Project by Leo Driesch, released under MIT license. 102 | 103 |

104 |

105 | 106 | Leo Driesch on Twitter 107 | 108 |    109 | 110 | Leo Driesch on GitHub 111 | 112 |

113 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ 2 | module.exports = { 3 | preset: "ts-jest", 4 | testEnvironment: "node", 5 | }; 6 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html-to-jsx-transform", 3 | "version": "1.2.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "html-to-jsx-transform", 9 | "version": "1.2.1", 10 | "license": "MIT", 11 | "dependencies": { 12 | "@babel/generator": "^7.27.1", 13 | "@babel/parser": "^7.27.2", 14 | "@babel/types": "^7.27.1", 15 | "html-entities": "^2.6.0", 16 | "parse5": "^7.3.0", 17 | "style-to-object": "^1.0.8" 18 | }, 19 | "devDependencies": { 20 | "@types/jest": "^29.5.14", 21 | "@types/node": "^22.15.21", 22 | "jest": "^29.7.0", 23 | "prettier": "^3.5.3", 24 | "prettier-plugin-packagejson": "^2.5.14", 25 | "ts-jest": "^29.3.4", 26 | "typescript": "^5.8.3" 27 | } 28 | }, 29 | "node_modules/@ampproject/remapping": { 30 | "version": "2.3.0", 31 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 32 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 33 | "dev": true, 34 | "license": "Apache-2.0", 35 | "dependencies": { 36 | "@jridgewell/gen-mapping": "^0.3.5", 37 | "@jridgewell/trace-mapping": "^0.3.24" 38 | }, 39 | "engines": { 40 | "node": ">=6.0.0" 41 | } 42 | }, 43 | "node_modules/@babel/code-frame": { 44 | "version": "7.27.1", 45 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", 46 | "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", 47 | "dev": true, 48 | "license": "MIT", 49 | "dependencies": { 50 | "@babel/helper-validator-identifier": "^7.27.1", 51 | "js-tokens": "^4.0.0", 52 | "picocolors": "^1.1.1" 53 | }, 54 | "engines": { 55 | "node": ">=6.9.0" 56 | } 57 | }, 58 | "node_modules/@babel/compat-data": { 59 | "version": "7.27.2", 60 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.2.tgz", 61 | "integrity": "sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==", 62 | "dev": true, 63 | "license": "MIT", 64 | "engines": { 65 | "node": ">=6.9.0" 66 | } 67 | }, 68 | "node_modules/@babel/core": { 69 | "version": "7.27.1", 70 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.1.tgz", 71 | "integrity": "sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==", 72 | "dev": true, 73 | "license": "MIT", 74 | "dependencies": { 75 | "@ampproject/remapping": "^2.2.0", 76 | "@babel/code-frame": "^7.27.1", 77 | "@babel/generator": "^7.27.1", 78 | "@babel/helper-compilation-targets": "^7.27.1", 79 | "@babel/helper-module-transforms": "^7.27.1", 80 | "@babel/helpers": "^7.27.1", 81 | "@babel/parser": "^7.27.1", 82 | "@babel/template": "^7.27.1", 83 | "@babel/traverse": "^7.27.1", 84 | "@babel/types": "^7.27.1", 85 | "convert-source-map": "^2.0.0", 86 | "debug": "^4.1.0", 87 | "gensync": "^1.0.0-beta.2", 88 | "json5": "^2.2.3", 89 | "semver": "^6.3.1" 90 | }, 91 | "engines": { 92 | "node": ">=6.9.0" 93 | }, 94 | "funding": { 95 | "type": "opencollective", 96 | "url": "https://opencollective.com/babel" 97 | } 98 | }, 99 | "node_modules/@babel/generator": { 100 | "version": "7.27.1", 101 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.1.tgz", 102 | "integrity": "sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==", 103 | "license": "MIT", 104 | "dependencies": { 105 | "@babel/parser": "^7.27.1", 106 | "@babel/types": "^7.27.1", 107 | "@jridgewell/gen-mapping": "^0.3.5", 108 | "@jridgewell/trace-mapping": "^0.3.25", 109 | "jsesc": "^3.0.2" 110 | }, 111 | "engines": { 112 | "node": ">=6.9.0" 113 | } 114 | }, 115 | "node_modules/@babel/helper-compilation-targets": { 116 | "version": "7.27.2", 117 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", 118 | "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", 119 | "dev": true, 120 | "license": "MIT", 121 | "dependencies": { 122 | "@babel/compat-data": "^7.27.2", 123 | "@babel/helper-validator-option": "^7.27.1", 124 | "browserslist": "^4.24.0", 125 | "lru-cache": "^5.1.1", 126 | "semver": "^6.3.1" 127 | }, 128 | "engines": { 129 | "node": ">=6.9.0" 130 | } 131 | }, 132 | "node_modules/@babel/helper-module-imports": { 133 | "version": "7.27.1", 134 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", 135 | "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", 136 | "dev": true, 137 | "license": "MIT", 138 | "dependencies": { 139 | "@babel/traverse": "^7.27.1", 140 | "@babel/types": "^7.27.1" 141 | }, 142 | "engines": { 143 | "node": ">=6.9.0" 144 | } 145 | }, 146 | "node_modules/@babel/helper-module-transforms": { 147 | "version": "7.27.1", 148 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.1.tgz", 149 | "integrity": "sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==", 150 | "dev": true, 151 | "license": "MIT", 152 | "dependencies": { 153 | "@babel/helper-module-imports": "^7.27.1", 154 | "@babel/helper-validator-identifier": "^7.27.1", 155 | "@babel/traverse": "^7.27.1" 156 | }, 157 | "engines": { 158 | "node": ">=6.9.0" 159 | }, 160 | "peerDependencies": { 161 | "@babel/core": "^7.0.0" 162 | } 163 | }, 164 | "node_modules/@babel/helper-plugin-utils": { 165 | "version": "7.27.1", 166 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", 167 | "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", 168 | "dev": true, 169 | "license": "MIT", 170 | "engines": { 171 | "node": ">=6.9.0" 172 | } 173 | }, 174 | "node_modules/@babel/helper-string-parser": { 175 | "version": "7.27.1", 176 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 177 | "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 178 | "license": "MIT", 179 | "engines": { 180 | "node": ">=6.9.0" 181 | } 182 | }, 183 | "node_modules/@babel/helper-validator-identifier": { 184 | "version": "7.27.1", 185 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 186 | "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 187 | "license": "MIT", 188 | "engines": { 189 | "node": ">=6.9.0" 190 | } 191 | }, 192 | "node_modules/@babel/helper-validator-option": { 193 | "version": "7.27.1", 194 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", 195 | "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", 196 | "dev": true, 197 | "license": "MIT", 198 | "engines": { 199 | "node": ">=6.9.0" 200 | } 201 | }, 202 | "node_modules/@babel/helpers": { 203 | "version": "7.27.1", 204 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.1.tgz", 205 | "integrity": "sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==", 206 | "dev": true, 207 | "license": "MIT", 208 | "dependencies": { 209 | "@babel/template": "^7.27.1", 210 | "@babel/types": "^7.27.1" 211 | }, 212 | "engines": { 213 | "node": ">=6.9.0" 214 | } 215 | }, 216 | "node_modules/@babel/parser": { 217 | "version": "7.27.2", 218 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.2.tgz", 219 | "integrity": "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==", 220 | "license": "MIT", 221 | "dependencies": { 222 | "@babel/types": "^7.27.1" 223 | }, 224 | "bin": { 225 | "parser": "bin/babel-parser.js" 226 | }, 227 | "engines": { 228 | "node": ">=6.0.0" 229 | } 230 | }, 231 | "node_modules/@babel/plugin-syntax-async-generators": { 232 | "version": "7.8.4", 233 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 234 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 235 | "dev": true, 236 | "license": "MIT", 237 | "dependencies": { 238 | "@babel/helper-plugin-utils": "^7.8.0" 239 | }, 240 | "peerDependencies": { 241 | "@babel/core": "^7.0.0-0" 242 | } 243 | }, 244 | "node_modules/@babel/plugin-syntax-bigint": { 245 | "version": "7.8.3", 246 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 247 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 248 | "dev": true, 249 | "license": "MIT", 250 | "dependencies": { 251 | "@babel/helper-plugin-utils": "^7.8.0" 252 | }, 253 | "peerDependencies": { 254 | "@babel/core": "^7.0.0-0" 255 | } 256 | }, 257 | "node_modules/@babel/plugin-syntax-class-properties": { 258 | "version": "7.12.13", 259 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 260 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 261 | "dev": true, 262 | "license": "MIT", 263 | "dependencies": { 264 | "@babel/helper-plugin-utils": "^7.12.13" 265 | }, 266 | "peerDependencies": { 267 | "@babel/core": "^7.0.0-0" 268 | } 269 | }, 270 | "node_modules/@babel/plugin-syntax-class-static-block": { 271 | "version": "7.14.5", 272 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 273 | "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 274 | "dev": true, 275 | "license": "MIT", 276 | "dependencies": { 277 | "@babel/helper-plugin-utils": "^7.14.5" 278 | }, 279 | "engines": { 280 | "node": ">=6.9.0" 281 | }, 282 | "peerDependencies": { 283 | "@babel/core": "^7.0.0-0" 284 | } 285 | }, 286 | "node_modules/@babel/plugin-syntax-import-attributes": { 287 | "version": "7.27.1", 288 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", 289 | "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", 290 | "dev": true, 291 | "license": "MIT", 292 | "dependencies": { 293 | "@babel/helper-plugin-utils": "^7.27.1" 294 | }, 295 | "engines": { 296 | "node": ">=6.9.0" 297 | }, 298 | "peerDependencies": { 299 | "@babel/core": "^7.0.0-0" 300 | } 301 | }, 302 | "node_modules/@babel/plugin-syntax-import-meta": { 303 | "version": "7.10.4", 304 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 305 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 306 | "dev": true, 307 | "license": "MIT", 308 | "dependencies": { 309 | "@babel/helper-plugin-utils": "^7.10.4" 310 | }, 311 | "peerDependencies": { 312 | "@babel/core": "^7.0.0-0" 313 | } 314 | }, 315 | "node_modules/@babel/plugin-syntax-json-strings": { 316 | "version": "7.8.3", 317 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 318 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 319 | "dev": true, 320 | "license": "MIT", 321 | "dependencies": { 322 | "@babel/helper-plugin-utils": "^7.8.0" 323 | }, 324 | "peerDependencies": { 325 | "@babel/core": "^7.0.0-0" 326 | } 327 | }, 328 | "node_modules/@babel/plugin-syntax-jsx": { 329 | "version": "7.27.1", 330 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", 331 | "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", 332 | "dev": true, 333 | "license": "MIT", 334 | "dependencies": { 335 | "@babel/helper-plugin-utils": "^7.27.1" 336 | }, 337 | "engines": { 338 | "node": ">=6.9.0" 339 | }, 340 | "peerDependencies": { 341 | "@babel/core": "^7.0.0-0" 342 | } 343 | }, 344 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 345 | "version": "7.10.4", 346 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 347 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 348 | "dev": true, 349 | "license": "MIT", 350 | "dependencies": { 351 | "@babel/helper-plugin-utils": "^7.10.4" 352 | }, 353 | "peerDependencies": { 354 | "@babel/core": "^7.0.0-0" 355 | } 356 | }, 357 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 358 | "version": "7.8.3", 359 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 360 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 361 | "dev": true, 362 | "license": "MIT", 363 | "dependencies": { 364 | "@babel/helper-plugin-utils": "^7.8.0" 365 | }, 366 | "peerDependencies": { 367 | "@babel/core": "^7.0.0-0" 368 | } 369 | }, 370 | "node_modules/@babel/plugin-syntax-numeric-separator": { 371 | "version": "7.10.4", 372 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 373 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 374 | "dev": true, 375 | "license": "MIT", 376 | "dependencies": { 377 | "@babel/helper-plugin-utils": "^7.10.4" 378 | }, 379 | "peerDependencies": { 380 | "@babel/core": "^7.0.0-0" 381 | } 382 | }, 383 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 384 | "version": "7.8.3", 385 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 386 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 387 | "dev": true, 388 | "license": "MIT", 389 | "dependencies": { 390 | "@babel/helper-plugin-utils": "^7.8.0" 391 | }, 392 | "peerDependencies": { 393 | "@babel/core": "^7.0.0-0" 394 | } 395 | }, 396 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 397 | "version": "7.8.3", 398 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 399 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 400 | "dev": true, 401 | "license": "MIT", 402 | "dependencies": { 403 | "@babel/helper-plugin-utils": "^7.8.0" 404 | }, 405 | "peerDependencies": { 406 | "@babel/core": "^7.0.0-0" 407 | } 408 | }, 409 | "node_modules/@babel/plugin-syntax-optional-chaining": { 410 | "version": "7.8.3", 411 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 412 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 413 | "dev": true, 414 | "license": "MIT", 415 | "dependencies": { 416 | "@babel/helper-plugin-utils": "^7.8.0" 417 | }, 418 | "peerDependencies": { 419 | "@babel/core": "^7.0.0-0" 420 | } 421 | }, 422 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 423 | "version": "7.14.5", 424 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 425 | "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 426 | "dev": true, 427 | "license": "MIT", 428 | "dependencies": { 429 | "@babel/helper-plugin-utils": "^7.14.5" 430 | }, 431 | "engines": { 432 | "node": ">=6.9.0" 433 | }, 434 | "peerDependencies": { 435 | "@babel/core": "^7.0.0-0" 436 | } 437 | }, 438 | "node_modules/@babel/plugin-syntax-top-level-await": { 439 | "version": "7.14.5", 440 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 441 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 442 | "dev": true, 443 | "license": "MIT", 444 | "dependencies": { 445 | "@babel/helper-plugin-utils": "^7.14.5" 446 | }, 447 | "engines": { 448 | "node": ">=6.9.0" 449 | }, 450 | "peerDependencies": { 451 | "@babel/core": "^7.0.0-0" 452 | } 453 | }, 454 | "node_modules/@babel/plugin-syntax-typescript": { 455 | "version": "7.27.1", 456 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", 457 | "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", 458 | "dev": true, 459 | "license": "MIT", 460 | "dependencies": { 461 | "@babel/helper-plugin-utils": "^7.27.1" 462 | }, 463 | "engines": { 464 | "node": ">=6.9.0" 465 | }, 466 | "peerDependencies": { 467 | "@babel/core": "^7.0.0-0" 468 | } 469 | }, 470 | "node_modules/@babel/template": { 471 | "version": "7.27.2", 472 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", 473 | "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", 474 | "dev": true, 475 | "license": "MIT", 476 | "dependencies": { 477 | "@babel/code-frame": "^7.27.1", 478 | "@babel/parser": "^7.27.2", 479 | "@babel/types": "^7.27.1" 480 | }, 481 | "engines": { 482 | "node": ">=6.9.0" 483 | } 484 | }, 485 | "node_modules/@babel/traverse": { 486 | "version": "7.27.1", 487 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.1.tgz", 488 | "integrity": "sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==", 489 | "dev": true, 490 | "license": "MIT", 491 | "dependencies": { 492 | "@babel/code-frame": "^7.27.1", 493 | "@babel/generator": "^7.27.1", 494 | "@babel/parser": "^7.27.1", 495 | "@babel/template": "^7.27.1", 496 | "@babel/types": "^7.27.1", 497 | "debug": "^4.3.1", 498 | "globals": "^11.1.0" 499 | }, 500 | "engines": { 501 | "node": ">=6.9.0" 502 | } 503 | }, 504 | "node_modules/@babel/types": { 505 | "version": "7.27.1", 506 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz", 507 | "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==", 508 | "license": "MIT", 509 | "dependencies": { 510 | "@babel/helper-string-parser": "^7.27.1", 511 | "@babel/helper-validator-identifier": "^7.27.1" 512 | }, 513 | "engines": { 514 | "node": ">=6.9.0" 515 | } 516 | }, 517 | "node_modules/@bcoe/v8-coverage": { 518 | "version": "0.2.3", 519 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 520 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 521 | "dev": true, 522 | "license": "MIT" 523 | }, 524 | "node_modules/@istanbuljs/load-nyc-config": { 525 | "version": "1.1.0", 526 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 527 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 528 | "dev": true, 529 | "license": "ISC", 530 | "dependencies": { 531 | "camelcase": "^5.3.1", 532 | "find-up": "^4.1.0", 533 | "get-package-type": "^0.1.0", 534 | "js-yaml": "^3.13.1", 535 | "resolve-from": "^5.0.0" 536 | }, 537 | "engines": { 538 | "node": ">=8" 539 | } 540 | }, 541 | "node_modules/@istanbuljs/schema": { 542 | "version": "0.1.3", 543 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 544 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 545 | "dev": true, 546 | "license": "MIT", 547 | "engines": { 548 | "node": ">=8" 549 | } 550 | }, 551 | "node_modules/@jest/console": { 552 | "version": "29.7.0", 553 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 554 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 555 | "dev": true, 556 | "license": "MIT", 557 | "dependencies": { 558 | "@jest/types": "^29.6.3", 559 | "@types/node": "*", 560 | "chalk": "^4.0.0", 561 | "jest-message-util": "^29.7.0", 562 | "jest-util": "^29.7.0", 563 | "slash": "^3.0.0" 564 | }, 565 | "engines": { 566 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 567 | } 568 | }, 569 | "node_modules/@jest/core": { 570 | "version": "29.7.0", 571 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 572 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 573 | "dev": true, 574 | "license": "MIT", 575 | "dependencies": { 576 | "@jest/console": "^29.7.0", 577 | "@jest/reporters": "^29.7.0", 578 | "@jest/test-result": "^29.7.0", 579 | "@jest/transform": "^29.7.0", 580 | "@jest/types": "^29.6.3", 581 | "@types/node": "*", 582 | "ansi-escapes": "^4.2.1", 583 | "chalk": "^4.0.0", 584 | "ci-info": "^3.2.0", 585 | "exit": "^0.1.2", 586 | "graceful-fs": "^4.2.9", 587 | "jest-changed-files": "^29.7.0", 588 | "jest-config": "^29.7.0", 589 | "jest-haste-map": "^29.7.0", 590 | "jest-message-util": "^29.7.0", 591 | "jest-regex-util": "^29.6.3", 592 | "jest-resolve": "^29.7.0", 593 | "jest-resolve-dependencies": "^29.7.0", 594 | "jest-runner": "^29.7.0", 595 | "jest-runtime": "^29.7.0", 596 | "jest-snapshot": "^29.7.0", 597 | "jest-util": "^29.7.0", 598 | "jest-validate": "^29.7.0", 599 | "jest-watcher": "^29.7.0", 600 | "micromatch": "^4.0.4", 601 | "pretty-format": "^29.7.0", 602 | "slash": "^3.0.0", 603 | "strip-ansi": "^6.0.0" 604 | }, 605 | "engines": { 606 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 607 | }, 608 | "peerDependencies": { 609 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 610 | }, 611 | "peerDependenciesMeta": { 612 | "node-notifier": { 613 | "optional": true 614 | } 615 | } 616 | }, 617 | "node_modules/@jest/environment": { 618 | "version": "29.7.0", 619 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 620 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 621 | "dev": true, 622 | "license": "MIT", 623 | "dependencies": { 624 | "@jest/fake-timers": "^29.7.0", 625 | "@jest/types": "^29.6.3", 626 | "@types/node": "*", 627 | "jest-mock": "^29.7.0" 628 | }, 629 | "engines": { 630 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 631 | } 632 | }, 633 | "node_modules/@jest/expect": { 634 | "version": "29.7.0", 635 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 636 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 637 | "dev": true, 638 | "license": "MIT", 639 | "dependencies": { 640 | "expect": "^29.7.0", 641 | "jest-snapshot": "^29.7.0" 642 | }, 643 | "engines": { 644 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 645 | } 646 | }, 647 | "node_modules/@jest/expect-utils": { 648 | "version": "29.7.0", 649 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 650 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 651 | "dev": true, 652 | "license": "MIT", 653 | "dependencies": { 654 | "jest-get-type": "^29.6.3" 655 | }, 656 | "engines": { 657 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 658 | } 659 | }, 660 | "node_modules/@jest/fake-timers": { 661 | "version": "29.7.0", 662 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 663 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 664 | "dev": true, 665 | "license": "MIT", 666 | "dependencies": { 667 | "@jest/types": "^29.6.3", 668 | "@sinonjs/fake-timers": "^10.0.2", 669 | "@types/node": "*", 670 | "jest-message-util": "^29.7.0", 671 | "jest-mock": "^29.7.0", 672 | "jest-util": "^29.7.0" 673 | }, 674 | "engines": { 675 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 676 | } 677 | }, 678 | "node_modules/@jest/globals": { 679 | "version": "29.7.0", 680 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 681 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 682 | "dev": true, 683 | "license": "MIT", 684 | "dependencies": { 685 | "@jest/environment": "^29.7.0", 686 | "@jest/expect": "^29.7.0", 687 | "@jest/types": "^29.6.3", 688 | "jest-mock": "^29.7.0" 689 | }, 690 | "engines": { 691 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 692 | } 693 | }, 694 | "node_modules/@jest/reporters": { 695 | "version": "29.7.0", 696 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 697 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 698 | "dev": true, 699 | "license": "MIT", 700 | "dependencies": { 701 | "@bcoe/v8-coverage": "^0.2.3", 702 | "@jest/console": "^29.7.0", 703 | "@jest/test-result": "^29.7.0", 704 | "@jest/transform": "^29.7.0", 705 | "@jest/types": "^29.6.3", 706 | "@jridgewell/trace-mapping": "^0.3.18", 707 | "@types/node": "*", 708 | "chalk": "^4.0.0", 709 | "collect-v8-coverage": "^1.0.0", 710 | "exit": "^0.1.2", 711 | "glob": "^7.1.3", 712 | "graceful-fs": "^4.2.9", 713 | "istanbul-lib-coverage": "^3.0.0", 714 | "istanbul-lib-instrument": "^6.0.0", 715 | "istanbul-lib-report": "^3.0.0", 716 | "istanbul-lib-source-maps": "^4.0.0", 717 | "istanbul-reports": "^3.1.3", 718 | "jest-message-util": "^29.7.0", 719 | "jest-util": "^29.7.0", 720 | "jest-worker": "^29.7.0", 721 | "slash": "^3.0.0", 722 | "string-length": "^4.0.1", 723 | "strip-ansi": "^6.0.0", 724 | "v8-to-istanbul": "^9.0.1" 725 | }, 726 | "engines": { 727 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 728 | }, 729 | "peerDependencies": { 730 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 731 | }, 732 | "peerDependenciesMeta": { 733 | "node-notifier": { 734 | "optional": true 735 | } 736 | } 737 | }, 738 | "node_modules/@jest/schemas": { 739 | "version": "29.6.3", 740 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 741 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 742 | "dev": true, 743 | "license": "MIT", 744 | "dependencies": { 745 | "@sinclair/typebox": "^0.27.8" 746 | }, 747 | "engines": { 748 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 749 | } 750 | }, 751 | "node_modules/@jest/source-map": { 752 | "version": "29.6.3", 753 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 754 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 755 | "dev": true, 756 | "license": "MIT", 757 | "dependencies": { 758 | "@jridgewell/trace-mapping": "^0.3.18", 759 | "callsites": "^3.0.0", 760 | "graceful-fs": "^4.2.9" 761 | }, 762 | "engines": { 763 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 764 | } 765 | }, 766 | "node_modules/@jest/test-result": { 767 | "version": "29.7.0", 768 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 769 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 770 | "dev": true, 771 | "license": "MIT", 772 | "dependencies": { 773 | "@jest/console": "^29.7.0", 774 | "@jest/types": "^29.6.3", 775 | "@types/istanbul-lib-coverage": "^2.0.0", 776 | "collect-v8-coverage": "^1.0.0" 777 | }, 778 | "engines": { 779 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 780 | } 781 | }, 782 | "node_modules/@jest/test-sequencer": { 783 | "version": "29.7.0", 784 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 785 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 786 | "dev": true, 787 | "license": "MIT", 788 | "dependencies": { 789 | "@jest/test-result": "^29.7.0", 790 | "graceful-fs": "^4.2.9", 791 | "jest-haste-map": "^29.7.0", 792 | "slash": "^3.0.0" 793 | }, 794 | "engines": { 795 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 796 | } 797 | }, 798 | "node_modules/@jest/transform": { 799 | "version": "29.7.0", 800 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 801 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 802 | "dev": true, 803 | "license": "MIT", 804 | "dependencies": { 805 | "@babel/core": "^7.11.6", 806 | "@jest/types": "^29.6.3", 807 | "@jridgewell/trace-mapping": "^0.3.18", 808 | "babel-plugin-istanbul": "^6.1.1", 809 | "chalk": "^4.0.0", 810 | "convert-source-map": "^2.0.0", 811 | "fast-json-stable-stringify": "^2.1.0", 812 | "graceful-fs": "^4.2.9", 813 | "jest-haste-map": "^29.7.0", 814 | "jest-regex-util": "^29.6.3", 815 | "jest-util": "^29.7.0", 816 | "micromatch": "^4.0.4", 817 | "pirates": "^4.0.4", 818 | "slash": "^3.0.0", 819 | "write-file-atomic": "^4.0.2" 820 | }, 821 | "engines": { 822 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 823 | } 824 | }, 825 | "node_modules/@jest/types": { 826 | "version": "29.6.3", 827 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 828 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 829 | "dev": true, 830 | "license": "MIT", 831 | "dependencies": { 832 | "@jest/schemas": "^29.6.3", 833 | "@types/istanbul-lib-coverage": "^2.0.0", 834 | "@types/istanbul-reports": "^3.0.0", 835 | "@types/node": "*", 836 | "@types/yargs": "^17.0.8", 837 | "chalk": "^4.0.0" 838 | }, 839 | "engines": { 840 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 841 | } 842 | }, 843 | "node_modules/@jridgewell/gen-mapping": { 844 | "version": "0.3.8", 845 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 846 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 847 | "license": "MIT", 848 | "dependencies": { 849 | "@jridgewell/set-array": "^1.2.1", 850 | "@jridgewell/sourcemap-codec": "^1.4.10", 851 | "@jridgewell/trace-mapping": "^0.3.24" 852 | }, 853 | "engines": { 854 | "node": ">=6.0.0" 855 | } 856 | }, 857 | "node_modules/@jridgewell/resolve-uri": { 858 | "version": "3.1.2", 859 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 860 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 861 | "license": "MIT", 862 | "engines": { 863 | "node": ">=6.0.0" 864 | } 865 | }, 866 | "node_modules/@jridgewell/set-array": { 867 | "version": "1.2.1", 868 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 869 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 870 | "license": "MIT", 871 | "engines": { 872 | "node": ">=6.0.0" 873 | } 874 | }, 875 | "node_modules/@jridgewell/sourcemap-codec": { 876 | "version": "1.5.0", 877 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 878 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 879 | "license": "MIT" 880 | }, 881 | "node_modules/@jridgewell/trace-mapping": { 882 | "version": "0.3.25", 883 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 884 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 885 | "license": "MIT", 886 | "dependencies": { 887 | "@jridgewell/resolve-uri": "^3.1.0", 888 | "@jridgewell/sourcemap-codec": "^1.4.14" 889 | } 890 | }, 891 | "node_modules/@pkgr/core": { 892 | "version": "0.2.4", 893 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", 894 | "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", 895 | "dev": true, 896 | "license": "MIT", 897 | "engines": { 898 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 899 | }, 900 | "funding": { 901 | "url": "https://opencollective.com/pkgr" 902 | } 903 | }, 904 | "node_modules/@sinclair/typebox": { 905 | "version": "0.27.8", 906 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 907 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 908 | "dev": true, 909 | "license": "MIT" 910 | }, 911 | "node_modules/@sinonjs/commons": { 912 | "version": "3.0.1", 913 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 914 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 915 | "dev": true, 916 | "license": "BSD-3-Clause", 917 | "dependencies": { 918 | "type-detect": "4.0.8" 919 | } 920 | }, 921 | "node_modules/@sinonjs/fake-timers": { 922 | "version": "10.3.0", 923 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 924 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 925 | "dev": true, 926 | "license": "BSD-3-Clause", 927 | "dependencies": { 928 | "@sinonjs/commons": "^3.0.0" 929 | } 930 | }, 931 | "node_modules/@types/babel__core": { 932 | "version": "7.20.5", 933 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 934 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 935 | "dev": true, 936 | "license": "MIT", 937 | "dependencies": { 938 | "@babel/parser": "^7.20.7", 939 | "@babel/types": "^7.20.7", 940 | "@types/babel__generator": "*", 941 | "@types/babel__template": "*", 942 | "@types/babel__traverse": "*" 943 | } 944 | }, 945 | "node_modules/@types/babel__generator": { 946 | "version": "7.27.0", 947 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", 948 | "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", 949 | "dev": true, 950 | "license": "MIT", 951 | "dependencies": { 952 | "@babel/types": "^7.0.0" 953 | } 954 | }, 955 | "node_modules/@types/babel__template": { 956 | "version": "7.4.4", 957 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 958 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 959 | "dev": true, 960 | "license": "MIT", 961 | "dependencies": { 962 | "@babel/parser": "^7.1.0", 963 | "@babel/types": "^7.0.0" 964 | } 965 | }, 966 | "node_modules/@types/babel__traverse": { 967 | "version": "7.20.7", 968 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", 969 | "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", 970 | "dev": true, 971 | "license": "MIT", 972 | "dependencies": { 973 | "@babel/types": "^7.20.7" 974 | } 975 | }, 976 | "node_modules/@types/graceful-fs": { 977 | "version": "4.1.9", 978 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 979 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 980 | "dev": true, 981 | "license": "MIT", 982 | "dependencies": { 983 | "@types/node": "*" 984 | } 985 | }, 986 | "node_modules/@types/istanbul-lib-coverage": { 987 | "version": "2.0.6", 988 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 989 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 990 | "dev": true, 991 | "license": "MIT" 992 | }, 993 | "node_modules/@types/istanbul-lib-report": { 994 | "version": "3.0.3", 995 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 996 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 997 | "dev": true, 998 | "license": "MIT", 999 | "dependencies": { 1000 | "@types/istanbul-lib-coverage": "*" 1001 | } 1002 | }, 1003 | "node_modules/@types/istanbul-reports": { 1004 | "version": "3.0.4", 1005 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 1006 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 1007 | "dev": true, 1008 | "license": "MIT", 1009 | "dependencies": { 1010 | "@types/istanbul-lib-report": "*" 1011 | } 1012 | }, 1013 | "node_modules/@types/jest": { 1014 | "version": "29.5.14", 1015 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", 1016 | "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", 1017 | "dev": true, 1018 | "license": "MIT", 1019 | "dependencies": { 1020 | "expect": "^29.0.0", 1021 | "pretty-format": "^29.0.0" 1022 | } 1023 | }, 1024 | "node_modules/@types/node": { 1025 | "version": "22.15.21", 1026 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.21.tgz", 1027 | "integrity": "sha512-EV/37Td6c+MgKAbkcLG6vqZ2zEYHD7bvSrzqqs2RIhbA6w3x+Dqz8MZM3sP6kGTeLrdoOgKZe+Xja7tUB2DNkQ==", 1028 | "dev": true, 1029 | "license": "MIT", 1030 | "dependencies": { 1031 | "undici-types": "~6.21.0" 1032 | } 1033 | }, 1034 | "node_modules/@types/stack-utils": { 1035 | "version": "2.0.3", 1036 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1037 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1038 | "dev": true, 1039 | "license": "MIT" 1040 | }, 1041 | "node_modules/@types/yargs": { 1042 | "version": "17.0.33", 1043 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1044 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1045 | "dev": true, 1046 | "license": "MIT", 1047 | "dependencies": { 1048 | "@types/yargs-parser": "*" 1049 | } 1050 | }, 1051 | "node_modules/@types/yargs-parser": { 1052 | "version": "21.0.3", 1053 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1054 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1055 | "dev": true, 1056 | "license": "MIT" 1057 | }, 1058 | "node_modules/ansi-escapes": { 1059 | "version": "4.3.2", 1060 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1061 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1062 | "dev": true, 1063 | "license": "MIT", 1064 | "dependencies": { 1065 | "type-fest": "^0.21.3" 1066 | }, 1067 | "engines": { 1068 | "node": ">=8" 1069 | }, 1070 | "funding": { 1071 | "url": "https://github.com/sponsors/sindresorhus" 1072 | } 1073 | }, 1074 | "node_modules/ansi-regex": { 1075 | "version": "5.0.1", 1076 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1077 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1078 | "dev": true, 1079 | "license": "MIT", 1080 | "engines": { 1081 | "node": ">=8" 1082 | } 1083 | }, 1084 | "node_modules/ansi-styles": { 1085 | "version": "4.3.0", 1086 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1087 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1088 | "dev": true, 1089 | "license": "MIT", 1090 | "dependencies": { 1091 | "color-convert": "^2.0.1" 1092 | }, 1093 | "engines": { 1094 | "node": ">=8" 1095 | }, 1096 | "funding": { 1097 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1098 | } 1099 | }, 1100 | "node_modules/anymatch": { 1101 | "version": "3.1.3", 1102 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1103 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1104 | "dev": true, 1105 | "license": "ISC", 1106 | "dependencies": { 1107 | "normalize-path": "^3.0.0", 1108 | "picomatch": "^2.0.4" 1109 | }, 1110 | "engines": { 1111 | "node": ">= 8" 1112 | } 1113 | }, 1114 | "node_modules/argparse": { 1115 | "version": "1.0.10", 1116 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1117 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1118 | "dev": true, 1119 | "license": "MIT", 1120 | "dependencies": { 1121 | "sprintf-js": "~1.0.2" 1122 | } 1123 | }, 1124 | "node_modules/async": { 1125 | "version": "3.2.6", 1126 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", 1127 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", 1128 | "dev": true, 1129 | "license": "MIT" 1130 | }, 1131 | "node_modules/babel-jest": { 1132 | "version": "29.7.0", 1133 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1134 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1135 | "dev": true, 1136 | "license": "MIT", 1137 | "dependencies": { 1138 | "@jest/transform": "^29.7.0", 1139 | "@types/babel__core": "^7.1.14", 1140 | "babel-plugin-istanbul": "^6.1.1", 1141 | "babel-preset-jest": "^29.6.3", 1142 | "chalk": "^4.0.0", 1143 | "graceful-fs": "^4.2.9", 1144 | "slash": "^3.0.0" 1145 | }, 1146 | "engines": { 1147 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1148 | }, 1149 | "peerDependencies": { 1150 | "@babel/core": "^7.8.0" 1151 | } 1152 | }, 1153 | "node_modules/babel-plugin-istanbul": { 1154 | "version": "6.1.1", 1155 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1156 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1157 | "dev": true, 1158 | "license": "BSD-3-Clause", 1159 | "dependencies": { 1160 | "@babel/helper-plugin-utils": "^7.0.0", 1161 | "@istanbuljs/load-nyc-config": "^1.0.0", 1162 | "@istanbuljs/schema": "^0.1.2", 1163 | "istanbul-lib-instrument": "^5.0.4", 1164 | "test-exclude": "^6.0.0" 1165 | }, 1166 | "engines": { 1167 | "node": ">=8" 1168 | } 1169 | }, 1170 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1171 | "version": "5.2.1", 1172 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1173 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1174 | "dev": true, 1175 | "license": "BSD-3-Clause", 1176 | "dependencies": { 1177 | "@babel/core": "^7.12.3", 1178 | "@babel/parser": "^7.14.7", 1179 | "@istanbuljs/schema": "^0.1.2", 1180 | "istanbul-lib-coverage": "^3.2.0", 1181 | "semver": "^6.3.0" 1182 | }, 1183 | "engines": { 1184 | "node": ">=8" 1185 | } 1186 | }, 1187 | "node_modules/babel-plugin-jest-hoist": { 1188 | "version": "29.6.3", 1189 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1190 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1191 | "dev": true, 1192 | "license": "MIT", 1193 | "dependencies": { 1194 | "@babel/template": "^7.3.3", 1195 | "@babel/types": "^7.3.3", 1196 | "@types/babel__core": "^7.1.14", 1197 | "@types/babel__traverse": "^7.0.6" 1198 | }, 1199 | "engines": { 1200 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1201 | } 1202 | }, 1203 | "node_modules/babel-preset-current-node-syntax": { 1204 | "version": "1.1.0", 1205 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", 1206 | "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", 1207 | "dev": true, 1208 | "license": "MIT", 1209 | "dependencies": { 1210 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1211 | "@babel/plugin-syntax-bigint": "^7.8.3", 1212 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1213 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1214 | "@babel/plugin-syntax-import-attributes": "^7.24.7", 1215 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1216 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1217 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1218 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1219 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1220 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1221 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1222 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1223 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1224 | "@babel/plugin-syntax-top-level-await": "^7.14.5" 1225 | }, 1226 | "peerDependencies": { 1227 | "@babel/core": "^7.0.0" 1228 | } 1229 | }, 1230 | "node_modules/babel-preset-jest": { 1231 | "version": "29.6.3", 1232 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1233 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1234 | "dev": true, 1235 | "license": "MIT", 1236 | "dependencies": { 1237 | "babel-plugin-jest-hoist": "^29.6.3", 1238 | "babel-preset-current-node-syntax": "^1.0.0" 1239 | }, 1240 | "engines": { 1241 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1242 | }, 1243 | "peerDependencies": { 1244 | "@babel/core": "^7.0.0" 1245 | } 1246 | }, 1247 | "node_modules/balanced-match": { 1248 | "version": "1.0.2", 1249 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1250 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1251 | "dev": true, 1252 | "license": "MIT" 1253 | }, 1254 | "node_modules/brace-expansion": { 1255 | "version": "1.1.11", 1256 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1257 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1258 | "dev": true, 1259 | "license": "MIT", 1260 | "dependencies": { 1261 | "balanced-match": "^1.0.0", 1262 | "concat-map": "0.0.1" 1263 | } 1264 | }, 1265 | "node_modules/braces": { 1266 | "version": "3.0.3", 1267 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1268 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1269 | "dev": true, 1270 | "license": "MIT", 1271 | "dependencies": { 1272 | "fill-range": "^7.1.1" 1273 | }, 1274 | "engines": { 1275 | "node": ">=8" 1276 | } 1277 | }, 1278 | "node_modules/browserslist": { 1279 | "version": "4.24.5", 1280 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz", 1281 | "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==", 1282 | "dev": true, 1283 | "funding": [ 1284 | { 1285 | "type": "opencollective", 1286 | "url": "https://opencollective.com/browserslist" 1287 | }, 1288 | { 1289 | "type": "tidelift", 1290 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1291 | }, 1292 | { 1293 | "type": "github", 1294 | "url": "https://github.com/sponsors/ai" 1295 | } 1296 | ], 1297 | "license": "MIT", 1298 | "dependencies": { 1299 | "caniuse-lite": "^1.0.30001716", 1300 | "electron-to-chromium": "^1.5.149", 1301 | "node-releases": "^2.0.19", 1302 | "update-browserslist-db": "^1.1.3" 1303 | }, 1304 | "bin": { 1305 | "browserslist": "cli.js" 1306 | }, 1307 | "engines": { 1308 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1309 | } 1310 | }, 1311 | "node_modules/bs-logger": { 1312 | "version": "0.2.6", 1313 | "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", 1314 | "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", 1315 | "dev": true, 1316 | "license": "MIT", 1317 | "dependencies": { 1318 | "fast-json-stable-stringify": "2.x" 1319 | }, 1320 | "engines": { 1321 | "node": ">= 6" 1322 | } 1323 | }, 1324 | "node_modules/bser": { 1325 | "version": "2.1.1", 1326 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1327 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1328 | "dev": true, 1329 | "license": "Apache-2.0", 1330 | "dependencies": { 1331 | "node-int64": "^0.4.0" 1332 | } 1333 | }, 1334 | "node_modules/buffer-from": { 1335 | "version": "1.1.2", 1336 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1337 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1338 | "dev": true, 1339 | "license": "MIT" 1340 | }, 1341 | "node_modules/callsites": { 1342 | "version": "3.1.0", 1343 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1344 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1345 | "dev": true, 1346 | "license": "MIT", 1347 | "engines": { 1348 | "node": ">=6" 1349 | } 1350 | }, 1351 | "node_modules/camelcase": { 1352 | "version": "5.3.1", 1353 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1354 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1355 | "dev": true, 1356 | "license": "MIT", 1357 | "engines": { 1358 | "node": ">=6" 1359 | } 1360 | }, 1361 | "node_modules/caniuse-lite": { 1362 | "version": "1.0.30001718", 1363 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz", 1364 | "integrity": "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==", 1365 | "dev": true, 1366 | "funding": [ 1367 | { 1368 | "type": "opencollective", 1369 | "url": "https://opencollective.com/browserslist" 1370 | }, 1371 | { 1372 | "type": "tidelift", 1373 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1374 | }, 1375 | { 1376 | "type": "github", 1377 | "url": "https://github.com/sponsors/ai" 1378 | } 1379 | ], 1380 | "license": "CC-BY-4.0" 1381 | }, 1382 | "node_modules/chalk": { 1383 | "version": "4.1.2", 1384 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1385 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1386 | "dev": true, 1387 | "license": "MIT", 1388 | "dependencies": { 1389 | "ansi-styles": "^4.1.0", 1390 | "supports-color": "^7.1.0" 1391 | }, 1392 | "engines": { 1393 | "node": ">=10" 1394 | }, 1395 | "funding": { 1396 | "url": "https://github.com/chalk/chalk?sponsor=1" 1397 | } 1398 | }, 1399 | "node_modules/char-regex": { 1400 | "version": "1.0.2", 1401 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1402 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1403 | "dev": true, 1404 | "license": "MIT", 1405 | "engines": { 1406 | "node": ">=10" 1407 | } 1408 | }, 1409 | "node_modules/ci-info": { 1410 | "version": "3.9.0", 1411 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1412 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1413 | "dev": true, 1414 | "funding": [ 1415 | { 1416 | "type": "github", 1417 | "url": "https://github.com/sponsors/sibiraj-s" 1418 | } 1419 | ], 1420 | "license": "MIT", 1421 | "engines": { 1422 | "node": ">=8" 1423 | } 1424 | }, 1425 | "node_modules/cjs-module-lexer": { 1426 | "version": "1.4.3", 1427 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", 1428 | "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", 1429 | "dev": true, 1430 | "license": "MIT" 1431 | }, 1432 | "node_modules/cliui": { 1433 | "version": "8.0.1", 1434 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1435 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1436 | "dev": true, 1437 | "license": "ISC", 1438 | "dependencies": { 1439 | "string-width": "^4.2.0", 1440 | "strip-ansi": "^6.0.1", 1441 | "wrap-ansi": "^7.0.0" 1442 | }, 1443 | "engines": { 1444 | "node": ">=12" 1445 | } 1446 | }, 1447 | "node_modules/co": { 1448 | "version": "4.6.0", 1449 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1450 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1451 | "dev": true, 1452 | "license": "MIT", 1453 | "engines": { 1454 | "iojs": ">= 1.0.0", 1455 | "node": ">= 0.12.0" 1456 | } 1457 | }, 1458 | "node_modules/collect-v8-coverage": { 1459 | "version": "1.0.2", 1460 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1461 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1462 | "dev": true, 1463 | "license": "MIT" 1464 | }, 1465 | "node_modules/color-convert": { 1466 | "version": "2.0.1", 1467 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1468 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1469 | "dev": true, 1470 | "license": "MIT", 1471 | "dependencies": { 1472 | "color-name": "~1.1.4" 1473 | }, 1474 | "engines": { 1475 | "node": ">=7.0.0" 1476 | } 1477 | }, 1478 | "node_modules/color-name": { 1479 | "version": "1.1.4", 1480 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1481 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1482 | "dev": true, 1483 | "license": "MIT" 1484 | }, 1485 | "node_modules/concat-map": { 1486 | "version": "0.0.1", 1487 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1488 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1489 | "dev": true, 1490 | "license": "MIT" 1491 | }, 1492 | "node_modules/convert-source-map": { 1493 | "version": "2.0.0", 1494 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1495 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1496 | "dev": true, 1497 | "license": "MIT" 1498 | }, 1499 | "node_modules/create-jest": { 1500 | "version": "29.7.0", 1501 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1502 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1503 | "dev": true, 1504 | "license": "MIT", 1505 | "dependencies": { 1506 | "@jest/types": "^29.6.3", 1507 | "chalk": "^4.0.0", 1508 | "exit": "^0.1.2", 1509 | "graceful-fs": "^4.2.9", 1510 | "jest-config": "^29.7.0", 1511 | "jest-util": "^29.7.0", 1512 | "prompts": "^2.0.1" 1513 | }, 1514 | "bin": { 1515 | "create-jest": "bin/create-jest.js" 1516 | }, 1517 | "engines": { 1518 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1519 | } 1520 | }, 1521 | "node_modules/cross-spawn": { 1522 | "version": "7.0.6", 1523 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1524 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1525 | "dev": true, 1526 | "license": "MIT", 1527 | "dependencies": { 1528 | "path-key": "^3.1.0", 1529 | "shebang-command": "^2.0.0", 1530 | "which": "^2.0.1" 1531 | }, 1532 | "engines": { 1533 | "node": ">= 8" 1534 | } 1535 | }, 1536 | "node_modules/debug": { 1537 | "version": "4.4.1", 1538 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", 1539 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", 1540 | "dev": true, 1541 | "license": "MIT", 1542 | "dependencies": { 1543 | "ms": "^2.1.3" 1544 | }, 1545 | "engines": { 1546 | "node": ">=6.0" 1547 | }, 1548 | "peerDependenciesMeta": { 1549 | "supports-color": { 1550 | "optional": true 1551 | } 1552 | } 1553 | }, 1554 | "node_modules/dedent": { 1555 | "version": "1.6.0", 1556 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.6.0.tgz", 1557 | "integrity": "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==", 1558 | "dev": true, 1559 | "license": "MIT", 1560 | "peerDependencies": { 1561 | "babel-plugin-macros": "^3.1.0" 1562 | }, 1563 | "peerDependenciesMeta": { 1564 | "babel-plugin-macros": { 1565 | "optional": true 1566 | } 1567 | } 1568 | }, 1569 | "node_modules/deepmerge": { 1570 | "version": "4.3.1", 1571 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1572 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1573 | "dev": true, 1574 | "license": "MIT", 1575 | "engines": { 1576 | "node": ">=0.10.0" 1577 | } 1578 | }, 1579 | "node_modules/detect-indent": { 1580 | "version": "7.0.1", 1581 | "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", 1582 | "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", 1583 | "dev": true, 1584 | "license": "MIT", 1585 | "engines": { 1586 | "node": ">=12.20" 1587 | } 1588 | }, 1589 | "node_modules/detect-newline": { 1590 | "version": "3.1.0", 1591 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1592 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1593 | "dev": true, 1594 | "license": "MIT", 1595 | "engines": { 1596 | "node": ">=8" 1597 | } 1598 | }, 1599 | "node_modules/diff-sequences": { 1600 | "version": "29.6.3", 1601 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1602 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1603 | "dev": true, 1604 | "license": "MIT", 1605 | "engines": { 1606 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1607 | } 1608 | }, 1609 | "node_modules/ejs": { 1610 | "version": "3.1.10", 1611 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", 1612 | "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", 1613 | "dev": true, 1614 | "license": "Apache-2.0", 1615 | "dependencies": { 1616 | "jake": "^10.8.5" 1617 | }, 1618 | "bin": { 1619 | "ejs": "bin/cli.js" 1620 | }, 1621 | "engines": { 1622 | "node": ">=0.10.0" 1623 | } 1624 | }, 1625 | "node_modules/electron-to-chromium": { 1626 | "version": "1.5.157", 1627 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.157.tgz", 1628 | "integrity": "sha512-/0ybgsQd1muo8QlnuTpKwtl0oX5YMlUGbm8xyqgDU00motRkKFFbUJySAQBWcY79rVqNLWIWa87BGVGClwAB2w==", 1629 | "dev": true, 1630 | "license": "ISC" 1631 | }, 1632 | "node_modules/emittery": { 1633 | "version": "0.13.1", 1634 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1635 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1636 | "dev": true, 1637 | "license": "MIT", 1638 | "engines": { 1639 | "node": ">=12" 1640 | }, 1641 | "funding": { 1642 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1643 | } 1644 | }, 1645 | "node_modules/emoji-regex": { 1646 | "version": "8.0.0", 1647 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1648 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1649 | "dev": true, 1650 | "license": "MIT" 1651 | }, 1652 | "node_modules/entities": { 1653 | "version": "6.0.0", 1654 | "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", 1655 | "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", 1656 | "license": "BSD-2-Clause", 1657 | "engines": { 1658 | "node": ">=0.12" 1659 | }, 1660 | "funding": { 1661 | "url": "https://github.com/fb55/entities?sponsor=1" 1662 | } 1663 | }, 1664 | "node_modules/error-ex": { 1665 | "version": "1.3.2", 1666 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1667 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1668 | "dev": true, 1669 | "license": "MIT", 1670 | "dependencies": { 1671 | "is-arrayish": "^0.2.1" 1672 | } 1673 | }, 1674 | "node_modules/escalade": { 1675 | "version": "3.2.0", 1676 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1677 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1678 | "dev": true, 1679 | "license": "MIT", 1680 | "engines": { 1681 | "node": ">=6" 1682 | } 1683 | }, 1684 | "node_modules/escape-string-regexp": { 1685 | "version": "2.0.0", 1686 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1687 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1688 | "dev": true, 1689 | "license": "MIT", 1690 | "engines": { 1691 | "node": ">=8" 1692 | } 1693 | }, 1694 | "node_modules/esprima": { 1695 | "version": "4.0.1", 1696 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1697 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1698 | "dev": true, 1699 | "license": "BSD-2-Clause", 1700 | "bin": { 1701 | "esparse": "bin/esparse.js", 1702 | "esvalidate": "bin/esvalidate.js" 1703 | }, 1704 | "engines": { 1705 | "node": ">=4" 1706 | } 1707 | }, 1708 | "node_modules/execa": { 1709 | "version": "5.1.1", 1710 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1711 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1712 | "dev": true, 1713 | "license": "MIT", 1714 | "dependencies": { 1715 | "cross-spawn": "^7.0.3", 1716 | "get-stream": "^6.0.0", 1717 | "human-signals": "^2.1.0", 1718 | "is-stream": "^2.0.0", 1719 | "merge-stream": "^2.0.0", 1720 | "npm-run-path": "^4.0.1", 1721 | "onetime": "^5.1.2", 1722 | "signal-exit": "^3.0.3", 1723 | "strip-final-newline": "^2.0.0" 1724 | }, 1725 | "engines": { 1726 | "node": ">=10" 1727 | }, 1728 | "funding": { 1729 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1730 | } 1731 | }, 1732 | "node_modules/exit": { 1733 | "version": "0.1.2", 1734 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1735 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1736 | "dev": true, 1737 | "engines": { 1738 | "node": ">= 0.8.0" 1739 | } 1740 | }, 1741 | "node_modules/expect": { 1742 | "version": "29.7.0", 1743 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1744 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1745 | "dev": true, 1746 | "license": "MIT", 1747 | "dependencies": { 1748 | "@jest/expect-utils": "^29.7.0", 1749 | "jest-get-type": "^29.6.3", 1750 | "jest-matcher-utils": "^29.7.0", 1751 | "jest-message-util": "^29.7.0", 1752 | "jest-util": "^29.7.0" 1753 | }, 1754 | "engines": { 1755 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1756 | } 1757 | }, 1758 | "node_modules/fast-json-stable-stringify": { 1759 | "version": "2.1.0", 1760 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1761 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1762 | "dev": true, 1763 | "license": "MIT" 1764 | }, 1765 | "node_modules/fb-watchman": { 1766 | "version": "2.0.2", 1767 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1768 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1769 | "dev": true, 1770 | "license": "Apache-2.0", 1771 | "dependencies": { 1772 | "bser": "2.1.1" 1773 | } 1774 | }, 1775 | "node_modules/filelist": { 1776 | "version": "1.0.4", 1777 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 1778 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 1779 | "dev": true, 1780 | "license": "Apache-2.0", 1781 | "dependencies": { 1782 | "minimatch": "^5.0.1" 1783 | } 1784 | }, 1785 | "node_modules/filelist/node_modules/brace-expansion": { 1786 | "version": "2.0.1", 1787 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1788 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1789 | "dev": true, 1790 | "license": "MIT", 1791 | "dependencies": { 1792 | "balanced-match": "^1.0.0" 1793 | } 1794 | }, 1795 | "node_modules/filelist/node_modules/minimatch": { 1796 | "version": "5.1.6", 1797 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1798 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1799 | "dev": true, 1800 | "license": "ISC", 1801 | "dependencies": { 1802 | "brace-expansion": "^2.0.1" 1803 | }, 1804 | "engines": { 1805 | "node": ">=10" 1806 | } 1807 | }, 1808 | "node_modules/fill-range": { 1809 | "version": "7.1.1", 1810 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1811 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1812 | "dev": true, 1813 | "license": "MIT", 1814 | "dependencies": { 1815 | "to-regex-range": "^5.0.1" 1816 | }, 1817 | "engines": { 1818 | "node": ">=8" 1819 | } 1820 | }, 1821 | "node_modules/find-up": { 1822 | "version": "4.1.0", 1823 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1824 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1825 | "dev": true, 1826 | "license": "MIT", 1827 | "dependencies": { 1828 | "locate-path": "^5.0.0", 1829 | "path-exists": "^4.0.0" 1830 | }, 1831 | "engines": { 1832 | "node": ">=8" 1833 | } 1834 | }, 1835 | "node_modules/fs.realpath": { 1836 | "version": "1.0.0", 1837 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1838 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1839 | "dev": true, 1840 | "license": "ISC" 1841 | }, 1842 | "node_modules/fsevents": { 1843 | "version": "2.3.3", 1844 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1845 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1846 | "dev": true, 1847 | "hasInstallScript": true, 1848 | "license": "MIT", 1849 | "optional": true, 1850 | "os": [ 1851 | "darwin" 1852 | ], 1853 | "engines": { 1854 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1855 | } 1856 | }, 1857 | "node_modules/function-bind": { 1858 | "version": "1.1.2", 1859 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1860 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1861 | "dev": true, 1862 | "license": "MIT", 1863 | "funding": { 1864 | "url": "https://github.com/sponsors/ljharb" 1865 | } 1866 | }, 1867 | "node_modules/gensync": { 1868 | "version": "1.0.0-beta.2", 1869 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1870 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1871 | "dev": true, 1872 | "license": "MIT", 1873 | "engines": { 1874 | "node": ">=6.9.0" 1875 | } 1876 | }, 1877 | "node_modules/get-caller-file": { 1878 | "version": "2.0.5", 1879 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1880 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1881 | "dev": true, 1882 | "license": "ISC", 1883 | "engines": { 1884 | "node": "6.* || 8.* || >= 10.*" 1885 | } 1886 | }, 1887 | "node_modules/get-package-type": { 1888 | "version": "0.1.0", 1889 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1890 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1891 | "dev": true, 1892 | "license": "MIT", 1893 | "engines": { 1894 | "node": ">=8.0.0" 1895 | } 1896 | }, 1897 | "node_modules/get-stream": { 1898 | "version": "6.0.1", 1899 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1900 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1901 | "dev": true, 1902 | "license": "MIT", 1903 | "engines": { 1904 | "node": ">=10" 1905 | }, 1906 | "funding": { 1907 | "url": "https://github.com/sponsors/sindresorhus" 1908 | } 1909 | }, 1910 | "node_modules/git-hooks-list": { 1911 | "version": "4.1.1", 1912 | "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-4.1.1.tgz", 1913 | "integrity": "sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==", 1914 | "dev": true, 1915 | "license": "MIT", 1916 | "funding": { 1917 | "url": "https://github.com/fisker/git-hooks-list?sponsor=1" 1918 | } 1919 | }, 1920 | "node_modules/glob": { 1921 | "version": "7.2.3", 1922 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1923 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1924 | "deprecated": "Glob versions prior to v9 are no longer supported", 1925 | "dev": true, 1926 | "license": "ISC", 1927 | "dependencies": { 1928 | "fs.realpath": "^1.0.0", 1929 | "inflight": "^1.0.4", 1930 | "inherits": "2", 1931 | "minimatch": "^3.1.1", 1932 | "once": "^1.3.0", 1933 | "path-is-absolute": "^1.0.0" 1934 | }, 1935 | "engines": { 1936 | "node": "*" 1937 | }, 1938 | "funding": { 1939 | "url": "https://github.com/sponsors/isaacs" 1940 | } 1941 | }, 1942 | "node_modules/globals": { 1943 | "version": "11.12.0", 1944 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1945 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1946 | "dev": true, 1947 | "license": "MIT", 1948 | "engines": { 1949 | "node": ">=4" 1950 | } 1951 | }, 1952 | "node_modules/graceful-fs": { 1953 | "version": "4.2.11", 1954 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1955 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1956 | "dev": true, 1957 | "license": "ISC" 1958 | }, 1959 | "node_modules/has-flag": { 1960 | "version": "4.0.0", 1961 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1962 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1963 | "dev": true, 1964 | "license": "MIT", 1965 | "engines": { 1966 | "node": ">=8" 1967 | } 1968 | }, 1969 | "node_modules/hasown": { 1970 | "version": "2.0.2", 1971 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1972 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1973 | "dev": true, 1974 | "license": "MIT", 1975 | "dependencies": { 1976 | "function-bind": "^1.1.2" 1977 | }, 1978 | "engines": { 1979 | "node": ">= 0.4" 1980 | } 1981 | }, 1982 | "node_modules/html-entities": { 1983 | "version": "2.6.0", 1984 | "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", 1985 | "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", 1986 | "funding": [ 1987 | { 1988 | "type": "github", 1989 | "url": "https://github.com/sponsors/mdevils" 1990 | }, 1991 | { 1992 | "type": "patreon", 1993 | "url": "https://patreon.com/mdevils" 1994 | } 1995 | ], 1996 | "license": "MIT" 1997 | }, 1998 | "node_modules/html-escaper": { 1999 | "version": "2.0.2", 2000 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2001 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2002 | "dev": true, 2003 | "license": "MIT" 2004 | }, 2005 | "node_modules/human-signals": { 2006 | "version": "2.1.0", 2007 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2008 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2009 | "dev": true, 2010 | "license": "Apache-2.0", 2011 | "engines": { 2012 | "node": ">=10.17.0" 2013 | } 2014 | }, 2015 | "node_modules/import-local": { 2016 | "version": "3.2.0", 2017 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 2018 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 2019 | "dev": true, 2020 | "license": "MIT", 2021 | "dependencies": { 2022 | "pkg-dir": "^4.2.0", 2023 | "resolve-cwd": "^3.0.0" 2024 | }, 2025 | "bin": { 2026 | "import-local-fixture": "fixtures/cli.js" 2027 | }, 2028 | "engines": { 2029 | "node": ">=8" 2030 | }, 2031 | "funding": { 2032 | "url": "https://github.com/sponsors/sindresorhus" 2033 | } 2034 | }, 2035 | "node_modules/imurmurhash": { 2036 | "version": "0.1.4", 2037 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2038 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2039 | "dev": true, 2040 | "license": "MIT", 2041 | "engines": { 2042 | "node": ">=0.8.19" 2043 | } 2044 | }, 2045 | "node_modules/inflight": { 2046 | "version": "1.0.6", 2047 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2048 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2049 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2050 | "dev": true, 2051 | "license": "ISC", 2052 | "dependencies": { 2053 | "once": "^1.3.0", 2054 | "wrappy": "1" 2055 | } 2056 | }, 2057 | "node_modules/inherits": { 2058 | "version": "2.0.4", 2059 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2060 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2061 | "dev": true, 2062 | "license": "ISC" 2063 | }, 2064 | "node_modules/inline-style-parser": { 2065 | "version": "0.2.4", 2066 | "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", 2067 | "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", 2068 | "license": "MIT" 2069 | }, 2070 | "node_modules/is-arrayish": { 2071 | "version": "0.2.1", 2072 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2073 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2074 | "dev": true, 2075 | "license": "MIT" 2076 | }, 2077 | "node_modules/is-core-module": { 2078 | "version": "2.16.1", 2079 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 2080 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2081 | "dev": true, 2082 | "license": "MIT", 2083 | "dependencies": { 2084 | "hasown": "^2.0.2" 2085 | }, 2086 | "engines": { 2087 | "node": ">= 0.4" 2088 | }, 2089 | "funding": { 2090 | "url": "https://github.com/sponsors/ljharb" 2091 | } 2092 | }, 2093 | "node_modules/is-fullwidth-code-point": { 2094 | "version": "3.0.0", 2095 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2096 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2097 | "dev": true, 2098 | "license": "MIT", 2099 | "engines": { 2100 | "node": ">=8" 2101 | } 2102 | }, 2103 | "node_modules/is-generator-fn": { 2104 | "version": "2.1.0", 2105 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 2106 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 2107 | "dev": true, 2108 | "license": "MIT", 2109 | "engines": { 2110 | "node": ">=6" 2111 | } 2112 | }, 2113 | "node_modules/is-number": { 2114 | "version": "7.0.0", 2115 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2116 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2117 | "dev": true, 2118 | "license": "MIT", 2119 | "engines": { 2120 | "node": ">=0.12.0" 2121 | } 2122 | }, 2123 | "node_modules/is-plain-obj": { 2124 | "version": "4.1.0", 2125 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 2126 | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 2127 | "dev": true, 2128 | "license": "MIT", 2129 | "engines": { 2130 | "node": ">=12" 2131 | }, 2132 | "funding": { 2133 | "url": "https://github.com/sponsors/sindresorhus" 2134 | } 2135 | }, 2136 | "node_modules/is-stream": { 2137 | "version": "2.0.1", 2138 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2139 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2140 | "dev": true, 2141 | "license": "MIT", 2142 | "engines": { 2143 | "node": ">=8" 2144 | }, 2145 | "funding": { 2146 | "url": "https://github.com/sponsors/sindresorhus" 2147 | } 2148 | }, 2149 | "node_modules/isexe": { 2150 | "version": "2.0.0", 2151 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2152 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2153 | "dev": true, 2154 | "license": "ISC" 2155 | }, 2156 | "node_modules/istanbul-lib-coverage": { 2157 | "version": "3.2.2", 2158 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2159 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2160 | "dev": true, 2161 | "license": "BSD-3-Clause", 2162 | "engines": { 2163 | "node": ">=8" 2164 | } 2165 | }, 2166 | "node_modules/istanbul-lib-instrument": { 2167 | "version": "6.0.3", 2168 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2169 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2170 | "dev": true, 2171 | "license": "BSD-3-Clause", 2172 | "dependencies": { 2173 | "@babel/core": "^7.23.9", 2174 | "@babel/parser": "^7.23.9", 2175 | "@istanbuljs/schema": "^0.1.3", 2176 | "istanbul-lib-coverage": "^3.2.0", 2177 | "semver": "^7.5.4" 2178 | }, 2179 | "engines": { 2180 | "node": ">=10" 2181 | } 2182 | }, 2183 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2184 | "version": "7.7.2", 2185 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2186 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2187 | "dev": true, 2188 | "license": "ISC", 2189 | "bin": { 2190 | "semver": "bin/semver.js" 2191 | }, 2192 | "engines": { 2193 | "node": ">=10" 2194 | } 2195 | }, 2196 | "node_modules/istanbul-lib-report": { 2197 | "version": "3.0.1", 2198 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2199 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2200 | "dev": true, 2201 | "license": "BSD-3-Clause", 2202 | "dependencies": { 2203 | "istanbul-lib-coverage": "^3.0.0", 2204 | "make-dir": "^4.0.0", 2205 | "supports-color": "^7.1.0" 2206 | }, 2207 | "engines": { 2208 | "node": ">=10" 2209 | } 2210 | }, 2211 | "node_modules/istanbul-lib-source-maps": { 2212 | "version": "4.0.1", 2213 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2214 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2215 | "dev": true, 2216 | "license": "BSD-3-Clause", 2217 | "dependencies": { 2218 | "debug": "^4.1.1", 2219 | "istanbul-lib-coverage": "^3.0.0", 2220 | "source-map": "^0.6.1" 2221 | }, 2222 | "engines": { 2223 | "node": ">=10" 2224 | } 2225 | }, 2226 | "node_modules/istanbul-reports": { 2227 | "version": "3.1.7", 2228 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2229 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2230 | "dev": true, 2231 | "license": "BSD-3-Clause", 2232 | "dependencies": { 2233 | "html-escaper": "^2.0.0", 2234 | "istanbul-lib-report": "^3.0.0" 2235 | }, 2236 | "engines": { 2237 | "node": ">=8" 2238 | } 2239 | }, 2240 | "node_modules/jake": { 2241 | "version": "10.9.2", 2242 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", 2243 | "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", 2244 | "dev": true, 2245 | "license": "Apache-2.0", 2246 | "dependencies": { 2247 | "async": "^3.2.3", 2248 | "chalk": "^4.0.2", 2249 | "filelist": "^1.0.4", 2250 | "minimatch": "^3.1.2" 2251 | }, 2252 | "bin": { 2253 | "jake": "bin/cli.js" 2254 | }, 2255 | "engines": { 2256 | "node": ">=10" 2257 | } 2258 | }, 2259 | "node_modules/jest": { 2260 | "version": "29.7.0", 2261 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2262 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2263 | "dev": true, 2264 | "license": "MIT", 2265 | "dependencies": { 2266 | "@jest/core": "^29.7.0", 2267 | "@jest/types": "^29.6.3", 2268 | "import-local": "^3.0.2", 2269 | "jest-cli": "^29.7.0" 2270 | }, 2271 | "bin": { 2272 | "jest": "bin/jest.js" 2273 | }, 2274 | "engines": { 2275 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2276 | }, 2277 | "peerDependencies": { 2278 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2279 | }, 2280 | "peerDependenciesMeta": { 2281 | "node-notifier": { 2282 | "optional": true 2283 | } 2284 | } 2285 | }, 2286 | "node_modules/jest-changed-files": { 2287 | "version": "29.7.0", 2288 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2289 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2290 | "dev": true, 2291 | "license": "MIT", 2292 | "dependencies": { 2293 | "execa": "^5.0.0", 2294 | "jest-util": "^29.7.0", 2295 | "p-limit": "^3.1.0" 2296 | }, 2297 | "engines": { 2298 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2299 | } 2300 | }, 2301 | "node_modules/jest-circus": { 2302 | "version": "29.7.0", 2303 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2304 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2305 | "dev": true, 2306 | "license": "MIT", 2307 | "dependencies": { 2308 | "@jest/environment": "^29.7.0", 2309 | "@jest/expect": "^29.7.0", 2310 | "@jest/test-result": "^29.7.0", 2311 | "@jest/types": "^29.6.3", 2312 | "@types/node": "*", 2313 | "chalk": "^4.0.0", 2314 | "co": "^4.6.0", 2315 | "dedent": "^1.0.0", 2316 | "is-generator-fn": "^2.0.0", 2317 | "jest-each": "^29.7.0", 2318 | "jest-matcher-utils": "^29.7.0", 2319 | "jest-message-util": "^29.7.0", 2320 | "jest-runtime": "^29.7.0", 2321 | "jest-snapshot": "^29.7.0", 2322 | "jest-util": "^29.7.0", 2323 | "p-limit": "^3.1.0", 2324 | "pretty-format": "^29.7.0", 2325 | "pure-rand": "^6.0.0", 2326 | "slash": "^3.0.0", 2327 | "stack-utils": "^2.0.3" 2328 | }, 2329 | "engines": { 2330 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2331 | } 2332 | }, 2333 | "node_modules/jest-cli": { 2334 | "version": "29.7.0", 2335 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2336 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2337 | "dev": true, 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "@jest/core": "^29.7.0", 2341 | "@jest/test-result": "^29.7.0", 2342 | "@jest/types": "^29.6.3", 2343 | "chalk": "^4.0.0", 2344 | "create-jest": "^29.7.0", 2345 | "exit": "^0.1.2", 2346 | "import-local": "^3.0.2", 2347 | "jest-config": "^29.7.0", 2348 | "jest-util": "^29.7.0", 2349 | "jest-validate": "^29.7.0", 2350 | "yargs": "^17.3.1" 2351 | }, 2352 | "bin": { 2353 | "jest": "bin/jest.js" 2354 | }, 2355 | "engines": { 2356 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2357 | }, 2358 | "peerDependencies": { 2359 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2360 | }, 2361 | "peerDependenciesMeta": { 2362 | "node-notifier": { 2363 | "optional": true 2364 | } 2365 | } 2366 | }, 2367 | "node_modules/jest-config": { 2368 | "version": "29.7.0", 2369 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2370 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2371 | "dev": true, 2372 | "license": "MIT", 2373 | "dependencies": { 2374 | "@babel/core": "^7.11.6", 2375 | "@jest/test-sequencer": "^29.7.0", 2376 | "@jest/types": "^29.6.3", 2377 | "babel-jest": "^29.7.0", 2378 | "chalk": "^4.0.0", 2379 | "ci-info": "^3.2.0", 2380 | "deepmerge": "^4.2.2", 2381 | "glob": "^7.1.3", 2382 | "graceful-fs": "^4.2.9", 2383 | "jest-circus": "^29.7.0", 2384 | "jest-environment-node": "^29.7.0", 2385 | "jest-get-type": "^29.6.3", 2386 | "jest-regex-util": "^29.6.3", 2387 | "jest-resolve": "^29.7.0", 2388 | "jest-runner": "^29.7.0", 2389 | "jest-util": "^29.7.0", 2390 | "jest-validate": "^29.7.0", 2391 | "micromatch": "^4.0.4", 2392 | "parse-json": "^5.2.0", 2393 | "pretty-format": "^29.7.0", 2394 | "slash": "^3.0.0", 2395 | "strip-json-comments": "^3.1.1" 2396 | }, 2397 | "engines": { 2398 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2399 | }, 2400 | "peerDependencies": { 2401 | "@types/node": "*", 2402 | "ts-node": ">=9.0.0" 2403 | }, 2404 | "peerDependenciesMeta": { 2405 | "@types/node": { 2406 | "optional": true 2407 | }, 2408 | "ts-node": { 2409 | "optional": true 2410 | } 2411 | } 2412 | }, 2413 | "node_modules/jest-diff": { 2414 | "version": "29.7.0", 2415 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2416 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2417 | "dev": true, 2418 | "license": "MIT", 2419 | "dependencies": { 2420 | "chalk": "^4.0.0", 2421 | "diff-sequences": "^29.6.3", 2422 | "jest-get-type": "^29.6.3", 2423 | "pretty-format": "^29.7.0" 2424 | }, 2425 | "engines": { 2426 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2427 | } 2428 | }, 2429 | "node_modules/jest-docblock": { 2430 | "version": "29.7.0", 2431 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2432 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2433 | "dev": true, 2434 | "license": "MIT", 2435 | "dependencies": { 2436 | "detect-newline": "^3.0.0" 2437 | }, 2438 | "engines": { 2439 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2440 | } 2441 | }, 2442 | "node_modules/jest-each": { 2443 | "version": "29.7.0", 2444 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2445 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2446 | "dev": true, 2447 | "license": "MIT", 2448 | "dependencies": { 2449 | "@jest/types": "^29.6.3", 2450 | "chalk": "^4.0.0", 2451 | "jest-get-type": "^29.6.3", 2452 | "jest-util": "^29.7.0", 2453 | "pretty-format": "^29.7.0" 2454 | }, 2455 | "engines": { 2456 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2457 | } 2458 | }, 2459 | "node_modules/jest-environment-node": { 2460 | "version": "29.7.0", 2461 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2462 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2463 | "dev": true, 2464 | "license": "MIT", 2465 | "dependencies": { 2466 | "@jest/environment": "^29.7.0", 2467 | "@jest/fake-timers": "^29.7.0", 2468 | "@jest/types": "^29.6.3", 2469 | "@types/node": "*", 2470 | "jest-mock": "^29.7.0", 2471 | "jest-util": "^29.7.0" 2472 | }, 2473 | "engines": { 2474 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2475 | } 2476 | }, 2477 | "node_modules/jest-get-type": { 2478 | "version": "29.6.3", 2479 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2480 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2481 | "dev": true, 2482 | "license": "MIT", 2483 | "engines": { 2484 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2485 | } 2486 | }, 2487 | "node_modules/jest-haste-map": { 2488 | "version": "29.7.0", 2489 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2490 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2491 | "dev": true, 2492 | "license": "MIT", 2493 | "dependencies": { 2494 | "@jest/types": "^29.6.3", 2495 | "@types/graceful-fs": "^4.1.3", 2496 | "@types/node": "*", 2497 | "anymatch": "^3.0.3", 2498 | "fb-watchman": "^2.0.0", 2499 | "graceful-fs": "^4.2.9", 2500 | "jest-regex-util": "^29.6.3", 2501 | "jest-util": "^29.7.0", 2502 | "jest-worker": "^29.7.0", 2503 | "micromatch": "^4.0.4", 2504 | "walker": "^1.0.8" 2505 | }, 2506 | "engines": { 2507 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2508 | }, 2509 | "optionalDependencies": { 2510 | "fsevents": "^2.3.2" 2511 | } 2512 | }, 2513 | "node_modules/jest-leak-detector": { 2514 | "version": "29.7.0", 2515 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2516 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2517 | "dev": true, 2518 | "license": "MIT", 2519 | "dependencies": { 2520 | "jest-get-type": "^29.6.3", 2521 | "pretty-format": "^29.7.0" 2522 | }, 2523 | "engines": { 2524 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2525 | } 2526 | }, 2527 | "node_modules/jest-matcher-utils": { 2528 | "version": "29.7.0", 2529 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2530 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2531 | "dev": true, 2532 | "license": "MIT", 2533 | "dependencies": { 2534 | "chalk": "^4.0.0", 2535 | "jest-diff": "^29.7.0", 2536 | "jest-get-type": "^29.6.3", 2537 | "pretty-format": "^29.7.0" 2538 | }, 2539 | "engines": { 2540 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2541 | } 2542 | }, 2543 | "node_modules/jest-message-util": { 2544 | "version": "29.7.0", 2545 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2546 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2547 | "dev": true, 2548 | "license": "MIT", 2549 | "dependencies": { 2550 | "@babel/code-frame": "^7.12.13", 2551 | "@jest/types": "^29.6.3", 2552 | "@types/stack-utils": "^2.0.0", 2553 | "chalk": "^4.0.0", 2554 | "graceful-fs": "^4.2.9", 2555 | "micromatch": "^4.0.4", 2556 | "pretty-format": "^29.7.0", 2557 | "slash": "^3.0.0", 2558 | "stack-utils": "^2.0.3" 2559 | }, 2560 | "engines": { 2561 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2562 | } 2563 | }, 2564 | "node_modules/jest-mock": { 2565 | "version": "29.7.0", 2566 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2567 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2568 | "dev": true, 2569 | "license": "MIT", 2570 | "dependencies": { 2571 | "@jest/types": "^29.6.3", 2572 | "@types/node": "*", 2573 | "jest-util": "^29.7.0" 2574 | }, 2575 | "engines": { 2576 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2577 | } 2578 | }, 2579 | "node_modules/jest-pnp-resolver": { 2580 | "version": "1.2.3", 2581 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2582 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2583 | "dev": true, 2584 | "license": "MIT", 2585 | "engines": { 2586 | "node": ">=6" 2587 | }, 2588 | "peerDependencies": { 2589 | "jest-resolve": "*" 2590 | }, 2591 | "peerDependenciesMeta": { 2592 | "jest-resolve": { 2593 | "optional": true 2594 | } 2595 | } 2596 | }, 2597 | "node_modules/jest-regex-util": { 2598 | "version": "29.6.3", 2599 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2600 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2601 | "dev": true, 2602 | "license": "MIT", 2603 | "engines": { 2604 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2605 | } 2606 | }, 2607 | "node_modules/jest-resolve": { 2608 | "version": "29.7.0", 2609 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2610 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2611 | "dev": true, 2612 | "license": "MIT", 2613 | "dependencies": { 2614 | "chalk": "^4.0.0", 2615 | "graceful-fs": "^4.2.9", 2616 | "jest-haste-map": "^29.7.0", 2617 | "jest-pnp-resolver": "^1.2.2", 2618 | "jest-util": "^29.7.0", 2619 | "jest-validate": "^29.7.0", 2620 | "resolve": "^1.20.0", 2621 | "resolve.exports": "^2.0.0", 2622 | "slash": "^3.0.0" 2623 | }, 2624 | "engines": { 2625 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2626 | } 2627 | }, 2628 | "node_modules/jest-resolve-dependencies": { 2629 | "version": "29.7.0", 2630 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2631 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2632 | "dev": true, 2633 | "license": "MIT", 2634 | "dependencies": { 2635 | "jest-regex-util": "^29.6.3", 2636 | "jest-snapshot": "^29.7.0" 2637 | }, 2638 | "engines": { 2639 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2640 | } 2641 | }, 2642 | "node_modules/jest-runner": { 2643 | "version": "29.7.0", 2644 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2645 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2646 | "dev": true, 2647 | "license": "MIT", 2648 | "dependencies": { 2649 | "@jest/console": "^29.7.0", 2650 | "@jest/environment": "^29.7.0", 2651 | "@jest/test-result": "^29.7.0", 2652 | "@jest/transform": "^29.7.0", 2653 | "@jest/types": "^29.6.3", 2654 | "@types/node": "*", 2655 | "chalk": "^4.0.0", 2656 | "emittery": "^0.13.1", 2657 | "graceful-fs": "^4.2.9", 2658 | "jest-docblock": "^29.7.0", 2659 | "jest-environment-node": "^29.7.0", 2660 | "jest-haste-map": "^29.7.0", 2661 | "jest-leak-detector": "^29.7.0", 2662 | "jest-message-util": "^29.7.0", 2663 | "jest-resolve": "^29.7.0", 2664 | "jest-runtime": "^29.7.0", 2665 | "jest-util": "^29.7.0", 2666 | "jest-watcher": "^29.7.0", 2667 | "jest-worker": "^29.7.0", 2668 | "p-limit": "^3.1.0", 2669 | "source-map-support": "0.5.13" 2670 | }, 2671 | "engines": { 2672 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2673 | } 2674 | }, 2675 | "node_modules/jest-runtime": { 2676 | "version": "29.7.0", 2677 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2678 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2679 | "dev": true, 2680 | "license": "MIT", 2681 | "dependencies": { 2682 | "@jest/environment": "^29.7.0", 2683 | "@jest/fake-timers": "^29.7.0", 2684 | "@jest/globals": "^29.7.0", 2685 | "@jest/source-map": "^29.6.3", 2686 | "@jest/test-result": "^29.7.0", 2687 | "@jest/transform": "^29.7.0", 2688 | "@jest/types": "^29.6.3", 2689 | "@types/node": "*", 2690 | "chalk": "^4.0.0", 2691 | "cjs-module-lexer": "^1.0.0", 2692 | "collect-v8-coverage": "^1.0.0", 2693 | "glob": "^7.1.3", 2694 | "graceful-fs": "^4.2.9", 2695 | "jest-haste-map": "^29.7.0", 2696 | "jest-message-util": "^29.7.0", 2697 | "jest-mock": "^29.7.0", 2698 | "jest-regex-util": "^29.6.3", 2699 | "jest-resolve": "^29.7.0", 2700 | "jest-snapshot": "^29.7.0", 2701 | "jest-util": "^29.7.0", 2702 | "slash": "^3.0.0", 2703 | "strip-bom": "^4.0.0" 2704 | }, 2705 | "engines": { 2706 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2707 | } 2708 | }, 2709 | "node_modules/jest-snapshot": { 2710 | "version": "29.7.0", 2711 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2712 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2713 | "dev": true, 2714 | "license": "MIT", 2715 | "dependencies": { 2716 | "@babel/core": "^7.11.6", 2717 | "@babel/generator": "^7.7.2", 2718 | "@babel/plugin-syntax-jsx": "^7.7.2", 2719 | "@babel/plugin-syntax-typescript": "^7.7.2", 2720 | "@babel/types": "^7.3.3", 2721 | "@jest/expect-utils": "^29.7.0", 2722 | "@jest/transform": "^29.7.0", 2723 | "@jest/types": "^29.6.3", 2724 | "babel-preset-current-node-syntax": "^1.0.0", 2725 | "chalk": "^4.0.0", 2726 | "expect": "^29.7.0", 2727 | "graceful-fs": "^4.2.9", 2728 | "jest-diff": "^29.7.0", 2729 | "jest-get-type": "^29.6.3", 2730 | "jest-matcher-utils": "^29.7.0", 2731 | "jest-message-util": "^29.7.0", 2732 | "jest-util": "^29.7.0", 2733 | "natural-compare": "^1.4.0", 2734 | "pretty-format": "^29.7.0", 2735 | "semver": "^7.5.3" 2736 | }, 2737 | "engines": { 2738 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2739 | } 2740 | }, 2741 | "node_modules/jest-snapshot/node_modules/semver": { 2742 | "version": "7.7.2", 2743 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2744 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2745 | "dev": true, 2746 | "license": "ISC", 2747 | "bin": { 2748 | "semver": "bin/semver.js" 2749 | }, 2750 | "engines": { 2751 | "node": ">=10" 2752 | } 2753 | }, 2754 | "node_modules/jest-util": { 2755 | "version": "29.7.0", 2756 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2757 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2758 | "dev": true, 2759 | "license": "MIT", 2760 | "dependencies": { 2761 | "@jest/types": "^29.6.3", 2762 | "@types/node": "*", 2763 | "chalk": "^4.0.0", 2764 | "ci-info": "^3.2.0", 2765 | "graceful-fs": "^4.2.9", 2766 | "picomatch": "^2.2.3" 2767 | }, 2768 | "engines": { 2769 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2770 | } 2771 | }, 2772 | "node_modules/jest-validate": { 2773 | "version": "29.7.0", 2774 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2775 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2776 | "dev": true, 2777 | "license": "MIT", 2778 | "dependencies": { 2779 | "@jest/types": "^29.6.3", 2780 | "camelcase": "^6.2.0", 2781 | "chalk": "^4.0.0", 2782 | "jest-get-type": "^29.6.3", 2783 | "leven": "^3.1.0", 2784 | "pretty-format": "^29.7.0" 2785 | }, 2786 | "engines": { 2787 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2788 | } 2789 | }, 2790 | "node_modules/jest-validate/node_modules/camelcase": { 2791 | "version": "6.3.0", 2792 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2793 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2794 | "dev": true, 2795 | "license": "MIT", 2796 | "engines": { 2797 | "node": ">=10" 2798 | }, 2799 | "funding": { 2800 | "url": "https://github.com/sponsors/sindresorhus" 2801 | } 2802 | }, 2803 | "node_modules/jest-watcher": { 2804 | "version": "29.7.0", 2805 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 2806 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 2807 | "dev": true, 2808 | "license": "MIT", 2809 | "dependencies": { 2810 | "@jest/test-result": "^29.7.0", 2811 | "@jest/types": "^29.6.3", 2812 | "@types/node": "*", 2813 | "ansi-escapes": "^4.2.1", 2814 | "chalk": "^4.0.0", 2815 | "emittery": "^0.13.1", 2816 | "jest-util": "^29.7.0", 2817 | "string-length": "^4.0.1" 2818 | }, 2819 | "engines": { 2820 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2821 | } 2822 | }, 2823 | "node_modules/jest-worker": { 2824 | "version": "29.7.0", 2825 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 2826 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 2827 | "dev": true, 2828 | "license": "MIT", 2829 | "dependencies": { 2830 | "@types/node": "*", 2831 | "jest-util": "^29.7.0", 2832 | "merge-stream": "^2.0.0", 2833 | "supports-color": "^8.0.0" 2834 | }, 2835 | "engines": { 2836 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2837 | } 2838 | }, 2839 | "node_modules/jest-worker/node_modules/supports-color": { 2840 | "version": "8.1.1", 2841 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2842 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2843 | "dev": true, 2844 | "license": "MIT", 2845 | "dependencies": { 2846 | "has-flag": "^4.0.0" 2847 | }, 2848 | "engines": { 2849 | "node": ">=10" 2850 | }, 2851 | "funding": { 2852 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2853 | } 2854 | }, 2855 | "node_modules/js-tokens": { 2856 | "version": "4.0.0", 2857 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2858 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2859 | "dev": true, 2860 | "license": "MIT" 2861 | }, 2862 | "node_modules/js-yaml": { 2863 | "version": "3.14.1", 2864 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2865 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2866 | "dev": true, 2867 | "license": "MIT", 2868 | "dependencies": { 2869 | "argparse": "^1.0.7", 2870 | "esprima": "^4.0.0" 2871 | }, 2872 | "bin": { 2873 | "js-yaml": "bin/js-yaml.js" 2874 | } 2875 | }, 2876 | "node_modules/jsesc": { 2877 | "version": "3.1.0", 2878 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 2879 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 2880 | "license": "MIT", 2881 | "bin": { 2882 | "jsesc": "bin/jsesc" 2883 | }, 2884 | "engines": { 2885 | "node": ">=6" 2886 | } 2887 | }, 2888 | "node_modules/json-parse-even-better-errors": { 2889 | "version": "2.3.1", 2890 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2891 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2892 | "dev": true, 2893 | "license": "MIT" 2894 | }, 2895 | "node_modules/json5": { 2896 | "version": "2.2.3", 2897 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2898 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2899 | "dev": true, 2900 | "license": "MIT", 2901 | "bin": { 2902 | "json5": "lib/cli.js" 2903 | }, 2904 | "engines": { 2905 | "node": ">=6" 2906 | } 2907 | }, 2908 | "node_modules/kleur": { 2909 | "version": "3.0.3", 2910 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 2911 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 2912 | "dev": true, 2913 | "license": "MIT", 2914 | "engines": { 2915 | "node": ">=6" 2916 | } 2917 | }, 2918 | "node_modules/leven": { 2919 | "version": "3.1.0", 2920 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 2921 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 2922 | "dev": true, 2923 | "license": "MIT", 2924 | "engines": { 2925 | "node": ">=6" 2926 | } 2927 | }, 2928 | "node_modules/lines-and-columns": { 2929 | "version": "1.2.4", 2930 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2931 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2932 | "dev": true, 2933 | "license": "MIT" 2934 | }, 2935 | "node_modules/locate-path": { 2936 | "version": "5.0.0", 2937 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2938 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2939 | "dev": true, 2940 | "license": "MIT", 2941 | "dependencies": { 2942 | "p-locate": "^4.1.0" 2943 | }, 2944 | "engines": { 2945 | "node": ">=8" 2946 | } 2947 | }, 2948 | "node_modules/lodash.memoize": { 2949 | "version": "4.1.2", 2950 | "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 2951 | "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 2952 | "dev": true, 2953 | "license": "MIT" 2954 | }, 2955 | "node_modules/lru-cache": { 2956 | "version": "5.1.1", 2957 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2958 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2959 | "dev": true, 2960 | "license": "ISC", 2961 | "dependencies": { 2962 | "yallist": "^3.0.2" 2963 | } 2964 | }, 2965 | "node_modules/make-dir": { 2966 | "version": "4.0.0", 2967 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 2968 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 2969 | "dev": true, 2970 | "license": "MIT", 2971 | "dependencies": { 2972 | "semver": "^7.5.3" 2973 | }, 2974 | "engines": { 2975 | "node": ">=10" 2976 | }, 2977 | "funding": { 2978 | "url": "https://github.com/sponsors/sindresorhus" 2979 | } 2980 | }, 2981 | "node_modules/make-dir/node_modules/semver": { 2982 | "version": "7.7.2", 2983 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2984 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2985 | "dev": true, 2986 | "license": "ISC", 2987 | "bin": { 2988 | "semver": "bin/semver.js" 2989 | }, 2990 | "engines": { 2991 | "node": ">=10" 2992 | } 2993 | }, 2994 | "node_modules/make-error": { 2995 | "version": "1.3.6", 2996 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 2997 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 2998 | "dev": true, 2999 | "license": "ISC" 3000 | }, 3001 | "node_modules/makeerror": { 3002 | "version": "1.0.12", 3003 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 3004 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 3005 | "dev": true, 3006 | "license": "BSD-3-Clause", 3007 | "dependencies": { 3008 | "tmpl": "1.0.5" 3009 | } 3010 | }, 3011 | "node_modules/merge-stream": { 3012 | "version": "2.0.0", 3013 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3014 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3015 | "dev": true, 3016 | "license": "MIT" 3017 | }, 3018 | "node_modules/micromatch": { 3019 | "version": "4.0.8", 3020 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 3021 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 3022 | "dev": true, 3023 | "license": "MIT", 3024 | "dependencies": { 3025 | "braces": "^3.0.3", 3026 | "picomatch": "^2.3.1" 3027 | }, 3028 | "engines": { 3029 | "node": ">=8.6" 3030 | } 3031 | }, 3032 | "node_modules/mimic-fn": { 3033 | "version": "2.1.0", 3034 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3035 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3036 | "dev": true, 3037 | "license": "MIT", 3038 | "engines": { 3039 | "node": ">=6" 3040 | } 3041 | }, 3042 | "node_modules/minimatch": { 3043 | "version": "3.1.2", 3044 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3045 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3046 | "dev": true, 3047 | "license": "ISC", 3048 | "dependencies": { 3049 | "brace-expansion": "^1.1.7" 3050 | }, 3051 | "engines": { 3052 | "node": "*" 3053 | } 3054 | }, 3055 | "node_modules/ms": { 3056 | "version": "2.1.3", 3057 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3058 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3059 | "dev": true, 3060 | "license": "MIT" 3061 | }, 3062 | "node_modules/natural-compare": { 3063 | "version": "1.4.0", 3064 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3065 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3066 | "dev": true, 3067 | "license": "MIT" 3068 | }, 3069 | "node_modules/node-int64": { 3070 | "version": "0.4.0", 3071 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 3072 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 3073 | "dev": true, 3074 | "license": "MIT" 3075 | }, 3076 | "node_modules/node-releases": { 3077 | "version": "2.0.19", 3078 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 3079 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 3080 | "dev": true, 3081 | "license": "MIT" 3082 | }, 3083 | "node_modules/normalize-path": { 3084 | "version": "3.0.0", 3085 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3086 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3087 | "dev": true, 3088 | "license": "MIT", 3089 | "engines": { 3090 | "node": ">=0.10.0" 3091 | } 3092 | }, 3093 | "node_modules/npm-run-path": { 3094 | "version": "4.0.1", 3095 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3096 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3097 | "dev": true, 3098 | "license": "MIT", 3099 | "dependencies": { 3100 | "path-key": "^3.0.0" 3101 | }, 3102 | "engines": { 3103 | "node": ">=8" 3104 | } 3105 | }, 3106 | "node_modules/once": { 3107 | "version": "1.4.0", 3108 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3109 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3110 | "dev": true, 3111 | "license": "ISC", 3112 | "dependencies": { 3113 | "wrappy": "1" 3114 | } 3115 | }, 3116 | "node_modules/onetime": { 3117 | "version": "5.1.2", 3118 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3119 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3120 | "dev": true, 3121 | "license": "MIT", 3122 | "dependencies": { 3123 | "mimic-fn": "^2.1.0" 3124 | }, 3125 | "engines": { 3126 | "node": ">=6" 3127 | }, 3128 | "funding": { 3129 | "url": "https://github.com/sponsors/sindresorhus" 3130 | } 3131 | }, 3132 | "node_modules/p-limit": { 3133 | "version": "3.1.0", 3134 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3135 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3136 | "dev": true, 3137 | "license": "MIT", 3138 | "dependencies": { 3139 | "yocto-queue": "^0.1.0" 3140 | }, 3141 | "engines": { 3142 | "node": ">=10" 3143 | }, 3144 | "funding": { 3145 | "url": "https://github.com/sponsors/sindresorhus" 3146 | } 3147 | }, 3148 | "node_modules/p-locate": { 3149 | "version": "4.1.0", 3150 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 3151 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 3152 | "dev": true, 3153 | "license": "MIT", 3154 | "dependencies": { 3155 | "p-limit": "^2.2.0" 3156 | }, 3157 | "engines": { 3158 | "node": ">=8" 3159 | } 3160 | }, 3161 | "node_modules/p-locate/node_modules/p-limit": { 3162 | "version": "2.3.0", 3163 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3164 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3165 | "dev": true, 3166 | "license": "MIT", 3167 | "dependencies": { 3168 | "p-try": "^2.0.0" 3169 | }, 3170 | "engines": { 3171 | "node": ">=6" 3172 | }, 3173 | "funding": { 3174 | "url": "https://github.com/sponsors/sindresorhus" 3175 | } 3176 | }, 3177 | "node_modules/p-try": { 3178 | "version": "2.2.0", 3179 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3180 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3181 | "dev": true, 3182 | "license": "MIT", 3183 | "engines": { 3184 | "node": ">=6" 3185 | } 3186 | }, 3187 | "node_modules/parse-json": { 3188 | "version": "5.2.0", 3189 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3190 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3191 | "dev": true, 3192 | "license": "MIT", 3193 | "dependencies": { 3194 | "@babel/code-frame": "^7.0.0", 3195 | "error-ex": "^1.3.1", 3196 | "json-parse-even-better-errors": "^2.3.0", 3197 | "lines-and-columns": "^1.1.6" 3198 | }, 3199 | "engines": { 3200 | "node": ">=8" 3201 | }, 3202 | "funding": { 3203 | "url": "https://github.com/sponsors/sindresorhus" 3204 | } 3205 | }, 3206 | "node_modules/parse5": { 3207 | "version": "7.3.0", 3208 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", 3209 | "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", 3210 | "license": "MIT", 3211 | "dependencies": { 3212 | "entities": "^6.0.0" 3213 | }, 3214 | "funding": { 3215 | "url": "https://github.com/inikulin/parse5?sponsor=1" 3216 | } 3217 | }, 3218 | "node_modules/path-exists": { 3219 | "version": "4.0.0", 3220 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3221 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3222 | "dev": true, 3223 | "license": "MIT", 3224 | "engines": { 3225 | "node": ">=8" 3226 | } 3227 | }, 3228 | "node_modules/path-is-absolute": { 3229 | "version": "1.0.1", 3230 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3231 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3232 | "dev": true, 3233 | "license": "MIT", 3234 | "engines": { 3235 | "node": ">=0.10.0" 3236 | } 3237 | }, 3238 | "node_modules/path-key": { 3239 | "version": "3.1.1", 3240 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3241 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3242 | "dev": true, 3243 | "license": "MIT", 3244 | "engines": { 3245 | "node": ">=8" 3246 | } 3247 | }, 3248 | "node_modules/path-parse": { 3249 | "version": "1.0.7", 3250 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3251 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3252 | "dev": true, 3253 | "license": "MIT" 3254 | }, 3255 | "node_modules/picocolors": { 3256 | "version": "1.1.1", 3257 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3258 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3259 | "dev": true, 3260 | "license": "ISC" 3261 | }, 3262 | "node_modules/picomatch": { 3263 | "version": "2.3.1", 3264 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3265 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3266 | "dev": true, 3267 | "license": "MIT", 3268 | "engines": { 3269 | "node": ">=8.6" 3270 | }, 3271 | "funding": { 3272 | "url": "https://github.com/sponsors/jonschlinkert" 3273 | } 3274 | }, 3275 | "node_modules/pirates": { 3276 | "version": "4.0.7", 3277 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", 3278 | "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", 3279 | "dev": true, 3280 | "license": "MIT", 3281 | "engines": { 3282 | "node": ">= 6" 3283 | } 3284 | }, 3285 | "node_modules/pkg-dir": { 3286 | "version": "4.2.0", 3287 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3288 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3289 | "dev": true, 3290 | "license": "MIT", 3291 | "dependencies": { 3292 | "find-up": "^4.0.0" 3293 | }, 3294 | "engines": { 3295 | "node": ">=8" 3296 | } 3297 | }, 3298 | "node_modules/prettier": { 3299 | "version": "3.5.3", 3300 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", 3301 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", 3302 | "dev": true, 3303 | "license": "MIT", 3304 | "bin": { 3305 | "prettier": "bin/prettier.cjs" 3306 | }, 3307 | "engines": { 3308 | "node": ">=14" 3309 | }, 3310 | "funding": { 3311 | "url": "https://github.com/prettier/prettier?sponsor=1" 3312 | } 3313 | }, 3314 | "node_modules/prettier-plugin-packagejson": { 3315 | "version": "2.5.14", 3316 | "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.5.14.tgz", 3317 | "integrity": "sha512-h+3tSpr2nVpp+YOK1MDIYtYhHVXr8/0V59UUbJpIJFaqi3w4fvUokJo6eV8W+vELrUXIZzJ+DKm5G7lYzrMcKQ==", 3318 | "dev": true, 3319 | "license": "MIT", 3320 | "dependencies": { 3321 | "sort-package-json": "3.2.1", 3322 | "synckit": "0.11.6" 3323 | }, 3324 | "peerDependencies": { 3325 | "prettier": ">= 1.16.0" 3326 | }, 3327 | "peerDependenciesMeta": { 3328 | "prettier": { 3329 | "optional": true 3330 | } 3331 | } 3332 | }, 3333 | "node_modules/pretty-format": { 3334 | "version": "29.7.0", 3335 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3336 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3337 | "dev": true, 3338 | "license": "MIT", 3339 | "dependencies": { 3340 | "@jest/schemas": "^29.6.3", 3341 | "ansi-styles": "^5.0.0", 3342 | "react-is": "^18.0.0" 3343 | }, 3344 | "engines": { 3345 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3346 | } 3347 | }, 3348 | "node_modules/pretty-format/node_modules/ansi-styles": { 3349 | "version": "5.2.0", 3350 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3351 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3352 | "dev": true, 3353 | "license": "MIT", 3354 | "engines": { 3355 | "node": ">=10" 3356 | }, 3357 | "funding": { 3358 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3359 | } 3360 | }, 3361 | "node_modules/prompts": { 3362 | "version": "2.4.2", 3363 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3364 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3365 | "dev": true, 3366 | "license": "MIT", 3367 | "dependencies": { 3368 | "kleur": "^3.0.3", 3369 | "sisteransi": "^1.0.5" 3370 | }, 3371 | "engines": { 3372 | "node": ">= 6" 3373 | } 3374 | }, 3375 | "node_modules/pure-rand": { 3376 | "version": "6.1.0", 3377 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 3378 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 3379 | "dev": true, 3380 | "funding": [ 3381 | { 3382 | "type": "individual", 3383 | "url": "https://github.com/sponsors/dubzzz" 3384 | }, 3385 | { 3386 | "type": "opencollective", 3387 | "url": "https://opencollective.com/fast-check" 3388 | } 3389 | ], 3390 | "license": "MIT" 3391 | }, 3392 | "node_modules/react-is": { 3393 | "version": "18.3.1", 3394 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 3395 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 3396 | "dev": true, 3397 | "license": "MIT" 3398 | }, 3399 | "node_modules/require-directory": { 3400 | "version": "2.1.1", 3401 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3402 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3403 | "dev": true, 3404 | "license": "MIT", 3405 | "engines": { 3406 | "node": ">=0.10.0" 3407 | } 3408 | }, 3409 | "node_modules/resolve": { 3410 | "version": "1.22.10", 3411 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 3412 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 3413 | "dev": true, 3414 | "license": "MIT", 3415 | "dependencies": { 3416 | "is-core-module": "^2.16.0", 3417 | "path-parse": "^1.0.7", 3418 | "supports-preserve-symlinks-flag": "^1.0.0" 3419 | }, 3420 | "bin": { 3421 | "resolve": "bin/resolve" 3422 | }, 3423 | "engines": { 3424 | "node": ">= 0.4" 3425 | }, 3426 | "funding": { 3427 | "url": "https://github.com/sponsors/ljharb" 3428 | } 3429 | }, 3430 | "node_modules/resolve-cwd": { 3431 | "version": "3.0.0", 3432 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3433 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3434 | "dev": true, 3435 | "license": "MIT", 3436 | "dependencies": { 3437 | "resolve-from": "^5.0.0" 3438 | }, 3439 | "engines": { 3440 | "node": ">=8" 3441 | } 3442 | }, 3443 | "node_modules/resolve-from": { 3444 | "version": "5.0.0", 3445 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3446 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3447 | "dev": true, 3448 | "license": "MIT", 3449 | "engines": { 3450 | "node": ">=8" 3451 | } 3452 | }, 3453 | "node_modules/resolve.exports": { 3454 | "version": "2.0.3", 3455 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", 3456 | "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", 3457 | "dev": true, 3458 | "license": "MIT", 3459 | "engines": { 3460 | "node": ">=10" 3461 | } 3462 | }, 3463 | "node_modules/semver": { 3464 | "version": "6.3.1", 3465 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3466 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3467 | "dev": true, 3468 | "license": "ISC", 3469 | "bin": { 3470 | "semver": "bin/semver.js" 3471 | } 3472 | }, 3473 | "node_modules/shebang-command": { 3474 | "version": "2.0.0", 3475 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3476 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3477 | "dev": true, 3478 | "license": "MIT", 3479 | "dependencies": { 3480 | "shebang-regex": "^3.0.0" 3481 | }, 3482 | "engines": { 3483 | "node": ">=8" 3484 | } 3485 | }, 3486 | "node_modules/shebang-regex": { 3487 | "version": "3.0.0", 3488 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3489 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3490 | "dev": true, 3491 | "license": "MIT", 3492 | "engines": { 3493 | "node": ">=8" 3494 | } 3495 | }, 3496 | "node_modules/signal-exit": { 3497 | "version": "3.0.7", 3498 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3499 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3500 | "dev": true, 3501 | "license": "ISC" 3502 | }, 3503 | "node_modules/sisteransi": { 3504 | "version": "1.0.5", 3505 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3506 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3507 | "dev": true, 3508 | "license": "MIT" 3509 | }, 3510 | "node_modules/slash": { 3511 | "version": "3.0.0", 3512 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3513 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3514 | "dev": true, 3515 | "license": "MIT", 3516 | "engines": { 3517 | "node": ">=8" 3518 | } 3519 | }, 3520 | "node_modules/sort-object-keys": { 3521 | "version": "1.1.3", 3522 | "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", 3523 | "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", 3524 | "dev": true, 3525 | "license": "MIT" 3526 | }, 3527 | "node_modules/sort-package-json": { 3528 | "version": "3.2.1", 3529 | "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-3.2.1.tgz", 3530 | "integrity": "sha512-rTfRdb20vuoAn7LDlEtCqOkYfl2X+Qze6cLbNOzcDpbmKEhJI30tTN44d5shbKJnXsvz24QQhlCm81Bag7EOKg==", 3531 | "dev": true, 3532 | "license": "MIT", 3533 | "dependencies": { 3534 | "detect-indent": "^7.0.1", 3535 | "detect-newline": "^4.0.1", 3536 | "git-hooks-list": "^4.0.0", 3537 | "is-plain-obj": "^4.1.0", 3538 | "semver": "^7.7.1", 3539 | "sort-object-keys": "^1.1.3", 3540 | "tinyglobby": "^0.2.12" 3541 | }, 3542 | "bin": { 3543 | "sort-package-json": "cli.js" 3544 | } 3545 | }, 3546 | "node_modules/sort-package-json/node_modules/detect-newline": { 3547 | "version": "4.0.1", 3548 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", 3549 | "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", 3550 | "dev": true, 3551 | "license": "MIT", 3552 | "engines": { 3553 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3554 | }, 3555 | "funding": { 3556 | "url": "https://github.com/sponsors/sindresorhus" 3557 | } 3558 | }, 3559 | "node_modules/sort-package-json/node_modules/semver": { 3560 | "version": "7.7.2", 3561 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 3562 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 3563 | "dev": true, 3564 | "license": "ISC", 3565 | "bin": { 3566 | "semver": "bin/semver.js" 3567 | }, 3568 | "engines": { 3569 | "node": ">=10" 3570 | } 3571 | }, 3572 | "node_modules/source-map": { 3573 | "version": "0.6.1", 3574 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3575 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3576 | "dev": true, 3577 | "license": "BSD-3-Clause", 3578 | "engines": { 3579 | "node": ">=0.10.0" 3580 | } 3581 | }, 3582 | "node_modules/source-map-support": { 3583 | "version": "0.5.13", 3584 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3585 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3586 | "dev": true, 3587 | "license": "MIT", 3588 | "dependencies": { 3589 | "buffer-from": "^1.0.0", 3590 | "source-map": "^0.6.0" 3591 | } 3592 | }, 3593 | "node_modules/sprintf-js": { 3594 | "version": "1.0.3", 3595 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3596 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3597 | "dev": true, 3598 | "license": "BSD-3-Clause" 3599 | }, 3600 | "node_modules/stack-utils": { 3601 | "version": "2.0.6", 3602 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3603 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3604 | "dev": true, 3605 | "license": "MIT", 3606 | "dependencies": { 3607 | "escape-string-regexp": "^2.0.0" 3608 | }, 3609 | "engines": { 3610 | "node": ">=10" 3611 | } 3612 | }, 3613 | "node_modules/string-length": { 3614 | "version": "4.0.2", 3615 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3616 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3617 | "dev": true, 3618 | "license": "MIT", 3619 | "dependencies": { 3620 | "char-regex": "^1.0.2", 3621 | "strip-ansi": "^6.0.0" 3622 | }, 3623 | "engines": { 3624 | "node": ">=10" 3625 | } 3626 | }, 3627 | "node_modules/string-width": { 3628 | "version": "4.2.3", 3629 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3630 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3631 | "dev": true, 3632 | "license": "MIT", 3633 | "dependencies": { 3634 | "emoji-regex": "^8.0.0", 3635 | "is-fullwidth-code-point": "^3.0.0", 3636 | "strip-ansi": "^6.0.1" 3637 | }, 3638 | "engines": { 3639 | "node": ">=8" 3640 | } 3641 | }, 3642 | "node_modules/strip-ansi": { 3643 | "version": "6.0.1", 3644 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3645 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3646 | "dev": true, 3647 | "license": "MIT", 3648 | "dependencies": { 3649 | "ansi-regex": "^5.0.1" 3650 | }, 3651 | "engines": { 3652 | "node": ">=8" 3653 | } 3654 | }, 3655 | "node_modules/strip-bom": { 3656 | "version": "4.0.0", 3657 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3658 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3659 | "dev": true, 3660 | "license": "MIT", 3661 | "engines": { 3662 | "node": ">=8" 3663 | } 3664 | }, 3665 | "node_modules/strip-final-newline": { 3666 | "version": "2.0.0", 3667 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3668 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3669 | "dev": true, 3670 | "license": "MIT", 3671 | "engines": { 3672 | "node": ">=6" 3673 | } 3674 | }, 3675 | "node_modules/strip-json-comments": { 3676 | "version": "3.1.1", 3677 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3678 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3679 | "dev": true, 3680 | "license": "MIT", 3681 | "engines": { 3682 | "node": ">=8" 3683 | }, 3684 | "funding": { 3685 | "url": "https://github.com/sponsors/sindresorhus" 3686 | } 3687 | }, 3688 | "node_modules/style-to-object": { 3689 | "version": "1.0.8", 3690 | "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz", 3691 | "integrity": "sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==", 3692 | "license": "MIT", 3693 | "dependencies": { 3694 | "inline-style-parser": "0.2.4" 3695 | } 3696 | }, 3697 | "node_modules/supports-color": { 3698 | "version": "7.2.0", 3699 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3700 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3701 | "dev": true, 3702 | "license": "MIT", 3703 | "dependencies": { 3704 | "has-flag": "^4.0.0" 3705 | }, 3706 | "engines": { 3707 | "node": ">=8" 3708 | } 3709 | }, 3710 | "node_modules/supports-preserve-symlinks-flag": { 3711 | "version": "1.0.0", 3712 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3713 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3714 | "dev": true, 3715 | "license": "MIT", 3716 | "engines": { 3717 | "node": ">= 0.4" 3718 | }, 3719 | "funding": { 3720 | "url": "https://github.com/sponsors/ljharb" 3721 | } 3722 | }, 3723 | "node_modules/synckit": { 3724 | "version": "0.11.6", 3725 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.6.tgz", 3726 | "integrity": "sha512-2pR2ubZSV64f/vqm9eLPz/KOvR9Dm+Co/5ChLgeHl0yEDRc6h5hXHoxEQH8Y5Ljycozd3p1k5TTSVdzYGkPvLw==", 3727 | "dev": true, 3728 | "license": "MIT", 3729 | "dependencies": { 3730 | "@pkgr/core": "^0.2.4" 3731 | }, 3732 | "engines": { 3733 | "node": "^14.18.0 || >=16.0.0" 3734 | }, 3735 | "funding": { 3736 | "url": "https://opencollective.com/synckit" 3737 | } 3738 | }, 3739 | "node_modules/test-exclude": { 3740 | "version": "6.0.0", 3741 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3742 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3743 | "dev": true, 3744 | "license": "ISC", 3745 | "dependencies": { 3746 | "@istanbuljs/schema": "^0.1.2", 3747 | "glob": "^7.1.4", 3748 | "minimatch": "^3.0.4" 3749 | }, 3750 | "engines": { 3751 | "node": ">=8" 3752 | } 3753 | }, 3754 | "node_modules/tinyglobby": { 3755 | "version": "0.2.13", 3756 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz", 3757 | "integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==", 3758 | "dev": true, 3759 | "license": "MIT", 3760 | "dependencies": { 3761 | "fdir": "^6.4.4", 3762 | "picomatch": "^4.0.2" 3763 | }, 3764 | "engines": { 3765 | "node": ">=12.0.0" 3766 | }, 3767 | "funding": { 3768 | "url": "https://github.com/sponsors/SuperchupuDev" 3769 | } 3770 | }, 3771 | "node_modules/tinyglobby/node_modules/fdir": { 3772 | "version": "6.4.4", 3773 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz", 3774 | "integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==", 3775 | "dev": true, 3776 | "license": "MIT", 3777 | "peerDependencies": { 3778 | "picomatch": "^3 || ^4" 3779 | }, 3780 | "peerDependenciesMeta": { 3781 | "picomatch": { 3782 | "optional": true 3783 | } 3784 | } 3785 | }, 3786 | "node_modules/tinyglobby/node_modules/picomatch": { 3787 | "version": "4.0.2", 3788 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3789 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3790 | "dev": true, 3791 | "license": "MIT", 3792 | "engines": { 3793 | "node": ">=12" 3794 | }, 3795 | "funding": { 3796 | "url": "https://github.com/sponsors/jonschlinkert" 3797 | } 3798 | }, 3799 | "node_modules/tmpl": { 3800 | "version": "1.0.5", 3801 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3802 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3803 | "dev": true, 3804 | "license": "BSD-3-Clause" 3805 | }, 3806 | "node_modules/to-regex-range": { 3807 | "version": "5.0.1", 3808 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3809 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3810 | "dev": true, 3811 | "license": "MIT", 3812 | "dependencies": { 3813 | "is-number": "^7.0.0" 3814 | }, 3815 | "engines": { 3816 | "node": ">=8.0" 3817 | } 3818 | }, 3819 | "node_modules/ts-jest": { 3820 | "version": "29.3.4", 3821 | "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.4.tgz", 3822 | "integrity": "sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA==", 3823 | "dev": true, 3824 | "license": "MIT", 3825 | "dependencies": { 3826 | "bs-logger": "^0.2.6", 3827 | "ejs": "^3.1.10", 3828 | "fast-json-stable-stringify": "^2.1.0", 3829 | "jest-util": "^29.0.0", 3830 | "json5": "^2.2.3", 3831 | "lodash.memoize": "^4.1.2", 3832 | "make-error": "^1.3.6", 3833 | "semver": "^7.7.2", 3834 | "type-fest": "^4.41.0", 3835 | "yargs-parser": "^21.1.1" 3836 | }, 3837 | "bin": { 3838 | "ts-jest": "cli.js" 3839 | }, 3840 | "engines": { 3841 | "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" 3842 | }, 3843 | "peerDependencies": { 3844 | "@babel/core": ">=7.0.0-beta.0 <8", 3845 | "@jest/transform": "^29.0.0", 3846 | "@jest/types": "^29.0.0", 3847 | "babel-jest": "^29.0.0", 3848 | "jest": "^29.0.0", 3849 | "typescript": ">=4.3 <6" 3850 | }, 3851 | "peerDependenciesMeta": { 3852 | "@babel/core": { 3853 | "optional": true 3854 | }, 3855 | "@jest/transform": { 3856 | "optional": true 3857 | }, 3858 | "@jest/types": { 3859 | "optional": true 3860 | }, 3861 | "babel-jest": { 3862 | "optional": true 3863 | }, 3864 | "esbuild": { 3865 | "optional": true 3866 | } 3867 | } 3868 | }, 3869 | "node_modules/ts-jest/node_modules/semver": { 3870 | "version": "7.7.2", 3871 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 3872 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 3873 | "dev": true, 3874 | "license": "ISC", 3875 | "bin": { 3876 | "semver": "bin/semver.js" 3877 | }, 3878 | "engines": { 3879 | "node": ">=10" 3880 | } 3881 | }, 3882 | "node_modules/ts-jest/node_modules/type-fest": { 3883 | "version": "4.41.0", 3884 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", 3885 | "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", 3886 | "dev": true, 3887 | "license": "(MIT OR CC0-1.0)", 3888 | "engines": { 3889 | "node": ">=16" 3890 | }, 3891 | "funding": { 3892 | "url": "https://github.com/sponsors/sindresorhus" 3893 | } 3894 | }, 3895 | "node_modules/type-detect": { 3896 | "version": "4.0.8", 3897 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3898 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3899 | "dev": true, 3900 | "license": "MIT", 3901 | "engines": { 3902 | "node": ">=4" 3903 | } 3904 | }, 3905 | "node_modules/type-fest": { 3906 | "version": "0.21.3", 3907 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3908 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3909 | "dev": true, 3910 | "license": "(MIT OR CC0-1.0)", 3911 | "engines": { 3912 | "node": ">=10" 3913 | }, 3914 | "funding": { 3915 | "url": "https://github.com/sponsors/sindresorhus" 3916 | } 3917 | }, 3918 | "node_modules/typescript": { 3919 | "version": "5.8.3", 3920 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", 3921 | "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", 3922 | "dev": true, 3923 | "license": "Apache-2.0", 3924 | "bin": { 3925 | "tsc": "bin/tsc", 3926 | "tsserver": "bin/tsserver" 3927 | }, 3928 | "engines": { 3929 | "node": ">=14.17" 3930 | } 3931 | }, 3932 | "node_modules/undici-types": { 3933 | "version": "6.21.0", 3934 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", 3935 | "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", 3936 | "dev": true, 3937 | "license": "MIT" 3938 | }, 3939 | "node_modules/update-browserslist-db": { 3940 | "version": "1.1.3", 3941 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 3942 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 3943 | "dev": true, 3944 | "funding": [ 3945 | { 3946 | "type": "opencollective", 3947 | "url": "https://opencollective.com/browserslist" 3948 | }, 3949 | { 3950 | "type": "tidelift", 3951 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3952 | }, 3953 | { 3954 | "type": "github", 3955 | "url": "https://github.com/sponsors/ai" 3956 | } 3957 | ], 3958 | "license": "MIT", 3959 | "dependencies": { 3960 | "escalade": "^3.2.0", 3961 | "picocolors": "^1.1.1" 3962 | }, 3963 | "bin": { 3964 | "update-browserslist-db": "cli.js" 3965 | }, 3966 | "peerDependencies": { 3967 | "browserslist": ">= 4.21.0" 3968 | } 3969 | }, 3970 | "node_modules/v8-to-istanbul": { 3971 | "version": "9.3.0", 3972 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 3973 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 3974 | "dev": true, 3975 | "license": "ISC", 3976 | "dependencies": { 3977 | "@jridgewell/trace-mapping": "^0.3.12", 3978 | "@types/istanbul-lib-coverage": "^2.0.1", 3979 | "convert-source-map": "^2.0.0" 3980 | }, 3981 | "engines": { 3982 | "node": ">=10.12.0" 3983 | } 3984 | }, 3985 | "node_modules/walker": { 3986 | "version": "1.0.8", 3987 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3988 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3989 | "dev": true, 3990 | "license": "Apache-2.0", 3991 | "dependencies": { 3992 | "makeerror": "1.0.12" 3993 | } 3994 | }, 3995 | "node_modules/which": { 3996 | "version": "2.0.2", 3997 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3998 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3999 | "dev": true, 4000 | "license": "ISC", 4001 | "dependencies": { 4002 | "isexe": "^2.0.0" 4003 | }, 4004 | "bin": { 4005 | "node-which": "bin/node-which" 4006 | }, 4007 | "engines": { 4008 | "node": ">= 8" 4009 | } 4010 | }, 4011 | "node_modules/wrap-ansi": { 4012 | "version": "7.0.0", 4013 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4014 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4015 | "dev": true, 4016 | "license": "MIT", 4017 | "dependencies": { 4018 | "ansi-styles": "^4.0.0", 4019 | "string-width": "^4.1.0", 4020 | "strip-ansi": "^6.0.0" 4021 | }, 4022 | "engines": { 4023 | "node": ">=10" 4024 | }, 4025 | "funding": { 4026 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4027 | } 4028 | }, 4029 | "node_modules/wrappy": { 4030 | "version": "1.0.2", 4031 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4032 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4033 | "dev": true, 4034 | "license": "ISC" 4035 | }, 4036 | "node_modules/write-file-atomic": { 4037 | "version": "4.0.2", 4038 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 4039 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 4040 | "dev": true, 4041 | "license": "ISC", 4042 | "dependencies": { 4043 | "imurmurhash": "^0.1.4", 4044 | "signal-exit": "^3.0.7" 4045 | }, 4046 | "engines": { 4047 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 4048 | } 4049 | }, 4050 | "node_modules/y18n": { 4051 | "version": "5.0.8", 4052 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 4053 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 4054 | "dev": true, 4055 | "license": "ISC", 4056 | "engines": { 4057 | "node": ">=10" 4058 | } 4059 | }, 4060 | "node_modules/yallist": { 4061 | "version": "3.1.1", 4062 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4063 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4064 | "dev": true, 4065 | "license": "ISC" 4066 | }, 4067 | "node_modules/yargs": { 4068 | "version": "17.7.2", 4069 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 4070 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 4071 | "dev": true, 4072 | "license": "MIT", 4073 | "dependencies": { 4074 | "cliui": "^8.0.1", 4075 | "escalade": "^3.1.1", 4076 | "get-caller-file": "^2.0.5", 4077 | "require-directory": "^2.1.1", 4078 | "string-width": "^4.2.3", 4079 | "y18n": "^5.0.5", 4080 | "yargs-parser": "^21.1.1" 4081 | }, 4082 | "engines": { 4083 | "node": ">=12" 4084 | } 4085 | }, 4086 | "node_modules/yargs-parser": { 4087 | "version": "21.1.1", 4088 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4089 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4090 | "dev": true, 4091 | "license": "ISC", 4092 | "engines": { 4093 | "node": ">=12" 4094 | } 4095 | }, 4096 | "node_modules/yocto-queue": { 4097 | "version": "0.1.0", 4098 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4099 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4100 | "dev": true, 4101 | "license": "MIT", 4102 | "engines": { 4103 | "node": ">=10" 4104 | }, 4105 | "funding": { 4106 | "url": "https://github.com/sponsors/sindresorhus" 4107 | } 4108 | } 4109 | } 4110 | } 4111 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html-to-jsx-transform", 3 | "version": "1.2.1", 4 | "description": "A library for converting an HTML string into a JSX string using ASTs.", 5 | "keywords": [ 6 | "html", 7 | "jsx", 8 | "react", 9 | "transformer", 10 | "converter" 11 | ], 12 | "repository": "github:leodr/html-to-jsx-transform", 13 | "license": "MIT", 14 | "author": "Leo Driesch (https://github.com/leodr)", 15 | "main": "./dist/index.js", 16 | "types": "./dist/index.d.ts", 17 | "files": [ 18 | "dist/*", 19 | "readme-assets/*" 20 | ], 21 | "scripts": { 22 | "build": "tsc", 23 | "check": "tsc --noEmit && npm run test", 24 | "check-types": "tsc --noEmit", 25 | "clean": "rm -rf dist/", 26 | "coverage": "jest --coverage", 27 | "format": "prettier . --write", 28 | "prepublishOnly": "npm run check && npm run clean && npm run build", 29 | "test": "jest" 30 | }, 31 | "prettier": { 32 | "proseWrap": "always" 33 | }, 34 | "dependencies": { 35 | "@babel/generator": "^7.27.1", 36 | "@babel/parser": "^7.27.2", 37 | "@babel/types": "^7.27.1", 38 | "html-entities": "^2.6.0", 39 | "parse5": "^7.3.0", 40 | "style-to-object": "^1.0.8" 41 | }, 42 | "devDependencies": { 43 | "@types/jest": "^29.5.14", 44 | "@types/node": "^22.15.21", 45 | "jest": "^29.7.0", 46 | "prettier": "^3.5.3", 47 | "prettier-plugin-packagejson": "^2.5.14", 48 | "ts-jest": "^29.3.4", 49 | "typescript": "^5.8.3" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /readme-assets/github.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /readme-assets/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/attributes.ts: -------------------------------------------------------------------------------- 1 | // The following element listings are taken from the facebook/react repository. 2 | // https://github.com/facebook/react/blob/main/packages/react-dom/src/shared/DOMProperty.js 3 | 4 | // A few React string attributes have a different name. 5 | // This is a mapping from React prop names to the attribute names. 6 | export const renamedAttributes = new Map([ 7 | ["accept-charset", "acceptCharset"], 8 | ["class", "className"], 9 | ["for", "htmlFor"], 10 | ["http-equiv", "httpEquiv"], 11 | ]); 12 | 13 | // These are "enumerated" HTML attributes that accept "true" and "false". 14 | // In React, we let users pass `true` and `false` even though technically 15 | // these aren't boolean attributes (they are coerced to strings). 16 | export const coerceToBooleanAttributes = [ 17 | "allowFullScreen", 18 | "async", 19 | "autoFocus", 20 | "autoPlay", 21 | "checked", 22 | "contentEditable", 23 | "controls", 24 | "default", 25 | "defer", 26 | "disabled", 27 | "disablePictureInPicture", 28 | "disableRemotePlayback", 29 | "draggable", 30 | "formNoValidate", 31 | "hidden", 32 | "itemScope", 33 | "loop", 34 | "multiple", 35 | "muted", 36 | "noModule", 37 | "noValidate", 38 | "open", 39 | "playsInline", 40 | "readOnly", 41 | "required", 42 | "reversed", 43 | "scoped", 44 | "seamless", 45 | "selected", 46 | "spellCheck", 47 | "value", 48 | 49 | // These accept other values than true and false which are just left as is. 50 | // true and false will get converted to booleans. 51 | "capture", 52 | "download", 53 | ]; 54 | 55 | // These are "enumerated" SVG attributes that accept "true" and "false". 56 | // In React, we let users pass `true` and `false` even though technically 57 | // these aren't boolean attributes (they are coerced to strings). 58 | // Since these are SVG attributes, their attribute names are case-sensitive. 59 | export const svgCoerceToBooleanAttributes = [ 60 | "autoReverse", 61 | "externalResourcesRequired", 62 | "focusable", 63 | "preserveAlpha", 64 | ]; 65 | 66 | // These are HTML attributes that must be positive numbers. 67 | export const numberAttributes = [ 68 | "border", 69 | "cellPadding", 70 | "cellSpacing", 71 | "cols", 72 | "marginHeight", 73 | "marginWidth", 74 | "maxLength", 75 | "minLength", 76 | "rows", 77 | "rowSpan", 78 | "size", 79 | "span", 80 | "start", 81 | "tabIndex", 82 | ]; 83 | 84 | // These properties are SVG and have to be camelized. 85 | // The second value in the array determines should be converted to a number if 86 | // possible. 87 | export const svgCamelizedAttributes = [ 88 | ["accent-height", false], 89 | ["alignment-baseline", false], 90 | ["arabic-form", false], 91 | ["baseline-shift", false], 92 | ["cap-height", true], 93 | ["clip-path", false], 94 | ["clip-rule", false], 95 | ["color-interpolation-filters", false], 96 | ["color-interpolation", false], 97 | ["color-profile", false], 98 | ["color-rendering", false], 99 | ["dominant-baseline", false], 100 | ["enable-background", false], 101 | ["fill-opacity", false], 102 | ["fill-rule", false], 103 | ["flood-color", false], 104 | ["flood-opacity", false], 105 | ["font-family", false], 106 | ["font-size-adjust", true], 107 | ["font-size", true], 108 | ["font-stretch", false], 109 | ["font-style", false], 110 | ["font-variant", false], 111 | ["font-weight", true], 112 | ["glyph-name", false], 113 | ["glyph-orientation-horizontal", false], 114 | ["glyph-orientation-vertical", false], 115 | ["horiz-adv-x", true], 116 | ["horiz-origin-x", true], 117 | ["image-rendering", false], 118 | ["letter-spacing", true], 119 | ["lighting-color", false], 120 | ["marker-end", false], 121 | ["marker-mid", false], 122 | ["marker-start", false], 123 | ["overline-position", true], 124 | ["overline-thickness", true], 125 | ["paint-order", false], 126 | ["panose-1", false], 127 | ["pointer-events", false], 128 | ["rendering-intent", false], 129 | ["shape-rendering", false], 130 | ["stop-color", false], 131 | ["stop-opacity", false], 132 | ["strikethrough-position", true], 133 | ["strikethrough-thickness", true], 134 | ["stroke-dasharray", false], 135 | ["stroke-dashoffset", true], 136 | ["stroke-linecap", false], 137 | ["stroke-linejoin", false], 138 | ["stroke-miterlimit", true], 139 | ["stroke-opacity", false], 140 | ["stroke-width", true], 141 | ["text-anchor", false], 142 | ["text-decoration", false], 143 | ["text-rendering", false], 144 | ["underline-position", true], 145 | ["underline-thickness", true], 146 | ["unicode-bidi", false], 147 | ["unicode-range", false], 148 | ["units-per-em", true], 149 | ["v-alphabetic", true], 150 | ["v-hanging", true], 151 | ["v-ideographic", true], 152 | ["v-mathematical", true], 153 | ["vector-effect", false], 154 | ["vert-adv-y", true], 155 | ["vert-origin-x", true], 156 | ["vert-origin-y", true], 157 | ["word-spacing", true], 158 | ["writing-mode", false], 159 | ["x-height", true], 160 | ["xmlns:xlink", false], 161 | ]; 162 | 163 | // Supported event attributes in React, taken from 164 | // https://reactjs.org/docs/events.html 165 | export const eventHandlerAttributes = [ 166 | "onAbort", 167 | "onAnimationEnd", 168 | "onAnimationIteration", 169 | "onAnimationStart", 170 | "onBlur", 171 | "onCanPlay", 172 | "onCanPlayThrough", 173 | "onChange", 174 | "onClick", 175 | "onCompositionEnd", 176 | "onCompositionStart", 177 | "onCompositionUpdate", 178 | "onContextMenu", 179 | "onCopy", 180 | "onCut", 181 | "onDoubleClick", 182 | "onDrag", 183 | "onDragEnd", 184 | "onDragEnter", 185 | "onDragExit", 186 | "onDragLeave", 187 | "onDragOver", 188 | "onDragStart", 189 | "onDrop", 190 | "onDurationChange", 191 | "onEmptied", 192 | "onEncrypted", 193 | "onEnded", 194 | "onError", 195 | "onError", 196 | "onFocus", 197 | "onGotPointerCapture", 198 | "onInput", 199 | "onInvalid", 200 | "onKeyDown", 201 | "onKeyPress", 202 | "onKeyUp", 203 | "onLoad", 204 | "onLoadedData", 205 | "onLoadedMetadata", 206 | "onLoadStart", 207 | "onLostPointerCapture", 208 | "onMouseDown", 209 | "onMouseEnter", 210 | "onMouseLeave", 211 | "onMouseMove", 212 | "onMouseOut", 213 | "onMouseOver", 214 | "onMouseUp", 215 | "onPaste", 216 | "onPause", 217 | "onPlay", 218 | "onPlaying", 219 | "onPointerCancel", 220 | "onPointerDown", 221 | "onPointerEnter", 222 | "onPointerLeave", 223 | "onPointerMove", 224 | "onPointerOut", 225 | "onPointerOver", 226 | "onPointerUp", 227 | "onProgress", 228 | "onRateChange", 229 | "onReset", 230 | "onScroll", 231 | "onSeeked", 232 | "onSeeking", 233 | "onSelect", 234 | "onStalled", 235 | "onSubmit", 236 | "onSuspend", 237 | "onTimeUpdate", 238 | "onToggle", 239 | "onTouchCancel", 240 | "onTouchEnd", 241 | "onTouchMove", 242 | "onTouchStart", 243 | "onTransitionEnd", 244 | "onVolumeChange", 245 | "onWaiting", 246 | "onWheel", 247 | ]; 248 | 249 | // List of attributes that are lower-cased in HTML but have to be camel-cased in 250 | // JSX code. Taken from https://reactjs.org/docs/dom-elements.html 251 | export const lowercasedAttributes = [ 252 | "accessKey", 253 | "autoComplete", 254 | "charSet", 255 | "classID", 256 | "colSpan", 257 | "cellSpacing", 258 | "cellMargin", 259 | "contextMenu", 260 | "controlsList", 261 | "crossOrigin", 262 | "dateTime", 263 | "encType", 264 | "formAction", 265 | "formEncType", 266 | "formMethod", 267 | "formTarget", 268 | "frameBorder", 269 | "hrefLang", 270 | "inputMode", 271 | "keyParams", 272 | "keyType", 273 | "mediaGroup", 274 | "radioGroup", 275 | "srcDoc", 276 | "srcLang", 277 | "srcSet", 278 | "useMap", 279 | ]; 280 | 281 | /** 282 | * Don't strip the px suffix from these style attributes 283 | * because they can contain both length (e.g. `13px`) and 284 | * unitless values (e.g. `3`), which have different 285 | * meanings. 286 | * 287 | * (Background: React automatically adds a `px` to unitless 288 | * numbers specified in style attributes, so these attributes 289 | * should not be included in `px` stripping). 290 | */ 291 | export const styleDontStripPx = [ 292 | "line-height", 293 | "flex", 294 | "mask-border-outset", 295 | "mask-box-outset", 296 | "mask-border-width", 297 | ]; 298 | -------------------------------------------------------------------------------- /src/convert-attributes.ts: -------------------------------------------------------------------------------- 1 | import { parse as parseJS } from "@babel/parser"; 2 | import { 3 | addComment, 4 | arrowFunctionExpression, 5 | blockStatement, 6 | booleanLiteral, 7 | Expression, 8 | expressionStatement, 9 | identifier, 10 | jsxAttribute, 11 | jsxExpressionContainer, 12 | jsxIdentifier, 13 | numericLiteral, 14 | objectExpression, 15 | ObjectProperty, 16 | objectProperty, 17 | stringLiteral, 18 | templateElement, 19 | templateLiteral, 20 | } from "@babel/types"; 21 | import parseStyleString from "style-to-object"; 22 | import { 23 | coerceToBooleanAttributes, 24 | eventHandlerAttributes, 25 | lowercasedAttributes, 26 | numberAttributes, 27 | renamedAttributes, 28 | styleDontStripPx, 29 | svgCamelizedAttributes, 30 | svgCoerceToBooleanAttributes, 31 | } from "./attributes"; 32 | 33 | import type { Attribute } from "parse5/dist/common/token"; 34 | 35 | export function convertAttributes(attributes: Attribute[]) { 36 | return attributes.map(({ name: attributeName, value: attributeValue }) => { 37 | if (attributeName === "style") { 38 | return createJSXAttribute( 39 | "style", 40 | convertStyleToObjectExpression(attributeValue), 41 | ); 42 | } 43 | 44 | for (const [htmlName, jsxName] of renamedAttributes) { 45 | if (htmlName === attributeName) { 46 | return createJSXAttribute(jsxName, attributeValue); 47 | } 48 | } 49 | 50 | for (const jsxAttribute of eventHandlerAttributes) { 51 | if (attributeName === jsxAttribute.toLowerCase()) { 52 | return functionizeAttribute(jsxAttribute, attributeValue); 53 | } 54 | } 55 | 56 | for (const jsxAttribute of svgCoerceToBooleanAttributes) { 57 | if (attributeName === jsxAttribute) { 58 | return booleanizeAttribute(jsxAttribute, attributeValue); 59 | } 60 | } 61 | 62 | for (const jsxAttribute of coerceToBooleanAttributes) { 63 | if (attributeName === jsxAttribute.toLowerCase()) { 64 | return booleanizeAttribute( 65 | jsxAttribute, 66 | attributeValue, 67 | new Set(["checked", "disabled", "selected", "value"]), 68 | ); 69 | } 70 | } 71 | 72 | for (const jsxAttribute of numberAttributes) { 73 | if (attributeName === jsxAttribute.toLowerCase()) { 74 | const numberValue = Number(attributeValue); 75 | 76 | if (Number.isFinite(numberValue)) { 77 | return createJSXAttribute(jsxAttribute, numberValue); 78 | } else { 79 | return createJSXAttribute(jsxAttribute, attributeValue); 80 | } 81 | } 82 | } 83 | 84 | for (const [jsxAttribute, isNumeric] of svgCamelizedAttributes) { 85 | if (attributeName === jsxAttribute) { 86 | const camelizedName = camelize(attributeName); 87 | 88 | if (isNumeric) { 89 | const numberValue = Number(attributeValue); 90 | 91 | if (Number.isFinite(numberValue)) { 92 | return createJSXAttribute(camelizedName, numberValue); 93 | } 94 | } 95 | 96 | return createJSXAttribute(camelizedName, attributeValue); 97 | } 98 | } 99 | 100 | for (const jsxAttribute of lowercasedAttributes) { 101 | if (attributeName === jsxAttribute.toLowerCase()) { 102 | return createJSXAttribute(jsxAttribute, attributeValue); 103 | } 104 | } 105 | 106 | return createJSXAttribute(attributeName, attributeValue); 107 | }); 108 | } 109 | 110 | // Matches a px value, e.g. `40px` 111 | const MATCH_PX_VALUE = /^(\d+)px$/; 112 | 113 | function convertStyleToObjectExpression(style: string) { 114 | const properties: Array = []; 115 | 116 | parseStyleString(style, (name, value) => { 117 | // Don't remove `px` where this changes the meaning of the attribute value 118 | const canStripPx = !styleDontStripPx.includes(name.toLowerCase()); 119 | const pxValueMatch = value.match(MATCH_PX_VALUE); 120 | properties.push( 121 | objectProperty( 122 | identifier(camelize(name)), 123 | pxValueMatch !== null && canStripPx 124 | ? numericLiteral(Number(pxValueMatch[1])) 125 | : stringLiteral(value), 126 | ), 127 | ); 128 | }); 129 | 130 | return objectExpression(properties); 131 | } 132 | 133 | const CAMELIZE = /[\-\:]([a-z])/g; 134 | const capitalize = (token: string) => token[1]!.toUpperCase(); 135 | 136 | const IS_CSS_VARIBLE = /^--\w+/; 137 | 138 | /** 139 | * Converts kebab-case or colon:case to camelCase 140 | */ 141 | function camelize(string: string) { 142 | // Skip the attribute if it is a css variable. 143 | // It looks something like this: style="--bgColor: red" 144 | if (IS_CSS_VARIBLE.test(string)) return `"${string}"`; 145 | return string.replace(CAMELIZE, capitalize); 146 | } 147 | 148 | /** 149 | * @param trueLiterals A list of values that should preserve the 150 | * jsxExpressionContainer when true, e.g. checked={true} insted of just 151 | * checked. 152 | */ 153 | function booleanizeAttribute( 154 | name: string, 155 | value: string, 156 | trueLiterals?: Set, 157 | ) { 158 | if (name === "value" && value === "") { 159 | return createJSXAttribute(name, value); 160 | } 161 | 162 | if (value === "" || value === "true" || value === name.toLowerCase()) { 163 | if (trueLiterals?.has(name)) { 164 | return createJSXAttribute(name, booleanLiteral(true)); 165 | } 166 | 167 | return createJSXAttribute(name, null); 168 | } else if (value === "false") { 169 | return createJSXAttribute(name, booleanLiteral(false)); 170 | } 171 | 172 | return createJSXAttribute(name, value); 173 | } 174 | 175 | // Matches function calls in an event handler attribute, e.g. 176 | // onclick="myFunction()". 177 | const EMPTY_FUNCTION_CALL = /^\s*([\p{L}_\$][\p{L}_\$]*)\(\)\s*$/u; 178 | 179 | function functionizeAttribute(attributeName: string, attributeValue: string) { 180 | const functionCallMatch = attributeValue.match(EMPTY_FUNCTION_CALL); 181 | 182 | if (functionCallMatch !== null) { 183 | return createJSXAttribute(attributeName, identifier(functionCallMatch[1]!)); 184 | } 185 | 186 | try { 187 | const innerCode = parseJS(attributeValue); 188 | 189 | return createJSXAttribute( 190 | attributeName, 191 | arrowFunctionExpression( 192 | [identifier("event")], 193 | blockStatement(innerCode.program.body), 194 | ), 195 | ); 196 | } catch { 197 | const codeTemplateLiteral = expressionStatement( 198 | templateLiteral([templateElement({ raw: attributeValue })], []), 199 | ); 200 | addComment( 201 | codeTemplateLiteral, 202 | "leading", 203 | " TODO: Fix event handler code", 204 | true, 205 | ); 206 | 207 | return createJSXAttribute( 208 | attributeName, 209 | arrowFunctionExpression( 210 | [identifier("event")], 211 | blockStatement([codeTemplateLiteral]), 212 | ), 213 | ); 214 | } 215 | } 216 | 217 | function createJSXAttribute( 218 | name: string, 219 | value: string | number | Expression | null, 220 | ) { 221 | if (value === null) { 222 | return jsxAttribute(jsxIdentifier(name), null); 223 | } 224 | 225 | switch (typeof value) { 226 | case "string": 227 | return jsxAttribute(jsxIdentifier(name), stringLiteral(value)); 228 | case "number": 229 | return jsxAttribute( 230 | jsxIdentifier(name), 231 | jsxExpressionContainer(numericLiteral(value)), 232 | ); 233 | default: 234 | return jsxAttribute(jsxIdentifier(name), jsxExpressionContainer(value)); 235 | } 236 | } 237 | -------------------------------------------------------------------------------- /src/html-to-jsx.test.ts: -------------------------------------------------------------------------------- 1 | import { htmlToJsx } from "./html-to-jsx"; 2 | 3 | /** Template literal for auto formatting */ 4 | function html( 5 | strings: TemplateStringsArray, 6 | ...expressions: unknown[] 7 | ): string { 8 | let result = strings[0] ?? ""; 9 | 10 | for (let i = 1, l = strings.length; i < l; i++) { 11 | result += expressions[i - 1]; 12 | result += strings[i]; 13 | } 14 | 15 | return result; 16 | } 17 | 18 | test("works for regular HTML", () => { 19 | const htmlToConvert = html`

Hello World!

`; 20 | 21 | const convertedJSX = htmlToJsx(htmlToConvert); 22 | 23 | expect(convertedJSX).toBe("

Hello World!

"); 24 | }); 25 | 26 | test("works with comments", () => { 27 | const htmlToConvert = html` 28 |

29 | 30 | Hello World! 31 |

32 | `; 33 | 34 | const convertedJSX = htmlToJsx(htmlToConvert); 35 | 36 | expect(convertedJSX).toBe(`

37 | { /* This is a comment. */ } 38 | Hello World! 39 |

`); 40 | }); 41 | 42 | test("works with only text", () => { 43 | const htmlToConvert = html`Hello World!`; 44 | 45 | const convertedJSX = htmlToJsx(htmlToConvert); 46 | 47 | expect(convertedJSX).toBe(`"Hello World!"`); 48 | }); 49 | 50 | test("works with only comment", () => { 51 | const htmlToConvert = html``; 52 | 53 | const convertedJSX = htmlToJsx(htmlToConvert); 54 | 55 | expect(convertedJSX).toBe(`{ /* Hello World! */ }`); 56 | }); 57 | 58 | test("works with singular elements", () => { 59 | const htmlToConvert = html`

Hello
World!

`; 60 | 61 | const convertedJSX = htmlToJsx(htmlToConvert); 62 | 63 | expect(convertedJSX).toBe(`

Hello
World!

`); 64 | }); 65 | 66 | test("self-closes empty elements", () => { 67 | const htmlToConvert = html`
`; 68 | 69 | const convertedJSX = htmlToJsx(htmlToConvert); 70 | 71 | expect(convertedJSX).toBe(`
`); 72 | }); 73 | 74 | test("converts class to className", () => { 75 | const htmlToConvert = html`

Hello World!

`; 76 | 77 | const convertedJSX = htmlToJsx(htmlToConvert); 78 | 79 | expect(convertedJSX).toBe(`

Hello World!

`); 80 | }); 81 | 82 | test("converts for to htmlFor", () => { 83 | const htmlToConvert = html`

Hello World!

`; 84 | 85 | const convertedJSX = htmlToJsx(htmlToConvert); 86 | 87 | expect(convertedJSX).toBe(`

Hello World!

`); 88 | }); 89 | 90 | test("converts style tag including px values to numbers", () => { 91 | const htmlToConvert = html`

92 | Hello World! 93 |

`; 94 | 95 | const convertedJSX = htmlToJsx(htmlToConvert); 96 | 97 | expect(convertedJSX) 98 | .toBe(`

99 | Hello World! 100 |

`); 101 | }); 102 | 103 | test("px values are not converted for specified CSS attributes", () => { 104 | const htmlToConvert = html`

105 | Hello World! 106 |

`; 107 | const convertedJSX = htmlToJsx(htmlToConvert); 108 | expect(convertedJSX).toBe( 109 | `

110 | Hello World! 111 |

`, 112 | ); 113 | }); 114 | 115 | test("works with adjacent elements", () => { 116 | const htmlToConvert = html` 117 |

Hello

118 | My 119 |

World!

120 | `; 121 | 122 | const convertedJSX = htmlToJsx(htmlToConvert); 123 | 124 | expect(convertedJSX).toBe(`<>

Hello

125 | My 126 |

World!

`); 127 | }); 128 | 129 | test("converts tabindex to number", () => { 130 | const htmlToConvert = html`

Hello World!

`; 131 | 132 | const convertedJSX = htmlToJsx(htmlToConvert); 133 | 134 | expect(convertedJSX).toBe(`

Hello World!

`); 135 | }); 136 | 137 | test("converts contenteditable to boolean", () => { 138 | const htmlToConvert = html`

Hello World!

`; 139 | 140 | const convertedJSX = htmlToJsx(htmlToConvert); 141 | 142 | expect(convertedJSX).toBe(`

Hello World!

`); 143 | }); 144 | 145 | test("converts value to boolean but leaves true in", () => { 146 | const htmlToConvert = html`

Hello World!

`; 147 | 148 | const convertedJSX = htmlToJsx(htmlToConvert); 149 | 150 | expect(convertedJSX).toBe(`

Hello World!

`); 151 | }); 152 | 153 | test("converts disabled to boolean but leaves true in", () => { 154 | const htmlToConvert = html`

Hello World!

`; 155 | 156 | const convertedJSX = htmlToJsx(htmlToConvert); 157 | 158 | expect(convertedJSX).toBe(`

Hello World!

`); 159 | }); 160 | 161 | test("converts playsinline to boolean", () => { 162 | const htmlToConvert = html`

Hello World!

`; 163 | 164 | const convertedJSX = htmlToJsx(htmlToConvert); 165 | 166 | expect(convertedJSX).toBe(`

Hello World!

`); 167 | }); 168 | 169 | test("converts checked to boolean but leaves true in", () => { 170 | const htmlToConvert = html`

Hello World!

`; 171 | 172 | const convertedJSX = htmlToJsx(htmlToConvert); 173 | 174 | expect(convertedJSX).toBe(`

Hello World!

`); 175 | }); 176 | 177 | test("converts cols to number", () => { 178 | const htmlToConvert = html`

Hello World!

`; 179 | 180 | const convertedJSX = htmlToJsx(htmlToConvert); 181 | 182 | expect(convertedJSX).toBe(`

Hello World!

`); 183 | }); 184 | 185 | test("converts svg attributes", () => { 186 | const htmlToConvert = html` 194 | 199 | `; 200 | 201 | const convertedJSX = htmlToJsx(htmlToConvert); 202 | 203 | expect(convertedJSX) 204 | .toBe(` 205 | 206 | `); 207 | }); 208 | 209 | test("handles onclick and converts function", () => { 210 | const htmlToConvert = html``; 213 | 214 | const convertedJSX = htmlToJsx(htmlToConvert); 215 | 216 | expect(convertedJSX).toBe( 217 | ``, 220 | ); 221 | }); 222 | 223 | test("handles onclick with more complex statement", () => { 224 | const htmlToConvert = html``; 227 | 228 | const convertedJSX = htmlToJsx(htmlToConvert); 229 | 230 | expect(convertedJSX).toBe( 231 | ``, 234 | ); 235 | }); 236 | 237 | test("handles onclick with invalid code inside", () => { 238 | const htmlToConvert = html``; 241 | 242 | const convertedJSX = htmlToJsx(htmlToConvert); 243 | 244 | expect(convertedJSX).toBe( 245 | ``, 249 | ); 250 | }); 251 | 252 | test("handles lowercased attributes", () => { 253 | const htmlToConvert = html``; 254 | 255 | const convertedJSX = htmlToJsx(htmlToConvert); 256 | 257 | expect(convertedJSX).toBe(``); 258 | }); 259 | 260 | test("handles two adjacent comments", () => { 261 | const htmlToConvert = html``; 262 | 263 | const convertedJSX = htmlToJsx(htmlToConvert); 264 | 265 | expect(convertedJSX).toBe(`<>{ /* Hello */ }{ /* World! */ }`); 266 | }); 267 | 268 | test("adds template literals to the inside of style elements", () => { 269 | const htmlToConvert = html``; 274 | 275 | const convertedJSX = htmlToJsx(htmlToConvert); 276 | 277 | expect(convertedJSX).toBe(``); 282 | }); 283 | 284 | test("handles inner script elements", () => { 285 | const htmlToConvert = html`
286 | 289 |
`; 290 | 291 | const convertedJSX = htmlToJsx(htmlToConvert); 292 | 293 | expect(convertedJSX).toBe(`
294 | 297 |
`); 298 | }); 299 | 300 | test("number attributes that are not a number remain untouched", () => { 301 | const htmlToConvert = html`

Hello World!

`; 302 | 303 | const convertedJSX = htmlToJsx(htmlToConvert); 304 | 305 | expect(convertedJSX).toBe(`

Hello World!

`); 306 | }); 307 | 308 | test("svg boolean attributes get converted", () => { 309 | const htmlToConvert = html``; 310 | 311 | const convertedJSX = htmlToJsx(htmlToConvert); 312 | 313 | expect(convertedJSX).toBe(``); 314 | }); 315 | 316 | test("false boolean attributes get converted to boolean expression", () => { 317 | const htmlToConvert = ``; 318 | 319 | const convertedJSX = htmlToJsx(htmlToConvert); 320 | 321 | expect(convertedJSX).toBe(``); 322 | }); 323 | 324 | test("border attributes are converted to numbers", () => { 325 | const htmlToConvert = `
`; 326 | 327 | const convertedJSX = htmlToJsx(htmlToConvert); 328 | 329 | expect(convertedJSX).toBe(``); 330 | }); 331 | 332 | test("boolean attributes with non-boolean values are left untouched", () => { 333 | const htmlToConvert = html`Download`; 336 | 337 | const convertedJSX = htmlToJsx(htmlToConvert); 338 | 339 | expect(convertedJSX).toBe( 340 | `Download`, 341 | ); 342 | }); 343 | 344 | test("adjacent script elements work", () => { 345 | const htmlToConvert = html` 346 | 350 | 351 | `; 352 | 353 | const convertedJSX = htmlToJsx(htmlToConvert); 354 | 355 | expect(convertedJSX).toBe( 356 | `<> 360 |