├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public └── css │ └── style.css ├── src ├── client.ts ├── helper.ts ├── index.ts └── routes.ts ├── tsconfig.json ├── views ├── chatinfo.html ├── chats.html ├── contacts.html ├── index.html ├── login.html ├── new.html └── pair.html └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts/" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: 'Problem: ' 5 | labels: bug 6 | 7 | --- 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **To Reproduce** 13 | Steps to reproduce the behavior: 14 | 1. Go to '...' 15 | 2. Click on '....' 16 | 3. Scroll down to '....' 17 | 4. See error 18 | 19 | **Expected behavior** 20 | A clear and concise description of what you expected to happen. 21 | 22 | **Screenshots** 23 | If applicable, add screenshots to help explain your problem. 24 | 25 | **Dumbphone (please complete the following information):** 26 | - Device: [e.g. Nokia 3210] 27 | - OS: [e.g. S30+] 28 | - Browser [e.g. stock browser, Opera Mini] 29 | - Version [e.g. 8] 30 | 31 | **Additional context** 32 | Add any other context about the problem here. 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: 'Problem: ' 5 | labels: enhancement 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 | # 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 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | ## Conduct 4 | 5 | * We are committed to providing a friendly, safe and welcoming environment for all, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other similar characteristic. 6 | 7 | * On communication channels, please avoid using overtly sexual nicknames or other nicknames that might detract from a friendly, safe and welcoming environment for all. 8 | 9 | * Please be kind and courteous. There’s no need to be mean or rude. 10 | 11 | * Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer. 12 | 13 | * Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a fork and see how it works. 14 | 15 | * We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behaviour. We interpret the term “harassment” as including the definition in the [Citizen Code of Conduct](http://citizencodeofconduct.org/); if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don’t tolerate behavior that excludes people in socially marginalized groups. 16 | 17 | * Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please contact one of the communication channel admins or the email mentioned above immediately. Whether you’re a regular contributor or a newcomer, we care about making this community a safe place for you and we’ve got your back. 18 | 19 | * Likewise any spamming, trolling, flaming, baiting or other attention-stealing behaviour is not welcome. 20 | 21 | 22 | ---- 23 | 24 | 25 | ## Moderation 26 | These are the policies for upholding our community’s standards of conduct. If you feel that a thread needs moderation, please contact the above mentioned person. 27 | 28 | 1. Remarks that violate these standards of conduct, including hateful, hurtful, oppressive, or exclusionary remarks, are not allowed. (Cursing is allowed, but never targeting another user, and never in a hateful manner.) 29 | 30 | 2. Remarks that moderators find inappropriate, whether listed in the code of conduct or not, are also not allowed. 31 | 32 | 3. Moderators will first respond to such remarks with a warning. 33 | 34 | 4. If the warning is unheeded, the user will be “kicked,” i.e., kicked out of the communication channel to cool off. 35 | 36 | 5. If the user comes back and continues to make trouble, they will be banned, i.e., indefinitely excluded. 37 | 38 | 6. Moderators may choose at their discretion to un-ban the user if it was a first offense and they offer the offended party a genuine apology. 39 | 40 | 7. If a moderator bans someone and you think it was unjustified, please take it up with that moderator, or with a different moderator, in private. Complaints about bans in-channel are not allowed. 41 | 42 | 8. Moderators are held to a higher standard than other community members. If a moderator creates an inappropriate situation, they should expect less leeway than others. 43 | 44 | In this developer community we strive to go the extra step to look out for each other. Don’t just aim to be technically unimpeachable, try to be your best self. In particular, avoid flirting with offensive or sensitive issues, particularly if they’re off-topic; this all too often leads to unnecessary fights, hurt feelings, and damaged trust; worse, it can drive people away from the community entirely. 45 | 46 | And if someone takes issue with something you said or did, resist the urge to be defensive. Just stop doing what it was they complained about and apologize. Even if you feel you were misinterpreted or unfairly accused, chances are good there was something you could’ve communicated better — remember that it’s your responsibility to make your fellow developer community members comfortable. Everyone wants to get along and we are all here first and foremost because we want to talk about cool technology. You will find that people will be eager to assume good intent and forgive as long as you earn their trust. 47 | 48 | The enforcement policies listed above apply to all official venues. For other projects adopting this Code of Conduct, please contact the maintainers of those projects for enforcement. If you wish to use this code of conduct for your own project, consider explicitly mentioning your moderation policy or making a copy with your own moderation policy so as to avoid confusion. 49 | 50 | * Adapted from the the [Rust Code of Conduct](https://www.rust-lang.org/en-US/conduct.html), the [Node.js Policy on Trolling](http://blog.izs.me/post/30036893703/policy-on-trolling) as well as the [Contributor Covenant v1.3.0](http://contributor-covenant.org/version/1/3/0/). -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thank you for your interest in contributing to Super Basic IM! 4 | The contribution policy we follow is the [Collective Code Construction Contract (C4)](https://rfc.zeromq.org/spec/42/). 5 | 6 | ## Code of Conduct 7 | 8 | All contributors are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md). 9 | 10 | ## Feature requests and bug reports 11 | 12 | Feature requests and bug reports should be posted as [Github issues](issues/new). 13 | In an issue, please describe what you did, what you expected, and what happened instead. 14 | In line with the C4's Patch Requirements, please use 15 | a single short (less than 50 characters) line stating the problem (“Problem: …") being solved 16 | as the title of your issue. 17 | If you would like to propose a solution to that problem, please describe it in the description. 18 | 19 | ## Working on issues 20 | 21 | The code should follow [Google TypeScript Style](https://github.com/google/gts). 22 | Please make sure to use `npm run lint` before every commit (e.g. by configuring your editor to do it for you upon saving a file). 23 | 24 | Once you identified a problem to work on, this is the summary of your basic steps: 25 | 26 | * Fork Super Basic IM's repository under your Github account. 27 | 28 | * Clone your fork locally on your machine. 29 | 30 | * Post a comment in the issue to say that you are working on it, so that other people do not work on the same issue. 31 | 32 | * Create a local branch on your machine by `git checkout -b branch_name`. 33 | 34 | * Make sure the code compiles (`npm run compile`) and passes the style check (`npm run lint`). 35 | 36 | * Commit your changes to your own fork -- see [C4 Patch Requirements](https://rfc.zeromq.org/spec:42/C4/#23-patch-requirements) for guidelines. 37 | 38 | * Check you are working on the latest version on main in Super Basic IM's official repository. If not, please pull Super Basic IM's official repository's main (upstream) into your fork's main branch, and rebase your committed changes or replay your stashed changes in your branch over the latest changes in the upstream version. 39 | 40 | * Push your changes to your fork's branch and open the pull request to Super Basic IM's repository main branch. 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | -------------- 6 | 7 | 1.1. "Contributor" 8 | means each individual or legal entity that creates, contributes to 9 | the creation of, or owns Covered Software. 10 | 11 | 1.2. "Contributor Version" 12 | means the combination of the Contributions of others (if any) used 13 | by a Contributor and that particular Contributor's Contribution. 14 | 15 | 1.3. "Contribution" 16 | means Covered Software of a particular Contributor. 17 | 18 | 1.4. "Covered Software" 19 | means Source Code Form to which the initial Contributor has attached 20 | the notice in Exhibit A, the Executable Form of such Source Code 21 | Form, and Modifications of such Source Code Form, in each case 22 | including portions thereof. 23 | 24 | 1.5. "Incompatible With Secondary Licenses" 25 | means 26 | 27 | (a) that the initial Contributor has attached the notice described 28 | in Exhibit B to the Covered Software; or 29 | 30 | (b) that the Covered Software was made available under the terms of 31 | version 1.1 or earlier of the License, but not also under the 32 | terms of a Secondary License. 33 | 34 | 1.6. "Executable Form" 35 | means any form of the work other than Source Code Form. 36 | 37 | 1.7. "Larger Work" 38 | means a work that combines Covered Software with other material, in 39 | a separate file or files, that is not Covered Software. 40 | 41 | 1.8. "License" 42 | means this document. 43 | 44 | 1.9. "Licensable" 45 | means having the right to grant, to the maximum extent possible, 46 | whether at the time of the initial grant or subsequently, any and 47 | all of the rights conveyed by this License. 48 | 49 | 1.10. "Modifications" 50 | means any of the following: 51 | 52 | (a) any file in Source Code Form that results from an addition to, 53 | deletion from, or modification of the contents of Covered 54 | Software; or 55 | 56 | (b) any new file in Source Code Form that contains any Covered 57 | Software. 58 | 59 | 1.11. "Patent Claims" of a Contributor 60 | means any patent claim(s), including without limitation, method, 61 | process, and apparatus claims, in any patent Licensable by such 62 | Contributor that would be infringed, but for the grant of the 63 | License, by the making, using, selling, offering for sale, having 64 | made, import, or transfer of either its Contributions or its 65 | Contributor Version. 66 | 67 | 1.12. "Secondary License" 68 | means either the GNU General Public License, Version 2.0, the GNU 69 | Lesser General Public License, Version 2.1, the GNU Affero General 70 | Public License, Version 3.0, or any later versions of those 71 | licenses. 72 | 73 | 1.13. "Source Code Form" 74 | means the form of the work preferred for making modifications. 75 | 76 | 1.14. "You" (or "Your") 77 | means an individual or a legal entity exercising rights under this 78 | License. For legal entities, "You" includes any entity that 79 | controls, is controlled by, or is under common control with You. For 80 | purposes of this definition, "control" means (a) the power, direct 81 | or indirect, to cause the direction or management of such entity, 82 | whether by contract or otherwise, or (b) ownership of more than 83 | fifty percent (50%) of the outstanding shares or beneficial 84 | ownership of such entity. 85 | 86 | 2. License Grants and Conditions 87 | -------------------------------- 88 | 89 | 2.1. Grants 90 | 91 | Each Contributor hereby grants You a world-wide, royalty-free, 92 | non-exclusive license: 93 | 94 | (a) under intellectual property rights (other than patent or trademark) 95 | Licensable by such Contributor to use, reproduce, make available, 96 | modify, display, perform, distribute, and otherwise exploit its 97 | Contributions, either on an unmodified basis, with Modifications, or 98 | as part of a Larger Work; and 99 | 100 | (b) under Patent Claims of such Contributor to make, use, sell, offer 101 | for sale, have made, import, and otherwise transfer either its 102 | Contributions or its Contributor Version. 103 | 104 | 2.2. Effective Date 105 | 106 | The licenses granted in Section 2.1 with respect to any Contribution 107 | become effective for each Contribution on the date the Contributor first 108 | distributes such Contribution. 109 | 110 | 2.3. Limitations on Grant Scope 111 | 112 | The licenses granted in this Section 2 are the only rights granted under 113 | this License. No additional rights or licenses will be implied from the 114 | distribution or licensing of Covered Software under this License. 115 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 116 | Contributor: 117 | 118 | (a) for any code that a Contributor has removed from Covered Software; 119 | or 120 | 121 | (b) for infringements caused by: (i) Your and any other third party's 122 | modifications of Covered Software, or (ii) the combination of its 123 | Contributions with other software (except as part of its Contributor 124 | Version); or 125 | 126 | (c) under Patent Claims infringed by Covered Software in the absence of 127 | its Contributions. 128 | 129 | This License does not grant any rights in the trademarks, service marks, 130 | or logos of any Contributor (except as may be necessary to comply with 131 | the notice requirements in Section 3.4). 132 | 133 | 2.4. Subsequent Licenses 134 | 135 | No Contributor makes additional grants as a result of Your choice to 136 | distribute the Covered Software under a subsequent version of this 137 | License (see Section 10.2) or under the terms of a Secondary License (if 138 | permitted under the terms of Section 3.3). 139 | 140 | 2.5. Representation 141 | 142 | Each Contributor represents that the Contributor believes its 143 | Contributions are its original creation(s) or it has sufficient rights 144 | to grant the rights to its Contributions conveyed by this License. 145 | 146 | 2.6. Fair Use 147 | 148 | This License is not intended to limit any rights You have under 149 | applicable copyright doctrines of fair use, fair dealing, or other 150 | equivalents. 151 | 152 | 2.7. Conditions 153 | 154 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 155 | in Section 2.1. 156 | 157 | 3. Responsibilities 158 | ------------------- 159 | 160 | 3.1. Distribution of Source Form 161 | 162 | All distribution of Covered Software in Source Code Form, including any 163 | Modifications that You create or to which You contribute, must be under 164 | the terms of this License. You must inform recipients that the Source 165 | Code Form of the Covered Software is governed by the terms of this 166 | License, and how they can obtain a copy of this License. You may not 167 | attempt to alter or restrict the recipients' rights in the Source Code 168 | Form. 169 | 170 | 3.2. Distribution of Executable Form 171 | 172 | If You distribute Covered Software in Executable Form then: 173 | 174 | (a) such Covered Software must also be made available in Source Code 175 | Form, as described in Section 3.1, and You must inform recipients of 176 | the Executable Form how they can obtain a copy of such Source Code 177 | Form by reasonable means in a timely manner, at a charge no more 178 | than the cost of distribution to the recipient; and 179 | 180 | (b) You may distribute such Executable Form under the terms of this 181 | License, or sublicense it under different terms, provided that the 182 | license for the Executable Form does not attempt to limit or alter 183 | the recipients' rights in the Source Code Form under this License. 184 | 185 | 3.3. Distribution of a Larger Work 186 | 187 | You may create and distribute a Larger Work under terms of Your choice, 188 | provided that You also comply with the requirements of this License for 189 | the Covered Software. If the Larger Work is a combination of Covered 190 | Software with a work governed by one or more Secondary Licenses, and the 191 | Covered Software is not Incompatible With Secondary Licenses, this 192 | License permits You to additionally distribute such Covered Software 193 | under the terms of such Secondary License(s), so that the recipient of 194 | the Larger Work may, at their option, further distribute the Covered 195 | Software under the terms of either this License or such Secondary 196 | License(s). 197 | 198 | 3.4. Notices 199 | 200 | You may not remove or alter the substance of any license notices 201 | (including copyright notices, patent notices, disclaimers of warranty, 202 | or limitations of liability) contained within the Source Code Form of 203 | the Covered Software, except that You may alter any license notices to 204 | the extent required to remedy known factual inaccuracies. 205 | 206 | 3.5. Application of Additional Terms 207 | 208 | You may choose to offer, and to charge a fee for, warranty, support, 209 | indemnity or liability obligations to one or more recipients of Covered 210 | Software. However, You may do so only on Your own behalf, and not on 211 | behalf of any Contributor. You must make it absolutely clear that any 212 | such warranty, support, indemnity, or liability obligation is offered by 213 | You alone, and You hereby agree to indemnify every Contributor for any 214 | liability incurred by such Contributor as a result of warranty, support, 215 | indemnity or liability terms You offer. You may include additional 216 | disclaimers of warranty and limitations of liability specific to any 217 | jurisdiction. 218 | 219 | 4. Inability to Comply Due to Statute or Regulation 220 | --------------------------------------------------- 221 | 222 | If it is impossible for You to comply with any of the terms of this 223 | License with respect to some or all of the Covered Software due to 224 | statute, judicial order, or regulation then You must: (a) comply with 225 | the terms of this License to the maximum extent possible; and (b) 226 | describe the limitations and the code they affect. Such description must 227 | be placed in a text file included with all distributions of the Covered 228 | Software under this License. Except to the extent prohibited by statute 229 | or regulation, such description must be sufficiently detailed for a 230 | recipient of ordinary skill to be able to understand it. 231 | 232 | 5. Termination 233 | -------------- 234 | 235 | 5.1. The rights granted under this License will terminate automatically 236 | if You fail to comply with any of its terms. However, if You become 237 | compliant, then the rights granted under this License from a particular 238 | Contributor are reinstated (a) provisionally, unless and until such 239 | Contributor explicitly and finally terminates Your grants, and (b) on an 240 | ongoing basis, if such Contributor fails to notify You of the 241 | non-compliance by some reasonable means prior to 60 days after You have 242 | come back into compliance. Moreover, Your grants from a particular 243 | Contributor are reinstated on an ongoing basis if such Contributor 244 | notifies You of the non-compliance by some reasonable means, this is the 245 | first time You have received notice of non-compliance with this License 246 | from such Contributor, and You become compliant prior to 30 days after 247 | Your receipt of the notice. 248 | 249 | 5.2. If You initiate litigation against any entity by asserting a patent 250 | infringement claim (excluding declaratory judgment actions, 251 | counter-claims, and cross-claims) alleging that a Contributor Version 252 | directly or indirectly infringes any patent, then the rights granted to 253 | You by any and all Contributors for the Covered Software under Section 254 | 2.1 of this License shall terminate. 255 | 256 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 257 | end user license agreements (excluding distributors and resellers) which 258 | have been validly granted by You or Your distributors under this License 259 | prior to termination shall survive termination. 260 | 261 | ************************************************************************ 262 | * * 263 | * 6. Disclaimer of Warranty * 264 | * ------------------------- * 265 | * * 266 | * Covered Software is provided under this License on an "as is" * 267 | * basis, without warranty of any kind, either expressed, implied, or * 268 | * statutory, including, without limitation, warranties that the * 269 | * Covered Software is free of defects, merchantable, fit for a * 270 | * particular purpose or non-infringing. The entire risk as to the * 271 | * quality and performance of the Covered Software is with You. * 272 | * Should any Covered Software prove defective in any respect, You * 273 | * (not any Contributor) assume the cost of any necessary servicing, * 274 | * repair, or correction. This disclaimer of warranty constitutes an * 275 | * essential part of this License. No use of any Covered Software is * 276 | * authorized under this License except under this disclaimer. * 277 | * * 278 | ************************************************************************ 279 | 280 | ************************************************************************ 281 | * * 282 | * 7. Limitation of Liability * 283 | * -------------------------- * 284 | * * 285 | * Under no circumstances and under no legal theory, whether tort * 286 | * (including negligence), contract, or otherwise, shall any * 287 | * Contributor, or anyone who distributes Covered Software as * 288 | * permitted above, be liable to You for any direct, indirect, * 289 | * special, incidental, or consequential damages of any character * 290 | * including, without limitation, damages for lost profits, loss of * 291 | * goodwill, work stoppage, computer failure or malfunction, or any * 292 | * and all other commercial damages or losses, even if such party * 293 | * shall have been informed of the possibility of such damages. This * 294 | * limitation of liability shall not apply to liability for death or * 295 | * personal injury resulting from such party's negligence to the * 296 | * extent applicable law prohibits such limitation. Some * 297 | * jurisdictions do not allow the exclusion or limitation of * 298 | * incidental or consequential damages, so this exclusion and * 299 | * limitation may not apply to You. * 300 | * * 301 | ************************************************************************ 302 | 303 | 8. Litigation 304 | ------------- 305 | 306 | Any litigation relating to this License may be brought only in the 307 | courts of a jurisdiction where the defendant maintains its principal 308 | place of business and such litigation shall be governed by laws of that 309 | jurisdiction, without reference to its conflict-of-law provisions. 310 | Nothing in this Section shall prevent a party's ability to bring 311 | cross-claims or counter-claims. 312 | 313 | 9. Miscellaneous 314 | ---------------- 315 | 316 | This License represents the complete agreement concerning the subject 317 | matter hereof. If any provision of this License is held to be 318 | unenforceable, such provision shall be reformed only to the extent 319 | necessary to make it enforceable. Any law or regulation which provides 320 | that the language of a contract shall be construed against the drafter 321 | shall not be used to construe this License against a Contributor. 322 | 323 | 10. Versions of the License 324 | --------------------------- 325 | 326 | 10.1. New Versions 327 | 328 | Mozilla Foundation is the license steward. Except as provided in Section 329 | 10.3, no one other than the license steward has the right to modify or 330 | publish new versions of this License. Each version will be given a 331 | distinguishing version number. 332 | 333 | 10.2. Effect of New Versions 334 | 335 | You may distribute the Covered Software under the terms of the version 336 | of the License under which You originally received the Covered Software, 337 | or under the terms of any subsequent version published by the license 338 | steward. 339 | 340 | 10.3. Modified Versions 341 | 342 | If you create software not governed by this License, and you want to 343 | create a new license for such software, you may create and use a 344 | modified version of this License if you rename the license and remove 345 | any references to the name of the license steward (except to note that 346 | such modified license differs from this License). 347 | 348 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 349 | Licenses 350 | 351 | If You choose to distribute Source Code Form that is Incompatible With 352 | Secondary Licenses under the terms of this version of the License, the 353 | notice described in Exhibit B of this License must be attached. 354 | 355 | Exhibit A - Source Code Form License Notice 356 | ------------------------------------------- 357 | 358 | This Source Code Form is subject to the terms of the Mozilla Public 359 | License, v. 2.0. If a copy of the MPL was not distributed with this 360 | file, You can obtain one at http://mozilla.org/MPL/2.0/. 361 | 362 | If it is not possible or desirable to put the notice in a particular 363 | file, then You may include the notice in a location (such as a LICENSE 364 | file in a relevant directory) where a recipient would be likely to look 365 | for such a notice. 366 | 367 | You may add additional accurate notices of copyright ownership. 368 | 369 | Exhibit B - "Incompatible With Secondary Licenses" Notice 370 | --------------------------------------------------------- 371 | 372 | This Source Code Form is "Incompatible With Secondary Licenses", as 373 | defined by the Mozilla Public License, v. 2.0. 374 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SuperBasic IM: a web-proxy for WhatsApp Web that works on dumbphones 2 | 3 | ## Problem 4 | Feature phones typically don't support WhatsApp natively, 5 | but they have a basic web browser. 6 | 7 | ## Solution 8 | SuperBasic IM acts as a proxy 9 | between the fully featured WhatsApp Web and dumbphone web browsers. 10 | 11 | ## Instructions 12 | ### Build 13 | ``` 14 | npm install 15 | npm run build 16 | ``` 17 | ### Lint 18 | ``` 19 | npm run lint 20 | ``` 21 | ### Run 22 | ``` 23 | cd dist 24 | node index.js init 25 | node index.js 26 | ``` 27 | 28 | ## Current features 29 | ### Supported 30 | * Sending and receiving text messages 31 | * Sending and receiving files 32 | * Downloading VCard of any WhatsApp contact 33 | * Emoji conversions (from emoji to their textual representation for display in dumbphone web browsers) 34 | 35 | ### Unsupported 36 | * Audio and video calls 37 | * Instant notifications 38 | * Locations 39 | * Group chat management 40 | * Polls 41 | 42 | ## Contributing 43 | The contribution policy we follow is the [Collective Code Construction Contract (C4)](https://rfc.zeromq.org/spec/42/). 44 | For basic details, please see [the contribution instructions](./CONTRIBUTING.md). 45 | 46 | ### Current problems 47 | As mentioned in [the contribution instructions](./CONTRIBUTING.md), please open a GitHub issue first (if it doesn't exist) 48 | to describe the problem and reference this issue in your PR. 49 | 50 | * Problem: sent or received media files may not be playable on the end device 51 | * Solution: introduce media re-processing on the server for common dumbphone player formats 52 | * Problem: contacts may wait for a reply for too long 53 | * Solution: add an opt-in auto-reply to remind contacts to call or SMS if they don't receive a reply to their urgent message 54 | * Problem: textual emoji input is cumbersome 55 | * Solution: add conversions from common ASCII emojis 56 | * Problem: textual display of emojis is not nice 57 | * Solution: add an opt-in conversion to `` tags linking freely-licensed emoji image sets -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "superbasic-im", 3 | "version": "0.0.1", 4 | "description": "Super Basic IM: a web-proxy for WhatsApp Web that works on dumbphones", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "npm run compile && ln -s ../views ./dist/views && ln -s ../public ./dist/public && mkdir -p dist/media", 8 | "lint": "gts lint", 9 | "clean": "gts clean", 10 | "compile": "tsc", 11 | "fix": "gts fix", 12 | "prepare": "npm run compile", 13 | "pretest": "npm run compile", 14 | "posttest": "npm run lint" 15 | }, 16 | "author": "tomtau", 17 | "license": "MPL-2.0", 18 | "dependencies": { 19 | "@hapi/boom": "^10.0.1", 20 | "@hapi/cookie": "^12.0.1", 21 | "@hapi/crumb": "^9.0.1", 22 | "@hapi/hapi": "^21.3.9", 23 | "@hapi/inert": "^7.1.0", 24 | "@hapi/vision": "^7.0.3", 25 | "argon2": "^0.40.3", 26 | "handlebars": "^4.7.8", 27 | "mime-types": "^2.1.35", 28 | "node-cache": "^5.1.2", 29 | "node-emoji": "^2.1.3", 30 | "qrcode": "^1.5.3", 31 | "readline": "^1.3.0", 32 | "typescript": "^5.4.5", 33 | "vcards-js": "^2.10.0", 34 | "whatsapp-web.js": "^1.28.0" 35 | }, 36 | "devDependencies": { 37 | "@types/hapi__cookie": "^12.0.5", 38 | "@types/hapi__crumb": "^7.3.7", 39 | "@types/mime-types": "^2.1.4", 40 | "@types/node": "20.12.7", 41 | "@types/qrcode": "^1.5.5", 42 | "@types/vcards-js": "^2.10.5", 43 | "gts": "^5.3.1", 44 | "typescript": "^5.4.3" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | body, 2 | html { 3 | color: #fff; 4 | height: 100%; 5 | width: 100%; 6 | background: #ccc; 7 | } 8 | 9 | .chat-area { 10 | background-color: #ffffff; 11 | color: #000000; 12 | padding: 10px; 13 | border: 1px solid #ccc; 14 | } 15 | 16 | a { 17 | color: #727b8d; 18 | text-decoration: none; 19 | } 20 | 21 | a:hover, 22 | a:focus, 23 | a:active { 24 | color: #6B8E23; 25 | } 26 | 27 | .login { 28 | width: 100%; 29 | padding: 10px; 30 | 31 | label { 32 | color: #888; 33 | 34 | } 35 | 36 | .form-control { 37 | border-radius: 0; 38 | -webkit-border-radius: 0; 39 | -moz-border-radius: 0; 40 | padding-top: 20px; 41 | padding-bottom: 20px; 42 | border-color: #999; 43 | color: #000; 44 | font-weight: bolder; 45 | } 46 | 47 | .btn, 48 | .btn:focus, 49 | .btn:active, 50 | .btn:hover { 51 | border-radius: 2px; 52 | border: solid 1px #b1b1b3; 53 | background: #727b8d; 54 | font-size: 16px; 55 | font-weight: bold; 56 | padding: 10px; 57 | outline: none; 58 | color: #ffffff; 59 | } 60 | 61 | .help-block { 62 | text-align: left; 63 | color: #979fb3; 64 | display: block; 65 | } 66 | 67 | .signup, 68 | .signup:hover, 69 | .signup:focus, 70 | .signup:active { 71 | text-align: center; 72 | margin-top: 10px; 73 | background: #6B8E23 !important; 74 | border: solid 2px #aaa; 75 | } 76 | } 77 | 78 | 79 | .navbar-default { 80 | background: #505c75; 81 | border: none; 82 | border-radius: 0; 83 | -webkit-border-radius: 0; 84 | -moz-border-radius: 0; 85 | min-height: 0; 86 | height: 35px !important; 87 | 88 | .navbar-brand { 89 | color: #fff; 90 | padding: 0; 91 | line-height: 35px; 92 | padding-left: 5px; 93 | font-weight: bolder; 94 | } 95 | 96 | #first-btn { 97 | -webkit-border-radius: 0; 98 | -moz-border-radius: 0; 99 | -ms-border-radius: 0; 100 | border-radius: 0; 101 | border: none; 102 | color: #fff; 103 | font-weight: 100; 104 | border: solid 1px #c2cee4; 105 | padding: 4px 15px; 106 | background: #6B8E23; 107 | position: absolute; 108 | top: 10px; 109 | right: 0; 110 | } 111 | 112 | #second-btn { 113 | -webkit-border-radius: 0; 114 | -moz-border-radius: 0; 115 | -ms-border-radius: 0; 116 | border-radius: 0; 117 | border: none; 118 | color: #fff; 119 | font-weight: 100; 120 | border: solid 1px #c2cee4; 121 | padding: 4px 15px; 122 | background: #6B8E23; 123 | position: absolute; 124 | top: 10px; 125 | right: 125px; 126 | } 127 | #third-btn { 128 | -webkit-border-radius: 0; 129 | -moz-border-radius: 0; 130 | -ms-border-radius: 0; 131 | border-radius: 0; 132 | border: none; 133 | color: #fff; 134 | font-weight: 100; 135 | border: solid 1px #c2cee4; 136 | padding: 4px 15px; 137 | background: #6B8E23; 138 | position: absolute; 139 | top: 10px; 140 | right: 250px; 141 | } 142 | #fourth-btn { 143 | -webkit-border-radius: 0; 144 | -moz-border-radius: 0; 145 | -ms-border-radius: 0; 146 | border-radius: 0; 147 | border: none; 148 | color: #fff; 149 | font-weight: 100; 150 | border: solid 1px #c2cee4; 151 | padding: 4px 15px; 152 | background: #6B8E23; 153 | position: absolute; 154 | top: 10px; 155 | right: 375px; 156 | } 157 | } 158 | 159 | footer { 160 | background: #444; 161 | color: #999; 162 | padding: 10px; 163 | 164 | #copyright { 165 | color: #fff; 166 | } 167 | } -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- 1 | import { 2 | Client as WAClient, 3 | LocalAuth, 4 | Contact as WAContact, 5 | MessageMedia, 6 | } from 'whatsapp-web.js'; 7 | import fs from 'fs'; 8 | import * as QRCode from 'qrcode'; 9 | import * as mime from 'mime-types'; 10 | import * as emoji from 'node-emoji'; 11 | 12 | // Create a new client instance 13 | export const client = new WAClient({ 14 | authStrategy: new LocalAuth(), 15 | }); 16 | export let pairQr: string | null = null; 17 | export const unreadChats: Map = new Map(); 18 | 19 | // When the client is ready, run this code (only once) 20 | client.once('ready', async () => { 21 | console.log('Client is ready!'); 22 | //Initial fetch of unreadChats 23 | const chats = await client.getChats(); 24 | for (let i = 0; i < chats.length; i++) { 25 | const chat = chats[i]; 26 | if (chat.unreadCount > 0) { 27 | const chatid = encodeURIComponent(chat.id._serialized); 28 | unreadChats.set(chatid, chat.unreadCount); 29 | } 30 | } 31 | }); 32 | 33 | // When the client received QR-Code 34 | // TODO: give proper types 35 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 36 | client.on('qr', (qr: any) => { 37 | console.log('QR code RECEIVED'); 38 | // TODO: give proper types 39 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 40 | QRCode.toDataURL(qr, (err: any, url: any) => { 41 | pairQr = url; 42 | }); 43 | }); 44 | 45 | client.on('message_create', async msg => { 46 | const id = encodeURIComponent(msg.id._serialized); 47 | 48 | console.log( 49 | 'new message: ' + 50 | id + 51 | ' from ' + 52 | msg.author + 53 | ' to ' + 54 | msg.to + 55 | ' at ' + 56 | msg.timestamp 57 | ); 58 | if (msg.hasMedia) { 59 | const media = await msg.downloadMedia(); 60 | const extension = mime.extension(media.mimetype); 61 | await fs.writeFile( 62 | 'media/' + id + '.' + extension, 63 | Buffer.from(media.data, 'base64'), 64 | err => { 65 | if (err) { 66 | return console.log(err); 67 | } 68 | console.log('The file was saved: ' + id); 69 | fs.symlinkSync('media/' + id + '.' + extension, 'media/' + id, 'file'); 70 | } 71 | ); 72 | } 73 | }); 74 | 75 | // Update unreadChats every time there is an unread_count event 76 | client.on('unread_count', async chat => { 77 | const chatid = encodeURIComponent(chat.id._serialized); 78 | if (chat.unreadCount === 0) { 79 | unreadChats.delete(chatid); 80 | } else { 81 | unreadChats.set(chatid, chat.unreadCount); 82 | } 83 | }); 84 | 85 | // TODO: give a proper return type 86 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 87 | export async function getUserContacts(): Promise { 88 | const users = []; 89 | const contacts = await client.getContacts(); 90 | for (let i = 0; i < contacts.length; i++) { 91 | const contact = contacts[i]; 92 | if (contact.isUser) { 93 | const user = { 94 | name: waContactToName(contact, true), 95 | id: contact.id._serialized, 96 | }; 97 | users.push(user); 98 | } 99 | } 100 | users.sort((a, b) => { 101 | return a.name.localeCompare(b.name); 102 | }); 103 | return users; 104 | } 105 | 106 | export function waContactToName( 107 | contact: WAContact, 108 | addNumber: boolean 109 | ): string { 110 | let name = contact.name || contact.pushname; 111 | 112 | if (addNumber && contact.isUser) { 113 | name = name + ' [' + contact.number + ']'; 114 | } 115 | if (name) { 116 | return emoji.unemojify(name); 117 | } else { 118 | return contact.number; 119 | } 120 | } 121 | 122 | export function longNumToDate( 123 | noOrLong: number | null | undefined | string 124 | ): string { 125 | let date = new Date(); 126 | if (typeof noOrLong === 'number') { 127 | date = new Date(noOrLong * 1000); 128 | } else if (typeof noOrLong === 'string') { 129 | date = new Date(parseInt(noOrLong) * 1000); 130 | } 131 | return date.toLocaleString(); 132 | } 133 | 134 | // TODO: give a proper type to file 135 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 136 | export async function sendWAMessage(to: string, msg: string, file: any) { 137 | if (msg.length > 0) { 138 | await client.sendMessage(to, emoji.emojify(msg)); 139 | } 140 | if (file.bytes > 0) { 141 | const media = MessageMedia.fromFilePath(file.path); 142 | media.filename = file.filename; 143 | media.mimetype = file.headers['content-type']; 144 | await client.sendMessage(to, media); 145 | } 146 | } 147 | -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- 1 | export function removeDiacritics(str: string): string { 2 | const defaultDiacriticsRemovalMap = [ 3 | { 4 | base: 'A', 5 | letters: 6 | /[\u0041\u24B6\uFF21\u00C0\u00C1\u00C2\u1EA6\u1EA4\u1EAA\u1EA8\u00C3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\u00C4\u01DE\u1EA2\u00C5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F]/g, 7 | }, 8 | {base: 'AA', letters: /[\uA732]/g}, 9 | {base: 'AE', letters: /[\u00C6\u01FC\u01E2]/g}, 10 | {base: 'AO', letters: /[\uA734]/g}, 11 | {base: 'AU', letters: /[\uA736]/g}, 12 | {base: 'AV', letters: /[\uA738\uA73A]/g}, 13 | {base: 'AY', letters: /[\uA73C]/g}, 14 | { 15 | base: 'B', 16 | letters: /[\u0042\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181]/g, 17 | }, 18 | { 19 | base: 'C', 20 | letters: 21 | /[\u0043\u24B8\uFF23\u0106\u0108\u010A\u010C\u00C7\u1E08\u0187\u023B\uA73E]/g, 22 | }, 23 | { 24 | base: 'D', 25 | letters: 26 | /[\u0044\u24B9\uFF24\u1E0A\u010E\u1E0C\u1E10\u1E12\u1E0E\u0110\u018B\u018A\u0189\uA779]/g, 27 | }, 28 | {base: 'DZ', letters: /[\u01F1\u01C4]/g}, 29 | {base: 'Dz', letters: /[\u01F2\u01C5]/g}, 30 | { 31 | base: 'E', 32 | letters: 33 | /[\u0045\u24BA\uFF25\u00C8\u00C9\u00CA\u1EC0\u1EBE\u1EC4\u1EC2\u1EBC\u0112\u1E14\u1E16\u0114\u0116\u00CB\u1EBA\u011A\u0204\u0206\u1EB8\u1EC6\u0228\u1E1C\u0118\u1E18\u1E1A\u0190\u018E]/g, 34 | }, 35 | {base: 'F', letters: /[\u0046\u24BB\uFF26\u1E1E\u0191\uA77B]/g}, 36 | { 37 | base: 'G', 38 | letters: 39 | /[\u0047\u24BC\uFF27\u01F4\u011C\u1E20\u011E\u0120\u01E6\u0122\u01E4\u0193\uA7A0\uA77D\uA77E]/g, 40 | }, 41 | { 42 | base: 'H', 43 | letters: 44 | /[\u0048\u24BD\uFF28\u0124\u1E22\u1E26\u021E\u1E24\u1E28\u1E2A\u0126\u2C67\u2C75\uA78D]/g, 45 | }, 46 | { 47 | base: 'I', 48 | letters: 49 | /[\u0049\u24BE\uFF29\u00CC\u00CD\u00CE\u0128\u012A\u012C\u0130\u00CF\u1E2E\u1EC8\u01CF\u0208\u020A\u1ECA\u012E\u1E2C\u0197]/g, 50 | }, 51 | {base: 'J', letters: /[\u004A\u24BF\uFF2A\u0134\u0248]/g}, 52 | { 53 | base: 'K', 54 | letters: 55 | /[\u004B\u24C0\uFF2B\u1E30\u01E8\u1E32\u0136\u1E34\u0198\u2C69\uA740\uA742\uA744\uA7A2]/g, 56 | }, 57 | { 58 | base: 'L', 59 | letters: 60 | /[\u004C\u24C1\uFF2C\u013F\u0139\u013D\u1E36\u1E38\u013B\u1E3C\u1E3A\u0141\u023D\u2C62\u2C60\uA748\uA746\uA780]/g, 61 | }, 62 | {base: 'LJ', letters: /[\u01C7]/g}, 63 | {base: 'Lj', letters: /[\u01C8]/g}, 64 | {base: 'M', letters: /[\u004D\u24C2\uFF2D\u1E3E\u1E40\u1E42\u2C6E\u019C]/g}, 65 | { 66 | base: 'N', 67 | letters: 68 | /[\u004E\u24C3\uFF2E\u01F8\u0143\u00D1\u1E44\u0147\u1E46\u0145\u1E4A\u1E48\u0220\u019D\uA790\uA7A4]/g, 69 | }, 70 | {base: 'NJ', letters: /[\u01CA]/g}, 71 | {base: 'Nj', letters: /[\u01CB]/g}, 72 | { 73 | base: 'O', 74 | letters: 75 | /[\u004F\u24C4\uFF2F\u00D2\u00D3\u00D4\u1ED2\u1ED0\u1ED6\u1ED4\u00D5\u1E4C\u022C\u1E4E\u014C\u1E50\u1E52\u014E\u022E\u0230\u00D6\u022A\u1ECE\u0150\u01D1\u020C\u020E\u01A0\u1EDC\u1EDA\u1EE0\u1EDE\u1EE2\u1ECC\u1ED8\u01EA\u01EC\u00D8\u01FE\u0186\u019F\uA74A\uA74C]/g, 76 | }, 77 | {base: 'OI', letters: /[\u01A2]/g}, 78 | {base: 'OO', letters: /[\uA74E]/g}, 79 | {base: 'OU', letters: /[\u0222]/g}, 80 | { 81 | base: 'P', 82 | letters: 83 | /[\u0050\u24C5\uFF30\u1E54\u1E56\u01A4\u2C63\uA750\uA752\uA754]/g, 84 | }, 85 | {base: 'Q', letters: /[\u0051\u24C6\uFF31\uA756\uA758\u024A]/g}, 86 | { 87 | base: 'R', 88 | letters: 89 | /[\u0052\u24C7\uFF32\u0154\u1E58\u0158\u0210\u0212\u1E5A\u1E5C\u0156\u1E5E\u024C\u2C64\uA75A\uA7A6\uA782]/g, 90 | }, 91 | { 92 | base: 'S', 93 | letters: 94 | /[\u0053\u24C8\uFF33\u1E9E\u015A\u1E64\u015C\u1E60\u0160\u1E66\u1E62\u1E68\u0218\u015E\u2C7E\uA7A8\uA784]/g, 95 | }, 96 | { 97 | base: 'T', 98 | letters: 99 | /[\u0054\u24C9\uFF34\u1E6A\u0164\u1E6C\u021A\u0162\u1E70\u1E6E\u0166\u01AC\u01AE\u023E\uA786]/g, 100 | }, 101 | {base: 'TZ', letters: /[\uA728]/g}, 102 | { 103 | base: 'U', 104 | letters: 105 | /[\u0055\u24CA\uFF35\u00D9\u00DA\u00DB\u0168\u1E78\u016A\u1E7A\u016C\u00DC\u01DB\u01D7\u01D5\u01D9\u1EE6\u016E\u0170\u01D3\u0214\u0216\u01AF\u1EEA\u1EE8\u1EEE\u1EEC\u1EF0\u1EE4\u1E72\u0172\u1E76\u1E74\u0244]/g, 106 | }, 107 | {base: 'V', letters: /[\u0056\u24CB\uFF36\u1E7C\u1E7E\u01B2\uA75E\u0245]/g}, 108 | {base: 'VY', letters: /[\uA760]/g}, 109 | { 110 | base: 'W', 111 | letters: 112 | /[\u0057\u24CC\uFF37\u1E80\u1E82\u0174\u1E86\u1E84\u1E88\u2C72]/g, 113 | }, 114 | {base: 'X', letters: /[\u0058\u24CD\uFF38\u1E8A\u1E8C]/g}, 115 | { 116 | base: 'Y', 117 | letters: 118 | /[\u0059\u24CE\uFF39\u1EF2\u00DD\u0176\u1EF8\u0232\u1E8E\u0178\u1EF6\u1EF4\u01B3\u024E\u1EFE]/g, 119 | }, 120 | { 121 | base: 'Z', 122 | letters: 123 | /[\u005A\u24CF\uFF3A\u0179\u1E90\u017B\u017D\u1E92\u1E94\u01B5\u0224\u2C7F\u2C6B\uA762]/g, 124 | }, 125 | { 126 | base: 'a', 127 | letters: 128 | /[\u0061\u24D0\uFF41\u1E9A\u00E0\u00E1\u00E2\u1EA7\u1EA5\u1EAB\u1EA9\u00E3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\u00E4\u01DF\u1EA3\u00E5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250]/g, 129 | }, 130 | {base: 'aa', letters: /[\uA733]/g}, 131 | {base: 'ae', letters: /[\u00E6\u01FD\u01E3]/g}, 132 | {base: 'ao', letters: /[\uA735]/g}, 133 | {base: 'au', letters: /[\uA737]/g}, 134 | {base: 'av', letters: /[\uA739\uA73B]/g}, 135 | {base: 'ay', letters: /[\uA73D]/g}, 136 | { 137 | base: 'b', 138 | letters: /[\u0062\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253]/g, 139 | }, 140 | { 141 | base: 'c', 142 | letters: 143 | /[\u0063\u24D2\uFF43\u0107\u0109\u010B\u010D\u00E7\u1E09\u0188\u023C\uA73F\u2184]/g, 144 | }, 145 | { 146 | base: 'd', 147 | letters: 148 | /[\u0064\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A]/g, 149 | }, 150 | {base: 'dz', letters: /[\u01F3\u01C6]/g}, 151 | { 152 | base: 'e', 153 | letters: 154 | /[\u0065\u24D4\uFF45\u00E8\u00E9\u00EA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\u00EB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD]/g, 155 | }, 156 | {base: 'f', letters: /[\u0066\u24D5\uFF46\u1E1F\u0192\uA77C]/g}, 157 | { 158 | base: 'g', 159 | letters: 160 | /[\u0067\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F]/g, 161 | }, 162 | { 163 | base: 'h', 164 | letters: 165 | /[\u0068\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265]/g, 166 | }, 167 | {base: 'hv', letters: /[\u0195]/g}, 168 | { 169 | base: 'i', 170 | letters: 171 | /[\u0069\u24D8\uFF49\u00EC\u00ED\u00EE\u0129\u012B\u012D\u00EF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131]/g, 172 | }, 173 | {base: 'j', letters: /[\u006A\u24D9\uFF4A\u0135\u01F0\u0249]/g}, 174 | { 175 | base: 'k', 176 | letters: 177 | /[\u006B\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3]/g, 178 | }, 179 | { 180 | base: 'l', 181 | letters: 182 | /[\u006C\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747]/g, 183 | }, 184 | {base: 'lj', letters: /[\u01C9]/g}, 185 | {base: 'm', letters: /[\u006D\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F]/g}, 186 | { 187 | base: 'n', 188 | letters: 189 | /[\u006E\u24DD\uFF4E\u01F9\u0144\u00F1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5]/g, 190 | }, 191 | {base: 'nj', letters: /[\u01CC]/g}, 192 | { 193 | base: 'o', 194 | letters: 195 | /[\u006F\u24DE\uFF4F\u00F2\u00F3\u00F4\u1ED3\u1ED1\u1ED7\u1ED5\u00F5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\u00F6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\u00F8\u01FF\u0254\uA74B\uA74D\u0275]/g, 196 | }, 197 | {base: 'oi', letters: /[\u01A3]/g}, 198 | {base: 'ou', letters: /[\u0223]/g}, 199 | {base: 'oo', letters: /[\uA74F]/g}, 200 | { 201 | base: 'p', 202 | letters: 203 | /[\u0070\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755]/g, 204 | }, 205 | {base: 'q', letters: /[\u0071\u24E0\uFF51\u024B\uA757\uA759]/g}, 206 | { 207 | base: 'r', 208 | letters: 209 | /[\u0072\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783]/g, 210 | }, 211 | { 212 | base: 's', 213 | letters: 214 | /[\u0073\u24E2\uFF53\u00DF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B]/g, 215 | }, 216 | { 217 | base: 't', 218 | letters: 219 | /[\u0074\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787]/g, 220 | }, 221 | {base: 'tz', letters: /[\uA729]/g}, 222 | { 223 | base: 'u', 224 | letters: 225 | /[\u0075\u24E4\uFF55\u00F9\u00FA\u00FB\u0169\u1E79\u016B\u1E7B\u016D\u00FC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289]/g, 226 | }, 227 | {base: 'v', letters: /[\u0076\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C]/g}, 228 | {base: 'vy', letters: /[\uA761]/g}, 229 | { 230 | base: 'w', 231 | letters: 232 | /[\u0077\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73]/g, 233 | }, 234 | {base: 'x', letters: /[\u0078\u24E7\uFF58\u1E8B\u1E8D]/g}, 235 | { 236 | base: 'y', 237 | letters: 238 | /[\u0079\u24E8\uFF59\u1EF3\u00FD\u0177\u1EF9\u0233\u1E8F\u00FF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF]/g, 239 | }, 240 | { 241 | base: 'z', 242 | letters: 243 | /[\u007A\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763]/g, 244 | }, 245 | ]; 246 | 247 | for (let i = 0; i < defaultDiacriticsRemovalMap.length; i++) { 248 | str = str.replace( 249 | defaultDiacriticsRemovalMap[i].letters, 250 | defaultDiacriticsRemovalMap[i].base 251 | ); 252 | } 253 | 254 | return str; 255 | } 256 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import Hapi, {Server} from '@hapi/hapi'; 2 | import * as path from 'path'; 3 | import * as handlebars from 'handlebars'; 4 | import * as Inert from '@hapi/inert'; 5 | import * as Vision from '@hapi/vision'; 6 | import * as Cookie from '@hapi/cookie'; 7 | import * as Crumb from '@hapi/crumb'; 8 | import * as argon2 from 'argon2'; 9 | import readline from 'readline'; 10 | import fs from 'fs'; 11 | import {randomBytes} from 'crypto'; 12 | 13 | import {WAState} from 'whatsapp-web.js'; 14 | import {client, pairQr} from './client'; 15 | import { 16 | chat_handler, 17 | new_chat_or_pair_handler, 18 | contacts_handler, 19 | media_handler, 20 | recent_chats_handler, 21 | all_chats_handler, 22 | new_chat_post_handler, 23 | reply_handler, 24 | vcard_handler, 25 | read_all_handler, 26 | chat_info_handler, 27 | } from './routes'; 28 | 29 | export let server: Server; 30 | 31 | export const init = async function (): Promise { 32 | const user: { 33 | phoneNumber: string; 34 | hash: string; 35 | cookieKey: string; 36 | } = JSON.parse(fs.readFileSync('user.json', 'utf8')); 37 | server = Hapi.server({ 38 | port: process.env.PORT || 4000, 39 | host: '0.0.0.0', 40 | routes: { 41 | cors: { 42 | credentials: true, 43 | }, 44 | }, 45 | }); 46 | await server.register([Inert, Vision, Cookie]); 47 | await server.register({ 48 | plugin: Crumb, 49 | 50 | options: {}, 51 | }); 52 | 53 | server.auth.strategy('session', 'cookie', { 54 | cookie: { 55 | name: 'sid', 56 | password: user.cookieKey, 57 | isSecure: process.env.NODE_ENV === 'production', 58 | }, 59 | redirectTo: '/login', 60 | // TODO: give proper types 61 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 62 | validate: async (_request: any, session: any) => { 63 | return {isValid: session.id === user.phoneNumber}; 64 | }, 65 | }); 66 | 67 | server.auth.default('session'); 68 | 69 | // Add Middleware 70 | server.ext('onRequest', async (request, h) => { 71 | if ( 72 | request.path !== '/login' && 73 | request.path !== '/' && 74 | !request.path.startsWith('/public') 75 | ) { 76 | const state = await client.getState(); 77 | if (state !== WAState.CONNECTED && pairQr !== null) { 78 | return h.redirect('/').takeover(); 79 | } 80 | } 81 | return h.continue; 82 | }); 83 | server.views({ 84 | engines: { 85 | html: handlebars, 86 | }, 87 | path: path.join(__dirname, 'views'), 88 | }); 89 | 90 | // Routes 91 | server.route({ 92 | method: 'GET', 93 | path: '/public/{param*}', 94 | handler: { 95 | directory: { 96 | path: path.join(__dirname, 'public'), 97 | }, 98 | }, 99 | options: { 100 | auth: false, 101 | }, 102 | }); 103 | 104 | server.route([ 105 | { 106 | method: 'GET', 107 | path: '/login', 108 | handler: function (request, h) { 109 | return h.view('login'); 110 | }, 111 | options: { 112 | auth: false, 113 | }, 114 | }, 115 | { 116 | method: 'POST', 117 | path: '/login', 118 | handler: async (request, h) => { 119 | if (typeof request.payload === 'object') { 120 | try { 121 | const {username, password} = request.payload as { 122 | username: string; 123 | password: string; 124 | }; 125 | if ( 126 | username === user.phoneNumber && 127 | (await argon2.verify(user.hash, password)) 128 | ) { 129 | request.cookieAuth.set({id: username}); 130 | return h.redirect('/'); 131 | } 132 | } catch (err) { 133 | console.error(err); 134 | } 135 | } 136 | return h.redirect('/login'); 137 | }, 138 | options: { 139 | auth: { 140 | mode: 'try', 141 | }, 142 | }, 143 | }, 144 | { 145 | method: 'GET', 146 | path: '/chats/{chat_id}/vcard', 147 | handler: vcard_handler, 148 | }, 149 | { 150 | method: 'GET', 151 | path: '/chats/{chat_id}/seen', 152 | handler: read_all_handler, 153 | }, 154 | { 155 | method: 'POST', 156 | path: '/chats/{chat_id}/reply', 157 | options: { 158 | payload: { 159 | maxBytes: 1024 * 1024 * 5, 160 | multipart: { 161 | output: 'file', 162 | }, 163 | parse: true, 164 | }, 165 | }, 166 | handler: reply_handler, 167 | }, 168 | { 169 | method: 'POST', 170 | path: '/new-chat', 171 | options: { 172 | payload: { 173 | maxBytes: 1024 * 1024 * 5, 174 | multipart: { 175 | output: 'file', 176 | }, 177 | parse: true, 178 | }, 179 | }, 180 | handler: new_chat_post_handler, 181 | }, 182 | { 183 | method: 'GET', 184 | path: '/chats', 185 | handler: all_chats_handler, 186 | }, 187 | { 188 | method: 'GET', 189 | path: '/recentchats', 190 | handler: recent_chats_handler, 191 | }, 192 | { 193 | method: 'GET', 194 | path: '/contacts', 195 | handler: contacts_handler, 196 | }, 197 | { 198 | method: 'GET', 199 | path: '/media/{media_id}', 200 | handler: media_handler, 201 | }, 202 | { 203 | method: 'GET', 204 | path: '/chats/{chat_id}', 205 | handler: (request, h) => chat_handler(request, h, false), 206 | }, 207 | { 208 | method: 'GET', 209 | path: '/chats/{chat_id}/allunreadmessages', 210 | handler: (request, h) => chat_handler(request, h, true), 211 | }, 212 | { 213 | method: 'GET', 214 | path: '/chats/{chat_id}/info', 215 | handler: chat_info_handler, 216 | }, 217 | { 218 | method: 'GET', 219 | path: '/', 220 | handler: new_chat_or_pair_handler, 221 | }, 222 | ]); 223 | 224 | return server; 225 | }; 226 | 227 | export const start = async function (): Promise { 228 | console.log(`Listening on ${server.settings.host}:${server.settings.port}`); 229 | server.start(); 230 | }; 231 | 232 | process.on('unhandledRejection', err => { 233 | console.error('unhandledRejection'); 234 | console.error(err); 235 | }); 236 | 237 | // if args are passed, then create a user, otherwise start the server 238 | if (process.argv.length > 2 && process.argv[2] === 'init') { 239 | const rl = readline.createInterface({ 240 | input: process.stdin, 241 | output: process.stdout, 242 | }); 243 | 244 | rl.question('Enter the phone number: ', async phoneNumber => { 245 | // TODO: give proper types 246 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 247 | const rli = rl as any; 248 | 249 | rli.stdoutMuted = true; 250 | rli.query = 'Enter the password: '; 251 | rl.question(rli.query, async password => { 252 | const hash = await argon2.hash(password.trim()); 253 | rl.close(); 254 | // generate 32 byte key for cookie password' 255 | const cookieKey = randomBytes(32).toString('base64'); 256 | 257 | // save to a file 258 | const user = {phoneNumber, hash, cookieKey}; 259 | fs.writeFileSync('user.json', JSON.stringify(user)); 260 | console.log('\nUser created'); 261 | }); 262 | rli._writeToOutput = function _writeToOutput(stringToWrite: string) { 263 | if (rli.stdoutMuted) rli.output.write('*'); 264 | else rli.output.write(stringToWrite); 265 | }; 266 | }); 267 | } else { 268 | // Start your client 269 | client.initialize(); 270 | init() 271 | .then(() => start()) 272 | .catch(err => console.error('Error While Starting the server', err)); 273 | } 274 | -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- 1 | import vcards from 'vcards-js'; 2 | import { 3 | client, 4 | waContactToName, 5 | sendWAMessage, 6 | getUserContacts, 7 | longNumToDate, 8 | pairQr, 9 | unreadChats, 10 | } from './client'; 11 | import {ReqRefDefaults, Request, ResponseToolkit} from '@hapi/hapi'; 12 | import fs from 'fs'; 13 | import * as emoji from 'node-emoji'; 14 | import {WAState, GroupChat} from 'whatsapp-web.js'; 15 | import {removeDiacritics} from './helper'; 16 | 17 | export const vcard_handler = async ( 18 | request: Request, 19 | h: ResponseToolkit 20 | ) => { 21 | const vcard = vcards(); 22 | const contact = await client.getContactById(request.params.chat_id); 23 | const name = waContactToName(contact, false); 24 | const split = name.split(' ', 2); 25 | vcard.firstName = split[0]; 26 | if (split.length > 1) { 27 | vcard.lastName = split[1]; 28 | } 29 | const phone = contact.number; 30 | vcard.cellPhone = '+' + phone; 31 | // some phones have issues with diacritics in filenames 32 | const filename = removeDiacritics(vcard.firstName + '_' + vcard.lastName); 33 | return h 34 | .response(vcard.getFormattedString()) 35 | .header('Content-Type', 'text/vcard; name="' + filename + '.vcf"') 36 | .header('Content-Disposition', 'inline; filename="' + filename + '.vcf"'); 37 | }; 38 | 39 | export const reply_handler = async ( 40 | request: Request, 41 | h: ResponseToolkit 42 | ) => { 43 | // TODO: give proper types 44 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 45 | const payload = request.payload as any; 46 | await sendWAMessage(request.params.chat_id, payload.message, payload.file); 47 | 48 | return h.redirect('/chats/' + request.params.chat_id); 49 | }; 50 | 51 | export const read_all_handler = async ( 52 | request: Request, 53 | h: ResponseToolkit 54 | ) => { 55 | // TODO: give proper types 56 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 57 | await client.sendSeen(request.params.chat_id); 58 | 59 | return h.redirect('/chats/' + request.params.chat_id); 60 | }; 61 | 62 | export const new_chat_post_handler = async ( 63 | request: Request, 64 | h: ResponseToolkit 65 | ) => { 66 | // TODO: give proper types 67 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 68 | const payload = request.payload as any; 69 | let to = payload.user; 70 | if (to === 'custom') { 71 | const number = payload.custom; 72 | const contact = await client.getNumberId(number); 73 | if (contact === null) { 74 | console.log('invalid number: ' + number); 75 | return h.redirect('/'); 76 | } else { 77 | to = contact._serialized; 78 | } 79 | } 80 | await sendWAMessage(to, payload.message, payload.file); 81 | 82 | return h.redirect('/chats/' + to); 83 | }; 84 | 85 | export const recent_chats_handler = async ( 86 | _request: Request, 87 | h: ResponseToolkit 88 | ) => { 89 | let chats = await client.getChats(); 90 | // TODO: give proper types 91 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 92 | const chats_txt: any[] = []; 93 | chats = chats.sort((a, b) => { 94 | const aa = a.timestamp; 95 | const bb = b.timestamp; 96 | return bb - aa; 97 | }); 98 | chats = chats.slice(0, 20); 99 | for (let i = 0; i < chats.length; i++) { 100 | const chat = chats[i]; 101 | const contact = await chat.getContact(); 102 | let name = waContactToName(contact, true); 103 | name = 104 | name + 105 | ' (' + 106 | chat.unreadCount + 107 | ' unread, ' + 108 | longNumToDate(chat.timestamp) + 109 | ')'; 110 | const chat_obj = { 111 | name: name, 112 | hasUnread: chat.unreadCount > 0, 113 | id: encodeURIComponent(chat.id._serialized), 114 | }; 115 | chats_txt.push(chat_obj); 116 | } 117 | return h.view('index', {chats: chats_txt}); 118 | }; 119 | 120 | export const all_chats_handler = async ( 121 | _request: Request, 122 | h: ResponseToolkit 123 | ) => { 124 | let chats = await client.getChats(); 125 | // TODO: give proper types 126 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 127 | const chats_txt: any[] = []; 128 | chats = chats.sort((a, b) => { 129 | const aa = a.timestamp; 130 | const bb = b.timestamp; 131 | return bb - aa; 132 | }); 133 | 134 | for (let i = 0; i < chats.length; i++) { 135 | const chat = chats[i]; 136 | const contact = await chat.getContact(); 137 | let name = waContactToName(contact, true); 138 | name = 139 | name + 140 | ' (' + 141 | chat.unreadCount + 142 | ' unread, ' + 143 | longNumToDate(chat.timestamp) + 144 | ')'; 145 | const chat_obj = { 146 | name: name, 147 | hasUnread: chat.unreadCount > 0, 148 | id: encodeURIComponent(chat.id._serialized), 149 | }; 150 | chats_txt.push(chat_obj); 151 | } 152 | return h.view('index', {chats: chats_txt}); 153 | }; 154 | 155 | export const contacts_handler = async ( 156 | _request: Request, 157 | h: ResponseToolkit 158 | ) => { 159 | const users = await getUserContacts(); 160 | return h.view('contacts', {users: users}); 161 | }; 162 | 163 | export const media_handler = async ( 164 | request: Request, 165 | h: ResponseToolkit 166 | ) => { 167 | const id = encodeURIComponent(request.params.media_id); 168 | try { 169 | if (fs.readdirSync('media').includes(id)) { 170 | const path = fs.readlinkSync('media/' + id); 171 | return h.file(path); 172 | } else { 173 | return h.response('File not found').code(404); 174 | } 175 | } catch (err) { 176 | console.log(err); 177 | return h.response('File not found').code(404); 178 | } 179 | }; 180 | 181 | export const chat_info_handler = async ( 182 | request: Request, 183 | h: ResponseToolkit 184 | ) => { 185 | let chatName = ''; 186 | let chatDescription: string[] = []; 187 | const chat = await client.getChatById(request.params.chat_id); 188 | const participantList: { 189 | id: string; 190 | contactName: string; 191 | isAdmin: boolean; 192 | }[] = []; 193 | if (chat.isGroup) { 194 | const groupChat = chat as GroupChat; 195 | chatName = groupChat.name; 196 | if (groupChat.description !== null && groupChat.description !== undefined) { 197 | chatDescription = groupChat.description.split('\n'); 198 | } 199 | for (let i = 0; i < groupChat.participants.length; i++) { 200 | const chatParticipant = await client.getContactById( 201 | groupChat.participants[i].id._serialized 202 | ); 203 | const participantName = waContactToName(chatParticipant, false); 204 | participantList.push({ 205 | id: groupChat.participants[i].id._serialized, 206 | contactName: participantName, 207 | isAdmin: groupChat.participants[i].isAdmin, 208 | }); 209 | } 210 | } else { 211 | return h.response('Chat is not a group').code(400); 212 | } 213 | return h.view('chatinfo', { 214 | chatId: request.params.chat_id, 215 | chatName: emoji.unemojify(chatName), 216 | chatDescription: chatDescription.map(m => emoji.unemojify(m)), 217 | participants: participantList, 218 | }); 219 | }; 220 | 221 | export const chat_handler = async ( 222 | request: Request, 223 | h: ResponseToolkit, 224 | loadAllUnreadMessages: Boolean 225 | ) => { 226 | const chat = await client.getChatById(request.params.chat_id); 227 | const unreadMessages: boolean = chat.unreadCount > 0; 228 | let tooManyUnreadMessages: boolean = chat.unreadCount >= 51; 229 | let messages; 230 | if (loadAllUnreadMessages) { 231 | messages = await chat.fetchMessages({limit: chat.unreadCount}); 232 | tooManyUnreadMessages = false; 233 | } else if (chat.unreadCount > 10 && chat.unreadCount < 51) { 234 | messages = await chat.fetchMessages({limit: chat.unreadCount}); 235 | } else if (chat.unreadCount >= 51) { 236 | messages = await chat.fetchMessages({limit: 50}); 237 | } else { 238 | messages = await chat.fetchMessages({limit: 10}); 239 | } 240 | const fmtMsg: { 241 | from: string; 242 | msg: string[]; 243 | time: string; 244 | fromMe: boolean; 245 | media: boolean; 246 | hasReaction: boolean; 247 | hasQuotedMessage: boolean; 248 | id: string; 249 | repliedMessage: string; 250 | showDetails: boolean; 251 | reactionsDetails: string[]; 252 | }[] = []; 253 | for (let i = 0; i < messages.length; i++) { 254 | const message = messages[i]; 255 | const msg = message.body.split('\n'); 256 | const fromMe = message.fromMe; 257 | const nameId = message.author || message.from; 258 | 259 | const time = message.timestamp; 260 | 261 | const contact = await client.getContactById(nameId); 262 | const name = waContactToName(contact, false); 263 | let repliedMessageInfo = ''; 264 | const showDetailsOption = message.hasQuotedMsg || message.hasReaction; 265 | const reactions: string[] = []; 266 | 267 | if (message.hasQuotedMsg) { 268 | const repliedMessage = await message.getQuotedMessage(); 269 | const repliedTime = longNumToDate(repliedMessage.timestamp); 270 | const repliedNameId = repliedMessage.author || repliedMessage.from; 271 | const repliedContact = await client.getContactById(repliedNameId); 272 | const repliedName = waContactToName(repliedContact, false); 273 | let repliedMsg = repliedMessage.body; 274 | repliedMsg = emoji.unemojify(repliedMsg); 275 | repliedMessageInfo = 276 | repliedName + ' (' + repliedTime + '): ' + repliedMsg; 277 | } 278 | if (message.hasReaction) { 279 | const reactionsList = await message.getReactions(); 280 | for (let j = 0; j < reactionsList.length; j++) { 281 | const reaction = reactionsList[j]; 282 | let reactionInfo = emoji.unemojify(reaction.id) + ' by: '; 283 | for (let k = 0; k < reactionsList[j].senders.length; k++) { 284 | const reactionContact = await client.getContactById( 285 | reactionsList[j].senders[k].senderId 286 | ); 287 | const reactionContactName = waContactToName(reactionContact, false); 288 | if (k === 0) reactionInfo += reactionContactName; 289 | else { 290 | reactionInfo += ', '; 291 | reactionInfo += reactionContactName; 292 | } 293 | } 294 | reactions.push(reactionInfo); 295 | } 296 | } 297 | 298 | fmtMsg.push({ 299 | from: name, 300 | msg: msg.map(m => emoji.unemojify(m)), 301 | time: longNumToDate(time), 302 | fromMe: fromMe, 303 | media: message.hasMedia, 304 | hasReaction: message.hasReaction, 305 | hasQuotedMessage: message.hasQuotedMsg, 306 | id: encodeURIComponent(message.id._serialized), 307 | repliedMessage: repliedMessageInfo, 308 | showDetails: showDetailsOption, 309 | reactionsDetails: reactions, 310 | }); 311 | } 312 | if (fmtMsg.length === 0) { 313 | fmtMsg.push({ 314 | from: 'No messages', 315 | msg: [], 316 | time: '', 317 | fromMe: false, 318 | media: false, 319 | hasReaction: false, 320 | hasQuotedMessage: false, 321 | id: '', 322 | repliedMessage: '', 323 | showDetails: false, 324 | reactionsDetails: [], 325 | }); 326 | } 327 | return h.view('chats', { 328 | messages: fmtMsg, 329 | chat_unreadMessages: unreadMessages, 330 | chat_tooManyUnreadMessages: tooManyUnreadMessages, 331 | amountUnreadMessages: chat.unreadCount, 332 | chat_id: encodeURIComponent(request.params.chat_id), 333 | groupChat: chat.isGroup, 334 | }); 335 | }; 336 | 337 | export const new_chat_or_pair_handler = async ( 338 | _request: Request, 339 | h: ResponseToolkit 340 | ) => { 341 | const state = await client.getState(); 342 | if (state !== WAState.CONNECTED) { 343 | console.log('state: ' + state); 344 | return h.view('pair', {qr: pairQr}); 345 | } else { 346 | const users = await getUserContacts(); 347 | let totalUnreadMessages = 0; 348 | unreadChats.forEach(value => { 349 | totalUnreadMessages += value; 350 | }); 351 | return h.view('new', { 352 | users: users, 353 | totalUnreadMessages: totalUnreadMessages, 354 | }); 355 | } 356 | }; 357 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Visit https://aka.ms/tsconfig to read more about this file */ 4 | 5 | /* Projects */ 6 | // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ 7 | // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 8 | // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ 9 | // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ 10 | // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 11 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 12 | 13 | /* Language and Environment */ 14 | "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 15 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 16 | // "jsx": "preserve", /* Specify what JSX code is generated. */ 17 | // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ 18 | // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 19 | // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ 20 | // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 21 | // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ 22 | // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ 23 | // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 24 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 25 | // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ 26 | /* Modules */ 27 | "module": "commonjs", /* Specify what module code is generated. */ 28 | "rootDir": "./src", /* Specify the root folder within your source files. */ 29 | // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ 30 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 31 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 32 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 33 | // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ 34 | // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 35 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 36 | // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ 37 | // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */ 38 | // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */ 39 | // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */ 40 | // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */ 41 | // "resolveJsonModule": true, /* Enable importing .json files. */ 42 | // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ 43 | // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */ 44 | 45 | /* JavaScript Support */ 46 | // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ 47 | // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 48 | // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ 49 | 50 | /* Emit */ 51 | // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 52 | // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 53 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 54 | // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 55 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 56 | // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ 57 | "outDir": "./dist", /* Specify an output folder for all emitted files. */ 58 | // "removeComments": true, /* Disable emitting comments. */ 59 | // "noEmit": true, /* Disable emitting files from a compilation. */ 60 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 61 | // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */ 62 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 63 | // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 64 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 65 | // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 66 | // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 67 | // "newLine": "crlf", /* Set the newline character for emitting files. */ 68 | // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ 69 | // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ 70 | // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 71 | // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ 72 | // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 73 | // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 74 | 75 | /* Interop Constraints */ 76 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 77 | // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ 78 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 79 | "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ 80 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 81 | "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 82 | 83 | /* Type Checking */ 84 | "strict": true, /* Enable all strict type-checking options. */ 85 | // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ 86 | // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ 87 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 88 | // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ 89 | // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 90 | // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ 91 | // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ 92 | // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 93 | // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ 94 | // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ 95 | // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 96 | // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 97 | // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 98 | // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ 99 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 100 | // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ 101 | // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 102 | // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 103 | 104 | /* Completeness */ 105 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 106 | "skipLibCheck": true /* Skip type checking all .d.ts files. */ 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /views/chatinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 9 | 10 | 24 |
25 | 26 | 27 | {{chatName}}
28 |

29 | Description:
30 | {{#each chatDescription}} {{this}}
{{/each}} 31 |

32 | Members:
33 |
34 |
    35 | {{#each participants}} 36 |
  • 37 | {{this.contactName}} 38 | {{#if this.isAdmin}} 39 | Admin 40 | {{/if}} 41 |
  • 42 | {{/each}} 43 |
      44 |
45 | 46 |
47 |
48 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /views/chats.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 13 | 14 | 15 | 38 |
39 | {{#each messages}} 40 | {{#if this.fromMe}} 41 | Me 42 | {{else}} 43 | {{this.from}} 44 | {{/if}} 45 | ({{this.time}}): {{#each this.msg}} {{this}}
{{/each}} 46 | {{#if this.media}} 47 | Download Attachment
48 | {{/if}} 49 | {{#if this.showDetails}} 50 | Details 51 | 63 | {{/if}} 64 | 65 |

66 | {{/each}} 67 |
68 | 69 | 70 |
71 | 72 | 73 |
74 | 75 |
76 |
77 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /views/contacts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 9 | 10 | 24 |
25 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 9 | 10 | 24 |
25 | 26 | 27 | {{#each chats}} 28 | 36 | {{/each}} 37 | 38 |
29 | {{#if this.hasUnread}} 30 | {{this.name}} 31 | {{else}} 32 | {{this.name}} 33 | {{/if}} 34 | 35 |
39 |
40 | 41 | -------------------------------------------------------------------------------- /views/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM: Login page 5 | 6 | 7 | 8 | 9 | 10 | 17 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /views/new.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 9 | 10 | 24 |
25 |
26 | 27 |
28 | 29 | 35 | 36 | 37 |
38 | 39 |
40 | 41 | 42 |
43 | 44 |
45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /views/pair.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SuperBasic IM 5 | 6 | 7 | 8 | 9 | 10 | 18 |
19 | 20 |
21 | 26 | 27 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.24.7" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz" 8 | integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== 9 | dependencies: 10 | "@babel/highlight" "^7.24.7" 11 | picocolors "^1.0.0" 12 | 13 | "@babel/helper-validator-identifier@^7.24.7": 14 | version "7.24.7" 15 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz" 16 | integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== 17 | 18 | "@babel/highlight@^7.24.7": 19 | version "7.24.7" 20 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz" 21 | integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== 22 | dependencies: 23 | "@babel/helper-validator-identifier" "^7.24.7" 24 | chalk "^2.4.2" 25 | js-tokens "^4.0.0" 26 | picocolors "^1.0.0" 27 | 28 | "@eslint-community/eslint-utils@^4.2.0": 29 | version "4.4.0" 30 | resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" 31 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 32 | dependencies: 33 | eslint-visitor-keys "^3.3.0" 34 | 35 | "@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": 36 | version "4.10.1" 37 | resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz" 38 | integrity sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA== 39 | 40 | "@eslint/eslintrc@^2.1.4": 41 | version "2.1.4" 42 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz" 43 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== 44 | dependencies: 45 | ajv "^6.12.4" 46 | debug "^4.3.2" 47 | espree "^9.6.0" 48 | globals "^13.19.0" 49 | ignore "^5.2.0" 50 | import-fresh "^3.2.1" 51 | js-yaml "^4.1.0" 52 | minimatch "^3.1.2" 53 | strip-json-comments "^3.1.1" 54 | 55 | "@eslint/js@8.57.0": 56 | version "8.57.0" 57 | resolved "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz" 58 | integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== 59 | 60 | "@hapi/accept@^6.0.1": 61 | version "6.0.3" 62 | resolved "https://registry.npmjs.org/@hapi/accept/-/accept-6.0.3.tgz" 63 | integrity sha512-p72f9k56EuF0n3MwlBNThyVE5PXX40g+aQh+C/xbKrfzahM2Oispv3AXmOIU51t3j77zay1qrX7IIziZXspMlw== 64 | dependencies: 65 | "@hapi/boom" "^10.0.1" 66 | "@hapi/hoek" "^11.0.2" 67 | 68 | "@hapi/ammo@^6.0.1": 69 | version "6.0.1" 70 | resolved "https://registry.npmjs.org/@hapi/ammo/-/ammo-6.0.1.tgz" 71 | integrity sha512-pmL+nPod4g58kXrMcsGLp05O2jF4P2Q3GiL8qYV7nKYEh3cGf+rV4P5Jyi2Uq0agGhVU63GtaSAfBEZOlrJn9w== 72 | dependencies: 73 | "@hapi/hoek" "^11.0.2" 74 | 75 | "@hapi/b64@^6.0.1": 76 | version "6.0.1" 77 | resolved "https://registry.npmjs.org/@hapi/b64/-/b64-6.0.1.tgz" 78 | integrity sha512-ZvjX4JQReUmBheeCq+S9YavcnMMHWqx3S0jHNXWIM1kQDxB9cyfSycpVvjfrKcIS8Mh5N3hmu/YKo4Iag9g2Kw== 79 | dependencies: 80 | "@hapi/hoek" "^11.0.2" 81 | 82 | "@hapi/boom@^10.0.0", "@hapi/boom@^10.0.1": 83 | version "10.0.1" 84 | resolved "https://registry.npmjs.org/@hapi/boom/-/boom-10.0.1.tgz" 85 | integrity sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA== 86 | dependencies: 87 | "@hapi/hoek" "^11.0.2" 88 | 89 | "@hapi/bounce@^3.0.1": 90 | version "3.0.1" 91 | resolved "https://registry.npmjs.org/@hapi/bounce/-/bounce-3.0.1.tgz" 92 | integrity sha512-G+/Pp9c1Ha4FDP+3Sy/Xwg2O4Ahaw3lIZFSX+BL4uWi64CmiETuZPxhKDUD4xBMOUZbBlzvO8HjiK8ePnhBadA== 93 | dependencies: 94 | "@hapi/boom" "^10.0.1" 95 | "@hapi/hoek" "^11.0.2" 96 | 97 | "@hapi/bourne@^3.0.0": 98 | version "3.0.0" 99 | resolved "https://registry.npmjs.org/@hapi/bourne/-/bourne-3.0.0.tgz" 100 | integrity sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w== 101 | 102 | "@hapi/call@^9.0.1": 103 | version "9.0.1" 104 | resolved "https://registry.npmjs.org/@hapi/call/-/call-9.0.1.tgz" 105 | integrity sha512-uPojQRqEL1GRZR4xXPqcLMujQGaEpyVPRyBlD8Pp5rqgIwLhtveF9PkixiKru2THXvuN8mUrLeet5fqxKAAMGg== 106 | dependencies: 107 | "@hapi/boom" "^10.0.1" 108 | "@hapi/hoek" "^11.0.2" 109 | 110 | "@hapi/catbox-memory@^6.0.1": 111 | version "6.0.1" 112 | resolved "https://registry.npmjs.org/@hapi/catbox-memory/-/catbox-memory-6.0.1.tgz" 113 | integrity sha512-sVb+/ZxbZIvaMtJfAbdyY+QJUQg9oKTwamXpEg/5xnfG5WbJLTjvEn4kIGKz9pN3ENNbIL/bIdctmHmqi/AdGA== 114 | dependencies: 115 | "@hapi/boom" "^10.0.1" 116 | "@hapi/hoek" "^11.0.2" 117 | 118 | "@hapi/catbox@^12.1.1": 119 | version "12.1.1" 120 | resolved "https://registry.npmjs.org/@hapi/catbox/-/catbox-12.1.1.tgz" 121 | integrity sha512-hDqYB1J+R0HtZg4iPH3LEnldoaBsar6bYp0EonBmNQ9t5CO+1CqgCul2ZtFveW1ReA5SQuze9GPSU7/aecERhw== 122 | dependencies: 123 | "@hapi/boom" "^10.0.1" 124 | "@hapi/hoek" "^11.0.2" 125 | "@hapi/podium" "^5.0.0" 126 | "@hapi/validate" "^2.0.1" 127 | 128 | "@hapi/content@^6.0.0": 129 | version "6.0.0" 130 | resolved "https://registry.npmjs.org/@hapi/content/-/content-6.0.0.tgz" 131 | integrity sha512-CEhs7j+H0iQffKfe5Htdak5LBOz/Qc8TRh51cF+BFv0qnuph3Em4pjGVzJMkI2gfTDdlJKWJISGWS1rK34POGA== 132 | dependencies: 133 | "@hapi/boom" "^10.0.0" 134 | 135 | "@hapi/cookie@^12.0.1": 136 | version "12.0.1" 137 | resolved "https://registry.npmjs.org/@hapi/cookie/-/cookie-12.0.1.tgz" 138 | integrity sha512-TpykARUIgTBvgbsgtYe5CrM/7XBGms2/22JD3N6dzct6bG1vcOC6pH1JWIos1O5zvQnyDSJ2pnaFk+DToHkAng== 139 | dependencies: 140 | "@hapi/boom" "^10.0.1" 141 | "@hapi/bounce" "^3.0.1" 142 | "@hapi/hoek" "^11.0.2" 143 | "@hapi/validate" "^2.0.1" 144 | 145 | "@hapi/crumb@^9.0.1": 146 | version "9.0.1" 147 | resolved "https://registry.npmjs.org/@hapi/crumb/-/crumb-9.0.1.tgz" 148 | integrity sha512-rEFxTHhzS6w5MBFKLq/joseo0olpDemBLDTpstevtgPySzKRo7sO1KhA4jMCG+zlyv0nkJIZRKSNOlaneLKfaQ== 149 | dependencies: 150 | "@hapi/boom" "^10.0.1" 151 | "@hapi/cryptiles" "^6.0.1" 152 | "@hapi/hoek" "^11.0.2" 153 | "@hapi/validate" "^2.0.1" 154 | 155 | "@hapi/cryptiles@^6.0.1": 156 | version "6.0.1" 157 | resolved "https://registry.npmjs.org/@hapi/cryptiles/-/cryptiles-6.0.1.tgz" 158 | integrity sha512-9GM9ECEHfR8lk5ASOKG4+4ZsEzFqLfhiryIJ2ISePVB92OHLp/yne4m+zn7z9dgvM98TLpiFebjDFQ0UHcqxXQ== 159 | dependencies: 160 | "@hapi/boom" "^10.0.1" 161 | 162 | "@hapi/file@^3.0.0": 163 | version "3.0.0" 164 | resolved "https://registry.npmjs.org/@hapi/file/-/file-3.0.0.tgz" 165 | integrity sha512-w+lKW+yRrLhJu620jT3y+5g2mHqnKfepreykvdOcl9/6up8GrQQn+l3FRTsjHTKbkbfQFkuksHpdv2EcpKcJ4Q== 166 | 167 | "@hapi/hapi@^21.1.0", "@hapi/hapi@^21.3.9": 168 | version "21.3.9" 169 | resolved "https://registry.npmjs.org/@hapi/hapi/-/hapi-21.3.9.tgz" 170 | integrity sha512-AT5m+Rb8iSOFG3zWaiEuTJazf4HDYl5UpRpyxMJ3yR+g8tOEmqDv6FmXrLHShdvDOStAAepHGnr1G7egkFSRdw== 171 | dependencies: 172 | "@hapi/accept" "^6.0.1" 173 | "@hapi/ammo" "^6.0.1" 174 | "@hapi/boom" "^10.0.1" 175 | "@hapi/bounce" "^3.0.1" 176 | "@hapi/call" "^9.0.1" 177 | "@hapi/catbox" "^12.1.1" 178 | "@hapi/catbox-memory" "^6.0.1" 179 | "@hapi/heavy" "^8.0.1" 180 | "@hapi/hoek" "^11.0.2" 181 | "@hapi/mimos" "^7.0.1" 182 | "@hapi/podium" "^5.0.1" 183 | "@hapi/shot" "^6.0.1" 184 | "@hapi/somever" "^4.1.1" 185 | "@hapi/statehood" "^8.1.1" 186 | "@hapi/subtext" "^8.1.0" 187 | "@hapi/teamwork" "^6.0.0" 188 | "@hapi/topo" "^6.0.1" 189 | "@hapi/validate" "^2.0.1" 190 | 191 | "@hapi/heavy@^8.0.1": 192 | version "8.0.1" 193 | resolved "https://registry.npmjs.org/@hapi/heavy/-/heavy-8.0.1.tgz" 194 | integrity sha512-gBD/NANosNCOp6RsYTsjo2vhr5eYA3BEuogk6cxY0QdhllkkTaJFYtTXv46xd6qhBVMbMMqcSdtqey+UQU3//w== 195 | dependencies: 196 | "@hapi/boom" "^10.0.1" 197 | "@hapi/hoek" "^11.0.2" 198 | "@hapi/validate" "^2.0.1" 199 | 200 | "@hapi/hoek@^11.0.2": 201 | version "11.0.4" 202 | resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.4.tgz" 203 | integrity sha512-PnsP5d4q7289pS2T2EgGz147BFJ2Jpb4yrEdkpz2IhgEUzos1S7HTl7ezWh1yfYzYlj89KzLdCRkqsP6SIryeQ== 204 | 205 | "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": 206 | version "9.3.0" 207 | resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz" 208 | integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== 209 | 210 | "@hapi/inert@^7.1.0": 211 | version "7.1.0" 212 | resolved "https://registry.npmjs.org/@hapi/inert/-/inert-7.1.0.tgz" 213 | integrity sha512-5X+cl/Ozm0U9uPGGX1dSKhnhTQIf161bH/kkTN9OBVAZKFG+nrj8j/NMj6S1zBBZWmQrkVRNPfCUGrXzB4fCFQ== 214 | dependencies: 215 | "@hapi/ammo" "^6.0.1" 216 | "@hapi/boom" "^10.0.1" 217 | "@hapi/bounce" "^3.0.1" 218 | "@hapi/hoek" "^11.0.2" 219 | "@hapi/validate" "^2.0.1" 220 | lru-cache "^7.14.1" 221 | 222 | "@hapi/iron@^7.0.1": 223 | version "7.0.1" 224 | resolved "https://registry.npmjs.org/@hapi/iron/-/iron-7.0.1.tgz" 225 | integrity sha512-tEZnrOujKpS6jLKliyWBl3A9PaE+ppuL/+gkbyPPDb/l2KSKQyH4lhMkVb+sBhwN+qaxxlig01JRqB8dk/mPxQ== 226 | dependencies: 227 | "@hapi/b64" "^6.0.1" 228 | "@hapi/boom" "^10.0.1" 229 | "@hapi/bourne" "^3.0.0" 230 | "@hapi/cryptiles" "^6.0.1" 231 | "@hapi/hoek" "^11.0.2" 232 | 233 | "@hapi/mimos@^7.0.1": 234 | version "7.0.1" 235 | resolved "https://registry.npmjs.org/@hapi/mimos/-/mimos-7.0.1.tgz" 236 | integrity sha512-b79V+BrG0gJ9zcRx1VGcCI6r6GEzzZUgiGEJVoq5gwzuB2Ig9Cax8dUuBauQCFKvl2YWSWyOc8mZ8HDaJOtkew== 237 | dependencies: 238 | "@hapi/hoek" "^11.0.2" 239 | mime-db "^1.52.0" 240 | 241 | "@hapi/nigel@^5.0.1": 242 | version "5.0.1" 243 | resolved "https://registry.npmjs.org/@hapi/nigel/-/nigel-5.0.1.tgz" 244 | integrity sha512-uv3dtYuB4IsNaha+tigWmN8mQw/O9Qzl5U26Gm4ZcJVtDdB1AVJOwX3X5wOX+A07qzpEZnOMBAm8jjSqGsU6Nw== 245 | dependencies: 246 | "@hapi/hoek" "^11.0.2" 247 | "@hapi/vise" "^5.0.1" 248 | 249 | "@hapi/pez@^6.1.0": 250 | version "6.1.0" 251 | resolved "https://registry.npmjs.org/@hapi/pez/-/pez-6.1.0.tgz" 252 | integrity sha512-+FE3sFPYuXCpuVeHQ/Qag1b45clR2o54QoonE/gKHv9gukxQ8oJJZPR7o3/ydDTK6racnCJXxOyT1T93FCJMIg== 253 | dependencies: 254 | "@hapi/b64" "^6.0.1" 255 | "@hapi/boom" "^10.0.1" 256 | "@hapi/content" "^6.0.0" 257 | "@hapi/hoek" "^11.0.2" 258 | "@hapi/nigel" "^5.0.1" 259 | 260 | "@hapi/podium@^5.0.0", "@hapi/podium@^5.0.1": 261 | version "5.0.1" 262 | resolved "https://registry.npmjs.org/@hapi/podium/-/podium-5.0.1.tgz" 263 | integrity sha512-eznFTw6rdBhAijXFIlBOMJJd+lXTvqbrBIS4Iu80r2KTVIo4g+7fLy4NKp/8+UnSt5Ox6mJtAlKBU/Sf5080TQ== 264 | dependencies: 265 | "@hapi/hoek" "^11.0.2" 266 | "@hapi/teamwork" "^6.0.0" 267 | "@hapi/validate" "^2.0.1" 268 | 269 | "@hapi/shot@^6.0.1": 270 | version "6.0.1" 271 | resolved "https://registry.npmjs.org/@hapi/shot/-/shot-6.0.1.tgz" 272 | integrity sha512-s5ynMKZXYoDd3dqPw5YTvOR/vjHvMTxc388+0qL0jZZP1+uwXuUD32o9DuuuLsmTlyXCWi02BJl1pBpwRuUrNA== 273 | dependencies: 274 | "@hapi/hoek" "^11.0.2" 275 | "@hapi/validate" "^2.0.1" 276 | 277 | "@hapi/somever@^4.1.1": 278 | version "4.1.1" 279 | resolved "https://registry.npmjs.org/@hapi/somever/-/somever-4.1.1.tgz" 280 | integrity sha512-lt3QQiDDOVRatS0ionFDNrDIv4eXz58IibQaZQDOg4DqqdNme8oa0iPWcE0+hkq/KTeBCPtEOjDOBKBKwDumVg== 281 | dependencies: 282 | "@hapi/bounce" "^3.0.1" 283 | "@hapi/hoek" "^11.0.2" 284 | 285 | "@hapi/statehood@^8.1.1": 286 | version "8.1.1" 287 | resolved "https://registry.npmjs.org/@hapi/statehood/-/statehood-8.1.1.tgz" 288 | integrity sha512-YbK7PSVUA59NArAW5Np0tKRoIZ5VNYUicOk7uJmWZF6XyH5gGL+k62w77SIJb0AoAJ0QdGQMCQ/WOGL1S3Ydow== 289 | dependencies: 290 | "@hapi/boom" "^10.0.1" 291 | "@hapi/bounce" "^3.0.1" 292 | "@hapi/bourne" "^3.0.0" 293 | "@hapi/cryptiles" "^6.0.1" 294 | "@hapi/hoek" "^11.0.2" 295 | "@hapi/iron" "^7.0.1" 296 | "@hapi/validate" "^2.0.1" 297 | 298 | "@hapi/subtext@^8.1.0": 299 | version "8.1.0" 300 | resolved "https://registry.npmjs.org/@hapi/subtext/-/subtext-8.1.0.tgz" 301 | integrity sha512-PyaN4oSMtqPjjVxLny1k0iYg4+fwGusIhaom9B2StinBclHs7v46mIW706Y+Wo21lcgulGyXbQrmT/w4dus6ww== 302 | dependencies: 303 | "@hapi/boom" "^10.0.1" 304 | "@hapi/bourne" "^3.0.0" 305 | "@hapi/content" "^6.0.0" 306 | "@hapi/file" "^3.0.0" 307 | "@hapi/hoek" "^11.0.2" 308 | "@hapi/pez" "^6.1.0" 309 | "@hapi/wreck" "^18.0.1" 310 | 311 | "@hapi/teamwork@^6.0.0": 312 | version "6.0.0" 313 | resolved "https://registry.npmjs.org/@hapi/teamwork/-/teamwork-6.0.0.tgz" 314 | integrity sha512-05HumSy3LWfXpmJ9cr6HzwhAavrHkJ1ZRCmNE2qJMihdM5YcWreWPfyN0yKT2ZjCM92au3ZkuodjBxOibxM67A== 315 | 316 | "@hapi/topo@^5.1.0": 317 | version "5.1.0" 318 | resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz" 319 | integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== 320 | dependencies: 321 | "@hapi/hoek" "^9.0.0" 322 | 323 | "@hapi/topo@^6.0.1": 324 | version "6.0.2" 325 | resolved "https://registry.npmjs.org/@hapi/topo/-/topo-6.0.2.tgz" 326 | integrity sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg== 327 | dependencies: 328 | "@hapi/hoek" "^11.0.2" 329 | 330 | "@hapi/validate@^2.0.1": 331 | version "2.0.1" 332 | resolved "https://registry.npmjs.org/@hapi/validate/-/validate-2.0.1.tgz" 333 | integrity sha512-NZmXRnrSLK8MQ9y/CMqE9WSspgB9xA41/LlYR0k967aSZebWr4yNrpxIbov12ICwKy4APSlWXZga9jN5p6puPA== 334 | dependencies: 335 | "@hapi/hoek" "^11.0.2" 336 | "@hapi/topo" "^6.0.1" 337 | 338 | "@hapi/vise@^5.0.1": 339 | version "5.0.1" 340 | resolved "https://registry.npmjs.org/@hapi/vise/-/vise-5.0.1.tgz" 341 | integrity sha512-XZYWzzRtINQLedPYlIkSkUr7m5Ddwlu99V9elh8CSygXstfv3UnWIXT0QD+wmR0VAG34d2Vx3olqcEhRRoTu9A== 342 | dependencies: 343 | "@hapi/hoek" "^11.0.2" 344 | 345 | "@hapi/vision@^7.0.3": 346 | version "7.0.3" 347 | resolved "https://registry.npmjs.org/@hapi/vision/-/vision-7.0.3.tgz" 348 | integrity sha512-1UM3Xej7HZQPaxzWkefvMfcuXoF9R8kIiDTl+Pfdv8f5mJwAv0zIB4R/UvNoQP1+JYgQT+QeUDxcGD8QdIUDyg== 349 | dependencies: 350 | "@hapi/boom" "^10.0.1" 351 | "@hapi/bounce" "^3.0.1" 352 | "@hapi/hoek" "^11.0.2" 353 | "@hapi/validate" "^2.0.1" 354 | 355 | "@hapi/wreck@^18.0.1": 356 | version "18.1.0" 357 | resolved "https://registry.npmjs.org/@hapi/wreck/-/wreck-18.1.0.tgz" 358 | integrity sha512-0z6ZRCmFEfV/MQqkQomJ7sl/hyxvcZM7LtuVqN3vdAO4vM9eBbowl0kaqQj9EJJQab+3Uuh1GxbGIBFy4NfJ4w== 359 | dependencies: 360 | "@hapi/boom" "^10.0.1" 361 | "@hapi/bourne" "^3.0.0" 362 | "@hapi/hoek" "^11.0.2" 363 | 364 | "@humanwhocodes/config-array@^0.11.14": 365 | version "0.11.14" 366 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz" 367 | integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== 368 | dependencies: 369 | "@humanwhocodes/object-schema" "^2.0.2" 370 | debug "^4.3.1" 371 | minimatch "^3.0.5" 372 | 373 | "@humanwhocodes/module-importer@^1.0.1": 374 | version "1.0.1" 375 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 376 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 377 | 378 | "@humanwhocodes/object-schema@^2.0.2": 379 | version "2.0.3" 380 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz" 381 | integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== 382 | 383 | "@nodelib/fs.scandir@2.1.5": 384 | version "2.1.5" 385 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 386 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 387 | dependencies: 388 | "@nodelib/fs.stat" "2.0.5" 389 | run-parallel "^1.1.9" 390 | 391 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": 392 | version "2.0.5" 393 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 394 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 395 | 396 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 397 | version "1.2.8" 398 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 399 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 400 | dependencies: 401 | "@nodelib/fs.scandir" "2.1.5" 402 | fastq "^1.6.0" 403 | 404 | "@pedroslopez/moduleraid@^5.0.2": 405 | version "5.0.2" 406 | resolved "https://registry.npmjs.org/@pedroslopez/moduleraid/-/moduleraid-5.0.2.tgz" 407 | integrity sha512-wtnBAETBVYZ9GvcbgdswRVSLkFkYAGv1KzwBBTeRXvGT9sb9cPllOgFFWXCn9PyARQ0H+Ijz6mmoRrGateUDxQ== 408 | 409 | "@phc/format@^1.0.0": 410 | version "1.0.0" 411 | resolved "https://registry.npmjs.org/@phc/format/-/format-1.0.0.tgz" 412 | integrity sha512-m7X9U6BG2+J+R1lSOdCiITLLrxm+cWlNI3HUFA92oLO77ObGNzaKdh8pMLqdZcshtkKuV84olNNXDfMc4FezBQ== 413 | 414 | "@pkgr/core@^0.1.0": 415 | version "0.1.1" 416 | resolved "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz" 417 | integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== 418 | 419 | "@sideway/address@^4.1.5": 420 | version "4.1.5" 421 | resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz" 422 | integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== 423 | dependencies: 424 | "@hapi/hoek" "^9.0.0" 425 | 426 | "@sideway/formula@^3.0.1": 427 | version "3.0.1" 428 | resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz" 429 | integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== 430 | 431 | "@sideway/pinpoint@^2.0.0": 432 | version "2.0.0" 433 | resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" 434 | integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== 435 | 436 | "@sindresorhus/is@^4.6.0": 437 | version "4.6.0" 438 | resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz" 439 | integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== 440 | 441 | "@types/hapi__cookie@^12.0.5": 442 | version "12.0.5" 443 | resolved "https://registry.npmjs.org/@types/hapi__cookie/-/hapi__cookie-12.0.5.tgz" 444 | integrity sha512-rZNcJRDuutoSLHVHNSoIACabeGZEhjYFKqdW9vmucpUgE50YfPbtGPREzXEKOf2/1RR6d+jrSkNRwxUEaUIfsQ== 445 | dependencies: 446 | "@hapi/hapi" "^21.1.0" 447 | "@types/node" "*" 448 | joi "^17.7.0" 449 | 450 | "@types/hapi__crumb@^7.3.7": 451 | version "7.3.7" 452 | resolved "https://registry.npmjs.org/@types/hapi__crumb/-/hapi__crumb-7.3.7.tgz" 453 | integrity sha512-miEdR5NX0KY6aCr258ViwaxMCPlf98yBb3QiAi83x/gXVNWY3HXsaE0DkaNa+/SAm41eVuhiF+02F/QpaP7gvA== 454 | dependencies: 455 | "@hapi/hapi" "^21.1.0" 456 | "@types/node" "*" 457 | joi "^17.7.0" 458 | 459 | "@types/json-schema@^7.0.9": 460 | version "7.0.15" 461 | resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" 462 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== 463 | 464 | "@types/mime-types@^2.1.4": 465 | version "2.1.4" 466 | resolved "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.4.tgz" 467 | integrity sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w== 468 | 469 | "@types/minimist@^1.2.0": 470 | version "1.2.5" 471 | resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz" 472 | integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== 473 | 474 | "@types/node@*", "@types/node@20.12.7": 475 | version "20.12.7" 476 | resolved "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz" 477 | integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== 478 | dependencies: 479 | undici-types "~5.26.4" 480 | 481 | "@types/normalize-package-data@^2.4.0": 482 | version "2.4.4" 483 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz" 484 | integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== 485 | 486 | "@types/qrcode@^1.5.5": 487 | version "1.5.5" 488 | resolved "https://registry.npmjs.org/@types/qrcode/-/qrcode-1.5.5.tgz" 489 | integrity sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg== 490 | dependencies: 491 | "@types/node" "*" 492 | 493 | "@types/semver@^7.3.12": 494 | version "7.5.8" 495 | resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz" 496 | integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== 497 | 498 | "@types/vcards-js@^2.10.5": 499 | version "2.10.5" 500 | resolved "https://registry.npmjs.org/@types/vcards-js/-/vcards-js-2.10.5.tgz" 501 | integrity sha512-QkKYoDc7HcRwiJVALv3ZSl1pzX3nkGm8OiQWZVn4QM8S4xUkcZVU6ci89eF6ychyEQc3ySLDIyAa/Mymbvg3IA== 502 | 503 | "@types/yauzl@^2.9.1": 504 | version "2.10.3" 505 | resolved "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz" 506 | integrity sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q== 507 | dependencies: 508 | "@types/node" "*" 509 | 510 | "@typescript-eslint/eslint-plugin@5.62.0": 511 | version "5.62.0" 512 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz" 513 | integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== 514 | dependencies: 515 | "@eslint-community/regexpp" "^4.4.0" 516 | "@typescript-eslint/scope-manager" "5.62.0" 517 | "@typescript-eslint/type-utils" "5.62.0" 518 | "@typescript-eslint/utils" "5.62.0" 519 | debug "^4.3.4" 520 | graphemer "^1.4.0" 521 | ignore "^5.2.0" 522 | natural-compare-lite "^1.4.0" 523 | semver "^7.3.7" 524 | tsutils "^3.21.0" 525 | 526 | "@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@5.62.0": 527 | version "5.62.0" 528 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz" 529 | integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== 530 | dependencies: 531 | "@typescript-eslint/scope-manager" "5.62.0" 532 | "@typescript-eslint/types" "5.62.0" 533 | "@typescript-eslint/typescript-estree" "5.62.0" 534 | debug "^4.3.4" 535 | 536 | "@typescript-eslint/scope-manager@5.62.0": 537 | version "5.62.0" 538 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz" 539 | integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== 540 | dependencies: 541 | "@typescript-eslint/types" "5.62.0" 542 | "@typescript-eslint/visitor-keys" "5.62.0" 543 | 544 | "@typescript-eslint/type-utils@5.62.0": 545 | version "5.62.0" 546 | resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz" 547 | integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== 548 | dependencies: 549 | "@typescript-eslint/typescript-estree" "5.62.0" 550 | "@typescript-eslint/utils" "5.62.0" 551 | debug "^4.3.4" 552 | tsutils "^3.21.0" 553 | 554 | "@typescript-eslint/types@5.62.0": 555 | version "5.62.0" 556 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz" 557 | integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== 558 | 559 | "@typescript-eslint/typescript-estree@5.62.0": 560 | version "5.62.0" 561 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz" 562 | integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== 563 | dependencies: 564 | "@typescript-eslint/types" "5.62.0" 565 | "@typescript-eslint/visitor-keys" "5.62.0" 566 | debug "^4.3.4" 567 | globby "^11.1.0" 568 | is-glob "^4.0.3" 569 | semver "^7.3.7" 570 | tsutils "^3.21.0" 571 | 572 | "@typescript-eslint/utils@5.62.0": 573 | version "5.62.0" 574 | resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz" 575 | integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== 576 | dependencies: 577 | "@eslint-community/eslint-utils" "^4.2.0" 578 | "@types/json-schema" "^7.0.9" 579 | "@types/semver" "^7.3.12" 580 | "@typescript-eslint/scope-manager" "5.62.0" 581 | "@typescript-eslint/types" "5.62.0" 582 | "@typescript-eslint/typescript-estree" "5.62.0" 583 | eslint-scope "^5.1.1" 584 | semver "^7.3.7" 585 | 586 | "@typescript-eslint/visitor-keys@5.62.0": 587 | version "5.62.0" 588 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz" 589 | integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== 590 | dependencies: 591 | "@typescript-eslint/types" "5.62.0" 592 | eslint-visitor-keys "^3.3.0" 593 | 594 | "@ungap/structured-clone@^1.2.0": 595 | version "1.2.0" 596 | resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz" 597 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 598 | 599 | acorn-jsx@^5.3.2: 600 | version "5.3.2" 601 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 602 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 603 | 604 | "acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0: 605 | version "8.12.0" 606 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz" 607 | integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw== 608 | 609 | agent-base@6: 610 | version "6.0.2" 611 | resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" 612 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 613 | dependencies: 614 | debug "4" 615 | 616 | ajv@^6.12.4: 617 | version "6.12.6" 618 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 619 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 620 | dependencies: 621 | fast-deep-equal "^3.1.1" 622 | fast-json-stable-stringify "^2.0.0" 623 | json-schema-traverse "^0.4.1" 624 | uri-js "^4.2.2" 625 | 626 | ansi-escapes@^4.2.1: 627 | version "4.3.2" 628 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" 629 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 630 | dependencies: 631 | type-fest "^0.21.3" 632 | 633 | ansi-regex@^5.0.1: 634 | version "5.0.1" 635 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 636 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 637 | 638 | ansi-styles@^3.2.1: 639 | version "3.2.1" 640 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 641 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 642 | dependencies: 643 | color-convert "^1.9.0" 644 | 645 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 646 | version "4.3.0" 647 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 648 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 649 | dependencies: 650 | color-convert "^2.0.1" 651 | 652 | archiver-utils@^2.1.0: 653 | version "2.1.0" 654 | resolved "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz" 655 | integrity sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw== 656 | dependencies: 657 | glob "^7.1.4" 658 | graceful-fs "^4.2.0" 659 | lazystream "^1.0.0" 660 | lodash.defaults "^4.2.0" 661 | lodash.difference "^4.5.0" 662 | lodash.flatten "^4.4.0" 663 | lodash.isplainobject "^4.0.6" 664 | lodash.union "^4.6.0" 665 | normalize-path "^3.0.0" 666 | readable-stream "^2.0.0" 667 | 668 | archiver-utils@^3.0.4: 669 | version "3.0.4" 670 | resolved "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz" 671 | integrity sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw== 672 | dependencies: 673 | glob "^7.2.3" 674 | graceful-fs "^4.2.0" 675 | lazystream "^1.0.0" 676 | lodash.defaults "^4.2.0" 677 | lodash.difference "^4.5.0" 678 | lodash.flatten "^4.4.0" 679 | lodash.isplainobject "^4.0.6" 680 | lodash.union "^4.6.0" 681 | normalize-path "^3.0.0" 682 | readable-stream "^3.6.0" 683 | 684 | archiver@^5.3.1: 685 | version "5.3.2" 686 | resolved "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz" 687 | integrity sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw== 688 | dependencies: 689 | archiver-utils "^2.1.0" 690 | async "^3.2.4" 691 | buffer-crc32 "^0.2.1" 692 | readable-stream "^3.6.0" 693 | readdir-glob "^1.1.2" 694 | tar-stream "^2.2.0" 695 | zip-stream "^4.1.0" 696 | 697 | argon2@^0.40.3: 698 | version "0.40.3" 699 | resolved "https://registry.npmjs.org/argon2/-/argon2-0.40.3.tgz" 700 | integrity sha512-FrSmz4VeM91jwFvvjsQv9GYp6o/kARWoYKjbjDB2U5io1H3e5X67PYGclFDeQff6UXIhUd4aHR3mxCdBbMMuQw== 701 | dependencies: 702 | "@phc/format" "^1.0.0" 703 | node-addon-api "^8.0.0" 704 | node-gyp-build "^4.8.0" 705 | 706 | argparse@^2.0.1: 707 | version "2.0.1" 708 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 709 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 710 | 711 | array-union@^2.1.0: 712 | version "2.1.0" 713 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 714 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 715 | 716 | arrify@^1.0.1: 717 | version "1.0.1" 718 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" 719 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== 720 | 721 | async@^3.2.4: 722 | version "3.2.5" 723 | resolved "https://registry.npmjs.org/async/-/async-3.2.5.tgz" 724 | integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== 725 | 726 | async@>=0.2.9: 727 | version "3.2.3" 728 | resolved "https://registry.npmjs.org/async/-/async-3.2.3.tgz" 729 | integrity sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g== 730 | 731 | balanced-match@^1.0.0: 732 | version "1.0.2" 733 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 734 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 735 | 736 | base64-js@^1.3.1: 737 | version "1.5.1" 738 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" 739 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 740 | 741 | big-integer@^1.6.17: 742 | version "1.6.52" 743 | resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz" 744 | integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== 745 | 746 | binary@~0.3.0: 747 | version "0.3.0" 748 | resolved "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz" 749 | integrity sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg== 750 | dependencies: 751 | buffers "~0.1.1" 752 | chainsaw "~0.1.0" 753 | 754 | bl@^4.0.3: 755 | version "4.1.0" 756 | resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" 757 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 758 | dependencies: 759 | buffer "^5.5.0" 760 | inherits "^2.0.4" 761 | readable-stream "^3.4.0" 762 | 763 | bluebird@~3.4.1: 764 | version "3.4.7" 765 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz" 766 | integrity sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA== 767 | 768 | brace-expansion@^1.1.7: 769 | version "1.1.11" 770 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 771 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 772 | dependencies: 773 | balanced-match "^1.0.0" 774 | concat-map "0.0.1" 775 | 776 | brace-expansion@^2.0.1: 777 | version "2.0.1" 778 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" 779 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 780 | dependencies: 781 | balanced-match "^1.0.0" 782 | 783 | braces@^3.0.3: 784 | version "3.0.3" 785 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" 786 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 787 | dependencies: 788 | fill-range "^7.1.1" 789 | 790 | buffer-crc32@^0.2.1, buffer-crc32@^0.2.13, buffer-crc32@~0.2.3: 791 | version "0.2.13" 792 | resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz" 793 | integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 794 | 795 | buffer-indexof-polyfill@~1.0.0: 796 | version "1.0.2" 797 | resolved "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz" 798 | integrity sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A== 799 | 800 | buffer@^5.2.1, buffer@^5.5.0: 801 | version "5.7.1" 802 | resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" 803 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 804 | dependencies: 805 | base64-js "^1.3.1" 806 | ieee754 "^1.1.13" 807 | 808 | buffers@~0.1.1: 809 | version "0.1.1" 810 | resolved "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" 811 | integrity sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ== 812 | 813 | builtins@^5.0.1: 814 | version "5.1.0" 815 | resolved "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz" 816 | integrity sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg== 817 | dependencies: 818 | semver "^7.0.0" 819 | 820 | callsites@^3.0.0: 821 | version "3.1.0" 822 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 823 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 824 | 825 | camelcase-keys@^6.2.2: 826 | version "6.2.2" 827 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz" 828 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 829 | dependencies: 830 | camelcase "^5.3.1" 831 | map-obj "^4.0.0" 832 | quick-lru "^4.0.1" 833 | 834 | camelcase@^5.0.0, camelcase@^5.3.1: 835 | version "5.3.1" 836 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" 837 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 838 | 839 | chainsaw@~0.1.0: 840 | version "0.1.0" 841 | resolved "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz" 842 | integrity sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ== 843 | dependencies: 844 | traverse ">=0.3.0 <0.4" 845 | 846 | chalk@^2.4.2: 847 | version "2.4.2" 848 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 849 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 850 | dependencies: 851 | ansi-styles "^3.2.1" 852 | escape-string-regexp "^1.0.5" 853 | supports-color "^5.3.0" 854 | 855 | chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: 856 | version "4.1.2" 857 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 858 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 859 | dependencies: 860 | ansi-styles "^4.1.0" 861 | supports-color "^7.1.0" 862 | 863 | char-regex@^1.0.2: 864 | version "1.0.2" 865 | resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" 866 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 867 | 868 | chardet@^0.7.0: 869 | version "0.7.0" 870 | resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" 871 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 872 | 873 | chownr@^1.1.1: 874 | version "1.1.4" 875 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz" 876 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 877 | 878 | cli-cursor@^3.1.0: 879 | version "3.1.0" 880 | resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" 881 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 882 | dependencies: 883 | restore-cursor "^3.1.0" 884 | 885 | cli-width@^3.0.0: 886 | version "3.0.0" 887 | resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" 888 | integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== 889 | 890 | cliui@^6.0.0: 891 | version "6.0.0" 892 | resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" 893 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 894 | dependencies: 895 | string-width "^4.2.0" 896 | strip-ansi "^6.0.0" 897 | wrap-ansi "^6.2.0" 898 | 899 | clone@2.x: 900 | version "2.1.2" 901 | resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" 902 | integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== 903 | 904 | color-convert@^1.9.0: 905 | version "1.9.3" 906 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 907 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 908 | dependencies: 909 | color-name "1.1.3" 910 | 911 | color-convert@^2.0.1: 912 | version "2.0.1" 913 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 914 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 915 | dependencies: 916 | color-name "~1.1.4" 917 | 918 | color-name@~1.1.4: 919 | version "1.1.4" 920 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 921 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 922 | 923 | color-name@1.1.3: 924 | version "1.1.3" 925 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 926 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 927 | 928 | compress-commons@^4.1.2: 929 | version "4.1.2" 930 | resolved "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz" 931 | integrity sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg== 932 | dependencies: 933 | buffer-crc32 "^0.2.13" 934 | crc32-stream "^4.0.2" 935 | normalize-path "^3.0.0" 936 | readable-stream "^3.6.0" 937 | 938 | concat-map@0.0.1: 939 | version "0.0.1" 940 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 941 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 942 | 943 | core-util-is@~1.0.0: 944 | version "1.0.3" 945 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" 946 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 947 | 948 | crc-32@^1.2.0: 949 | version "1.2.2" 950 | resolved "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz" 951 | integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== 952 | 953 | crc32-stream@^4.0.2: 954 | version "4.0.3" 955 | resolved "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz" 956 | integrity sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw== 957 | dependencies: 958 | crc-32 "^1.2.0" 959 | readable-stream "^3.4.0" 960 | 961 | cross-fetch@3.1.5: 962 | version "3.1.5" 963 | resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz" 964 | integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 965 | dependencies: 966 | node-fetch "2.6.7" 967 | 968 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 969 | version "7.0.3" 970 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 971 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 972 | dependencies: 973 | path-key "^3.1.0" 974 | shebang-command "^2.0.0" 975 | which "^2.0.1" 976 | 977 | debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@4: 978 | version "4.3.5" 979 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz" 980 | integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== 981 | dependencies: 982 | ms "2.1.2" 983 | 984 | debug@4.3.4: 985 | version "4.3.4" 986 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 987 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 988 | dependencies: 989 | ms "2.1.2" 990 | 991 | decamelize-keys@^1.1.0: 992 | version "1.1.1" 993 | resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz" 994 | integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== 995 | dependencies: 996 | decamelize "^1.1.0" 997 | map-obj "^1.0.0" 998 | 999 | decamelize@^1.1.0, decamelize@^1.2.0: 1000 | version "1.2.0" 1001 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" 1002 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== 1003 | 1004 | deep-is@^0.1.3: 1005 | version "0.1.4" 1006 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1007 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1008 | 1009 | devtools-protocol@0.0.1045489: 1010 | version "0.0.1045489" 1011 | resolved "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz" 1012 | integrity sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ== 1013 | 1014 | dijkstrajs@^1.0.1: 1015 | version "1.0.3" 1016 | resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz" 1017 | integrity sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA== 1018 | 1019 | dir-glob@^3.0.1: 1020 | version "3.0.1" 1021 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" 1022 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1023 | dependencies: 1024 | path-type "^4.0.0" 1025 | 1026 | doctrine@^3.0.0: 1027 | version "3.0.0" 1028 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 1029 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1030 | dependencies: 1031 | esutils "^2.0.2" 1032 | 1033 | duplexer2@~0.1.4: 1034 | version "0.1.4" 1035 | resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz" 1036 | integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== 1037 | dependencies: 1038 | readable-stream "^2.0.2" 1039 | 1040 | emoji-regex@^8.0.0: 1041 | version "8.0.0" 1042 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" 1043 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1044 | 1045 | emojilib@^2.4.0: 1046 | version "2.4.0" 1047 | resolved "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz" 1048 | integrity sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw== 1049 | 1050 | encode-utf8@^1.0.3: 1051 | version "1.0.3" 1052 | resolved "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz" 1053 | integrity sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw== 1054 | 1055 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 1056 | version "1.4.4" 1057 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" 1058 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1059 | dependencies: 1060 | once "^1.4.0" 1061 | 1062 | error-ex@^1.3.1: 1063 | version "1.3.2" 1064 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 1065 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1066 | dependencies: 1067 | is-arrayish "^0.2.1" 1068 | 1069 | escape-string-regexp@^1.0.5: 1070 | version "1.0.5" 1071 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1072 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1073 | 1074 | escape-string-regexp@^4.0.0: 1075 | version "4.0.0" 1076 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 1077 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1078 | 1079 | eslint-config-prettier@*, eslint-config-prettier@9.1.0: 1080 | version "9.1.0" 1081 | resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz" 1082 | integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== 1083 | 1084 | eslint-plugin-es@^4.1.0: 1085 | version "4.1.0" 1086 | resolved "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz" 1087 | integrity sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ== 1088 | dependencies: 1089 | eslint-utils "^2.0.0" 1090 | regexpp "^3.0.0" 1091 | 1092 | eslint-plugin-n@15.7.0: 1093 | version "15.7.0" 1094 | resolved "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz" 1095 | integrity sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q== 1096 | dependencies: 1097 | builtins "^5.0.1" 1098 | eslint-plugin-es "^4.1.0" 1099 | eslint-utils "^3.0.0" 1100 | ignore "^5.1.1" 1101 | is-core-module "^2.11.0" 1102 | minimatch "^3.1.2" 1103 | resolve "^1.22.1" 1104 | semver "^7.3.8" 1105 | 1106 | eslint-plugin-prettier@5.1.3: 1107 | version "5.1.3" 1108 | resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz" 1109 | integrity sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw== 1110 | dependencies: 1111 | prettier-linter-helpers "^1.0.0" 1112 | synckit "^0.8.6" 1113 | 1114 | eslint-scope@^5.1.1: 1115 | version "5.1.1" 1116 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" 1117 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 1118 | dependencies: 1119 | esrecurse "^4.3.0" 1120 | estraverse "^4.1.1" 1121 | 1122 | eslint-scope@^7.2.2: 1123 | version "7.2.2" 1124 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz" 1125 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 1126 | dependencies: 1127 | esrecurse "^4.3.0" 1128 | estraverse "^5.2.0" 1129 | 1130 | eslint-utils@^2.0.0: 1131 | version "2.1.0" 1132 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" 1133 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 1134 | dependencies: 1135 | eslint-visitor-keys "^1.1.0" 1136 | 1137 | eslint-utils@^3.0.0: 1138 | version "3.0.0" 1139 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" 1140 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 1141 | dependencies: 1142 | eslint-visitor-keys "^2.0.0" 1143 | 1144 | eslint-visitor-keys@^1.1.0: 1145 | version "1.3.0" 1146 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" 1147 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 1148 | 1149 | eslint-visitor-keys@^2.0.0: 1150 | version "2.1.0" 1151 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" 1152 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 1153 | 1154 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 1155 | version "3.4.3" 1156 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" 1157 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 1158 | 1159 | eslint@*, "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", eslint@>=4.19.1, eslint@>=5, eslint@>=7.0.0, eslint@>=8.0.0, eslint@8.57.0: 1160 | version "8.57.0" 1161 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz" 1162 | integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== 1163 | dependencies: 1164 | "@eslint-community/eslint-utils" "^4.2.0" 1165 | "@eslint-community/regexpp" "^4.6.1" 1166 | "@eslint/eslintrc" "^2.1.4" 1167 | "@eslint/js" "8.57.0" 1168 | "@humanwhocodes/config-array" "^0.11.14" 1169 | "@humanwhocodes/module-importer" "^1.0.1" 1170 | "@nodelib/fs.walk" "^1.2.8" 1171 | "@ungap/structured-clone" "^1.2.0" 1172 | ajv "^6.12.4" 1173 | chalk "^4.0.0" 1174 | cross-spawn "^7.0.2" 1175 | debug "^4.3.2" 1176 | doctrine "^3.0.0" 1177 | escape-string-regexp "^4.0.0" 1178 | eslint-scope "^7.2.2" 1179 | eslint-visitor-keys "^3.4.3" 1180 | espree "^9.6.1" 1181 | esquery "^1.4.2" 1182 | esutils "^2.0.2" 1183 | fast-deep-equal "^3.1.3" 1184 | file-entry-cache "^6.0.1" 1185 | find-up "^5.0.0" 1186 | glob-parent "^6.0.2" 1187 | globals "^13.19.0" 1188 | graphemer "^1.4.0" 1189 | ignore "^5.2.0" 1190 | imurmurhash "^0.1.4" 1191 | is-glob "^4.0.0" 1192 | is-path-inside "^3.0.3" 1193 | js-yaml "^4.1.0" 1194 | json-stable-stringify-without-jsonify "^1.0.1" 1195 | levn "^0.4.1" 1196 | lodash.merge "^4.6.2" 1197 | minimatch "^3.1.2" 1198 | natural-compare "^1.4.0" 1199 | optionator "^0.9.3" 1200 | strip-ansi "^6.0.1" 1201 | text-table "^0.2.0" 1202 | 1203 | espree@^9.6.0, espree@^9.6.1: 1204 | version "9.6.1" 1205 | resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz" 1206 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 1207 | dependencies: 1208 | acorn "^8.9.0" 1209 | acorn-jsx "^5.3.2" 1210 | eslint-visitor-keys "^3.4.1" 1211 | 1212 | esquery@^1.4.2: 1213 | version "1.5.0" 1214 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz" 1215 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 1216 | dependencies: 1217 | estraverse "^5.1.0" 1218 | 1219 | esrecurse@^4.3.0: 1220 | version "4.3.0" 1221 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1222 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1223 | dependencies: 1224 | estraverse "^5.2.0" 1225 | 1226 | estraverse@^4.1.1: 1227 | version "4.3.0" 1228 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" 1229 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1230 | 1231 | estraverse@^5.1.0: 1232 | version "5.3.0" 1233 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1234 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1235 | 1236 | estraverse@^5.2.0: 1237 | version "5.3.0" 1238 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1239 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1240 | 1241 | esutils@^2.0.2: 1242 | version "2.0.3" 1243 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1244 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1245 | 1246 | execa@^5.0.0: 1247 | version "5.1.1" 1248 | resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" 1249 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1250 | dependencies: 1251 | cross-spawn "^7.0.3" 1252 | get-stream "^6.0.0" 1253 | human-signals "^2.1.0" 1254 | is-stream "^2.0.0" 1255 | merge-stream "^2.0.0" 1256 | npm-run-path "^4.0.1" 1257 | onetime "^5.1.2" 1258 | signal-exit "^3.0.3" 1259 | strip-final-newline "^2.0.0" 1260 | 1261 | external-editor@^3.0.3: 1262 | version "3.1.0" 1263 | resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" 1264 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 1265 | dependencies: 1266 | chardet "^0.7.0" 1267 | iconv-lite "^0.4.24" 1268 | tmp "^0.0.33" 1269 | 1270 | extract-zip@2.0.1: 1271 | version "2.0.1" 1272 | resolved "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz" 1273 | integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== 1274 | dependencies: 1275 | debug "^4.1.1" 1276 | get-stream "^5.1.0" 1277 | yauzl "^2.10.0" 1278 | optionalDependencies: 1279 | "@types/yauzl" "^2.9.1" 1280 | 1281 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1282 | version "3.1.3" 1283 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1284 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1285 | 1286 | fast-diff@^1.1.2: 1287 | version "1.3.0" 1288 | resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz" 1289 | integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== 1290 | 1291 | fast-glob@^3.2.9: 1292 | version "3.3.2" 1293 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz" 1294 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 1295 | dependencies: 1296 | "@nodelib/fs.stat" "^2.0.2" 1297 | "@nodelib/fs.walk" "^1.2.3" 1298 | glob-parent "^5.1.2" 1299 | merge2 "^1.3.0" 1300 | micromatch "^4.0.4" 1301 | 1302 | fast-json-stable-stringify@^2.0.0: 1303 | version "2.1.0" 1304 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1305 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1306 | 1307 | fast-levenshtein@^2.0.6: 1308 | version "2.0.6" 1309 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1310 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1311 | 1312 | fastq@^1.6.0: 1313 | version "1.17.1" 1314 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" 1315 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== 1316 | dependencies: 1317 | reusify "^1.0.4" 1318 | 1319 | fd-slicer@~1.1.0: 1320 | version "1.1.0" 1321 | resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" 1322 | integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== 1323 | dependencies: 1324 | pend "~1.2.0" 1325 | 1326 | figures@^3.0.0: 1327 | version "3.2.0" 1328 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" 1329 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 1330 | dependencies: 1331 | escape-string-regexp "^1.0.5" 1332 | 1333 | file-entry-cache@^6.0.1: 1334 | version "6.0.1" 1335 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 1336 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1337 | dependencies: 1338 | flat-cache "^3.0.4" 1339 | 1340 | fill-range@^7.1.1: 1341 | version "7.1.1" 1342 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" 1343 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 1344 | dependencies: 1345 | to-regex-range "^5.0.1" 1346 | 1347 | find-up@^4.1.0: 1348 | version "4.1.0" 1349 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1350 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1351 | dependencies: 1352 | locate-path "^5.0.0" 1353 | path-exists "^4.0.0" 1354 | 1355 | find-up@^5.0.0: 1356 | version "5.0.0" 1357 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1358 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1359 | dependencies: 1360 | locate-path "^6.0.0" 1361 | path-exists "^4.0.0" 1362 | 1363 | flat-cache@^3.0.4: 1364 | version "3.2.0" 1365 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz" 1366 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== 1367 | dependencies: 1368 | flatted "^3.2.9" 1369 | keyv "^4.5.3" 1370 | rimraf "^3.0.2" 1371 | 1372 | flatted@^3.2.9: 1373 | version "3.3.1" 1374 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz" 1375 | integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== 1376 | 1377 | fluent-ffmpeg@2.1.2: 1378 | version "2.1.2" 1379 | resolved "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.1.2.tgz" 1380 | integrity sha512-IZTB4kq5GK0DPp7sGQ0q/BWurGHffRtQQwVkiqDgeO6wYJLLV5ZhgNOQ65loZxxuPMKZKZcICCUnaGtlxBiR0Q== 1381 | dependencies: 1382 | async ">=0.2.9" 1383 | which "^1.1.1" 1384 | 1385 | fs-constants@^1.0.0: 1386 | version "1.0.0" 1387 | resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz" 1388 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1389 | 1390 | fs-extra@^10.1.0: 1391 | version "10.1.0" 1392 | resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" 1393 | integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== 1394 | dependencies: 1395 | graceful-fs "^4.2.0" 1396 | jsonfile "^6.0.1" 1397 | universalify "^2.0.0" 1398 | 1399 | fs.realpath@^1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1402 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1403 | 1404 | fstream@^1.0.12: 1405 | version "1.0.12" 1406 | resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz" 1407 | integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== 1408 | dependencies: 1409 | graceful-fs "^4.1.2" 1410 | inherits "~2.0.0" 1411 | mkdirp ">=0.5 0" 1412 | rimraf "2" 1413 | 1414 | function-bind@^1.1.2: 1415 | version "1.1.2" 1416 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" 1417 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1418 | 1419 | get-caller-file@^2.0.1: 1420 | version "2.0.5" 1421 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 1422 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1423 | 1424 | get-stream@^5.1.0: 1425 | version "5.2.0" 1426 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" 1427 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1428 | dependencies: 1429 | pump "^3.0.0" 1430 | 1431 | get-stream@^6.0.0: 1432 | version "6.0.1" 1433 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" 1434 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1435 | 1436 | glob-parent@^5.1.2: 1437 | version "5.1.2" 1438 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1439 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1440 | dependencies: 1441 | is-glob "^4.0.1" 1442 | 1443 | glob-parent@^6.0.2: 1444 | version "6.0.2" 1445 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1446 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1447 | dependencies: 1448 | is-glob "^4.0.3" 1449 | 1450 | glob@^7.1.3, glob@^7.1.4, glob@^7.2.3: 1451 | version "7.2.3" 1452 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1453 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1454 | dependencies: 1455 | fs.realpath "^1.0.0" 1456 | inflight "^1.0.4" 1457 | inherits "2" 1458 | minimatch "^3.1.1" 1459 | once "^1.3.0" 1460 | path-is-absolute "^1.0.0" 1461 | 1462 | globals@^13.19.0: 1463 | version "13.24.0" 1464 | resolved "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz" 1465 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== 1466 | dependencies: 1467 | type-fest "^0.20.2" 1468 | 1469 | globby@^11.1.0: 1470 | version "11.1.0" 1471 | resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" 1472 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1473 | dependencies: 1474 | array-union "^2.1.0" 1475 | dir-glob "^3.0.1" 1476 | fast-glob "^3.2.9" 1477 | ignore "^5.2.0" 1478 | merge2 "^1.4.1" 1479 | slash "^3.0.0" 1480 | 1481 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2: 1482 | version "4.2.11" 1483 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" 1484 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 1485 | 1486 | graphemer@^1.4.0: 1487 | version "1.4.0" 1488 | resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" 1489 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1490 | 1491 | gts@^5.3.1: 1492 | version "5.3.1" 1493 | resolved "https://registry.npmjs.org/gts/-/gts-5.3.1.tgz" 1494 | integrity sha512-P9F+krJkGOkisUX+P9pfUas1Xy+U+CxBFZT62uInkJbgvZpnW1ug/pIcMJJmLOthMq1J88lpQUGhXDC9UTvVcw== 1495 | dependencies: 1496 | "@typescript-eslint/eslint-plugin" "5.62.0" 1497 | "@typescript-eslint/parser" "5.62.0" 1498 | chalk "^4.1.2" 1499 | eslint "8.57.0" 1500 | eslint-config-prettier "9.1.0" 1501 | eslint-plugin-n "15.7.0" 1502 | eslint-plugin-prettier "5.1.3" 1503 | execa "^5.0.0" 1504 | inquirer "^7.3.3" 1505 | json5 "^2.1.3" 1506 | meow "^9.0.0" 1507 | ncp "^2.0.0" 1508 | prettier "3.2.5" 1509 | rimraf "3.0.2" 1510 | write-file-atomic "^4.0.0" 1511 | 1512 | handlebars@^4.7.8: 1513 | version "4.7.8" 1514 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz" 1515 | integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== 1516 | dependencies: 1517 | minimist "^1.2.5" 1518 | neo-async "^2.6.2" 1519 | source-map "^0.6.1" 1520 | wordwrap "^1.0.0" 1521 | optionalDependencies: 1522 | uglify-js "^3.1.4" 1523 | 1524 | hard-rejection@^2.1.0: 1525 | version "2.1.0" 1526 | resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz" 1527 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 1528 | 1529 | has-flag@^3.0.0: 1530 | version "3.0.0" 1531 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1532 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1533 | 1534 | has-flag@^4.0.0: 1535 | version "4.0.0" 1536 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1537 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1538 | 1539 | hasown@^2.0.0: 1540 | version "2.0.2" 1541 | resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" 1542 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 1543 | dependencies: 1544 | function-bind "^1.1.2" 1545 | 1546 | hosted-git-info@^2.1.4: 1547 | version "2.8.9" 1548 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" 1549 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1550 | 1551 | hosted-git-info@^4.0.1: 1552 | version "4.1.0" 1553 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" 1554 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 1555 | dependencies: 1556 | lru-cache "^6.0.0" 1557 | 1558 | https-proxy-agent@5.0.1: 1559 | version "5.0.1" 1560 | resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" 1561 | integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 1562 | dependencies: 1563 | agent-base "6" 1564 | debug "4" 1565 | 1566 | human-signals@^2.1.0: 1567 | version "2.1.0" 1568 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" 1569 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1570 | 1571 | iconv-lite@^0.4.24: 1572 | version "0.4.24" 1573 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" 1574 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1575 | dependencies: 1576 | safer-buffer ">= 2.1.2 < 3" 1577 | 1578 | ieee754@^1.1.13: 1579 | version "1.2.1" 1580 | resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" 1581 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1582 | 1583 | ignore@^5.1.1, ignore@^5.2.0: 1584 | version "5.3.1" 1585 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz" 1586 | integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== 1587 | 1588 | import-fresh@^3.2.1: 1589 | version "3.3.0" 1590 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1591 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1592 | dependencies: 1593 | parent-module "^1.0.0" 1594 | resolve-from "^4.0.0" 1595 | 1596 | imurmurhash@^0.1.4: 1597 | version "0.1.4" 1598 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1599 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1600 | 1601 | indent-string@^4.0.0: 1602 | version "4.0.0" 1603 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" 1604 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1605 | 1606 | inflight@^1.0.4: 1607 | version "1.0.6" 1608 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1609 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1610 | dependencies: 1611 | once "^1.3.0" 1612 | wrappy "1" 1613 | 1614 | inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.3, inherits@2: 1615 | version "2.0.4" 1616 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1617 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1618 | 1619 | inquirer@^7.3.3: 1620 | version "7.3.3" 1621 | resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz" 1622 | integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== 1623 | dependencies: 1624 | ansi-escapes "^4.2.1" 1625 | chalk "^4.1.0" 1626 | cli-cursor "^3.1.0" 1627 | cli-width "^3.0.0" 1628 | external-editor "^3.0.3" 1629 | figures "^3.0.0" 1630 | lodash "^4.17.19" 1631 | mute-stream "0.0.8" 1632 | run-async "^2.4.0" 1633 | rxjs "^6.6.0" 1634 | string-width "^4.1.0" 1635 | strip-ansi "^6.0.0" 1636 | through "^2.3.6" 1637 | 1638 | is-arrayish@^0.2.1: 1639 | version "0.2.1" 1640 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 1641 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1642 | 1643 | is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.5.0: 1644 | version "2.13.1" 1645 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz" 1646 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 1647 | dependencies: 1648 | hasown "^2.0.0" 1649 | 1650 | is-extglob@^2.1.1: 1651 | version "2.1.1" 1652 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1653 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1654 | 1655 | is-fullwidth-code-point@^3.0.0: 1656 | version "3.0.0" 1657 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" 1658 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1659 | 1660 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1661 | version "4.0.3" 1662 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1663 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1664 | dependencies: 1665 | is-extglob "^2.1.1" 1666 | 1667 | is-number@^7.0.0: 1668 | version "7.0.0" 1669 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1670 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1671 | 1672 | is-path-inside@^3.0.3: 1673 | version "3.0.3" 1674 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" 1675 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1676 | 1677 | is-plain-obj@^1.1.0: 1678 | version "1.1.0" 1679 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" 1680 | integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== 1681 | 1682 | is-stream@^2.0.0: 1683 | version "2.0.1" 1684 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 1685 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1686 | 1687 | isarray@~1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" 1690 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1691 | 1692 | isexe@^2.0.0: 1693 | version "2.0.0" 1694 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1695 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1696 | 1697 | joi@^17.7.0: 1698 | version "17.13.1" 1699 | resolved "https://registry.npmjs.org/joi/-/joi-17.13.1.tgz" 1700 | integrity sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg== 1701 | dependencies: 1702 | "@hapi/hoek" "^9.3.0" 1703 | "@hapi/topo" "^5.1.0" 1704 | "@sideway/address" "^4.1.5" 1705 | "@sideway/formula" "^3.0.1" 1706 | "@sideway/pinpoint" "^2.0.0" 1707 | 1708 | js-tokens@^4.0.0: 1709 | version "4.0.0" 1710 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1711 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1712 | 1713 | js-yaml@^4.1.0: 1714 | version "4.1.0" 1715 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 1716 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1717 | dependencies: 1718 | argparse "^2.0.1" 1719 | 1720 | json-buffer@3.0.1: 1721 | version "3.0.1" 1722 | resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" 1723 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 1724 | 1725 | json-parse-even-better-errors@^2.3.0: 1726 | version "2.3.1" 1727 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 1728 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1729 | 1730 | json-schema-traverse@^0.4.1: 1731 | version "0.4.1" 1732 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 1733 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1734 | 1735 | json-stable-stringify-without-jsonify@^1.0.1: 1736 | version "1.0.1" 1737 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 1738 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1739 | 1740 | json5@^2.1.3: 1741 | version "2.2.3" 1742 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" 1743 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1744 | 1745 | jsonfile@^6.0.1: 1746 | version "6.1.0" 1747 | resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" 1748 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1749 | dependencies: 1750 | universalify "^2.0.0" 1751 | optionalDependencies: 1752 | graceful-fs "^4.1.6" 1753 | 1754 | keyv@^4.5.3: 1755 | version "4.5.4" 1756 | resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" 1757 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1758 | dependencies: 1759 | json-buffer "3.0.1" 1760 | 1761 | kind-of@^6.0.3: 1762 | version "6.0.3" 1763 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" 1764 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1765 | 1766 | lazystream@^1.0.0: 1767 | version "1.0.1" 1768 | resolved "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz" 1769 | integrity sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw== 1770 | dependencies: 1771 | readable-stream "^2.0.5" 1772 | 1773 | levn@^0.4.1: 1774 | version "0.4.1" 1775 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 1776 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1777 | dependencies: 1778 | prelude-ls "^1.2.1" 1779 | type-check "~0.4.0" 1780 | 1781 | lines-and-columns@^1.1.6: 1782 | version "1.2.4" 1783 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 1784 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1785 | 1786 | listenercount@~1.0.1: 1787 | version "1.0.1" 1788 | resolved "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz" 1789 | integrity sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ== 1790 | 1791 | locate-path@^5.0.0: 1792 | version "5.0.0" 1793 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 1794 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1795 | dependencies: 1796 | p-locate "^4.1.0" 1797 | 1798 | locate-path@^6.0.0: 1799 | version "6.0.0" 1800 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 1801 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1802 | dependencies: 1803 | p-locate "^5.0.0" 1804 | 1805 | lodash.defaults@^4.2.0: 1806 | version "4.2.0" 1807 | resolved "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz" 1808 | integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== 1809 | 1810 | lodash.difference@^4.5.0: 1811 | version "4.5.0" 1812 | resolved "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz" 1813 | integrity sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA== 1814 | 1815 | lodash.flatten@^4.4.0: 1816 | version "4.4.0" 1817 | resolved "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz" 1818 | integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== 1819 | 1820 | lodash.isplainobject@^4.0.6: 1821 | version "4.0.6" 1822 | resolved "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" 1823 | integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== 1824 | 1825 | lodash.merge@^4.6.2: 1826 | version "4.6.2" 1827 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 1828 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1829 | 1830 | lodash.union@^4.6.0: 1831 | version "4.6.0" 1832 | resolved "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz" 1833 | integrity sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw== 1834 | 1835 | lodash@^4.17.19: 1836 | version "4.17.21" 1837 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 1838 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1839 | 1840 | lru-cache@^6.0.0: 1841 | version "6.0.0" 1842 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 1843 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1844 | dependencies: 1845 | yallist "^4.0.0" 1846 | 1847 | lru-cache@^7.14.1: 1848 | version "7.18.3" 1849 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz" 1850 | integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== 1851 | 1852 | map-obj@^1.0.0: 1853 | version "1.0.1" 1854 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" 1855 | integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== 1856 | 1857 | map-obj@^4.0.0: 1858 | version "4.3.0" 1859 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz" 1860 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1861 | 1862 | meow@^9.0.0: 1863 | version "9.0.0" 1864 | resolved "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz" 1865 | integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== 1866 | dependencies: 1867 | "@types/minimist" "^1.2.0" 1868 | camelcase-keys "^6.2.2" 1869 | decamelize "^1.2.0" 1870 | decamelize-keys "^1.1.0" 1871 | hard-rejection "^2.1.0" 1872 | minimist-options "4.1.0" 1873 | normalize-package-data "^3.0.0" 1874 | read-pkg-up "^7.0.1" 1875 | redent "^3.0.0" 1876 | trim-newlines "^3.0.0" 1877 | type-fest "^0.18.0" 1878 | yargs-parser "^20.2.3" 1879 | 1880 | merge-stream@^2.0.0: 1881 | version "2.0.0" 1882 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" 1883 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1884 | 1885 | merge2@^1.3.0, merge2@^1.4.1: 1886 | version "1.4.1" 1887 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 1888 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1889 | 1890 | micromatch@^4.0.4: 1891 | version "4.0.8" 1892 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" 1893 | integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== 1894 | dependencies: 1895 | braces "^3.0.3" 1896 | picomatch "^2.3.1" 1897 | 1898 | mime-db@^1.52.0, mime-db@1.52.0: 1899 | version "1.52.0" 1900 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" 1901 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1902 | 1903 | mime-types@^2.1.35: 1904 | version "2.1.35" 1905 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" 1906 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1907 | dependencies: 1908 | mime-db "1.52.0" 1909 | 1910 | mime@^3.0.0: 1911 | version "3.0.0" 1912 | resolved "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz" 1913 | integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== 1914 | 1915 | mimic-fn@^2.1.0: 1916 | version "2.1.0" 1917 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" 1918 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1919 | 1920 | min-indent@^1.0.0: 1921 | version "1.0.1" 1922 | resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" 1923 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1924 | 1925 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1926 | version "3.1.2" 1927 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 1928 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1929 | dependencies: 1930 | brace-expansion "^1.1.7" 1931 | 1932 | minimatch@^5.1.0: 1933 | version "5.1.6" 1934 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz" 1935 | integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== 1936 | dependencies: 1937 | brace-expansion "^2.0.1" 1938 | 1939 | minimist-options@4.1.0: 1940 | version "4.1.0" 1941 | resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" 1942 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1943 | dependencies: 1944 | arrify "^1.0.1" 1945 | is-plain-obj "^1.1.0" 1946 | kind-of "^6.0.3" 1947 | 1948 | minimist@^1.2.5, minimist@^1.2.6: 1949 | version "1.2.8" 1950 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" 1951 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1952 | 1953 | mkdirp-classic@^0.5.2: 1954 | version "0.5.3" 1955 | resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz" 1956 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 1957 | 1958 | "mkdirp@>=0.5 0": 1959 | version "0.5.6" 1960 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" 1961 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== 1962 | dependencies: 1963 | minimist "^1.2.6" 1964 | 1965 | ms@2.1.2: 1966 | version "2.1.2" 1967 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 1968 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1969 | 1970 | mute-stream@0.0.8: 1971 | version "0.0.8" 1972 | resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" 1973 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1974 | 1975 | natural-compare-lite@^1.4.0: 1976 | version "1.4.0" 1977 | resolved "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz" 1978 | integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== 1979 | 1980 | natural-compare@^1.4.0: 1981 | version "1.4.0" 1982 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 1983 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1984 | 1985 | ncp@^2.0.0: 1986 | version "2.0.0" 1987 | resolved "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz" 1988 | integrity sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA== 1989 | 1990 | neo-async@^2.6.2: 1991 | version "2.6.2" 1992 | resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" 1993 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1994 | 1995 | node-addon-api@^8.0.0: 1996 | version "8.0.0" 1997 | resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz" 1998 | integrity sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw== 1999 | 2000 | node-cache@^5.1.2: 2001 | version "5.1.2" 2002 | resolved "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz" 2003 | integrity sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg== 2004 | dependencies: 2005 | clone "2.x" 2006 | 2007 | node-emoji@^2.1.3: 2008 | version "2.1.3" 2009 | resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz" 2010 | integrity sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA== 2011 | dependencies: 2012 | "@sindresorhus/is" "^4.6.0" 2013 | char-regex "^1.0.2" 2014 | emojilib "^2.4.0" 2015 | skin-tone "^2.0.0" 2016 | 2017 | node-fetch@^2.6.9: 2018 | version "2.7.0" 2019 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" 2020 | integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== 2021 | dependencies: 2022 | whatwg-url "^5.0.0" 2023 | 2024 | node-fetch@2.6.7: 2025 | version "2.6.7" 2026 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz" 2027 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 2028 | dependencies: 2029 | whatwg-url "^5.0.0" 2030 | 2031 | node-gyp-build@^4.8.0: 2032 | version "4.8.1" 2033 | resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz" 2034 | integrity sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw== 2035 | 2036 | node-webpmux@3.1.7: 2037 | version "3.1.7" 2038 | resolved "https://registry.npmjs.org/node-webpmux/-/node-webpmux-3.1.7.tgz" 2039 | integrity sha512-ySkL4lBCto86OyQ0blAGzylWSECcn5I0lM3bYEhe75T8Zxt/BFUMHa8ktUguR7zwXNdS/Hms31VfSsYKN1383g== 2040 | 2041 | normalize-package-data@^2.5.0: 2042 | version "2.5.0" 2043 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" 2044 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2045 | dependencies: 2046 | hosted-git-info "^2.1.4" 2047 | resolve "^1.10.0" 2048 | semver "2 || 3 || 4 || 5" 2049 | validate-npm-package-license "^3.0.1" 2050 | 2051 | normalize-package-data@^3.0.0: 2052 | version "3.0.3" 2053 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz" 2054 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 2055 | dependencies: 2056 | hosted-git-info "^4.0.1" 2057 | is-core-module "^2.5.0" 2058 | semver "^7.3.4" 2059 | validate-npm-package-license "^3.0.1" 2060 | 2061 | normalize-path@^3.0.0: 2062 | version "3.0.0" 2063 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 2064 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2065 | 2066 | npm-run-path@^4.0.1: 2067 | version "4.0.1" 2068 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" 2069 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2070 | dependencies: 2071 | path-key "^3.0.0" 2072 | 2073 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2074 | version "1.4.0" 2075 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2076 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2077 | dependencies: 2078 | wrappy "1" 2079 | 2080 | onetime@^5.1.0, onetime@^5.1.2: 2081 | version "5.1.2" 2082 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" 2083 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2084 | dependencies: 2085 | mimic-fn "^2.1.0" 2086 | 2087 | optionator@^0.9.3: 2088 | version "0.9.4" 2089 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz" 2090 | integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== 2091 | dependencies: 2092 | deep-is "^0.1.3" 2093 | fast-levenshtein "^2.0.6" 2094 | levn "^0.4.1" 2095 | prelude-ls "^1.2.1" 2096 | type-check "^0.4.0" 2097 | word-wrap "^1.2.5" 2098 | 2099 | os-tmpdir@~1.0.2: 2100 | version "1.0.2" 2101 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" 2102 | integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== 2103 | 2104 | p-limit@^2.2.0: 2105 | version "2.3.0" 2106 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2107 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2108 | dependencies: 2109 | p-try "^2.0.0" 2110 | 2111 | p-limit@^3.0.2: 2112 | version "3.1.0" 2113 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 2114 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2115 | dependencies: 2116 | yocto-queue "^0.1.0" 2117 | 2118 | p-locate@^4.1.0: 2119 | version "4.1.0" 2120 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 2121 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2122 | dependencies: 2123 | p-limit "^2.2.0" 2124 | 2125 | p-locate@^5.0.0: 2126 | version "5.0.0" 2127 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 2128 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2129 | dependencies: 2130 | p-limit "^3.0.2" 2131 | 2132 | p-try@^2.0.0: 2133 | version "2.2.0" 2134 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2135 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2136 | 2137 | parent-module@^1.0.0: 2138 | version "1.0.1" 2139 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2140 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2141 | dependencies: 2142 | callsites "^3.0.0" 2143 | 2144 | parse-json@^5.0.0: 2145 | version "5.2.0" 2146 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2147 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2148 | dependencies: 2149 | "@babel/code-frame" "^7.0.0" 2150 | error-ex "^1.3.1" 2151 | json-parse-even-better-errors "^2.3.0" 2152 | lines-and-columns "^1.1.6" 2153 | 2154 | path-exists@^4.0.0: 2155 | version "4.0.0" 2156 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2157 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2158 | 2159 | path-is-absolute@^1.0.0: 2160 | version "1.0.1" 2161 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2162 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2163 | 2164 | path-key@^3.0.0, path-key@^3.1.0: 2165 | version "3.1.1" 2166 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2167 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2168 | 2169 | path-parse@^1.0.7: 2170 | version "1.0.7" 2171 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2172 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2173 | 2174 | path-type@^4.0.0: 2175 | version "4.0.0" 2176 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" 2177 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2178 | 2179 | pend@~1.2.0: 2180 | version "1.2.0" 2181 | resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" 2182 | integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 2183 | 2184 | picocolors@^1.0.0: 2185 | version "1.0.1" 2186 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz" 2187 | integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== 2188 | 2189 | picomatch@^2.3.1: 2190 | version "2.3.1" 2191 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2192 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2193 | 2194 | pngjs@^5.0.0: 2195 | version "5.0.0" 2196 | resolved "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz" 2197 | integrity sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw== 2198 | 2199 | prelude-ls@^1.2.1: 2200 | version "1.2.1" 2201 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2202 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2203 | 2204 | prettier-linter-helpers@^1.0.0: 2205 | version "1.0.0" 2206 | resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz" 2207 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 2208 | dependencies: 2209 | fast-diff "^1.1.2" 2210 | 2211 | prettier@>=3.0.0, prettier@3.2.5: 2212 | version "3.2.5" 2213 | resolved "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz" 2214 | integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== 2215 | 2216 | process-nextick-args@~2.0.0: 2217 | version "2.0.1" 2218 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" 2219 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2220 | 2221 | progress@2.0.3: 2222 | version "2.0.3" 2223 | resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" 2224 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2225 | 2226 | proxy-from-env@1.1.0: 2227 | version "1.1.0" 2228 | resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" 2229 | integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== 2230 | 2231 | pump@^3.0.0: 2232 | version "3.0.0" 2233 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" 2234 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2235 | dependencies: 2236 | end-of-stream "^1.1.0" 2237 | once "^1.3.1" 2238 | 2239 | punycode@^2.1.0: 2240 | version "2.3.1" 2241 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" 2242 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 2243 | 2244 | puppeteer-core@18.2.1: 2245 | version "18.2.1" 2246 | resolved "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-18.2.1.tgz" 2247 | integrity sha512-MRtTAZfQTluz3U2oU/X2VqVWPcR1+94nbA2V6ZrSZRVEwLqZ8eclZ551qGFQD/vD2PYqHJwWOW/fpC721uznVw== 2248 | dependencies: 2249 | cross-fetch "3.1.5" 2250 | debug "4.3.4" 2251 | devtools-protocol "0.0.1045489" 2252 | extract-zip "2.0.1" 2253 | https-proxy-agent "5.0.1" 2254 | proxy-from-env "1.1.0" 2255 | rimraf "3.0.2" 2256 | tar-fs "2.1.1" 2257 | unbzip2-stream "1.4.3" 2258 | ws "8.9.0" 2259 | 2260 | puppeteer@^18.2.1: 2261 | version "18.2.1" 2262 | resolved "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.1.tgz" 2263 | integrity sha512-7+UhmYa7wxPh2oMRwA++k8UGVDxh3YdWFB52r9C3tM81T6BU7cuusUSxImz0GEYSOYUKk/YzIhkQ6+vc0gHbxQ== 2264 | dependencies: 2265 | https-proxy-agent "5.0.1" 2266 | progress "2.0.3" 2267 | proxy-from-env "1.1.0" 2268 | puppeteer-core "18.2.1" 2269 | 2270 | qrcode@^1.5.3: 2271 | version "1.5.3" 2272 | resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz" 2273 | integrity sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg== 2274 | dependencies: 2275 | dijkstrajs "^1.0.1" 2276 | encode-utf8 "^1.0.3" 2277 | pngjs "^5.0.0" 2278 | yargs "^15.3.1" 2279 | 2280 | queue-microtask@^1.2.2: 2281 | version "1.2.3" 2282 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2283 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2284 | 2285 | quick-lru@^4.0.1: 2286 | version "4.0.1" 2287 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz" 2288 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 2289 | 2290 | read-pkg-up@^7.0.1: 2291 | version "7.0.1" 2292 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" 2293 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 2294 | dependencies: 2295 | find-up "^4.1.0" 2296 | read-pkg "^5.2.0" 2297 | type-fest "^0.8.1" 2298 | 2299 | read-pkg@^5.2.0: 2300 | version "5.2.0" 2301 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" 2302 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 2303 | dependencies: 2304 | "@types/normalize-package-data" "^2.4.0" 2305 | normalize-package-data "^2.5.0" 2306 | parse-json "^5.0.0" 2307 | type-fest "^0.6.0" 2308 | 2309 | readable-stream@^2.0.0: 2310 | version "2.3.8" 2311 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" 2312 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 2313 | dependencies: 2314 | core-util-is "~1.0.0" 2315 | inherits "~2.0.3" 2316 | isarray "~1.0.0" 2317 | process-nextick-args "~2.0.0" 2318 | safe-buffer "~5.1.1" 2319 | string_decoder "~1.1.1" 2320 | util-deprecate "~1.0.1" 2321 | 2322 | readable-stream@^2.0.2: 2323 | version "2.3.8" 2324 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" 2325 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 2326 | dependencies: 2327 | core-util-is "~1.0.0" 2328 | inherits "~2.0.3" 2329 | isarray "~1.0.0" 2330 | process-nextick-args "~2.0.0" 2331 | safe-buffer "~5.1.1" 2332 | string_decoder "~1.1.1" 2333 | util-deprecate "~1.0.1" 2334 | 2335 | readable-stream@^2.0.5: 2336 | version "2.3.8" 2337 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" 2338 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 2339 | dependencies: 2340 | core-util-is "~1.0.0" 2341 | inherits "~2.0.3" 2342 | isarray "~1.0.0" 2343 | process-nextick-args "~2.0.0" 2344 | safe-buffer "~5.1.1" 2345 | string_decoder "~1.1.1" 2346 | util-deprecate "~1.0.1" 2347 | 2348 | readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: 2349 | version "3.6.2" 2350 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" 2351 | integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 2352 | dependencies: 2353 | inherits "^2.0.3" 2354 | string_decoder "^1.1.1" 2355 | util-deprecate "^1.0.1" 2356 | 2357 | readable-stream@~2.3.6: 2358 | version "2.3.8" 2359 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" 2360 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 2361 | dependencies: 2362 | core-util-is "~1.0.0" 2363 | inherits "~2.0.3" 2364 | isarray "~1.0.0" 2365 | process-nextick-args "~2.0.0" 2366 | safe-buffer "~5.1.1" 2367 | string_decoder "~1.1.1" 2368 | util-deprecate "~1.0.1" 2369 | 2370 | readdir-glob@^1.1.2: 2371 | version "1.1.3" 2372 | resolved "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz" 2373 | integrity sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA== 2374 | dependencies: 2375 | minimatch "^5.1.0" 2376 | 2377 | readline@^1.3.0: 2378 | version "1.3.0" 2379 | resolved "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz" 2380 | integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg== 2381 | 2382 | redent@^3.0.0: 2383 | version "3.0.0" 2384 | resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz" 2385 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 2386 | dependencies: 2387 | indent-string "^4.0.0" 2388 | strip-indent "^3.0.0" 2389 | 2390 | regexpp@^3.0.0: 2391 | version "3.2.0" 2392 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" 2393 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 2394 | 2395 | require-directory@^2.1.1: 2396 | version "2.1.1" 2397 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 2398 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 2399 | 2400 | require-main-filename@^2.0.0: 2401 | version "2.0.0" 2402 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" 2403 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2404 | 2405 | resolve-from@^4.0.0: 2406 | version "4.0.0" 2407 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2408 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2409 | 2410 | resolve@^1.10.0, resolve@^1.22.1: 2411 | version "1.22.8" 2412 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" 2413 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 2414 | dependencies: 2415 | is-core-module "^2.13.0" 2416 | path-parse "^1.0.7" 2417 | supports-preserve-symlinks-flag "^1.0.0" 2418 | 2419 | restore-cursor@^3.1.0: 2420 | version "3.1.0" 2421 | resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" 2422 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 2423 | dependencies: 2424 | onetime "^5.1.0" 2425 | signal-exit "^3.0.2" 2426 | 2427 | reusify@^1.0.4: 2428 | version "1.0.4" 2429 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2430 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2431 | 2432 | rimraf@^3.0.2, rimraf@3.0.2: 2433 | version "3.0.2" 2434 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2435 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2436 | dependencies: 2437 | glob "^7.1.3" 2438 | 2439 | rimraf@2: 2440 | version "2.7.1" 2441 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" 2442 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2443 | dependencies: 2444 | glob "^7.1.3" 2445 | 2446 | run-async@^2.4.0: 2447 | version "2.4.1" 2448 | resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" 2449 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 2450 | 2451 | run-parallel@^1.1.9: 2452 | version "1.2.0" 2453 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2454 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2455 | dependencies: 2456 | queue-microtask "^1.2.2" 2457 | 2458 | rxjs@^6.6.0: 2459 | version "6.6.7" 2460 | resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" 2461 | integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== 2462 | dependencies: 2463 | tslib "^1.9.0" 2464 | 2465 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2466 | version "5.1.2" 2467 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 2468 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2469 | 2470 | safe-buffer@~5.2.0: 2471 | version "5.2.1" 2472 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" 2473 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2474 | 2475 | "safer-buffer@>= 2.1.2 < 3": 2476 | version "2.1.2" 2477 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" 2478 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2479 | 2480 | semver@^7.0.0, semver@^7.3.4, semver@^7.3.7, semver@^7.3.8: 2481 | version "7.6.2" 2482 | resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz" 2483 | integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== 2484 | 2485 | "semver@2 || 3 || 4 || 5": 2486 | version "5.7.2" 2487 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" 2488 | integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 2489 | 2490 | set-blocking@^2.0.0: 2491 | version "2.0.0" 2492 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" 2493 | integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== 2494 | 2495 | setimmediate@~1.0.4: 2496 | version "1.0.5" 2497 | resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" 2498 | integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== 2499 | 2500 | shebang-command@^2.0.0: 2501 | version "2.0.0" 2502 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2503 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2504 | dependencies: 2505 | shebang-regex "^3.0.0" 2506 | 2507 | shebang-regex@^3.0.0: 2508 | version "3.0.0" 2509 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2510 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2511 | 2512 | signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: 2513 | version "3.0.7" 2514 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" 2515 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2516 | 2517 | skin-tone@^2.0.0: 2518 | version "2.0.0" 2519 | resolved "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz" 2520 | integrity sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA== 2521 | dependencies: 2522 | unicode-emoji-modifier-base "^1.0.0" 2523 | 2524 | slash@^3.0.0: 2525 | version "3.0.0" 2526 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 2527 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2528 | 2529 | source-map@^0.6.1: 2530 | version "0.6.1" 2531 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 2532 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2533 | 2534 | spdx-correct@^3.0.0: 2535 | version "3.2.0" 2536 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz" 2537 | integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== 2538 | dependencies: 2539 | spdx-expression-parse "^3.0.0" 2540 | spdx-license-ids "^3.0.0" 2541 | 2542 | spdx-exceptions@^2.1.0: 2543 | version "2.5.0" 2544 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz" 2545 | integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== 2546 | 2547 | spdx-expression-parse@^3.0.0: 2548 | version "3.0.1" 2549 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" 2550 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2551 | dependencies: 2552 | spdx-exceptions "^2.1.0" 2553 | spdx-license-ids "^3.0.0" 2554 | 2555 | spdx-license-ids@^3.0.0: 2556 | version "3.0.18" 2557 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz" 2558 | integrity sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ== 2559 | 2560 | string_decoder@^1.1.1: 2561 | version "1.3.0" 2562 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" 2563 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2564 | dependencies: 2565 | safe-buffer "~5.2.0" 2566 | 2567 | string_decoder@~1.1.1: 2568 | version "1.1.1" 2569 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" 2570 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2571 | dependencies: 2572 | safe-buffer "~5.1.0" 2573 | 2574 | string-width@^4.1.0, string-width@^4.2.0: 2575 | version "4.2.3" 2576 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 2577 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2578 | dependencies: 2579 | emoji-regex "^8.0.0" 2580 | is-fullwidth-code-point "^3.0.0" 2581 | strip-ansi "^6.0.1" 2582 | 2583 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2584 | version "6.0.1" 2585 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 2586 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2587 | dependencies: 2588 | ansi-regex "^5.0.1" 2589 | 2590 | strip-final-newline@^2.0.0: 2591 | version "2.0.0" 2592 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" 2593 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2594 | 2595 | strip-indent@^3.0.0: 2596 | version "3.0.0" 2597 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" 2598 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 2599 | dependencies: 2600 | min-indent "^1.0.0" 2601 | 2602 | strip-json-comments@^3.1.1: 2603 | version "3.1.1" 2604 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 2605 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2606 | 2607 | supports-color@^5.3.0: 2608 | version "5.5.0" 2609 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 2610 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2611 | dependencies: 2612 | has-flag "^3.0.0" 2613 | 2614 | supports-color@^7.1.0: 2615 | version "7.2.0" 2616 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 2617 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2618 | dependencies: 2619 | has-flag "^4.0.0" 2620 | 2621 | supports-preserve-symlinks-flag@^1.0.0: 2622 | version "1.0.0" 2623 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 2624 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2625 | 2626 | synckit@^0.8.6: 2627 | version "0.8.8" 2628 | resolved "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz" 2629 | integrity sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ== 2630 | dependencies: 2631 | "@pkgr/core" "^0.1.0" 2632 | tslib "^2.6.2" 2633 | 2634 | tar-fs@2.1.1: 2635 | version "2.1.1" 2636 | resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz" 2637 | integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== 2638 | dependencies: 2639 | chownr "^1.1.1" 2640 | mkdirp-classic "^0.5.2" 2641 | pump "^3.0.0" 2642 | tar-stream "^2.1.4" 2643 | 2644 | tar-stream@^2.1.4, tar-stream@^2.2.0: 2645 | version "2.2.0" 2646 | resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz" 2647 | integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== 2648 | dependencies: 2649 | bl "^4.0.3" 2650 | end-of-stream "^1.4.1" 2651 | fs-constants "^1.0.0" 2652 | inherits "^2.0.3" 2653 | readable-stream "^3.1.1" 2654 | 2655 | text-table@^0.2.0: 2656 | version "0.2.0" 2657 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 2658 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2659 | 2660 | through@^2.3.6, through@^2.3.8: 2661 | version "2.3.8" 2662 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" 2663 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 2664 | 2665 | tmp@^0.0.33: 2666 | version "0.0.33" 2667 | resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" 2668 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 2669 | dependencies: 2670 | os-tmpdir "~1.0.2" 2671 | 2672 | to-regex-range@^5.0.1: 2673 | version "5.0.1" 2674 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2675 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2676 | dependencies: 2677 | is-number "^7.0.0" 2678 | 2679 | tr46@~0.0.3: 2680 | version "0.0.3" 2681 | resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" 2682 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 2683 | 2684 | "traverse@>=0.3.0 <0.4": 2685 | version "0.3.9" 2686 | resolved "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz" 2687 | integrity sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ== 2688 | 2689 | trim-newlines@^3.0.0: 2690 | version "3.0.1" 2691 | resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz" 2692 | integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== 2693 | 2694 | tslib@^1.8.1, tslib@^1.9.0: 2695 | version "1.14.1" 2696 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" 2697 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2698 | 2699 | tslib@^2.6.2: 2700 | version "2.6.3" 2701 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz" 2702 | integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== 2703 | 2704 | tsutils@^3.21.0: 2705 | version "3.21.0" 2706 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" 2707 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2708 | dependencies: 2709 | tslib "^1.8.1" 2710 | 2711 | type-check@^0.4.0, type-check@~0.4.0: 2712 | version "0.4.0" 2713 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 2714 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2715 | dependencies: 2716 | prelude-ls "^1.2.1" 2717 | 2718 | type-fest@^0.18.0: 2719 | version "0.18.1" 2720 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz" 2721 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== 2722 | 2723 | type-fest@^0.20.2: 2724 | version "0.20.2" 2725 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 2726 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2727 | 2728 | type-fest@^0.21.3: 2729 | version "0.21.3" 2730 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" 2731 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2732 | 2733 | type-fest@^0.6.0: 2734 | version "0.6.0" 2735 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" 2736 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 2737 | 2738 | type-fest@^0.8.1: 2739 | version "0.8.1" 2740 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" 2741 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2742 | 2743 | typescript@^5.4.3, "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", typescript@>=3: 2744 | version "5.4.5" 2745 | resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz" 2746 | integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== 2747 | 2748 | uglify-js@^3.1.4: 2749 | version "3.18.0" 2750 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.18.0.tgz" 2751 | integrity sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A== 2752 | 2753 | unbzip2-stream@1.4.3: 2754 | version "1.4.3" 2755 | resolved "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz" 2756 | integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== 2757 | dependencies: 2758 | buffer "^5.2.1" 2759 | through "^2.3.8" 2760 | 2761 | undici-types@~5.26.4: 2762 | version "5.26.5" 2763 | resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" 2764 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 2765 | 2766 | unicode-emoji-modifier-base@^1.0.0: 2767 | version "1.0.0" 2768 | resolved "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz" 2769 | integrity sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g== 2770 | 2771 | universalify@^2.0.0: 2772 | version "2.0.1" 2773 | resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" 2774 | integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== 2775 | 2776 | unzipper@^0.10.11: 2777 | version "0.10.14" 2778 | resolved "https://registry.npmjs.org/unzipper/-/unzipper-0.10.14.tgz" 2779 | integrity sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g== 2780 | dependencies: 2781 | big-integer "^1.6.17" 2782 | binary "~0.3.0" 2783 | bluebird "~3.4.1" 2784 | buffer-indexof-polyfill "~1.0.0" 2785 | duplexer2 "~0.1.4" 2786 | fstream "^1.0.12" 2787 | graceful-fs "^4.2.2" 2788 | listenercount "~1.0.1" 2789 | readable-stream "~2.3.6" 2790 | setimmediate "~1.0.4" 2791 | 2792 | uri-js@^4.2.2: 2793 | version "4.4.1" 2794 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 2795 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2796 | dependencies: 2797 | punycode "^2.1.0" 2798 | 2799 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2800 | version "1.0.2" 2801 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 2802 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2803 | 2804 | validate-npm-package-license@^3.0.1: 2805 | version "3.0.4" 2806 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" 2807 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2808 | dependencies: 2809 | spdx-correct "^3.0.0" 2810 | spdx-expression-parse "^3.0.0" 2811 | 2812 | vcards-js@^2.10.0: 2813 | version "2.10.0" 2814 | resolved "https://registry.npmjs.org/vcards-js/-/vcards-js-2.10.0.tgz" 2815 | integrity sha512-nah+xbVInVJaO6+C5PEUqaougmv8BN8aa7ZCtmVQcX6eWIZGRukckFtseXSI7KD7/nXtwkJe624y42T0r+L+AQ== 2816 | 2817 | webidl-conversions@^3.0.0: 2818 | version "3.0.1" 2819 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" 2820 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 2821 | 2822 | whatsapp-web.js@^1.28.0: 2823 | version "1.28.0" 2824 | resolved "https://registry.npmjs.org/whatsapp-web.js/-/whatsapp-web.js-1.28.0.tgz" 2825 | integrity sha512-rNIgtjjUzCFkOF2prypdkJv3tJw+vToOLjvmlRoMxyyEVlFzJvlvqpicbb5sE9ys4+vY10OzZRQscwC6rjo96w== 2826 | dependencies: 2827 | "@pedroslopez/moduleraid" "^5.0.2" 2828 | fluent-ffmpeg "2.1.2" 2829 | mime "^3.0.0" 2830 | node-fetch "^2.6.9" 2831 | node-webpmux "3.1.7" 2832 | puppeteer "^18.2.1" 2833 | optionalDependencies: 2834 | archiver "^5.3.1" 2835 | fs-extra "^10.1.0" 2836 | unzipper "^0.10.11" 2837 | 2838 | whatwg-url@^5.0.0: 2839 | version "5.0.0" 2840 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" 2841 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 2842 | dependencies: 2843 | tr46 "~0.0.3" 2844 | webidl-conversions "^3.0.0" 2845 | 2846 | which-module@^2.0.0: 2847 | version "2.0.1" 2848 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz" 2849 | integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== 2850 | 2851 | which@^1.1.1: 2852 | version "1.3.1" 2853 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" 2854 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2855 | dependencies: 2856 | isexe "^2.0.0" 2857 | 2858 | which@^2.0.1: 2859 | version "2.0.2" 2860 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2861 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2862 | dependencies: 2863 | isexe "^2.0.0" 2864 | 2865 | word-wrap@^1.2.5: 2866 | version "1.2.5" 2867 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz" 2868 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 2869 | 2870 | wordwrap@^1.0.0: 2871 | version "1.0.0" 2872 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" 2873 | integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== 2874 | 2875 | wrap-ansi@^6.2.0: 2876 | version "6.2.0" 2877 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" 2878 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2879 | dependencies: 2880 | ansi-styles "^4.0.0" 2881 | string-width "^4.1.0" 2882 | strip-ansi "^6.0.0" 2883 | 2884 | wrappy@1: 2885 | version "1.0.2" 2886 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2887 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2888 | 2889 | write-file-atomic@^4.0.0: 2890 | version "4.0.2" 2891 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" 2892 | integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== 2893 | dependencies: 2894 | imurmurhash "^0.1.4" 2895 | signal-exit "^3.0.7" 2896 | 2897 | ws@8.9.0: 2898 | version "8.9.0" 2899 | resolved "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz" 2900 | integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg== 2901 | 2902 | y18n@^4.0.0: 2903 | version "4.0.3" 2904 | resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" 2905 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 2906 | 2907 | yallist@^4.0.0: 2908 | version "4.0.0" 2909 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 2910 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2911 | 2912 | yargs-parser@^18.1.2: 2913 | version "18.1.3" 2914 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" 2915 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 2916 | dependencies: 2917 | camelcase "^5.0.0" 2918 | decamelize "^1.2.0" 2919 | 2920 | yargs-parser@^20.2.3: 2921 | version "20.2.9" 2922 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" 2923 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2924 | 2925 | yargs@^15.3.1: 2926 | version "15.4.1" 2927 | resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" 2928 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 2929 | dependencies: 2930 | cliui "^6.0.0" 2931 | decamelize "^1.2.0" 2932 | find-up "^4.1.0" 2933 | get-caller-file "^2.0.1" 2934 | require-directory "^2.1.1" 2935 | require-main-filename "^2.0.0" 2936 | set-blocking "^2.0.0" 2937 | string-width "^4.2.0" 2938 | which-module "^2.0.0" 2939 | y18n "^4.0.0" 2940 | yargs-parser "^18.1.2" 2941 | 2942 | yauzl@^2.10.0: 2943 | version "2.10.0" 2944 | resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz" 2945 | integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== 2946 | dependencies: 2947 | buffer-crc32 "~0.2.3" 2948 | fd-slicer "~1.1.0" 2949 | 2950 | yocto-queue@^0.1.0: 2951 | version "0.1.0" 2952 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 2953 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2954 | 2955 | zip-stream@^4.1.0: 2956 | version "4.1.1" 2957 | resolved "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz" 2958 | integrity sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ== 2959 | dependencies: 2960 | archiver-utils "^3.0.4" 2961 | compress-commons "^4.1.2" 2962 | readable-stream "^3.6.0" 2963 | --------------------------------------------------------------------------------