├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── manifest.json ├── package-lock.json ├── package.json ├── publish ├── demo.gif ├── dev_mode.gif ├── editor_mode.gif ├── icon.png ├── install_button.png ├── options.png ├── theme_extension_dev_mode.gif └── theme_extension_editor_mode.gif ├── src ├── dartCodeGenerator.ts ├── main.ts ├── ui.html └── utils.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: Mastersam07 3 | custom: ['https://flutterwave.com/pay/codefarmer'] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Node 2 | *.log 3 | *.log.* 4 | node_modules 5 | 6 | out/ 7 | dist/ 8 | *.js 9 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to FigDart 2 | 3 | 👍🎉 First off, thanks for taking the time to contribute! 🎉👍 4 | 5 | The following is a set of guidelines for contributing to FigDart. 6 | These are mostly guidelines, not rules. Use your best judgment, 7 | and feel free to propose changes to this document in a pull request. 8 | 9 | ## Proposing a Change 10 | 11 | If you intend to change the public API, or make any non-trivial changes 12 | to the implementation, we recommend filing an issue. 13 | This lets us reach an agreement on your proposal before you put significant 14 | effort into it. 15 | 16 | If you’re only fixing a bug, it’s fine to submit a pull request right away 17 | but we still recommend to file an issue detailing what you’re fixing. 18 | This is helpful in case we don’t accept that specific fix but want to keep 19 | track of the issue. 20 | 21 | ## Creating a Pull Request 22 | 23 | Before creating a pull request please: 24 | 25 | 1. Fork the repository and create your branch from `master`. 26 | 1. Squash your commits and ensure you have a meaningful commit message. 27 | 1. If you’ve fixed a bug or added code, ensure they are working. 28 | 1. If you've changed the public API, make sure to update/add documentation. 29 | 1. Format your code. 30 | 1. Create the Pull Request. 31 | 1. Verify that all status checks are passing. 32 | 33 | While the prerequisites above must be satisfied prior to having your 34 | pull request reviewed, the reviewer(s) may ask you to complete additional 35 | design work, tests, or other changes before your pull request can be ultimately 36 | accepted. 37 | 38 | ## License 39 | 40 | By contributing to FigDart, you agree that your contributions will be licensed 41 | under its [MIT license](LICENSE). 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Samuel Abada 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 | 6 |

7 | 8 | 9 | 10 |

FigDart logo

11 | 12 |

Figma Styles to Flutter

13 | 14 |
15 | Install Plugin 16 |
17 | 18 |
19 | 20 | Figdart demo 21 | 22 | 23 | ## The Problem 24 | 25 | When it comes to translating styles like textstyles and colors, there are a couple of problems that could arise. Some includes: 26 | 27 | - Manually converting Figma text styles to Flutter code 28 | - Greater risk of inconsistencies appearing in text styles between the design files and the coded application 29 | - Manually converting styles often results in code duplication 30 | - Manual conversion can lead to errors such as incorrect values, typos, or even omitted styles, which can be costly to debug and fix 31 | - Every time a designer updates a text style in Figma, developers have to manually update the corresponding code, which is both time-consuming and error-prone 32 | 33 | ## Solution 34 | 35 | By automating the conversion process, FigDart aims to eliminate these issues, making the design-to-code workflow more efficient, accurate, and consistent. 36 | 37 | ### Editor Mode 38 | How the plugin works in editor mode 39 | 40 | 41 | ### Dev Mode on View Only Access 42 | How the plugin works in dev mode 43 | 44 | ## Further features 45 | 46 | ### Use Theme Extensions 47 | 48 | You may choose to register your textstyles as a theme extension. 49 | 50 | ### Editor Mode 51 | theme extension editor mode 52 | 53 | ### Dev Mode on View Only Access 54 | theme extension dev mode 55 | 56 | ### Vary textstyle properties 57 | 58 | You may select some other textstyle properties like font family 59 | 60 | TODO: 61 | - [x] Text decoration 62 | - [x] letter spacing 63 | - [x] line height. 64 | 65 | textstyle options 66 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FigDart", 3 | "id": "1282135889870206898", 4 | "api": "1.0.0", 5 | "main": "src/main.js", 6 | "capabilities": [ 7 | "inspect" 8 | ], 9 | "enableProposedApi": false, 10 | "editorType": [ 11 | "figma", 12 | "dev" 13 | ], 14 | "ui": "src/ui.html", 15 | "documentAccess": "dynamic-page", 16 | "networkAccess": { 17 | "allowedDomains": [ 18 | "none" 19 | ] 20 | } 21 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "figdart", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "figdart", 9 | "version": "1.0.0", 10 | "devDependencies": { 11 | "@figma/plugin-typings": "^1.93.0", 12 | "@typescript-eslint/eslint-plugin": "^6.21.0", 13 | "@typescript-eslint/parser": "^6.21.0", 14 | "eslint": "^8.57.0", 15 | "typescript": "^5.4.5" 16 | } 17 | }, 18 | "node_modules/@eslint-community/eslint-utils": { 19 | "version": "4.4.0", 20 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 21 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 22 | "dev": true, 23 | "dependencies": { 24 | "eslint-visitor-keys": "^3.3.0" 25 | }, 26 | "engines": { 27 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 28 | }, 29 | "peerDependencies": { 30 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 31 | } 32 | }, 33 | "node_modules/@eslint-community/regexpp": { 34 | "version": "4.10.0", 35 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 36 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 37 | "dev": true, 38 | "engines": { 39 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 40 | } 41 | }, 42 | "node_modules/@eslint/eslintrc": { 43 | "version": "2.1.4", 44 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 45 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 46 | "dev": true, 47 | "dependencies": { 48 | "ajv": "^6.12.4", 49 | "debug": "^4.3.2", 50 | "espree": "^9.6.0", 51 | "globals": "^13.19.0", 52 | "ignore": "^5.2.0", 53 | "import-fresh": "^3.2.1", 54 | "js-yaml": "^4.1.0", 55 | "minimatch": "^3.1.2", 56 | "strip-json-comments": "^3.1.1" 57 | }, 58 | "engines": { 59 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 60 | }, 61 | "funding": { 62 | "url": "https://opencollective.com/eslint" 63 | } 64 | }, 65 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 66 | "version": "1.1.11", 67 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 68 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 69 | "dev": true, 70 | "dependencies": { 71 | "balanced-match": "^1.0.0", 72 | "concat-map": "0.0.1" 73 | } 74 | }, 75 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 76 | "version": "3.1.2", 77 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 78 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 79 | "dev": true, 80 | "dependencies": { 81 | "brace-expansion": "^1.1.7" 82 | }, 83 | "engines": { 84 | "node": "*" 85 | } 86 | }, 87 | "node_modules/@eslint/js": { 88 | "version": "8.57.0", 89 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 90 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 91 | "dev": true, 92 | "engines": { 93 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 94 | } 95 | }, 96 | "node_modules/@figma/plugin-typings": { 97 | "version": "1.93.0", 98 | "resolved": "https://registry.npmjs.org/@figma/plugin-typings/-/plugin-typings-1.93.0.tgz", 99 | "integrity": "sha512-R4iGdkHaoIeJENxz+VUmstOofataZ22Yi7urKS9mr6ZbMJ1TFPBDCrHbKXsJaevvizB9jLhCdNA1wtQci4Ynxg==", 100 | "dev": true 101 | }, 102 | "node_modules/@humanwhocodes/config-array": { 103 | "version": "0.11.14", 104 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 105 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 106 | "dev": true, 107 | "dependencies": { 108 | "@humanwhocodes/object-schema": "^2.0.2", 109 | "debug": "^4.3.1", 110 | "minimatch": "^3.0.5" 111 | }, 112 | "engines": { 113 | "node": ">=10.10.0" 114 | } 115 | }, 116 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 117 | "version": "1.1.11", 118 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 119 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 120 | "dev": true, 121 | "dependencies": { 122 | "balanced-match": "^1.0.0", 123 | "concat-map": "0.0.1" 124 | } 125 | }, 126 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 127 | "version": "3.1.2", 128 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 129 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 130 | "dev": true, 131 | "dependencies": { 132 | "brace-expansion": "^1.1.7" 133 | }, 134 | "engines": { 135 | "node": "*" 136 | } 137 | }, 138 | "node_modules/@humanwhocodes/module-importer": { 139 | "version": "1.0.1", 140 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 141 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 142 | "dev": true, 143 | "engines": { 144 | "node": ">=12.22" 145 | }, 146 | "funding": { 147 | "type": "github", 148 | "url": "https://github.com/sponsors/nzakas" 149 | } 150 | }, 151 | "node_modules/@humanwhocodes/object-schema": { 152 | "version": "2.0.3", 153 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 154 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 155 | "dev": true 156 | }, 157 | "node_modules/@nodelib/fs.scandir": { 158 | "version": "2.1.5", 159 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 160 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 161 | "dev": true, 162 | "dependencies": { 163 | "@nodelib/fs.stat": "2.0.5", 164 | "run-parallel": "^1.1.9" 165 | }, 166 | "engines": { 167 | "node": ">= 8" 168 | } 169 | }, 170 | "node_modules/@nodelib/fs.stat": { 171 | "version": "2.0.5", 172 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 173 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 174 | "dev": true, 175 | "engines": { 176 | "node": ">= 8" 177 | } 178 | }, 179 | "node_modules/@nodelib/fs.walk": { 180 | "version": "1.2.8", 181 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 182 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 183 | "dev": true, 184 | "dependencies": { 185 | "@nodelib/fs.scandir": "2.1.5", 186 | "fastq": "^1.6.0" 187 | }, 188 | "engines": { 189 | "node": ">= 8" 190 | } 191 | }, 192 | "node_modules/@types/json-schema": { 193 | "version": "7.0.15", 194 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 195 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 196 | "dev": true 197 | }, 198 | "node_modules/@types/semver": { 199 | "version": "7.5.8", 200 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", 201 | "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", 202 | "dev": true 203 | }, 204 | "node_modules/@typescript-eslint/eslint-plugin": { 205 | "version": "6.21.0", 206 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", 207 | "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", 208 | "dev": true, 209 | "dependencies": { 210 | "@eslint-community/regexpp": "^4.5.1", 211 | "@typescript-eslint/scope-manager": "6.21.0", 212 | "@typescript-eslint/type-utils": "6.21.0", 213 | "@typescript-eslint/utils": "6.21.0", 214 | "@typescript-eslint/visitor-keys": "6.21.0", 215 | "debug": "^4.3.4", 216 | "graphemer": "^1.4.0", 217 | "ignore": "^5.2.4", 218 | "natural-compare": "^1.4.0", 219 | "semver": "^7.5.4", 220 | "ts-api-utils": "^1.0.1" 221 | }, 222 | "engines": { 223 | "node": "^16.0.0 || >=18.0.0" 224 | }, 225 | "funding": { 226 | "type": "opencollective", 227 | "url": "https://opencollective.com/typescript-eslint" 228 | }, 229 | "peerDependencies": { 230 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", 231 | "eslint": "^7.0.0 || ^8.0.0" 232 | }, 233 | "peerDependenciesMeta": { 234 | "typescript": { 235 | "optional": true 236 | } 237 | } 238 | }, 239 | "node_modules/@typescript-eslint/parser": { 240 | "version": "6.21.0", 241 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", 242 | "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", 243 | "dev": true, 244 | "dependencies": { 245 | "@typescript-eslint/scope-manager": "6.21.0", 246 | "@typescript-eslint/types": "6.21.0", 247 | "@typescript-eslint/typescript-estree": "6.21.0", 248 | "@typescript-eslint/visitor-keys": "6.21.0", 249 | "debug": "^4.3.4" 250 | }, 251 | "engines": { 252 | "node": "^16.0.0 || >=18.0.0" 253 | }, 254 | "funding": { 255 | "type": "opencollective", 256 | "url": "https://opencollective.com/typescript-eslint" 257 | }, 258 | "peerDependencies": { 259 | "eslint": "^7.0.0 || ^8.0.0" 260 | }, 261 | "peerDependenciesMeta": { 262 | "typescript": { 263 | "optional": true 264 | } 265 | } 266 | }, 267 | "node_modules/@typescript-eslint/scope-manager": { 268 | "version": "6.21.0", 269 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", 270 | "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", 271 | "dev": true, 272 | "dependencies": { 273 | "@typescript-eslint/types": "6.21.0", 274 | "@typescript-eslint/visitor-keys": "6.21.0" 275 | }, 276 | "engines": { 277 | "node": "^16.0.0 || >=18.0.0" 278 | }, 279 | "funding": { 280 | "type": "opencollective", 281 | "url": "https://opencollective.com/typescript-eslint" 282 | } 283 | }, 284 | "node_modules/@typescript-eslint/type-utils": { 285 | "version": "6.21.0", 286 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", 287 | "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", 288 | "dev": true, 289 | "dependencies": { 290 | "@typescript-eslint/typescript-estree": "6.21.0", 291 | "@typescript-eslint/utils": "6.21.0", 292 | "debug": "^4.3.4", 293 | "ts-api-utils": "^1.0.1" 294 | }, 295 | "engines": { 296 | "node": "^16.0.0 || >=18.0.0" 297 | }, 298 | "funding": { 299 | "type": "opencollective", 300 | "url": "https://opencollective.com/typescript-eslint" 301 | }, 302 | "peerDependencies": { 303 | "eslint": "^7.0.0 || ^8.0.0" 304 | }, 305 | "peerDependenciesMeta": { 306 | "typescript": { 307 | "optional": true 308 | } 309 | } 310 | }, 311 | "node_modules/@typescript-eslint/types": { 312 | "version": "6.21.0", 313 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", 314 | "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", 315 | "dev": true, 316 | "engines": { 317 | "node": "^16.0.0 || >=18.0.0" 318 | }, 319 | "funding": { 320 | "type": "opencollective", 321 | "url": "https://opencollective.com/typescript-eslint" 322 | } 323 | }, 324 | "node_modules/@typescript-eslint/typescript-estree": { 325 | "version": "6.21.0", 326 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", 327 | "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", 328 | "dev": true, 329 | "dependencies": { 330 | "@typescript-eslint/types": "6.21.0", 331 | "@typescript-eslint/visitor-keys": "6.21.0", 332 | "debug": "^4.3.4", 333 | "globby": "^11.1.0", 334 | "is-glob": "^4.0.3", 335 | "minimatch": "9.0.3", 336 | "semver": "^7.5.4", 337 | "ts-api-utils": "^1.0.1" 338 | }, 339 | "engines": { 340 | "node": "^16.0.0 || >=18.0.0" 341 | }, 342 | "funding": { 343 | "type": "opencollective", 344 | "url": "https://opencollective.com/typescript-eslint" 345 | }, 346 | "peerDependenciesMeta": { 347 | "typescript": { 348 | "optional": true 349 | } 350 | } 351 | }, 352 | "node_modules/@typescript-eslint/utils": { 353 | "version": "6.21.0", 354 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", 355 | "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", 356 | "dev": true, 357 | "dependencies": { 358 | "@eslint-community/eslint-utils": "^4.4.0", 359 | "@types/json-schema": "^7.0.12", 360 | "@types/semver": "^7.5.0", 361 | "@typescript-eslint/scope-manager": "6.21.0", 362 | "@typescript-eslint/types": "6.21.0", 363 | "@typescript-eslint/typescript-estree": "6.21.0", 364 | "semver": "^7.5.4" 365 | }, 366 | "engines": { 367 | "node": "^16.0.0 || >=18.0.0" 368 | }, 369 | "funding": { 370 | "type": "opencollective", 371 | "url": "https://opencollective.com/typescript-eslint" 372 | }, 373 | "peerDependencies": { 374 | "eslint": "^7.0.0 || ^8.0.0" 375 | } 376 | }, 377 | "node_modules/@typescript-eslint/visitor-keys": { 378 | "version": "6.21.0", 379 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", 380 | "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", 381 | "dev": true, 382 | "dependencies": { 383 | "@typescript-eslint/types": "6.21.0", 384 | "eslint-visitor-keys": "^3.4.1" 385 | }, 386 | "engines": { 387 | "node": "^16.0.0 || >=18.0.0" 388 | }, 389 | "funding": { 390 | "type": "opencollective", 391 | "url": "https://opencollective.com/typescript-eslint" 392 | } 393 | }, 394 | "node_modules/@ungap/structured-clone": { 395 | "version": "1.2.0", 396 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 397 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 398 | "dev": true 399 | }, 400 | "node_modules/acorn": { 401 | "version": "8.11.3", 402 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 403 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 404 | "dev": true, 405 | "bin": { 406 | "acorn": "bin/acorn" 407 | }, 408 | "engines": { 409 | "node": ">=0.4.0" 410 | } 411 | }, 412 | "node_modules/acorn-jsx": { 413 | "version": "5.3.2", 414 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 415 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 416 | "dev": true, 417 | "peerDependencies": { 418 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 419 | } 420 | }, 421 | "node_modules/ajv": { 422 | "version": "6.12.6", 423 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 424 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 425 | "dev": true, 426 | "dependencies": { 427 | "fast-deep-equal": "^3.1.1", 428 | "fast-json-stable-stringify": "^2.0.0", 429 | "json-schema-traverse": "^0.4.1", 430 | "uri-js": "^4.2.2" 431 | }, 432 | "funding": { 433 | "type": "github", 434 | "url": "https://github.com/sponsors/epoberezkin" 435 | } 436 | }, 437 | "node_modules/ansi-regex": { 438 | "version": "5.0.1", 439 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 440 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 441 | "dev": true, 442 | "engines": { 443 | "node": ">=8" 444 | } 445 | }, 446 | "node_modules/ansi-styles": { 447 | "version": "4.3.0", 448 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 449 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 450 | "dev": true, 451 | "dependencies": { 452 | "color-convert": "^2.0.1" 453 | }, 454 | "engines": { 455 | "node": ">=8" 456 | }, 457 | "funding": { 458 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 459 | } 460 | }, 461 | "node_modules/argparse": { 462 | "version": "2.0.1", 463 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 464 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 465 | "dev": true 466 | }, 467 | "node_modules/array-union": { 468 | "version": "2.1.0", 469 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 470 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 471 | "dev": true, 472 | "engines": { 473 | "node": ">=8" 474 | } 475 | }, 476 | "node_modules/balanced-match": { 477 | "version": "1.0.2", 478 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 479 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 480 | "dev": true 481 | }, 482 | "node_modules/brace-expansion": { 483 | "version": "2.0.1", 484 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 485 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 486 | "dev": true, 487 | "dependencies": { 488 | "balanced-match": "^1.0.0" 489 | } 490 | }, 491 | "node_modules/braces": { 492 | "version": "3.0.3", 493 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 494 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 495 | "dev": true, 496 | "dependencies": { 497 | "fill-range": "^7.1.1" 498 | }, 499 | "engines": { 500 | "node": ">=8" 501 | } 502 | }, 503 | "node_modules/callsites": { 504 | "version": "3.1.0", 505 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 506 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 507 | "dev": true, 508 | "engines": { 509 | "node": ">=6" 510 | } 511 | }, 512 | "node_modules/chalk": { 513 | "version": "4.1.2", 514 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 515 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 516 | "dev": true, 517 | "dependencies": { 518 | "ansi-styles": "^4.1.0", 519 | "supports-color": "^7.1.0" 520 | }, 521 | "engines": { 522 | "node": ">=10" 523 | }, 524 | "funding": { 525 | "url": "https://github.com/chalk/chalk?sponsor=1" 526 | } 527 | }, 528 | "node_modules/color-convert": { 529 | "version": "2.0.1", 530 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 531 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 532 | "dev": true, 533 | "dependencies": { 534 | "color-name": "~1.1.4" 535 | }, 536 | "engines": { 537 | "node": ">=7.0.0" 538 | } 539 | }, 540 | "node_modules/color-name": { 541 | "version": "1.1.4", 542 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 543 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 544 | "dev": true 545 | }, 546 | "node_modules/concat-map": { 547 | "version": "0.0.1", 548 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 549 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 550 | "dev": true 551 | }, 552 | "node_modules/cross-spawn": { 553 | "version": "7.0.3", 554 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 555 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 556 | "dev": true, 557 | "dependencies": { 558 | "path-key": "^3.1.0", 559 | "shebang-command": "^2.0.0", 560 | "which": "^2.0.1" 561 | }, 562 | "engines": { 563 | "node": ">= 8" 564 | } 565 | }, 566 | "node_modules/debug": { 567 | "version": "4.3.4", 568 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 569 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 570 | "dev": true, 571 | "dependencies": { 572 | "ms": "2.1.2" 573 | }, 574 | "engines": { 575 | "node": ">=6.0" 576 | }, 577 | "peerDependenciesMeta": { 578 | "supports-color": { 579 | "optional": true 580 | } 581 | } 582 | }, 583 | "node_modules/deep-is": { 584 | "version": "0.1.4", 585 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 586 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 587 | "dev": true 588 | }, 589 | "node_modules/dir-glob": { 590 | "version": "3.0.1", 591 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 592 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 593 | "dev": true, 594 | "dependencies": { 595 | "path-type": "^4.0.0" 596 | }, 597 | "engines": { 598 | "node": ">=8" 599 | } 600 | }, 601 | "node_modules/doctrine": { 602 | "version": "3.0.0", 603 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 604 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 605 | "dev": true, 606 | "dependencies": { 607 | "esutils": "^2.0.2" 608 | }, 609 | "engines": { 610 | "node": ">=6.0.0" 611 | } 612 | }, 613 | "node_modules/escape-string-regexp": { 614 | "version": "4.0.0", 615 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 616 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 617 | "dev": true, 618 | "engines": { 619 | "node": ">=10" 620 | }, 621 | "funding": { 622 | "url": "https://github.com/sponsors/sindresorhus" 623 | } 624 | }, 625 | "node_modules/eslint": { 626 | "version": "8.57.0", 627 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 628 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 629 | "dev": true, 630 | "dependencies": { 631 | "@eslint-community/eslint-utils": "^4.2.0", 632 | "@eslint-community/regexpp": "^4.6.1", 633 | "@eslint/eslintrc": "^2.1.4", 634 | "@eslint/js": "8.57.0", 635 | "@humanwhocodes/config-array": "^0.11.14", 636 | "@humanwhocodes/module-importer": "^1.0.1", 637 | "@nodelib/fs.walk": "^1.2.8", 638 | "@ungap/structured-clone": "^1.2.0", 639 | "ajv": "^6.12.4", 640 | "chalk": "^4.0.0", 641 | "cross-spawn": "^7.0.2", 642 | "debug": "^4.3.2", 643 | "doctrine": "^3.0.0", 644 | "escape-string-regexp": "^4.0.0", 645 | "eslint-scope": "^7.2.2", 646 | "eslint-visitor-keys": "^3.4.3", 647 | "espree": "^9.6.1", 648 | "esquery": "^1.4.2", 649 | "esutils": "^2.0.2", 650 | "fast-deep-equal": "^3.1.3", 651 | "file-entry-cache": "^6.0.1", 652 | "find-up": "^5.0.0", 653 | "glob-parent": "^6.0.2", 654 | "globals": "^13.19.0", 655 | "graphemer": "^1.4.0", 656 | "ignore": "^5.2.0", 657 | "imurmurhash": "^0.1.4", 658 | "is-glob": "^4.0.0", 659 | "is-path-inside": "^3.0.3", 660 | "js-yaml": "^4.1.0", 661 | "json-stable-stringify-without-jsonify": "^1.0.1", 662 | "levn": "^0.4.1", 663 | "lodash.merge": "^4.6.2", 664 | "minimatch": "^3.1.2", 665 | "natural-compare": "^1.4.0", 666 | "optionator": "^0.9.3", 667 | "strip-ansi": "^6.0.1", 668 | "text-table": "^0.2.0" 669 | }, 670 | "bin": { 671 | "eslint": "bin/eslint.js" 672 | }, 673 | "engines": { 674 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 675 | }, 676 | "funding": { 677 | "url": "https://opencollective.com/eslint" 678 | } 679 | }, 680 | "node_modules/eslint-scope": { 681 | "version": "7.2.2", 682 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 683 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 684 | "dev": true, 685 | "dependencies": { 686 | "esrecurse": "^4.3.0", 687 | "estraverse": "^5.2.0" 688 | }, 689 | "engines": { 690 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 691 | }, 692 | "funding": { 693 | "url": "https://opencollective.com/eslint" 694 | } 695 | }, 696 | "node_modules/eslint-visitor-keys": { 697 | "version": "3.4.3", 698 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 699 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 700 | "dev": true, 701 | "engines": { 702 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 703 | }, 704 | "funding": { 705 | "url": "https://opencollective.com/eslint" 706 | } 707 | }, 708 | "node_modules/eslint/node_modules/brace-expansion": { 709 | "version": "1.1.11", 710 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 711 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 712 | "dev": true, 713 | "dependencies": { 714 | "balanced-match": "^1.0.0", 715 | "concat-map": "0.0.1" 716 | } 717 | }, 718 | "node_modules/eslint/node_modules/minimatch": { 719 | "version": "3.1.2", 720 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 721 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 722 | "dev": true, 723 | "dependencies": { 724 | "brace-expansion": "^1.1.7" 725 | }, 726 | "engines": { 727 | "node": "*" 728 | } 729 | }, 730 | "node_modules/espree": { 731 | "version": "9.6.1", 732 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 733 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 734 | "dev": true, 735 | "dependencies": { 736 | "acorn": "^8.9.0", 737 | "acorn-jsx": "^5.3.2", 738 | "eslint-visitor-keys": "^3.4.1" 739 | }, 740 | "engines": { 741 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 742 | }, 743 | "funding": { 744 | "url": "https://opencollective.com/eslint" 745 | } 746 | }, 747 | "node_modules/esquery": { 748 | "version": "1.5.0", 749 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 750 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 751 | "dev": true, 752 | "dependencies": { 753 | "estraverse": "^5.1.0" 754 | }, 755 | "engines": { 756 | "node": ">=0.10" 757 | } 758 | }, 759 | "node_modules/esrecurse": { 760 | "version": "4.3.0", 761 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 762 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 763 | "dev": true, 764 | "dependencies": { 765 | "estraverse": "^5.2.0" 766 | }, 767 | "engines": { 768 | "node": ">=4.0" 769 | } 770 | }, 771 | "node_modules/estraverse": { 772 | "version": "5.3.0", 773 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 774 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 775 | "dev": true, 776 | "engines": { 777 | "node": ">=4.0" 778 | } 779 | }, 780 | "node_modules/esutils": { 781 | "version": "2.0.3", 782 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 783 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 784 | "dev": true, 785 | "engines": { 786 | "node": ">=0.10.0" 787 | } 788 | }, 789 | "node_modules/fast-deep-equal": { 790 | "version": "3.1.3", 791 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 792 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 793 | "dev": true 794 | }, 795 | "node_modules/fast-glob": { 796 | "version": "3.3.2", 797 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 798 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 799 | "dev": true, 800 | "dependencies": { 801 | "@nodelib/fs.stat": "^2.0.2", 802 | "@nodelib/fs.walk": "^1.2.3", 803 | "glob-parent": "^5.1.2", 804 | "merge2": "^1.3.0", 805 | "micromatch": "^4.0.4" 806 | }, 807 | "engines": { 808 | "node": ">=8.6.0" 809 | } 810 | }, 811 | "node_modules/fast-glob/node_modules/glob-parent": { 812 | "version": "5.1.2", 813 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 814 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 815 | "dev": true, 816 | "dependencies": { 817 | "is-glob": "^4.0.1" 818 | }, 819 | "engines": { 820 | "node": ">= 6" 821 | } 822 | }, 823 | "node_modules/fast-json-stable-stringify": { 824 | "version": "2.1.0", 825 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 826 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 827 | "dev": true 828 | }, 829 | "node_modules/fast-levenshtein": { 830 | "version": "2.0.6", 831 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 832 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 833 | "dev": true 834 | }, 835 | "node_modules/fastq": { 836 | "version": "1.17.1", 837 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 838 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 839 | "dev": true, 840 | "dependencies": { 841 | "reusify": "^1.0.4" 842 | } 843 | }, 844 | "node_modules/file-entry-cache": { 845 | "version": "6.0.1", 846 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 847 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 848 | "dev": true, 849 | "dependencies": { 850 | "flat-cache": "^3.0.4" 851 | }, 852 | "engines": { 853 | "node": "^10.12.0 || >=12.0.0" 854 | } 855 | }, 856 | "node_modules/fill-range": { 857 | "version": "7.1.1", 858 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 859 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 860 | "dev": true, 861 | "dependencies": { 862 | "to-regex-range": "^5.0.1" 863 | }, 864 | "engines": { 865 | "node": ">=8" 866 | } 867 | }, 868 | "node_modules/find-up": { 869 | "version": "5.0.0", 870 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 871 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 872 | "dev": true, 873 | "dependencies": { 874 | "locate-path": "^6.0.0", 875 | "path-exists": "^4.0.0" 876 | }, 877 | "engines": { 878 | "node": ">=10" 879 | }, 880 | "funding": { 881 | "url": "https://github.com/sponsors/sindresorhus" 882 | } 883 | }, 884 | "node_modules/flat-cache": { 885 | "version": "3.2.0", 886 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 887 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 888 | "dev": true, 889 | "dependencies": { 890 | "flatted": "^3.2.9", 891 | "keyv": "^4.5.3", 892 | "rimraf": "^3.0.2" 893 | }, 894 | "engines": { 895 | "node": "^10.12.0 || >=12.0.0" 896 | } 897 | }, 898 | "node_modules/flatted": { 899 | "version": "3.3.1", 900 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 901 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 902 | "dev": true 903 | }, 904 | "node_modules/fs.realpath": { 905 | "version": "1.0.0", 906 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 907 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 908 | "dev": true 909 | }, 910 | "node_modules/glob": { 911 | "version": "7.2.3", 912 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 913 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 914 | "deprecated": "Glob versions prior to v9 are no longer supported", 915 | "dev": true, 916 | "dependencies": { 917 | "fs.realpath": "^1.0.0", 918 | "inflight": "^1.0.4", 919 | "inherits": "2", 920 | "minimatch": "^3.1.1", 921 | "once": "^1.3.0", 922 | "path-is-absolute": "^1.0.0" 923 | }, 924 | "engines": { 925 | "node": "*" 926 | }, 927 | "funding": { 928 | "url": "https://github.com/sponsors/isaacs" 929 | } 930 | }, 931 | "node_modules/glob-parent": { 932 | "version": "6.0.2", 933 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 934 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 935 | "dev": true, 936 | "dependencies": { 937 | "is-glob": "^4.0.3" 938 | }, 939 | "engines": { 940 | "node": ">=10.13.0" 941 | } 942 | }, 943 | "node_modules/glob/node_modules/brace-expansion": { 944 | "version": "1.1.11", 945 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 946 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 947 | "dev": true, 948 | "dependencies": { 949 | "balanced-match": "^1.0.0", 950 | "concat-map": "0.0.1" 951 | } 952 | }, 953 | "node_modules/glob/node_modules/minimatch": { 954 | "version": "3.1.2", 955 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 956 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 957 | "dev": true, 958 | "dependencies": { 959 | "brace-expansion": "^1.1.7" 960 | }, 961 | "engines": { 962 | "node": "*" 963 | } 964 | }, 965 | "node_modules/globals": { 966 | "version": "13.24.0", 967 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 968 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 969 | "dev": true, 970 | "dependencies": { 971 | "type-fest": "^0.20.2" 972 | }, 973 | "engines": { 974 | "node": ">=8" 975 | }, 976 | "funding": { 977 | "url": "https://github.com/sponsors/sindresorhus" 978 | } 979 | }, 980 | "node_modules/globby": { 981 | "version": "11.1.0", 982 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 983 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 984 | "dev": true, 985 | "dependencies": { 986 | "array-union": "^2.1.0", 987 | "dir-glob": "^3.0.1", 988 | "fast-glob": "^3.2.9", 989 | "ignore": "^5.2.0", 990 | "merge2": "^1.4.1", 991 | "slash": "^3.0.0" 992 | }, 993 | "engines": { 994 | "node": ">=10" 995 | }, 996 | "funding": { 997 | "url": "https://github.com/sponsors/sindresorhus" 998 | } 999 | }, 1000 | "node_modules/graphemer": { 1001 | "version": "1.4.0", 1002 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1003 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1004 | "dev": true 1005 | }, 1006 | "node_modules/has-flag": { 1007 | "version": "4.0.0", 1008 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1009 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1010 | "dev": true, 1011 | "engines": { 1012 | "node": ">=8" 1013 | } 1014 | }, 1015 | "node_modules/ignore": { 1016 | "version": "5.3.1", 1017 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1018 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1019 | "dev": true, 1020 | "engines": { 1021 | "node": ">= 4" 1022 | } 1023 | }, 1024 | "node_modules/import-fresh": { 1025 | "version": "3.3.0", 1026 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1027 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1028 | "dev": true, 1029 | "dependencies": { 1030 | "parent-module": "^1.0.0", 1031 | "resolve-from": "^4.0.0" 1032 | }, 1033 | "engines": { 1034 | "node": ">=6" 1035 | }, 1036 | "funding": { 1037 | "url": "https://github.com/sponsors/sindresorhus" 1038 | } 1039 | }, 1040 | "node_modules/imurmurhash": { 1041 | "version": "0.1.4", 1042 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1043 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1044 | "dev": true, 1045 | "engines": { 1046 | "node": ">=0.8.19" 1047 | } 1048 | }, 1049 | "node_modules/inflight": { 1050 | "version": "1.0.6", 1051 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1052 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1053 | "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.", 1054 | "dev": true, 1055 | "dependencies": { 1056 | "once": "^1.3.0", 1057 | "wrappy": "1" 1058 | } 1059 | }, 1060 | "node_modules/inherits": { 1061 | "version": "2.0.4", 1062 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1063 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1064 | "dev": true 1065 | }, 1066 | "node_modules/is-extglob": { 1067 | "version": "2.1.1", 1068 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1069 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1070 | "dev": true, 1071 | "engines": { 1072 | "node": ">=0.10.0" 1073 | } 1074 | }, 1075 | "node_modules/is-glob": { 1076 | "version": "4.0.3", 1077 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1078 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1079 | "dev": true, 1080 | "dependencies": { 1081 | "is-extglob": "^2.1.1" 1082 | }, 1083 | "engines": { 1084 | "node": ">=0.10.0" 1085 | } 1086 | }, 1087 | "node_modules/is-number": { 1088 | "version": "7.0.0", 1089 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1090 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1091 | "dev": true, 1092 | "engines": { 1093 | "node": ">=0.12.0" 1094 | } 1095 | }, 1096 | "node_modules/is-path-inside": { 1097 | "version": "3.0.3", 1098 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1099 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1100 | "dev": true, 1101 | "engines": { 1102 | "node": ">=8" 1103 | } 1104 | }, 1105 | "node_modules/isexe": { 1106 | "version": "2.0.0", 1107 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1108 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1109 | "dev": true 1110 | }, 1111 | "node_modules/js-yaml": { 1112 | "version": "4.1.0", 1113 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1114 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1115 | "dev": true, 1116 | "dependencies": { 1117 | "argparse": "^2.0.1" 1118 | }, 1119 | "bin": { 1120 | "js-yaml": "bin/js-yaml.js" 1121 | } 1122 | }, 1123 | "node_modules/json-buffer": { 1124 | "version": "3.0.1", 1125 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1126 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1127 | "dev": true 1128 | }, 1129 | "node_modules/json-schema-traverse": { 1130 | "version": "0.4.1", 1131 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1132 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1133 | "dev": true 1134 | }, 1135 | "node_modules/json-stable-stringify-without-jsonify": { 1136 | "version": "1.0.1", 1137 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1138 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1139 | "dev": true 1140 | }, 1141 | "node_modules/keyv": { 1142 | "version": "4.5.4", 1143 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1144 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1145 | "dev": true, 1146 | "dependencies": { 1147 | "json-buffer": "3.0.1" 1148 | } 1149 | }, 1150 | "node_modules/levn": { 1151 | "version": "0.4.1", 1152 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1153 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1154 | "dev": true, 1155 | "dependencies": { 1156 | "prelude-ls": "^1.2.1", 1157 | "type-check": "~0.4.0" 1158 | }, 1159 | "engines": { 1160 | "node": ">= 0.8.0" 1161 | } 1162 | }, 1163 | "node_modules/locate-path": { 1164 | "version": "6.0.0", 1165 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1166 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1167 | "dev": true, 1168 | "dependencies": { 1169 | "p-locate": "^5.0.0" 1170 | }, 1171 | "engines": { 1172 | "node": ">=10" 1173 | }, 1174 | "funding": { 1175 | "url": "https://github.com/sponsors/sindresorhus" 1176 | } 1177 | }, 1178 | "node_modules/lodash.merge": { 1179 | "version": "4.6.2", 1180 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1181 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1182 | "dev": true 1183 | }, 1184 | "node_modules/merge2": { 1185 | "version": "1.4.1", 1186 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1187 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1188 | "dev": true, 1189 | "engines": { 1190 | "node": ">= 8" 1191 | } 1192 | }, 1193 | "node_modules/micromatch": { 1194 | "version": "4.0.7", 1195 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 1196 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 1197 | "dev": true, 1198 | "dependencies": { 1199 | "braces": "^3.0.3", 1200 | "picomatch": "^2.3.1" 1201 | }, 1202 | "engines": { 1203 | "node": ">=8.6" 1204 | } 1205 | }, 1206 | "node_modules/minimatch": { 1207 | "version": "9.0.3", 1208 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 1209 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 1210 | "dev": true, 1211 | "dependencies": { 1212 | "brace-expansion": "^2.0.1" 1213 | }, 1214 | "engines": { 1215 | "node": ">=16 || 14 >=14.17" 1216 | }, 1217 | "funding": { 1218 | "url": "https://github.com/sponsors/isaacs" 1219 | } 1220 | }, 1221 | "node_modules/ms": { 1222 | "version": "2.1.2", 1223 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1224 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1225 | "dev": true 1226 | }, 1227 | "node_modules/natural-compare": { 1228 | "version": "1.4.0", 1229 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1230 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1231 | "dev": true 1232 | }, 1233 | "node_modules/once": { 1234 | "version": "1.4.0", 1235 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1236 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1237 | "dev": true, 1238 | "dependencies": { 1239 | "wrappy": "1" 1240 | } 1241 | }, 1242 | "node_modules/optionator": { 1243 | "version": "0.9.4", 1244 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 1245 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 1246 | "dev": true, 1247 | "dependencies": { 1248 | "deep-is": "^0.1.3", 1249 | "fast-levenshtein": "^2.0.6", 1250 | "levn": "^0.4.1", 1251 | "prelude-ls": "^1.2.1", 1252 | "type-check": "^0.4.0", 1253 | "word-wrap": "^1.2.5" 1254 | }, 1255 | "engines": { 1256 | "node": ">= 0.8.0" 1257 | } 1258 | }, 1259 | "node_modules/p-limit": { 1260 | "version": "3.1.0", 1261 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1262 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1263 | "dev": true, 1264 | "dependencies": { 1265 | "yocto-queue": "^0.1.0" 1266 | }, 1267 | "engines": { 1268 | "node": ">=10" 1269 | }, 1270 | "funding": { 1271 | "url": "https://github.com/sponsors/sindresorhus" 1272 | } 1273 | }, 1274 | "node_modules/p-locate": { 1275 | "version": "5.0.0", 1276 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1277 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1278 | "dev": true, 1279 | "dependencies": { 1280 | "p-limit": "^3.0.2" 1281 | }, 1282 | "engines": { 1283 | "node": ">=10" 1284 | }, 1285 | "funding": { 1286 | "url": "https://github.com/sponsors/sindresorhus" 1287 | } 1288 | }, 1289 | "node_modules/parent-module": { 1290 | "version": "1.0.1", 1291 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1292 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1293 | "dev": true, 1294 | "dependencies": { 1295 | "callsites": "^3.0.0" 1296 | }, 1297 | "engines": { 1298 | "node": ">=6" 1299 | } 1300 | }, 1301 | "node_modules/path-exists": { 1302 | "version": "4.0.0", 1303 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1304 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1305 | "dev": true, 1306 | "engines": { 1307 | "node": ">=8" 1308 | } 1309 | }, 1310 | "node_modules/path-is-absolute": { 1311 | "version": "1.0.1", 1312 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1313 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1314 | "dev": true, 1315 | "engines": { 1316 | "node": ">=0.10.0" 1317 | } 1318 | }, 1319 | "node_modules/path-key": { 1320 | "version": "3.1.1", 1321 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1322 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1323 | "dev": true, 1324 | "engines": { 1325 | "node": ">=8" 1326 | } 1327 | }, 1328 | "node_modules/path-type": { 1329 | "version": "4.0.0", 1330 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1331 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1332 | "dev": true, 1333 | "engines": { 1334 | "node": ">=8" 1335 | } 1336 | }, 1337 | "node_modules/picomatch": { 1338 | "version": "2.3.1", 1339 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1340 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1341 | "dev": true, 1342 | "engines": { 1343 | "node": ">=8.6" 1344 | }, 1345 | "funding": { 1346 | "url": "https://github.com/sponsors/jonschlinkert" 1347 | } 1348 | }, 1349 | "node_modules/prelude-ls": { 1350 | "version": "1.2.1", 1351 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1352 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1353 | "dev": true, 1354 | "engines": { 1355 | "node": ">= 0.8.0" 1356 | } 1357 | }, 1358 | "node_modules/punycode": { 1359 | "version": "2.3.1", 1360 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1361 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1362 | "dev": true, 1363 | "engines": { 1364 | "node": ">=6" 1365 | } 1366 | }, 1367 | "node_modules/queue-microtask": { 1368 | "version": "1.2.3", 1369 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1370 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1371 | "dev": true, 1372 | "funding": [ 1373 | { 1374 | "type": "github", 1375 | "url": "https://github.com/sponsors/feross" 1376 | }, 1377 | { 1378 | "type": "patreon", 1379 | "url": "https://www.patreon.com/feross" 1380 | }, 1381 | { 1382 | "type": "consulting", 1383 | "url": "https://feross.org/support" 1384 | } 1385 | ] 1386 | }, 1387 | "node_modules/resolve-from": { 1388 | "version": "4.0.0", 1389 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1390 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1391 | "dev": true, 1392 | "engines": { 1393 | "node": ">=4" 1394 | } 1395 | }, 1396 | "node_modules/reusify": { 1397 | "version": "1.0.4", 1398 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1399 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1400 | "dev": true, 1401 | "engines": { 1402 | "iojs": ">=1.0.0", 1403 | "node": ">=0.10.0" 1404 | } 1405 | }, 1406 | "node_modules/rimraf": { 1407 | "version": "3.0.2", 1408 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1409 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1410 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 1411 | "dev": true, 1412 | "dependencies": { 1413 | "glob": "^7.1.3" 1414 | }, 1415 | "bin": { 1416 | "rimraf": "bin.js" 1417 | }, 1418 | "funding": { 1419 | "url": "https://github.com/sponsors/isaacs" 1420 | } 1421 | }, 1422 | "node_modules/run-parallel": { 1423 | "version": "1.2.0", 1424 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1425 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1426 | "dev": true, 1427 | "funding": [ 1428 | { 1429 | "type": "github", 1430 | "url": "https://github.com/sponsors/feross" 1431 | }, 1432 | { 1433 | "type": "patreon", 1434 | "url": "https://www.patreon.com/feross" 1435 | }, 1436 | { 1437 | "type": "consulting", 1438 | "url": "https://feross.org/support" 1439 | } 1440 | ], 1441 | "dependencies": { 1442 | "queue-microtask": "^1.2.2" 1443 | } 1444 | }, 1445 | "node_modules/semver": { 1446 | "version": "7.6.2", 1447 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 1448 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 1449 | "dev": true, 1450 | "bin": { 1451 | "semver": "bin/semver.js" 1452 | }, 1453 | "engines": { 1454 | "node": ">=10" 1455 | } 1456 | }, 1457 | "node_modules/shebang-command": { 1458 | "version": "2.0.0", 1459 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1460 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1461 | "dev": true, 1462 | "dependencies": { 1463 | "shebang-regex": "^3.0.0" 1464 | }, 1465 | "engines": { 1466 | "node": ">=8" 1467 | } 1468 | }, 1469 | "node_modules/shebang-regex": { 1470 | "version": "3.0.0", 1471 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1472 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1473 | "dev": true, 1474 | "engines": { 1475 | "node": ">=8" 1476 | } 1477 | }, 1478 | "node_modules/slash": { 1479 | "version": "3.0.0", 1480 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 1481 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 1482 | "dev": true, 1483 | "engines": { 1484 | "node": ">=8" 1485 | } 1486 | }, 1487 | "node_modules/strip-ansi": { 1488 | "version": "6.0.1", 1489 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1490 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1491 | "dev": true, 1492 | "dependencies": { 1493 | "ansi-regex": "^5.0.1" 1494 | }, 1495 | "engines": { 1496 | "node": ">=8" 1497 | } 1498 | }, 1499 | "node_modules/strip-json-comments": { 1500 | "version": "3.1.1", 1501 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1502 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1503 | "dev": true, 1504 | "engines": { 1505 | "node": ">=8" 1506 | }, 1507 | "funding": { 1508 | "url": "https://github.com/sponsors/sindresorhus" 1509 | } 1510 | }, 1511 | "node_modules/supports-color": { 1512 | "version": "7.2.0", 1513 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1514 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1515 | "dev": true, 1516 | "dependencies": { 1517 | "has-flag": "^4.0.0" 1518 | }, 1519 | "engines": { 1520 | "node": ">=8" 1521 | } 1522 | }, 1523 | "node_modules/text-table": { 1524 | "version": "0.2.0", 1525 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1526 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1527 | "dev": true 1528 | }, 1529 | "node_modules/to-regex-range": { 1530 | "version": "5.0.1", 1531 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1532 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1533 | "dev": true, 1534 | "dependencies": { 1535 | "is-number": "^7.0.0" 1536 | }, 1537 | "engines": { 1538 | "node": ">=8.0" 1539 | } 1540 | }, 1541 | "node_modules/ts-api-utils": { 1542 | "version": "1.3.0", 1543 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 1544 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 1545 | "dev": true, 1546 | "engines": { 1547 | "node": ">=16" 1548 | }, 1549 | "peerDependencies": { 1550 | "typescript": ">=4.2.0" 1551 | } 1552 | }, 1553 | "node_modules/type-check": { 1554 | "version": "0.4.0", 1555 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1556 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1557 | "dev": true, 1558 | "dependencies": { 1559 | "prelude-ls": "^1.2.1" 1560 | }, 1561 | "engines": { 1562 | "node": ">= 0.8.0" 1563 | } 1564 | }, 1565 | "node_modules/type-fest": { 1566 | "version": "0.20.2", 1567 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 1568 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 1569 | "dev": true, 1570 | "engines": { 1571 | "node": ">=10" 1572 | }, 1573 | "funding": { 1574 | "url": "https://github.com/sponsors/sindresorhus" 1575 | } 1576 | }, 1577 | "node_modules/typescript": { 1578 | "version": "5.4.5", 1579 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", 1580 | "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", 1581 | "dev": true, 1582 | "bin": { 1583 | "tsc": "bin/tsc", 1584 | "tsserver": "bin/tsserver" 1585 | }, 1586 | "engines": { 1587 | "node": ">=14.17" 1588 | } 1589 | }, 1590 | "node_modules/uri-js": { 1591 | "version": "4.4.1", 1592 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1593 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1594 | "dev": true, 1595 | "dependencies": { 1596 | "punycode": "^2.1.0" 1597 | } 1598 | }, 1599 | "node_modules/which": { 1600 | "version": "2.0.2", 1601 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1602 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1603 | "dev": true, 1604 | "dependencies": { 1605 | "isexe": "^2.0.0" 1606 | }, 1607 | "bin": { 1608 | "node-which": "bin/node-which" 1609 | }, 1610 | "engines": { 1611 | "node": ">= 8" 1612 | } 1613 | }, 1614 | "node_modules/word-wrap": { 1615 | "version": "1.2.5", 1616 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 1617 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 1618 | "dev": true, 1619 | "engines": { 1620 | "node": ">=0.10.0" 1621 | } 1622 | }, 1623 | "node_modules/wrappy": { 1624 | "version": "1.0.2", 1625 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1626 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 1627 | "dev": true 1628 | }, 1629 | "node_modules/yocto-queue": { 1630 | "version": "0.1.0", 1631 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1632 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1633 | "dev": true, 1634 | "engines": { 1635 | "node": ">=10" 1636 | }, 1637 | "funding": { 1638 | "url": "https://github.com/sponsors/sindresorhus" 1639 | } 1640 | } 1641 | } 1642 | } 1643 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "figdart", 3 | "version": "1.0.0", 4 | "description": "Your Figma Plugin", 5 | "main": "src/main.js", 6 | "scripts": { 7 | "build": "tsc -p tsconfig.json", 8 | "watch": "npm run build -- --watch" 9 | }, 10 | "author": "", 11 | "license": "", 12 | "devDependencies": { 13 | "@figma/plugin-typings": "^1.93.0", 14 | "@typescript-eslint/eslint-plugin": "^6.21.0", 15 | "@typescript-eslint/parser": "^6.21.0", 16 | "eslint": "^8.57.0", 17 | "typescript": "^5.4.5" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /publish/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/demo.gif -------------------------------------------------------------------------------- /publish/dev_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/dev_mode.gif -------------------------------------------------------------------------------- /publish/editor_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/editor_mode.gif -------------------------------------------------------------------------------- /publish/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/icon.png -------------------------------------------------------------------------------- /publish/install_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/install_button.png -------------------------------------------------------------------------------- /publish/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/options.png -------------------------------------------------------------------------------- /publish/theme_extension_dev_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/theme_extension_dev_mode.gif -------------------------------------------------------------------------------- /publish/theme_extension_editor_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastersam07/figdart/375ca0c06c832788d85e00680a68df7e509490a5/publish/theme_extension_editor_mode.gif -------------------------------------------------------------------------------- /src/dartCodeGenerator.ts: -------------------------------------------------------------------------------- 1 | async function generateTextStyles(useThemeExtensions: boolean, includeFontName: boolean): Promise { 2 | try { 3 | const textStyles = await figma.getLocalTextStylesAsync(); 4 | if (textStyles.length === 0) { 5 | return "No defined textstyles"; 6 | } 7 | let dartCode = "import 'package:flutter/material.dart';\n\n"; 8 | 9 | if (useThemeExtensions) { 10 | // For AppTextTheme 11 | dartCode += "@immutable\nclass AppTextTheme extends ThemeExtension {\n"; 12 | 13 | // Generate fields 14 | textStyles.forEach((style, index) => { 15 | const formattedStyleName = formatStyleName(style.name, index); 16 | dartCode += ` final TextStyle? ${formattedStyleName};\n`; 17 | }); 18 | 19 | // Generate constructor 20 | dartCode += "\n const AppTextTheme({\n"; 21 | textStyles.forEach((style, index) => { 22 | const formattedStyleName = formatStyleName(style.name, index); 23 | dartCode += ` this.${formattedStyleName},\n`; 24 | }); 25 | dartCode += " });\n\n"; 26 | 27 | // Generate fallback constructor 28 | dartCode += " const AppTextTheme.fallback()\n : this(\n"; 29 | textStyles.forEach((style, index) => { 30 | const { 31 | fontSize, 32 | fontStyle, 33 | fontWeight, 34 | textDecoration, 35 | letterSpacing, 36 | fontFamily, 37 | lineHeightValue 38 | } = extractTextStyleProperties(style); 39 | const formattedStyleName = formatStyleName(style.name, index); 40 | 41 | dartCode += ` ${formattedStyleName}: const TextStyle(\n`; 42 | dartCode += ` fontSize: ${fontSize},\n`; 43 | dartCode += ` fontWeight: FontWeight.w${fontWeight},\n`; 44 | 45 | if (includeFontName) { 46 | dartCode += ` fontFamily: "${fontFamily}",\n`; 47 | } 48 | 49 | if (lineHeightValue !== 'null') { 50 | const height = Math.round((lineHeightValue / fontSize) * 100) / 100; 51 | dartCode += ` height: ${height},\n`; 52 | } 53 | 54 | if (letterSpacing != null && letterSpacing !== 0) { 55 | const roundedLetterSpacing = Math.round((letterSpacing * fontSize / 100) * 100) / 100; 56 | dartCode += ` letterSpacing: ${roundedLetterSpacing},\n`; 57 | } 58 | dartCode += ` fontStyle: ${fontStyle},\n`; 59 | dartCode += ` decoration: ${textDecoration},\n`; 60 | dartCode += ` ),\n`; 61 | }); 62 | dartCode += " );\n\n"; 63 | 64 | // Generate copyWith method 65 | dartCode += " @override\n AppTextTheme copyWith({\n"; 66 | textStyles.forEach((style, index) => { 67 | const formattedStyleName = formatStyleName(style.name, index); 68 | dartCode += ` TextStyle? ${formattedStyleName},\n`; 69 | }); 70 | dartCode += " }) {\n return AppTextTheme(\n"; 71 | textStyles.forEach((style, index) => { 72 | const formattedStyleName = formatStyleName(style.name, index); 73 | dartCode += ` ${formattedStyleName}: ${formattedStyleName} ?? this.${formattedStyleName},\n`; 74 | }); 75 | dartCode += " );\n }\n\n"; 76 | 77 | // Generate lerp method 78 | dartCode += " @override\n AppTextTheme lerp(AppTextTheme? other, double t) {\n"; 79 | dartCode += " if (other is! AppTextTheme) return this;\n"; 80 | dartCode += " return AppTextTheme(\n"; 81 | textStyles.forEach((style, index) => { 82 | const formattedStyleName = formatStyleName(style.name, index); 83 | dartCode += ` ${formattedStyleName}: TextStyle.lerp(${formattedStyleName}, other.${formattedStyleName}, t),\n`; 84 | }); 85 | dartCode += " );\n }\n"; 86 | 87 | } else { 88 | // Original TextStyles class 89 | dartCode += "abstract class AppTextStyles {\n"; 90 | textStyles.forEach((style, index) => { 91 | const formattedStyleName = formatStyleName(style.name, index); 92 | const { 93 | fontSize, 94 | fontStyle, 95 | fontWeight, 96 | textDecoration, 97 | letterSpacing, 98 | fontFamily, 99 | lineHeightValue 100 | } = extractTextStyleProperties(style); 101 | 102 | dartCode += generateTextStyleDartCode( 103 | formattedStyleName, 104 | { 105 | fontSize, 106 | fontStyle, 107 | fontWeight, 108 | textDecoration, 109 | letterSpacing, 110 | fontFamily, 111 | lineHeightValue 112 | }, 113 | includeFontName, 114 | ); 115 | }); 116 | } 117 | 118 | dartCode += "}\n"; 119 | return dartCode; 120 | } catch (error) { 121 | console.error('An error occurred:', error); 122 | return ''; 123 | } 124 | } 125 | 126 | 127 | async function generateColors(): Promise { 128 | try { 129 | const localColorStyles = await figma.getLocalPaintStylesAsync(); 130 | 131 | if (localColorStyles.length === 0) { 132 | return "No defined colors"; 133 | } 134 | 135 | let dartCode = "import 'package:flutter/material.dart';\n\n"; 136 | dartCode += 'abstract class AppColors {\n'; 137 | 138 | localColorStyles.forEach((style, index) => { // Changed to forEach to get index 139 | const paint = style.paints[0]; // assuming the first paint is what you want 140 | if (paint.type === 'SOLID') { 141 | const r = paint.color.r; 142 | const g = paint.color.g; 143 | const b = paint.color.b; 144 | const opacity = paint.opacity || 1; 145 | 146 | dartCode += generateColorStyleDartCode(formatColorName(style.name, index), r, g, b, opacity); // Passed index 147 | } else if (paint.type === 'GRADIENT_LINEAR') { 148 | // Assuming stops is an array of color stop objects containing color and position 149 | const stops = paint.gradientStops.map(stop => { 150 | const { r, g, b } = stop.color; 151 | const a = 1; 152 | return `Color(0x${toHex(a)}${toHex(r)}${toHex(g)}${toHex(b)})`; 153 | }).join(', '); 154 | 155 | dartCode += ` static const ${formatColorName(style.name, index)} = LinearGradient(colors: [${stops}]);\n\n`; // Passed index 156 | } 157 | }); 158 | 159 | dartCode += '}\n'; 160 | return dartCode; 161 | } catch (error) { 162 | console.error('An error occurred:', error); 163 | return ''; 164 | } 165 | } 166 | 167 | async function generateEffectStyles(): Promise { 168 | try { 169 | const localEffectStyles = await figma.getLocalEffectStylesAsync(); 170 | 171 | if (localEffectStyles.length === 0) { 172 | return "No defined effect styles"; 173 | } 174 | 175 | let dartCode = "import 'package:flutter/material.dart';\n\n"; 176 | dartCode += 'abstract class AppEffectStyles {\n'; 177 | 178 | localEffectStyles.forEach((style, index) => { 179 | const formattedStyleName = formatEffectStyleName(style.name, index); 180 | const effects = style.effects; // Array of effects 181 | 182 | effects.forEach((effect, effectIndex) => { 183 | const effectName = `${formattedStyleName}Effect${effectIndex}`; 184 | if (effect.type === "DROP_SHADOW" || effect.type === "INNER_SHADOW") { 185 | const { color, offset, radius, spread } = effect; 186 | const { r, g, b, a } = color; 187 | const colorCode = `Color(0x${toHex(a)}${toHex(r)}${toHex(g)}${toHex(b)})`; 188 | const offsetCode = `Offset(${offset.x}, ${offset.y})`; 189 | dartCode += ` static const BoxShadow ${effectName} = BoxShadow(\n`; 190 | dartCode += ` color: ${colorCode},\n`; 191 | dartCode += ` offset: ${offsetCode},\n`; 192 | dartCode += ` blurRadius: ${radius},\n`; 193 | dartCode += ` spreadRadius: ${spread},\n`; 194 | dartCode += ` );\n\n`; 195 | } else if (effect.type === "LAYER_BLUR" || effect.type === "BACKGROUND_BLUR") { 196 | const { radius } = effect; 197 | dartCode += ` static const double ${effectName}BlurRadius = ${radius};\n\n`; 198 | } 199 | }); 200 | }); 201 | 202 | dartCode += '}\n'; 203 | return dartCode; 204 | } catch (error) { 205 | console.error('An error occurred:', error); 206 | return ''; 207 | } 208 | } 209 | 210 | function generateTextStyleDartCode( 211 | styleName: string, 212 | { fontSize, fontStyle, fontWeight, textDecoration, letterSpacing, fontFamily, lineHeightValue }: any, 213 | includeFontName: boolean 214 | ): string { 215 | let code = ` static const TextStyle ${styleName} = TextStyle(\n`; 216 | code += ` fontSize: ${fontSize},\n`; 217 | code += ` fontWeight: FontWeight.w${fontWeight},\n`; 218 | 219 | if (includeFontName) { 220 | code += ` fontFamily: "${fontFamily}",\n`; 221 | } 222 | 223 | if (lineHeightValue !== 'null') { 224 | const height = Math.round((lineHeightValue / fontSize) * 100) / 100; 225 | code += ` height: ${height},\n`; 226 | } 227 | 228 | if (letterSpacing != null && letterSpacing !== 'null' && letterSpacing !== 0) { 229 | const roundedLetterSpacing = Math.round((letterSpacing * fontSize / 100) * 100) / 100; 230 | code += ` letterSpacing: ${roundedLetterSpacing},\n`; 231 | } 232 | code += ` fontStyle: ${fontStyle},\n`; 233 | code += ` decoration: ${textDecoration},\n`; 234 | code += ` );\n\n`; 235 | 236 | return code; 237 | } 238 | 239 | function generateColorStyleDartCode(styleName: string, r: number, g: number, b: number, opacity: number = 1): string { 240 | // Convert color channels and opacity to hex format 241 | const a = padStart(Math.floor(opacity * 255).toString(16), 2, '0'); 242 | const rHex = padStart(Math.floor(r * 255).toString(16), 2, '0'); 243 | const gHex = padStart(Math.floor(g * 255).toString(16), 2, '0'); 244 | const bHex = padStart(Math.floor(b * 255).toString(16), 2, '0'); 245 | 246 | // Generate Dart code 247 | let code = ` static const Color ${styleName} = Color(0x${a}${rHex}${gHex}${bHex});\n\n`; 248 | 249 | return code; 250 | } 251 | 252 | 253 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | if (figma.editorType === 'figma' || figma.editorType === 'dev') { 2 | figma.showUI(__html__, { width: 600, height: 600 }); 3 | 4 | figma.ui.onmessage = async msg => { 5 | if (msg.type === 'generate-textstyles') { 6 | const useThemeExtensions = msg.useThemeExtensions; 7 | const includeFontName = msg.includeFontName; 8 | let dartCode = await generateTextStyles(useThemeExtensions, includeFontName); 9 | figma.ui.postMessage({ type: 'dart-code', code: dartCode }); 10 | } 11 | 12 | if (msg.type === 'generate-colors') { 13 | let dartCode = await generateColors(); 14 | figma.ui.postMessage({ type: 'dart-code', code: dartCode }); 15 | } 16 | 17 | if (msg.type === 'generate-effects') { 18 | let dartCode = await generateEffectStyles(); 19 | figma.ui.postMessage({ type: 'dart-code', code: dartCode }); 20 | } 21 | }; 22 | } 23 | -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Generate Dart Code 7 | 23 | 24 | 25 | 26 |

Style Generator For Flutter

27 |
28 | TextStyle Options: 29 |

30 | 34 |

35 |

36 | 40 |

41 |
42 |

43 | 44 |

45 | 46 | 47 | 48 | 49 |
No code generated yet.
50 | 51 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | // Infers Dart fontWeight from Figma fontStyle 2 | function inferFontWeightFromStyle(fontStyle: string): number { 3 | if (fontStyle.includes('Bold')) return 700; 4 | if (fontStyle.includes('Medium')) return 500; 5 | return 400; // Default weight 6 | } 7 | 8 | // Infers Dart fontStyle from Figma fontStyle 9 | function inferFontStyleFromStyle(fontStyle: string): string { 10 | if (fontStyle.includes('Italic')) return 'FontStyle.italic'; 11 | if (fontStyle.includes('Oblique')) return 'FontStyle.italic'; // Dart doesn't support 'oblique' 12 | return 'FontStyle.normal'; // Default style 13 | } 14 | 15 | // Maps Figma text decorations to Dart's TextDecoration enum 16 | function mapTextDecorationToDart(decoration: string): string { 17 | const map: Record = { 18 | 'none': 'TextDecoration.none', 19 | 'underline': 'TextDecoration.underline', 20 | 'overline': 'TextDecoration.overline', 21 | 'line-through': 'TextDecoration.lineThrough', 22 | }; 23 | return map.hasOwnProperty(decoration.toLowerCase()) ? map[decoration.toLowerCase()] : 'TextDecoration.none'; 24 | } 25 | 26 | function formatColorName(name: string, index: number): string { 27 | if (!name) return `color${index}`; // or any default name you prefer 28 | const words = name 29 | .replace(/[^a-zA-Z0-9 ]/g, ' ') // Remove all non-alphanumeric characters and replace with space 30 | .trim() // Remove leading and trailing spaces 31 | .split(/\s+/); // Split by one or more spaces 32 | return words.map((word, index) => index === 0 ? word.toLowerCase() : capitalizeFirstLetter(word)).join(''); 33 | } 34 | 35 | function formatEffectStyleName(name: string, index: number): string { 36 | if (!name) return `effectStyle${index}`; 37 | const words = name 38 | .replace(/[^a-zA-Z0-9 ]/g, ' ') // Remove all non-alphanumeric characters and replace with space 39 | .trim() // Remove leading and trailing spaces 40 | .split(/\s+/); // Split by one or more spaces 41 | return words.map((word, index) => index === 0 ? word.toLowerCase() : capitalizeFirstLetter(word)).join(''); 42 | } 43 | 44 | function extractTextStyleProperties(style: any) { 45 | let letterSpacing = 0; // Default value 46 | const fontSize = style.fontSize; 47 | 48 | // Check if letterSpacing is in pixels or percent and convert accordingly 49 | if (style.letterSpacing) { 50 | if (style.letterSpacing.unit === 'PIXELS') { 51 | letterSpacing = style.letterSpacing.value; // Use pixel value directly 52 | } else if (style.letterSpacing.unit === 'PERCENT') { 53 | // Convert percentage to pixels based on the fontSize 54 | letterSpacing = (style.letterSpacing.value * fontSize) / 100; 55 | } 56 | } 57 | 58 | return { 59 | fontSize: style.fontSize, 60 | fontStyle: inferFontStyleFromStyle(style.fontName.style), 61 | fontWeight: inferFontWeightFromStyle(style.fontName.style), 62 | decoration: style.textDecoration, 63 | letterSpacing: letterSpacing || 0, 64 | fontFamily: style.fontName.family, 65 | lineHeightValue: style.lineHeight?.unit !== 'AUTO' ? style.lineHeight.value : 'null', 66 | textDecoration: mapTextDecorationToDart(style.textDecoration) 67 | }; 68 | } 69 | 70 | // Format style name 71 | function formatStyleName(name: string, index: number): string { 72 | if (!name) return `textStyle${index}`; 73 | const words = name 74 | .replace(/[^a-zA-Z0-9 ]/g, ' ') // Remove all non-alphanumeric characters and replace with space 75 | .trim() // Remove leading and trailing spaces 76 | .split(/\s+/); // Split by one or more spaces 77 | return words.map((word, index) => index === 0 ? word.toLowerCase() : capitalizeFirstLetter(word)).join(''); 78 | } 79 | 80 | function toHex(channel: number): string { 81 | return padStart(Math.floor(channel * 255).toString(16), 2, '0'); 82 | } 83 | 84 | function padStart(str: string, maxLength: number, fillString: string = ' '): string { 85 | if (str.length >= maxLength) { 86 | return str; 87 | } 88 | return Array(maxLength - str.length + 1).join(fillString) + str; 89 | } 90 | 91 | function capitalizeFirstLetter(string: string) { 92 | return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase(); 93 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": [ 3 | "src/*.ts" 4 | ], 5 | "compilerOptions": { 6 | "target": "es6", 7 | "lib": ["es6"], 8 | "strict": true, 9 | "outFile": "src/main.js", 10 | "typeRoots": [ 11 | "./node_modules/@types", 12 | "./node_modules/@figma" 13 | ] 14 | } 15 | } 16 | --------------------------------------------------------------------------------