├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── epiphany_tests.yml │ ├── playwright_macos_tests.yml │ ├── playwright_ubuntu_headless_tests.yml │ ├── playwright_ubuntu_tests.yml │ ├── playwright_webkit_macos_tests.yml │ ├── playwright_windows_tests.yml │ └── safari_tests.yml ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── scripts ├── CloseSafariTab.scpt └── LaunchSafari.scpt └── test ├── auto_detect_test.conf.js ├── browser_test.js ├── epiphany_test.conf.js ├── playwright_headless_test.conf.js ├── playwright_test.conf.js ├── playwright_test.js ├── safari_test.conf.js └── safari_test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "eslint:recommended", 4 | "google", 5 | "plugin:@typescript-eslint/eslint-recommended", 6 | "plugin:@typescript-eslint/recommended", 7 | "plugin:prettier/recommended" 8 | ], 9 | "parser": "@typescript-eslint/parser", 10 | "plugins": ["@typescript-eslint/eslint-plugin"], 11 | "parserOptions": { 12 | "ecmaVersion": 2021 13 | }, 14 | "rules": { 15 | "no-unused-vars": [ 16 | 2, 17 | { 18 | "args": "after-used", 19 | "argsIgnorePattern": "^opt_", 20 | "varsIgnorePattern": "_unused$" 21 | } 22 | ], 23 | "no-console": 0, 24 | "camelcase": [0, { "properties": "never" }], 25 | "new-cap": [ 26 | 2, 27 | { 28 | "newIsCapExceptions": [] 29 | } 30 | ], 31 | "@typescript-eslint/no-var-requires": "off" 32 | }, 33 | "env": { 34 | "browser": false, 35 | "node": true, 36 | "es2021": true 37 | }, 38 | "globals": {}, 39 | "settings": {}, 40 | "overrides": [ 41 | { 42 | "files": ["**/*_test.js"], 43 | "env": { 44 | "browser": true, 45 | "node": true, 46 | "es2020": true, 47 | "jasmine": true 48 | } 49 | } 50 | ] 51 | } 52 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | *.js text eol=lf 7 | *.soy text eol=lf 8 | *.c text 9 | *.h text 10 | 11 | # Declare files that will always have CRLF line endings on checkout. 12 | *.sln text eol=crlf 13 | 14 | # Denote all files that are truly binary and should not be modified. 15 | *.png binary 16 | *.jpg binary 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/workflows/epiphany_tests.yml: -------------------------------------------------------------------------------- 1 | name: Epiphany Tests 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Epiphany tests on Ubuntu 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Update packages 28 | run: sudo apt-get update 29 | 30 | - name: Install Epiphany Browser 31 | run: sudo apt-get install epiphany-browser 32 | 33 | - name: Install dependencies 34 | run: npm ci 35 | 36 | - name: Run unit tests with XVFB 37 | run: xvfb-run -a npm run test:epiphany 38 | -------------------------------------------------------------------------------- /.github/workflows/playwright_macos_tests.yml: -------------------------------------------------------------------------------- 1 | name: Playwright Tests on macos-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: macos-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Install Playwright dependencies 28 | run: npx playwright install-deps 29 | 30 | - name: Setup Playwright 31 | run: npx playwright install 32 | 33 | - name: Install dependencies 34 | run: npm ci 35 | 36 | - name: Run unit tests 37 | run: npm run test 38 | -------------------------------------------------------------------------------- /.github/workflows/playwright_ubuntu_headless_tests.yml: -------------------------------------------------------------------------------- 1 | name: Playwright Tests (headless) on ubuntu-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Update packages 28 | run: sudo apt-get update 29 | 30 | - name: Install Playwright dependencies 31 | run: npx playwright install-deps 32 | 33 | - name: Setup Playwright 34 | run: npx playwright install 35 | 36 | - name: Install dependencies 37 | run: npm ci 38 | 39 | - name: Run unit tests 40 | run: npm run test:playwright_headless 41 | -------------------------------------------------------------------------------- /.github/workflows/playwright_ubuntu_tests.yml: -------------------------------------------------------------------------------- 1 | name: Playwright Tests on ubuntu-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: ubuntu-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Update packages 28 | run: sudo apt-get update 29 | 30 | - name: Install Playwright dependencies 31 | run: npx playwright install-deps 32 | 33 | - name: Setup Playwright 34 | run: npx playwright install 35 | 36 | - name: Install dependencies 37 | run: npm ci 38 | 39 | - name: Run unit tests with XVFB 40 | run: xvfb-run -a npm run test 41 | -------------------------------------------------------------------------------- /.github/workflows/playwright_webkit_macos_tests.yml: -------------------------------------------------------------------------------- 1 | name: Playwright Tests (webkit) on macos-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: macos-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Setup Playwright 28 | run: npx playwright-webkit install 29 | 30 | - name: Install dependencies 31 | run: npm ci 32 | 33 | - name: Run unit tests 34 | run: npm run test 35 | -------------------------------------------------------------------------------- /.github/workflows/playwright_windows_tests.yml: -------------------------------------------------------------------------------- 1 | name: Playwright Tests on windows-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: windows-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Install Playwright dependencies 28 | run: npx playwright install-deps 29 | 30 | - name: Setup Playwright 31 | run: npx playwright install 32 | 33 | - name: Install dependencies 34 | run: npm ci 35 | 36 | - name: Run unit tests 37 | run: npm run test 38 | -------------------------------------------------------------------------------- /.github/workflows/safari_tests.yml: -------------------------------------------------------------------------------- 1 | name: Safari Tests on macos-latest 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | jobs: 10 | run-tests: 11 | name: Run Playwright tests 12 | runs-on: macos-latest 13 | 14 | strategy: 15 | matrix: 16 | node: [18, 20] 17 | 18 | steps: 19 | - name: Check out Git repository 20 | uses: actions/checkout@v3 21 | 22 | - name: Setup Node.js 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: ${{ matrix.node }} 26 | 27 | - name: Install dependencies 28 | run: npm ci 29 | 30 | - name: Run unit tests 31 | run: npm run test:safari 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.stackdump 2 | .DS_Store 3 | .c9 4 | .nyc_output 5 | .project 6 | .settings 7 | Thumbs.db 8 | coverage 9 | node_modules 10 | npm-debug.log 11 | runtime 12 | temp 13 | tmp 14 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.tgz 3 | 4 | CONTRIBUTING.md 5 | test/ 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2, 3 | "editor.rulers": [80], 4 | "editor.defaultFormatter": "esbenp.prettier-vscode", 5 | "files.trimFinalNewlines": true, 6 | "files.trimTrailingWhitespace": true, 7 | "files.insertFinalNewline": true, 8 | "cSpell.words": [ 9 | "Bordihn", 10 | "camelcase", 11 | "compat", 12 | "fileoverview", 13 | "Markus", 14 | "osascript", 15 | "postupgrade", 16 | "scpt", 17 | "uuidv" 18 | ], 19 | "cSpell.ignorePaths": ["*.yml", ".vscode", "node_modules"] 20 | } 21 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ============= 3 | 4 | Want to contribute? Great! First, read this page (including the small print at 5 | the end). 6 | 7 | Before you contribute 8 | ---------------------- 9 | 10 | Before we can use your code, you must sign the 11 | [Google Individual Contributor License Agreement](https://cla.developers.google.com/about/google-individual) 12 | (CLA), which you can do online. The CLA is necessary mainly because you own the 13 | copyright to your changes, even after your contribution becomes part of our 14 | codebase, so we need your permission to use and distribute your code. We also 15 | need to be sure of various other things -- for instance that you'll tell us if 16 | you know that your code infringes on other people's patents. You don't have to 17 | sign the CLA until after you've submitted your code for review and a member has 18 | approved it, but you must do it before we can put your code into our codebase. 19 | Before you start working on a larger contribution, you should get in touch with 20 | us first through the issue tracker with your idea so that we can help out and 21 | possibly guide you. Coordinating up front makes it much easier to avoid 22 | frustration later on. 23 | 24 | General Workflow 25 | ------------------- 26 | 27 | ### 1. Fork the Repo 28 | 29 | You will find more details on [Fork a Repo](https://help.github.com/articles/fork-a-repo/) 30 | 31 | ### 2. If needed, sync/rebase the branch to the master branch 32 | 33 | If the branch is even or ahead of master, you can skip this part. 34 | 35 | In the case the branch is behind master, please sync/rebase the branch with the 36 | master branch. 37 | 38 | ### 3. Add your changes 39 | 40 | Add your contribution and make sure to use as less needed commits or to squash 41 | smaller commits. 42 | 43 | ### 4. Test your changes 44 | 45 | Please make sure your changes are working as expect and add additional unit or 46 | general tests to the test directory if needed. 47 | 48 | ### 5. Create a pull request for the forked branch 49 | 50 | If everything works as expect, create a pull request for your forked branch. 51 | See: [Creating a pull request](https://help.github.com/articles/creating-a-pull-request/) 52 | 53 | ### 6. Merging into master branch 54 | 55 | Depending on the change it could take up to 1 week before your change is merged 56 | into the master branch and part of the bundled application. 57 | 58 | Code reviews 59 | ------------- 60 | 61 | All submissions, including submissions by project members, require review. We 62 | use GitHub pull requests for this purpose. 63 | 64 | The small print 65 | ---------------- 66 | 67 | Contributions made by corporations are covered by a different agreement than 68 | the one above, the 69 | [Software Grant and Corporate Contributor License Agreement](https://cla.developers.google.com/about/google-corporate). 70 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # karma-webkit-launcher 2 | 3 | [![Build status: Playwright (MacOS)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_macos_tests.yml/badge.svg)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_macos_tests.yml) 4 | [![Build status: Playwright (Ubuntu)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_ubuntu_tests.yml/badge.svg)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_ubuntu_tests.yml) 5 | [![Build status: Playwright (Windows)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_windows_tests.yml/badge.svg)](https://github.com/google/karma-webkit-launcher/actions/workflows/playwright_windows_tests.yml) 6 | [![Build status: Epiphany](https://github.com/google/karma-webkit-launcher/actions/workflows/epiphany_tests.yml/badge.svg)](https://github.com/google/karma-webkit-launcher/actions/workflows/epiphany_tests.yml) 7 | [![NPM version](https://img.shields.io/npm/v/karma-webkit-launcher.svg)](https://www.npmjs.org/package/karma-webkit-launcher) 8 | 9 | [![NPM](https://nodei.co/npm/karma-webkit-launcher.png?downloads=true&downloadRank=true)](https://nodei.co/npm/karma-webkit-launcher/) 10 | 11 | Karma Launcher for Apple's Webkit 12 | 13 | ## Installation 14 | 15 | The easiest way is to keep karma-webkit-launcher as a devDependency in your package.json, by running 16 | 17 | ```bash 18 | npm install karma-webkit-launcher --save-dev 19 | ``` 20 | 21 | ## Supported WebKit-Launcher 22 | 23 | This karma-webkit-launcher provides the following browser launcher. 24 | 25 | | Karma Runner Browsers | ENV | Type | CI note | 26 | | --------------------- | ------------------- | ----------------------------------------------------------------- | -------------- | 27 | | WebKit | WEBKIT_BIN | Native / [Playwright][playwright] / [Safari][safari] (MacOS only) | - | 28 | | WebKitHeadless | WEBKIT_HEADLESS_BIN | Native / [Playwright][playwright] | - | 29 | | Safari | SAFARI_BIN | Native MacOS only | not supported | 30 | | Epiphany | EPIPHANY_BIN | Native Ubuntu only | needs xvfb-run | 31 | 32 | ## Configuration 33 | 34 | For the configuration just add `Webkit` or `WebkitHeadless` in your browser list. 35 | 36 | ```js 37 | // karma.conf.js 38 | export default (config) => { 39 | config.set({ 40 | browsers: ['Webkit'], // You may use 'WebkitHeadless' or other supported browser 41 | ``` 42 | 43 | You can pass the list of browsers as a CLI argument too: 44 | 45 | ```bash 46 | karma start --browsers Webkit 47 | ``` 48 | 49 | ## Headless Webkit with Playwright / Playwright-Webkit 50 | 51 | [Playwright](https://github.com/microsoft/playwright) is a Node.js library to automate Chromium, Firefox and WebKit with a single API. Playwright is built to enable cross-browser web automation that is ever-green, capable, reliable and fast. 52 | 53 | Headless execution is supported for all the browsers on all platforms. 54 | Check out [system requirements](https://playwright.dev/docs/intro/#system-requirements) for details. 55 | 56 | If no environment variable is set and Playwright is available, it will be automatically utilized. 57 | Additionally, if you exclusively intend to perform WebKit testing, you can install 'playwright-webkit' exclusively for that purpose. 58 | 59 | ### Example Usage 60 | 61 | #### Installing Playwright and karma-webkit-launcher 62 | 63 | ```bash 64 | npm install playwright karma-webkit-launcher --save-dev 65 | ``` 66 | 67 | #### Example Karma configuration 68 | 69 | ```js 70 | // karma.conf.js 71 | module.exports = function (config) { 72 | config.set({ 73 | browsers: ["WebkitHeadless"], 74 | }); 75 | }; 76 | ``` 77 | 78 | ### Manually define Playwright executable 79 | 80 | To force the use of Playwright over an local Webkit instance, just overwrite the `WEBKIT_HEADLESS_BIN` or `WEBKIT_BIN` environment variable. 81 | 82 | ```js 83 | // karma.conf.js 84 | import playwright from "playwright"; 85 | process.env.WEBKIT_HEADLESS_BIN = playwright.webkit.executablePath(); 86 | 87 | module.exports = function (config) { 88 | config.set({ 89 | browsers: ["WebkitHeadless"], 90 | }); 91 | }; 92 | ``` 93 | 94 | ## Advanced Topics 95 | 96 | ### Detected if Safari or Playwright is used 97 | 98 | In some instances it is helpful to detect if Playwright or a real Safari Browser is used. 99 | For this reason it's possible to detect which kind of browser is currently running the tests over this runner. 100 | 101 | ```javascript 102 | if ( 103 | new URLSearchParams(document.referrer || window.location.search).get( 104 | "test_browser" 105 | ) == "Playwright" 106 | ) { 107 | // Playwright specific tests 108 | } 109 | ``` 110 | 111 | See: [Playwright Karma Test](test/playwright_test.js) 112 | 113 | ```javascript 114 | if ( 115 | new URLSearchParams(document.referrer || window.location.search).get( 116 | "test_browser" 117 | ) == "Safari" 118 | ) { 119 | // Safari specific tests 120 | } 121 | ``` 122 | 123 | See: [Safari Karma Test](test/safari_test.js) 124 | 125 | For more information on Karma see the [Karma Homepage][karma]. 126 | 127 | [karma]: https://karma-runner.github.io/ 128 | [playwright]: https://playwright.dev/ 129 | [safari]: https://www.apple.com/safari/ 130 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Karma Webkit Launcher 3 | * 4 | * @license Copyright 2021 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | const child_process = require("child_process"); 22 | const os = require("os"); 23 | const path = require("path"); 24 | const { v4: uuidv4 } = require("uuid"); 25 | 26 | const isCI = require("is-ci"); 27 | 28 | /** 29 | * @return {string} 30 | */ 31 | function getTempDir() { 32 | return path.join(os.tmpdir(), uuidv4()); 33 | } 34 | 35 | /** 36 | * @return {boolean} 37 | */ 38 | const isPlaywrightAvailable = function () { 39 | try { 40 | if (require.resolve("playwright")) { 41 | return true; 42 | } 43 | } catch (e) { 44 | return false; 45 | } 46 | return false; 47 | }; 48 | 49 | /** 50 | * @return {boolean} 51 | */ 52 | const isPlaywrightCoreAvailable = function () { 53 | try { 54 | if (require.resolve("playwright-core")) { 55 | return true; 56 | } 57 | } catch (e) { 58 | return false; 59 | } 60 | return false; 61 | }; 62 | 63 | /** 64 | * @return {boolean} 65 | */ 66 | const isPlaywrightWebkitAvailable = function () { 67 | try { 68 | if (require.resolve("playwright-webkit")) { 69 | return true; 70 | } 71 | } catch (e) { 72 | return false; 73 | } 74 | return false; 75 | }; 76 | 77 | /** 78 | * @return {String} 79 | */ 80 | const getPlaywrightExecutable = function () { 81 | if (isPlaywrightAvailable()) { 82 | const playwright = require("playwright"); 83 | return playwright.webkit.executablePath(); 84 | } else if (isPlaywrightWebkitAvailable()) { 85 | const playwright = require("playwright-webkit"); 86 | return playwright.webkit.executablePath(); 87 | } else if (isPlaywrightCoreAvailable()) { 88 | const playwright = require("playwright-core"); 89 | return playwright.webkit.executablePath(); 90 | } 91 | }; 92 | 93 | /** 94 | * @return {String} 95 | */ 96 | const getWebkitExecutable = function () { 97 | if ( 98 | isPlaywrightAvailable() || 99 | isPlaywrightWebkitAvailable() || 100 | isPlaywrightCoreAvailable() 101 | ) { 102 | return getPlaywrightExecutable(); 103 | } else if (process.platform == "darwin") { 104 | return "/usr/bin/osascript"; 105 | } 106 | return ""; 107 | }; 108 | 109 | /** 110 | * @return {boolean} 111 | */ 112 | const hasSafariEnv = function () { 113 | return process.env?.SAFARI_BIN !== ""; 114 | }; 115 | 116 | /** 117 | * @return {boolean} 118 | */ 119 | const hasWebkitEnv = function () { 120 | return process.env?.WEBKIT_BIN ?? false; 121 | }; 122 | 123 | /** 124 | * @return {boolean} 125 | */ 126 | const hasWebkitHeadlessEnv = function () { 127 | return ( 128 | process.env?.WEBPACK_HEADLESS_BIN && process.env.WEBKIT_HEADLESS_BIN != "" 129 | ); 130 | }; 131 | 132 | /** 133 | * @param {String} url 134 | * @param {String} test_browser 135 | * @return {URL} 136 | */ 137 | const addTestBrowserInformation = function (url, test_browser) { 138 | const newURL = new URL(url); 139 | newURL.searchParams.append("test_browser", test_browser); 140 | return newURL; 141 | }; 142 | 143 | /** 144 | * Safari Browser definition. 145 | * @param {*} baseBrowserDecorator 146 | * @param {*} args 147 | */ 148 | const SafariBrowser = function (baseBrowserDecorator, args) { 149 | baseBrowserDecorator(this); 150 | let testUrl; 151 | 152 | this._start = (url) => { 153 | const flags = args.flags || []; 154 | const command = this._getCommand(); 155 | testUrl = addTestBrowserInformation(url, "Safari"); 156 | if (command?.endsWith("osascript")) { 157 | if (process.platform != "darwin") { 158 | console.warn( 159 | `The platform ${process.platform}, is unsupported for SafariBrowser.`, 160 | ); 161 | } 162 | if (isCI) { 163 | console.warn( 164 | `Depending on the CI system, it could be that you need to disable SIP to allow the execution of AppleScripts!`, 165 | ); 166 | } 167 | this._execCommand( 168 | this._getCommand(), 169 | [path.resolve(__dirname, "scripts/LaunchSafari.scpt"), testUrl].concat( 170 | flags, 171 | ), 172 | ); 173 | } else { 174 | this._execCommand( 175 | this._getCommand(), 176 | [testUrl, "--user-data-dir=" + getTempDir()].concat(flags), 177 | ); 178 | } 179 | }; 180 | 181 | this.on("kill", (done) => { 182 | // Close opened tabs if open by osascript. 183 | if ( 184 | process.platform == "darwin" && 185 | this._getCommand().endsWith("osascript") 186 | ) { 187 | closeSafariTab(testUrl); 188 | } 189 | done(); 190 | }); 191 | 192 | this.on("done", () => { 193 | // Close opened tabs if open by osascript. 194 | if ( 195 | process.platform == "darwin" && 196 | this._getCommand().endsWith("osascript") 197 | ) { 198 | closeSafariTab(testUrl); 199 | } 200 | }); 201 | }; 202 | 203 | SafariBrowser.prototype = { 204 | name: "Safari", 205 | DEFAULT_CMD: { 206 | darwin: !hasSafariEnv() ? "/usr/bin/osascript" : "", 207 | }, 208 | ENV_CMD: "SAFARI_BIN", 209 | }; 210 | 211 | SafariBrowser.$inject = ["baseBrowserDecorator", "args"]; 212 | 213 | /** 214 | * Webkit Browser definition. 215 | * @param {*} baseBrowserDecorator 216 | * @param {*} args 217 | */ 218 | const WebkitBrowser = function (baseBrowserDecorator, args) { 219 | // Automatically switch to Safari, if osascript is used and not headless mode. 220 | if ( 221 | (args?.flags ? !args.flags.join(" ").includes("--headless") : true) && 222 | process.platform == "darwin" && 223 | !hasWebkitEnv() && 224 | getWebkitExecutable().endsWith("osascript") 225 | ) { 226 | SafariBrowser.call(this, baseBrowserDecorator, args); 227 | return; 228 | } 229 | 230 | baseBrowserDecorator(this); 231 | let testUrl; 232 | 233 | this._start = (url) => { 234 | const command = this._getCommand(); 235 | 236 | // Add used browser to test url. 237 | if (command?.includes("ms-playwright")) { 238 | testUrl = addTestBrowserInformation(url, "Playwright"); 239 | } else { 240 | testUrl = addTestBrowserInformation(url, "Custom"); 241 | } 242 | 243 | const flags = args.flags || []; 244 | this._execCommand( 245 | this._getCommand(), 246 | [testUrl, "--user-data-dir=" + getTempDir()].concat(flags), 247 | ); 248 | }; 249 | 250 | this.on("kill", (done) => { 251 | // On Linux build machines, the bash process that starts the browser may 252 | // exit without terminating it. See issue #12 253 | if (process.platform === "linux") { 254 | killOrphanedMiniBrowser(done); 255 | return; 256 | } 257 | // Clean up all remaining processes after 500ms delay on normal clients. 258 | if (!isCI) { 259 | childProcessCleanup(this.id, done); 260 | } else { 261 | done(); 262 | } 263 | }); 264 | 265 | this.on("done", () => { 266 | // Clean up all remaining processes after 500ms delay on normal clients. 267 | if (!isCI) { 268 | childProcessCleanup(this.id); 269 | } 270 | }); 271 | }; 272 | 273 | WebkitBrowser.prototype = { 274 | name: "Webkit", 275 | DEFAULT_CMD: { 276 | linux: !hasWebkitEnv() ? getPlaywrightExecutable() : "", 277 | darwin: !hasWebkitEnv() ? getWebkitExecutable() : "", 278 | win32: !hasWebkitEnv() ? getPlaywrightExecutable() : "", 279 | }, 280 | ENV_CMD: "WEBKIT_BIN", 281 | }; 282 | 283 | WebkitBrowser.$inject = ["baseBrowserDecorator", "args"]; 284 | 285 | /** 286 | * Webkit Headless Browser definition. 287 | * @param {*} baseBrowserDecorator 288 | * @param {*} args 289 | */ 290 | const WebkitHeadlessBrowser = function (baseBrowserDecorator, args) { 291 | const headlessFlags = ["--headless"]; 292 | if (process.platform == "darwin" || process.platform == "win32") { 293 | headlessFlags.push("--disable-gpu"); 294 | } 295 | if (args?.flags?.length > 0) { 296 | args.flags = args.flags.concat(headlessFlags); 297 | } else { 298 | args = {}; 299 | args.flags = headlessFlags; 300 | } 301 | WebkitBrowser.call(this, baseBrowserDecorator, args); 302 | }; 303 | 304 | WebkitHeadlessBrowser.prototype = { 305 | name: "WebkitHeadless", 306 | DEFAULT_CMD: { 307 | linux: !hasWebkitHeadlessEnv() ? getPlaywrightExecutable() : "", 308 | darwin: !hasWebkitHeadlessEnv() ? getPlaywrightExecutable() : "", 309 | win32: !hasWebkitHeadlessEnv() ? getPlaywrightExecutable() : "", 310 | }, 311 | ENV_CMD: "WEBKIT_HEADLESS_BIN", 312 | }; 313 | 314 | WebkitHeadlessBrowser.$inject = ["baseBrowserDecorator", "args"]; 315 | 316 | /** 317 | * Epiphany Browser definition. 318 | * @param {*} baseBrowserDecorator 319 | * @param {*} args 320 | */ 321 | const EpiphanyBrowser = function (baseBrowserDecorator, args) { 322 | baseBrowserDecorator(this); 323 | let testUrl; 324 | 325 | this.on("start", (url) => { 326 | testUrl = addTestBrowserInformation(url, "Epiphany"); 327 | const flags = args.flags || []; 328 | this._execCommand( 329 | this._getCommand(), 330 | [testUrl, "--profile=" + getTempDir()].concat(flags), 331 | ); 332 | }); 333 | }; 334 | 335 | EpiphanyBrowser.prototype = { 336 | name: "Epiphany", 337 | DEFAULT_CMD: { 338 | linux: "/usr/bin/epiphany", 339 | }, 340 | ENV_CMD: "EPIPHANY_BIN", 341 | }; 342 | 343 | EpiphanyBrowser.$inject = ["baseBrowserDecorator", "args"]; 344 | 345 | /** 346 | * @param {string} url 347 | */ 348 | const closeSafariTab = function (url) { 349 | if (!url || url == "") { 350 | return; 351 | } 352 | const findChildProcesses = `osascript ${path.resolve( 353 | __dirname, 354 | "scripts/CloseSafariTab.scpt", 355 | )} "${url}"`; 356 | child_process.exec(findChildProcesses, (error) => { 357 | if (error && error.signal != "SIGHUP") { 358 | throw error; 359 | } 360 | }); 361 | }; 362 | 363 | /** 364 | * Cleans up child processes related to the Playwright task ID. 365 | * @param {number} task_id - The task ID to search for. 366 | * @param {function} callback - An optional callback function to execute after cleanup. 367 | */ 368 | const childProcessCleanup = function (task_id, callback) { 369 | const isCallbackDefined = callback && typeof callback === "function"; 370 | 371 | if (process.platform !== "darwin") { 372 | if (isCallbackDefined) { 373 | callback(); 374 | } 375 | return; 376 | } 377 | 378 | // Find all related child process for playwright based on the task id. 379 | const findChildProcesses = `ps | grep -i "playwright" | grep -i "id=${task_id}"`; 380 | child_process.exec(findChildProcesses, (error, stdout) => { 381 | // Ignore error from killed karma processes. 382 | if (error && error.signal != "SIGHUP") { 383 | throw error; 384 | } 385 | 386 | // Check process list for relevant entries. 387 | if ( 388 | stdout?.toLowerCase()?.includes("playwright") && 389 | stdout.includes(task_id) 390 | ) { 391 | // Extract relevant child process ids. 392 | const childProcessIds = stdout.match(/^\s?(\d)+\s?/gm); 393 | if (childProcessIds && childProcessIds.length > 0) { 394 | killChildProcesses(childProcessIds, task_id); 395 | 396 | // Allow 500ms for the processes to close before calling the callback. 397 | if (isCallbackDefined) { 398 | setTimeout(callback, 500); 399 | } 400 | } else if (isCallbackDefined) { 401 | callback(); 402 | } 403 | } else if (isCallbackDefined) { 404 | callback(); 405 | } 406 | }); 407 | }; 408 | 409 | /** 410 | * @param {Array} childProcessIds 411 | * @param {String} task_id 412 | */ 413 | const killChildProcesses = function (childProcessIds, task_id = "unknown") { 414 | if (!childProcessIds || childProcessIds.length <= 0) { 415 | return; 416 | } 417 | 418 | childProcessIds.forEach((childProcessId) => { 419 | // Check if the process is still valid with a 0 kill signal. 420 | try { 421 | process.kill(childProcessId, 0); 422 | } catch (error) { 423 | if (error.code === "EPERM") { 424 | console.error( 425 | `No permission to kill child process ${childProcessId} for karma-task ${task_id}`, 426 | ); 427 | } 428 | return; 429 | } 430 | 431 | // Killing child process, if there are no permission error. 432 | try { 433 | process.kill(childProcessId, "SIGHUP"); 434 | } catch (killError) { 435 | // Ignore errors if process is already killed. 436 | if (killError.code != "ESRCH") { 437 | throw killError; 438 | } 439 | } 440 | }); 441 | }; 442 | 443 | const killOrphanedMiniBrowser = function (callback) { 444 | // The ps call's output is formatted as follows: 445 | // PID PPID COMMAND 446 | // 8686 1 MiniBrowser 447 | // A parent process id of 1 indicates it was orphaned 448 | child_process.exec( 449 | 'ps -eo pid,ppid,comm | grep -w "1 MiniBrowser"', 450 | (error, stdout) => { 451 | if (error) { 452 | throw error; 453 | } 454 | 455 | if (stdout?.includes("MiniBrowser")) { 456 | // Extract process id 457 | const match = stdout.match(/\b\d+\b/); 458 | if (match) { 459 | // This kills any process, not just child processes. 460 | killChildProcesses(match); 461 | } 462 | } 463 | callback(); 464 | }, 465 | ); 466 | }; 467 | 468 | module.exports = { 469 | "launcher:Epiphany": ["type", EpiphanyBrowser], 470 | "launcher:Safari": ["type", SafariBrowser], 471 | "launcher:Webkit": ["type", WebkitBrowser], 472 | "launcher:WebkitHeadless": ["type", WebkitHeadlessBrowser], 473 | }; 474 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "karma-webkit-launcher", 3 | "version": "2.6.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "karma-webkit-launcher", 9 | "version": "2.6.0", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "is-ci": "^3.0.1", 13 | "uuid": "^10.0.0" 14 | }, 15 | "devDependencies": { 16 | "@typescript-eslint/eslint-plugin": "^7.16.0", 17 | "eslint": "^8.56.0", 18 | "eslint-config-google": "^0.14.0", 19 | "eslint-config-prettier": "^9.1.0", 20 | "eslint-plugin-prettier": "^5.1.3", 21 | "karma": "^6.4.3", 22 | "karma-jasmine": "^5.1.0", 23 | "playwright-webkit": "^1.45.1", 24 | "prettier": "^3.3.2" 25 | }, 26 | "peerDependenciesMeta": { 27 | "playwright": { 28 | "optional": true 29 | } 30 | } 31 | }, 32 | "node_modules/@colors/colors": { 33 | "version": "1.5.0", 34 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", 35 | "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", 36 | "dev": true, 37 | "engines": { 38 | "node": ">=0.1.90" 39 | } 40 | }, 41 | "node_modules/@eslint-community/eslint-utils": { 42 | "version": "4.4.0", 43 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 44 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 45 | "dev": true, 46 | "dependencies": { 47 | "eslint-visitor-keys": "^3.3.0" 48 | }, 49 | "engines": { 50 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 51 | }, 52 | "peerDependencies": { 53 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 54 | } 55 | }, 56 | "node_modules/@eslint-community/regexpp": { 57 | "version": "4.11.0", 58 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", 59 | "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", 60 | "dev": true, 61 | "engines": { 62 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 63 | } 64 | }, 65 | "node_modules/@eslint/eslintrc": { 66 | "version": "2.1.4", 67 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 68 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 69 | "dev": true, 70 | "dependencies": { 71 | "ajv": "^6.12.4", 72 | "debug": "^4.3.2", 73 | "espree": "^9.6.0", 74 | "globals": "^13.19.0", 75 | "ignore": "^5.2.0", 76 | "import-fresh": "^3.2.1", 77 | "js-yaml": "^4.1.0", 78 | "minimatch": "^3.1.2", 79 | "strip-json-comments": "^3.1.1" 80 | }, 81 | "engines": { 82 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 83 | }, 84 | "funding": { 85 | "url": "https://opencollective.com/eslint" 86 | } 87 | }, 88 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 89 | "version": "1.1.11", 90 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 91 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 92 | "dev": true, 93 | "dependencies": { 94 | "balanced-match": "^1.0.0", 95 | "concat-map": "0.0.1" 96 | } 97 | }, 98 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 99 | "version": "3.1.2", 100 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 101 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 102 | "dev": true, 103 | "dependencies": { 104 | "brace-expansion": "^1.1.7" 105 | }, 106 | "engines": { 107 | "node": "*" 108 | } 109 | }, 110 | "node_modules/@eslint/js": { 111 | "version": "8.57.0", 112 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 113 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 114 | "dev": true, 115 | "engines": { 116 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 117 | } 118 | }, 119 | "node_modules/@humanwhocodes/config-array": { 120 | "version": "0.11.14", 121 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 122 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 123 | "deprecated": "Use @eslint/config-array instead", 124 | "dev": true, 125 | "dependencies": { 126 | "@humanwhocodes/object-schema": "^2.0.2", 127 | "debug": "^4.3.1", 128 | "minimatch": "^3.0.5" 129 | }, 130 | "engines": { 131 | "node": ">=10.10.0" 132 | } 133 | }, 134 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 135 | "version": "1.1.11", 136 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 137 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 138 | "dev": true, 139 | "dependencies": { 140 | "balanced-match": "^1.0.0", 141 | "concat-map": "0.0.1" 142 | } 143 | }, 144 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 145 | "version": "3.1.2", 146 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 147 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 148 | "dev": true, 149 | "dependencies": { 150 | "brace-expansion": "^1.1.7" 151 | }, 152 | "engines": { 153 | "node": "*" 154 | } 155 | }, 156 | "node_modules/@humanwhocodes/module-importer": { 157 | "version": "1.0.1", 158 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 159 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 160 | "dev": true, 161 | "engines": { 162 | "node": ">=12.22" 163 | }, 164 | "funding": { 165 | "type": "github", 166 | "url": "https://github.com/sponsors/nzakas" 167 | } 168 | }, 169 | "node_modules/@humanwhocodes/object-schema": { 170 | "version": "2.0.3", 171 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 172 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 173 | "deprecated": "Use @eslint/object-schema instead", 174 | "dev": true 175 | }, 176 | "node_modules/@nodelib/fs.scandir": { 177 | "version": "2.1.5", 178 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 179 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 180 | "dev": true, 181 | "dependencies": { 182 | "@nodelib/fs.stat": "2.0.5", 183 | "run-parallel": "^1.1.9" 184 | }, 185 | "engines": { 186 | "node": ">= 8" 187 | } 188 | }, 189 | "node_modules/@nodelib/fs.stat": { 190 | "version": "2.0.5", 191 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 192 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 193 | "dev": true, 194 | "engines": { 195 | "node": ">= 8" 196 | } 197 | }, 198 | "node_modules/@nodelib/fs.walk": { 199 | "version": "1.2.8", 200 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 201 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 202 | "dev": true, 203 | "dependencies": { 204 | "@nodelib/fs.scandir": "2.1.5", 205 | "fastq": "^1.6.0" 206 | }, 207 | "engines": { 208 | "node": ">= 8" 209 | } 210 | }, 211 | "node_modules/@pkgr/core": { 212 | "version": "0.1.1", 213 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", 214 | "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", 215 | "dev": true, 216 | "engines": { 217 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 218 | }, 219 | "funding": { 220 | "url": "https://opencollective.com/unts" 221 | } 222 | }, 223 | "node_modules/@socket.io/component-emitter": { 224 | "version": "3.1.2", 225 | "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", 226 | "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==", 227 | "dev": true 228 | }, 229 | "node_modules/@types/cookie": { 230 | "version": "0.4.1", 231 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", 232 | "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", 233 | "dev": true 234 | }, 235 | "node_modules/@types/cors": { 236 | "version": "2.8.17", 237 | "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", 238 | "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", 239 | "dev": true, 240 | "dependencies": { 241 | "@types/node": "*" 242 | } 243 | }, 244 | "node_modules/@types/node": { 245 | "version": "20.14.10", 246 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.10.tgz", 247 | "integrity": "sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==", 248 | "dev": true, 249 | "dependencies": { 250 | "undici-types": "~5.26.4" 251 | } 252 | }, 253 | "node_modules/@typescript-eslint/eslint-plugin": { 254 | "version": "7.16.0", 255 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.0.tgz", 256 | "integrity": "sha512-py1miT6iQpJcs1BiJjm54AMzeuMPBSPuKPlnT8HlfudbcS5rYeX5jajpLf3mrdRh9dA/Ec2FVUY0ifeVNDIhZw==", 257 | "dev": true, 258 | "dependencies": { 259 | "@eslint-community/regexpp": "^4.10.0", 260 | "@typescript-eslint/scope-manager": "7.16.0", 261 | "@typescript-eslint/type-utils": "7.16.0", 262 | "@typescript-eslint/utils": "7.16.0", 263 | "@typescript-eslint/visitor-keys": "7.16.0", 264 | "graphemer": "^1.4.0", 265 | "ignore": "^5.3.1", 266 | "natural-compare": "^1.4.0", 267 | "ts-api-utils": "^1.3.0" 268 | }, 269 | "engines": { 270 | "node": "^18.18.0 || >=20.0.0" 271 | }, 272 | "funding": { 273 | "type": "opencollective", 274 | "url": "https://opencollective.com/typescript-eslint" 275 | }, 276 | "peerDependencies": { 277 | "@typescript-eslint/parser": "^7.0.0", 278 | "eslint": "^8.56.0" 279 | }, 280 | "peerDependenciesMeta": { 281 | "typescript": { 282 | "optional": true 283 | } 284 | } 285 | }, 286 | "node_modules/@typescript-eslint/parser": { 287 | "version": "7.16.0", 288 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.0.tgz", 289 | "integrity": "sha512-ar9E+k7CU8rWi2e5ErzQiC93KKEFAXA2Kky0scAlPcxYblLt8+XZuHUZwlyfXILyQa95P6lQg+eZgh/dDs3+Vw==", 290 | "dev": true, 291 | "peer": true, 292 | "dependencies": { 293 | "@typescript-eslint/scope-manager": "7.16.0", 294 | "@typescript-eslint/types": "7.16.0", 295 | "@typescript-eslint/typescript-estree": "7.16.0", 296 | "@typescript-eslint/visitor-keys": "7.16.0", 297 | "debug": "^4.3.4" 298 | }, 299 | "engines": { 300 | "node": "^18.18.0 || >=20.0.0" 301 | }, 302 | "funding": { 303 | "type": "opencollective", 304 | "url": "https://opencollective.com/typescript-eslint" 305 | }, 306 | "peerDependencies": { 307 | "eslint": "^8.56.0" 308 | }, 309 | "peerDependenciesMeta": { 310 | "typescript": { 311 | "optional": true 312 | } 313 | } 314 | }, 315 | "node_modules/@typescript-eslint/scope-manager": { 316 | "version": "7.16.0", 317 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz", 318 | "integrity": "sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==", 319 | "dev": true, 320 | "dependencies": { 321 | "@typescript-eslint/types": "7.16.0", 322 | "@typescript-eslint/visitor-keys": "7.16.0" 323 | }, 324 | "engines": { 325 | "node": "^18.18.0 || >=20.0.0" 326 | }, 327 | "funding": { 328 | "type": "opencollective", 329 | "url": "https://opencollective.com/typescript-eslint" 330 | } 331 | }, 332 | "node_modules/@typescript-eslint/type-utils": { 333 | "version": "7.16.0", 334 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.0.tgz", 335 | "integrity": "sha512-j0fuUswUjDHfqV/UdW6mLtOQQseORqfdmoBNDFOqs9rvNVR2e+cmu6zJu/Ku4SDuqiJko6YnhwcL8x45r8Oqxg==", 336 | "dev": true, 337 | "dependencies": { 338 | "@typescript-eslint/typescript-estree": "7.16.0", 339 | "@typescript-eslint/utils": "7.16.0", 340 | "debug": "^4.3.4", 341 | "ts-api-utils": "^1.3.0" 342 | }, 343 | "engines": { 344 | "node": "^18.18.0 || >=20.0.0" 345 | }, 346 | "funding": { 347 | "type": "opencollective", 348 | "url": "https://opencollective.com/typescript-eslint" 349 | }, 350 | "peerDependencies": { 351 | "eslint": "^8.56.0" 352 | }, 353 | "peerDependenciesMeta": { 354 | "typescript": { 355 | "optional": true 356 | } 357 | } 358 | }, 359 | "node_modules/@typescript-eslint/types": { 360 | "version": "7.16.0", 361 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz", 362 | "integrity": "sha512-fecuH15Y+TzlUutvUl9Cc2XJxqdLr7+93SQIbcZfd4XRGGKoxyljK27b+kxKamjRkU7FYC6RrbSCg0ALcZn/xw==", 363 | "dev": true, 364 | "engines": { 365 | "node": "^18.18.0 || >=20.0.0" 366 | }, 367 | "funding": { 368 | "type": "opencollective", 369 | "url": "https://opencollective.com/typescript-eslint" 370 | } 371 | }, 372 | "node_modules/@typescript-eslint/typescript-estree": { 373 | "version": "7.16.0", 374 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.0.tgz", 375 | "integrity": "sha512-a5NTvk51ZndFuOLCh5OaJBELYc2O3Zqxfl3Js78VFE1zE46J2AaVuW+rEbVkQznjkmlzWsUI15BG5tQMixzZLw==", 376 | "dev": true, 377 | "dependencies": { 378 | "@typescript-eslint/types": "7.16.0", 379 | "@typescript-eslint/visitor-keys": "7.16.0", 380 | "debug": "^4.3.4", 381 | "globby": "^11.1.0", 382 | "is-glob": "^4.0.3", 383 | "minimatch": "^9.0.4", 384 | "semver": "^7.6.0", 385 | "ts-api-utils": "^1.3.0" 386 | }, 387 | "engines": { 388 | "node": "^18.18.0 || >=20.0.0" 389 | }, 390 | "funding": { 391 | "type": "opencollective", 392 | "url": "https://opencollective.com/typescript-eslint" 393 | }, 394 | "peerDependenciesMeta": { 395 | "typescript": { 396 | "optional": true 397 | } 398 | } 399 | }, 400 | "node_modules/@typescript-eslint/utils": { 401 | "version": "7.16.0", 402 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz", 403 | "integrity": "sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==", 404 | "dev": true, 405 | "dependencies": { 406 | "@eslint-community/eslint-utils": "^4.4.0", 407 | "@typescript-eslint/scope-manager": "7.16.0", 408 | "@typescript-eslint/types": "7.16.0", 409 | "@typescript-eslint/typescript-estree": "7.16.0" 410 | }, 411 | "engines": { 412 | "node": "^18.18.0 || >=20.0.0" 413 | }, 414 | "funding": { 415 | "type": "opencollective", 416 | "url": "https://opencollective.com/typescript-eslint" 417 | }, 418 | "peerDependencies": { 419 | "eslint": "^8.56.0" 420 | } 421 | }, 422 | "node_modules/@typescript-eslint/visitor-keys": { 423 | "version": "7.16.0", 424 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz", 425 | "integrity": "sha512-rMo01uPy9C7XxG7AFsxa8zLnWXTF8N3PYclekWSrurvhwiw1eW88mrKiAYe6s53AUY57nTRz8dJsuuXdkAhzCg==", 426 | "dev": true, 427 | "dependencies": { 428 | "@typescript-eslint/types": "7.16.0", 429 | "eslint-visitor-keys": "^3.4.3" 430 | }, 431 | "engines": { 432 | "node": "^18.18.0 || >=20.0.0" 433 | }, 434 | "funding": { 435 | "type": "opencollective", 436 | "url": "https://opencollective.com/typescript-eslint" 437 | } 438 | }, 439 | "node_modules/@ungap/structured-clone": { 440 | "version": "1.2.0", 441 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 442 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 443 | "dev": true 444 | }, 445 | "node_modules/accepts": { 446 | "version": "1.3.8", 447 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 448 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 449 | "dev": true, 450 | "dependencies": { 451 | "mime-types": "~2.1.34", 452 | "negotiator": "0.6.3" 453 | }, 454 | "engines": { 455 | "node": ">= 0.6" 456 | } 457 | }, 458 | "node_modules/acorn": { 459 | "version": "8.12.1", 460 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 461 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 462 | "dev": true, 463 | "bin": { 464 | "acorn": "bin/acorn" 465 | }, 466 | "engines": { 467 | "node": ">=0.4.0" 468 | } 469 | }, 470 | "node_modules/acorn-jsx": { 471 | "version": "5.3.2", 472 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 473 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 474 | "dev": true, 475 | "peerDependencies": { 476 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 477 | } 478 | }, 479 | "node_modules/ajv": { 480 | "version": "6.12.6", 481 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 482 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 483 | "dev": true, 484 | "dependencies": { 485 | "fast-deep-equal": "^3.1.1", 486 | "fast-json-stable-stringify": "^2.0.0", 487 | "json-schema-traverse": "^0.4.1", 488 | "uri-js": "^4.2.2" 489 | }, 490 | "funding": { 491 | "type": "github", 492 | "url": "https://github.com/sponsors/epoberezkin" 493 | } 494 | }, 495 | "node_modules/ansi-regex": { 496 | "version": "5.0.1", 497 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 498 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 499 | "dev": true, 500 | "engines": { 501 | "node": ">=8" 502 | } 503 | }, 504 | "node_modules/ansi-styles": { 505 | "version": "4.3.0", 506 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 507 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 508 | "dev": true, 509 | "dependencies": { 510 | "color-convert": "^2.0.1" 511 | }, 512 | "engines": { 513 | "node": ">=8" 514 | }, 515 | "funding": { 516 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 517 | } 518 | }, 519 | "node_modules/anymatch": { 520 | "version": "3.1.3", 521 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 522 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 523 | "dev": true, 524 | "dependencies": { 525 | "normalize-path": "^3.0.0", 526 | "picomatch": "^2.0.4" 527 | }, 528 | "engines": { 529 | "node": ">= 8" 530 | } 531 | }, 532 | "node_modules/argparse": { 533 | "version": "2.0.1", 534 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 535 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 536 | "dev": true 537 | }, 538 | "node_modules/array-union": { 539 | "version": "2.1.0", 540 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 541 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 542 | "dev": true, 543 | "engines": { 544 | "node": ">=8" 545 | } 546 | }, 547 | "node_modules/balanced-match": { 548 | "version": "1.0.2", 549 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 550 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 551 | "dev": true 552 | }, 553 | "node_modules/base64id": { 554 | "version": "2.0.0", 555 | "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", 556 | "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", 557 | "dev": true, 558 | "engines": { 559 | "node": "^4.5.0 || >= 5.9" 560 | } 561 | }, 562 | "node_modules/binary-extensions": { 563 | "version": "2.3.0", 564 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 565 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 566 | "dev": true, 567 | "engines": { 568 | "node": ">=8" 569 | }, 570 | "funding": { 571 | "url": "https://github.com/sponsors/sindresorhus" 572 | } 573 | }, 574 | "node_modules/body-parser": { 575 | "version": "1.20.2", 576 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 577 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 578 | "dev": true, 579 | "dependencies": { 580 | "bytes": "3.1.2", 581 | "content-type": "~1.0.5", 582 | "debug": "2.6.9", 583 | "depd": "2.0.0", 584 | "destroy": "1.2.0", 585 | "http-errors": "2.0.0", 586 | "iconv-lite": "0.4.24", 587 | "on-finished": "2.4.1", 588 | "qs": "6.11.0", 589 | "raw-body": "2.5.2", 590 | "type-is": "~1.6.18", 591 | "unpipe": "1.0.0" 592 | }, 593 | "engines": { 594 | "node": ">= 0.8", 595 | "npm": "1.2.8000 || >= 1.4.16" 596 | } 597 | }, 598 | "node_modules/body-parser/node_modules/debug": { 599 | "version": "2.6.9", 600 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 601 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 602 | "dev": true, 603 | "dependencies": { 604 | "ms": "2.0.0" 605 | } 606 | }, 607 | "node_modules/body-parser/node_modules/ms": { 608 | "version": "2.0.0", 609 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 610 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 611 | "dev": true 612 | }, 613 | "node_modules/brace-expansion": { 614 | "version": "2.0.1", 615 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 616 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 617 | "dev": true, 618 | "dependencies": { 619 | "balanced-match": "^1.0.0" 620 | } 621 | }, 622 | "node_modules/braces": { 623 | "version": "3.0.3", 624 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 625 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 626 | "dev": true, 627 | "dependencies": { 628 | "fill-range": "^7.1.1" 629 | }, 630 | "engines": { 631 | "node": ">=8" 632 | } 633 | }, 634 | "node_modules/bytes": { 635 | "version": "3.1.2", 636 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 637 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 638 | "dev": true, 639 | "engines": { 640 | "node": ">= 0.8" 641 | } 642 | }, 643 | "node_modules/call-bind": { 644 | "version": "1.0.7", 645 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 646 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 647 | "dev": true, 648 | "dependencies": { 649 | "es-define-property": "^1.0.0", 650 | "es-errors": "^1.3.0", 651 | "function-bind": "^1.1.2", 652 | "get-intrinsic": "^1.2.4", 653 | "set-function-length": "^1.2.1" 654 | }, 655 | "engines": { 656 | "node": ">= 0.4" 657 | }, 658 | "funding": { 659 | "url": "https://github.com/sponsors/ljharb" 660 | } 661 | }, 662 | "node_modules/callsites": { 663 | "version": "3.1.0", 664 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 665 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 666 | "dev": true, 667 | "engines": { 668 | "node": ">=6" 669 | } 670 | }, 671 | "node_modules/chalk": { 672 | "version": "4.1.2", 673 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 674 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 675 | "dev": true, 676 | "dependencies": { 677 | "ansi-styles": "^4.1.0", 678 | "supports-color": "^7.1.0" 679 | }, 680 | "engines": { 681 | "node": ">=10" 682 | }, 683 | "funding": { 684 | "url": "https://github.com/chalk/chalk?sponsor=1" 685 | } 686 | }, 687 | "node_modules/chokidar": { 688 | "version": "3.6.0", 689 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 690 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 691 | "dev": true, 692 | "dependencies": { 693 | "anymatch": "~3.1.2", 694 | "braces": "~3.0.2", 695 | "glob-parent": "~5.1.2", 696 | "is-binary-path": "~2.1.0", 697 | "is-glob": "~4.0.1", 698 | "normalize-path": "~3.0.0", 699 | "readdirp": "~3.6.0" 700 | }, 701 | "engines": { 702 | "node": ">= 8.10.0" 703 | }, 704 | "funding": { 705 | "url": "https://paulmillr.com/funding/" 706 | }, 707 | "optionalDependencies": { 708 | "fsevents": "~2.3.2" 709 | } 710 | }, 711 | "node_modules/chokidar/node_modules/glob-parent": { 712 | "version": "5.1.2", 713 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 714 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 715 | "dev": true, 716 | "dependencies": { 717 | "is-glob": "^4.0.1" 718 | }, 719 | "engines": { 720 | "node": ">= 6" 721 | } 722 | }, 723 | "node_modules/ci-info": { 724 | "version": "3.9.0", 725 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 726 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 727 | "funding": [ 728 | { 729 | "type": "github", 730 | "url": "https://github.com/sponsors/sibiraj-s" 731 | } 732 | ], 733 | "engines": { 734 | "node": ">=8" 735 | } 736 | }, 737 | "node_modules/cliui": { 738 | "version": "7.0.4", 739 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 740 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 741 | "dev": true, 742 | "dependencies": { 743 | "string-width": "^4.2.0", 744 | "strip-ansi": "^6.0.0", 745 | "wrap-ansi": "^7.0.0" 746 | } 747 | }, 748 | "node_modules/color-convert": { 749 | "version": "2.0.1", 750 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 751 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 752 | "dev": true, 753 | "dependencies": { 754 | "color-name": "~1.1.4" 755 | }, 756 | "engines": { 757 | "node": ">=7.0.0" 758 | } 759 | }, 760 | "node_modules/color-name": { 761 | "version": "1.1.4", 762 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 763 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 764 | "dev": true 765 | }, 766 | "node_modules/concat-map": { 767 | "version": "0.0.1", 768 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 769 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 770 | "dev": true 771 | }, 772 | "node_modules/connect": { 773 | "version": "3.7.0", 774 | "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", 775 | "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", 776 | "dev": true, 777 | "dependencies": { 778 | "debug": "2.6.9", 779 | "finalhandler": "1.1.2", 780 | "parseurl": "~1.3.3", 781 | "utils-merge": "1.0.1" 782 | }, 783 | "engines": { 784 | "node": ">= 0.10.0" 785 | } 786 | }, 787 | "node_modules/connect/node_modules/debug": { 788 | "version": "2.6.9", 789 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 790 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 791 | "dev": true, 792 | "dependencies": { 793 | "ms": "2.0.0" 794 | } 795 | }, 796 | "node_modules/connect/node_modules/ms": { 797 | "version": "2.0.0", 798 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 799 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 800 | "dev": true 801 | }, 802 | "node_modules/content-type": { 803 | "version": "1.0.5", 804 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 805 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 806 | "dev": true, 807 | "engines": { 808 | "node": ">= 0.6" 809 | } 810 | }, 811 | "node_modules/cookie": { 812 | "version": "0.4.2", 813 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", 814 | "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", 815 | "dev": true, 816 | "engines": { 817 | "node": ">= 0.6" 818 | } 819 | }, 820 | "node_modules/cors": { 821 | "version": "2.8.5", 822 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 823 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 824 | "dev": true, 825 | "dependencies": { 826 | "object-assign": "^4", 827 | "vary": "^1" 828 | }, 829 | "engines": { 830 | "node": ">= 0.10" 831 | } 832 | }, 833 | "node_modules/cross-spawn": { 834 | "version": "7.0.3", 835 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 836 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 837 | "dev": true, 838 | "dependencies": { 839 | "path-key": "^3.1.0", 840 | "shebang-command": "^2.0.0", 841 | "which": "^2.0.1" 842 | }, 843 | "engines": { 844 | "node": ">= 8" 845 | } 846 | }, 847 | "node_modules/custom-event": { 848 | "version": "1.0.1", 849 | "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", 850 | "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==", 851 | "dev": true 852 | }, 853 | "node_modules/date-format": { 854 | "version": "4.0.14", 855 | "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", 856 | "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", 857 | "dev": true, 858 | "engines": { 859 | "node": ">=4.0" 860 | } 861 | }, 862 | "node_modules/debug": { 863 | "version": "4.3.5", 864 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 865 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 866 | "dev": true, 867 | "dependencies": { 868 | "ms": "2.1.2" 869 | }, 870 | "engines": { 871 | "node": ">=6.0" 872 | }, 873 | "peerDependenciesMeta": { 874 | "supports-color": { 875 | "optional": true 876 | } 877 | } 878 | }, 879 | "node_modules/deep-is": { 880 | "version": "0.1.4", 881 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 882 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 883 | "dev": true 884 | }, 885 | "node_modules/define-data-property": { 886 | "version": "1.1.4", 887 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 888 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 889 | "dev": true, 890 | "dependencies": { 891 | "es-define-property": "^1.0.0", 892 | "es-errors": "^1.3.0", 893 | "gopd": "^1.0.1" 894 | }, 895 | "engines": { 896 | "node": ">= 0.4" 897 | }, 898 | "funding": { 899 | "url": "https://github.com/sponsors/ljharb" 900 | } 901 | }, 902 | "node_modules/depd": { 903 | "version": "2.0.0", 904 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 905 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 906 | "dev": true, 907 | "engines": { 908 | "node": ">= 0.8" 909 | } 910 | }, 911 | "node_modules/destroy": { 912 | "version": "1.2.0", 913 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 914 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 915 | "dev": true, 916 | "engines": { 917 | "node": ">= 0.8", 918 | "npm": "1.2.8000 || >= 1.4.16" 919 | } 920 | }, 921 | "node_modules/di": { 922 | "version": "0.0.1", 923 | "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", 924 | "integrity": "sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==", 925 | "dev": true 926 | }, 927 | "node_modules/dir-glob": { 928 | "version": "3.0.1", 929 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 930 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 931 | "dev": true, 932 | "dependencies": { 933 | "path-type": "^4.0.0" 934 | }, 935 | "engines": { 936 | "node": ">=8" 937 | } 938 | }, 939 | "node_modules/doctrine": { 940 | "version": "3.0.0", 941 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 942 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 943 | "dev": true, 944 | "dependencies": { 945 | "esutils": "^2.0.2" 946 | }, 947 | "engines": { 948 | "node": ">=6.0.0" 949 | } 950 | }, 951 | "node_modules/dom-serialize": { 952 | "version": "2.2.1", 953 | "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", 954 | "integrity": "sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==", 955 | "dev": true, 956 | "dependencies": { 957 | "custom-event": "~1.0.0", 958 | "ent": "~2.2.0", 959 | "extend": "^3.0.0", 960 | "void-elements": "^2.0.0" 961 | } 962 | }, 963 | "node_modules/ee-first": { 964 | "version": "1.1.1", 965 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 966 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 967 | "dev": true 968 | }, 969 | "node_modules/emoji-regex": { 970 | "version": "8.0.0", 971 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 972 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 973 | "dev": true 974 | }, 975 | "node_modules/encodeurl": { 976 | "version": "1.0.2", 977 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 978 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 979 | "dev": true, 980 | "engines": { 981 | "node": ">= 0.8" 982 | } 983 | }, 984 | "node_modules/engine.io": { 985 | "version": "6.5.5", 986 | "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz", 987 | "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==", 988 | "dev": true, 989 | "dependencies": { 990 | "@types/cookie": "^0.4.1", 991 | "@types/cors": "^2.8.12", 992 | "@types/node": ">=10.0.0", 993 | "accepts": "~1.3.4", 994 | "base64id": "2.0.0", 995 | "cookie": "~0.4.1", 996 | "cors": "~2.8.5", 997 | "debug": "~4.3.1", 998 | "engine.io-parser": "~5.2.1", 999 | "ws": "~8.17.1" 1000 | }, 1001 | "engines": { 1002 | "node": ">=10.2.0" 1003 | } 1004 | }, 1005 | "node_modules/engine.io-parser": { 1006 | "version": "5.2.2", 1007 | "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz", 1008 | "integrity": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==", 1009 | "dev": true, 1010 | "engines": { 1011 | "node": ">=10.0.0" 1012 | } 1013 | }, 1014 | "node_modules/ent": { 1015 | "version": "2.2.1", 1016 | "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.1.tgz", 1017 | "integrity": "sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A==", 1018 | "dev": true, 1019 | "dependencies": { 1020 | "punycode": "^1.4.1" 1021 | }, 1022 | "engines": { 1023 | "node": ">= 0.4" 1024 | } 1025 | }, 1026 | "node_modules/es-define-property": { 1027 | "version": "1.0.0", 1028 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1029 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1030 | "dev": true, 1031 | "dependencies": { 1032 | "get-intrinsic": "^1.2.4" 1033 | }, 1034 | "engines": { 1035 | "node": ">= 0.4" 1036 | } 1037 | }, 1038 | "node_modules/es-errors": { 1039 | "version": "1.3.0", 1040 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1041 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1042 | "dev": true, 1043 | "engines": { 1044 | "node": ">= 0.4" 1045 | } 1046 | }, 1047 | "node_modules/escalade": { 1048 | "version": "3.1.2", 1049 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 1050 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 1051 | "dev": true, 1052 | "engines": { 1053 | "node": ">=6" 1054 | } 1055 | }, 1056 | "node_modules/escape-html": { 1057 | "version": "1.0.3", 1058 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1059 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 1060 | "dev": true 1061 | }, 1062 | "node_modules/escape-string-regexp": { 1063 | "version": "4.0.0", 1064 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1065 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1066 | "dev": true, 1067 | "engines": { 1068 | "node": ">=10" 1069 | }, 1070 | "funding": { 1071 | "url": "https://github.com/sponsors/sindresorhus" 1072 | } 1073 | }, 1074 | "node_modules/eslint": { 1075 | "version": "8.57.0", 1076 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 1077 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 1078 | "dev": true, 1079 | "dependencies": { 1080 | "@eslint-community/eslint-utils": "^4.2.0", 1081 | "@eslint-community/regexpp": "^4.6.1", 1082 | "@eslint/eslintrc": "^2.1.4", 1083 | "@eslint/js": "8.57.0", 1084 | "@humanwhocodes/config-array": "^0.11.14", 1085 | "@humanwhocodes/module-importer": "^1.0.1", 1086 | "@nodelib/fs.walk": "^1.2.8", 1087 | "@ungap/structured-clone": "^1.2.0", 1088 | "ajv": "^6.12.4", 1089 | "chalk": "^4.0.0", 1090 | "cross-spawn": "^7.0.2", 1091 | "debug": "^4.3.2", 1092 | "doctrine": "^3.0.0", 1093 | "escape-string-regexp": "^4.0.0", 1094 | "eslint-scope": "^7.2.2", 1095 | "eslint-visitor-keys": "^3.4.3", 1096 | "espree": "^9.6.1", 1097 | "esquery": "^1.4.2", 1098 | "esutils": "^2.0.2", 1099 | "fast-deep-equal": "^3.1.3", 1100 | "file-entry-cache": "^6.0.1", 1101 | "find-up": "^5.0.0", 1102 | "glob-parent": "^6.0.2", 1103 | "globals": "^13.19.0", 1104 | "graphemer": "^1.4.0", 1105 | "ignore": "^5.2.0", 1106 | "imurmurhash": "^0.1.4", 1107 | "is-glob": "^4.0.0", 1108 | "is-path-inside": "^3.0.3", 1109 | "js-yaml": "^4.1.0", 1110 | "json-stable-stringify-without-jsonify": "^1.0.1", 1111 | "levn": "^0.4.1", 1112 | "lodash.merge": "^4.6.2", 1113 | "minimatch": "^3.1.2", 1114 | "natural-compare": "^1.4.0", 1115 | "optionator": "^0.9.3", 1116 | "strip-ansi": "^6.0.1", 1117 | "text-table": "^0.2.0" 1118 | }, 1119 | "bin": { 1120 | "eslint": "bin/eslint.js" 1121 | }, 1122 | "engines": { 1123 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1124 | }, 1125 | "funding": { 1126 | "url": "https://opencollective.com/eslint" 1127 | } 1128 | }, 1129 | "node_modules/eslint-config-google": { 1130 | "version": "0.14.0", 1131 | "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", 1132 | "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", 1133 | "dev": true, 1134 | "engines": { 1135 | "node": ">=0.10.0" 1136 | }, 1137 | "peerDependencies": { 1138 | "eslint": ">=5.16.0" 1139 | } 1140 | }, 1141 | "node_modules/eslint-config-prettier": { 1142 | "version": "9.1.0", 1143 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 1144 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 1145 | "dev": true, 1146 | "bin": { 1147 | "eslint-config-prettier": "bin/cli.js" 1148 | }, 1149 | "peerDependencies": { 1150 | "eslint": ">=7.0.0" 1151 | } 1152 | }, 1153 | "node_modules/eslint-plugin-prettier": { 1154 | "version": "5.1.3", 1155 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", 1156 | "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", 1157 | "dev": true, 1158 | "dependencies": { 1159 | "prettier-linter-helpers": "^1.0.0", 1160 | "synckit": "^0.8.6" 1161 | }, 1162 | "engines": { 1163 | "node": "^14.18.0 || >=16.0.0" 1164 | }, 1165 | "funding": { 1166 | "url": "https://opencollective.com/eslint-plugin-prettier" 1167 | }, 1168 | "peerDependencies": { 1169 | "@types/eslint": ">=8.0.0", 1170 | "eslint": ">=8.0.0", 1171 | "eslint-config-prettier": "*", 1172 | "prettier": ">=3.0.0" 1173 | }, 1174 | "peerDependenciesMeta": { 1175 | "@types/eslint": { 1176 | "optional": true 1177 | }, 1178 | "eslint-config-prettier": { 1179 | "optional": true 1180 | } 1181 | } 1182 | }, 1183 | "node_modules/eslint-scope": { 1184 | "version": "7.2.2", 1185 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1186 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1187 | "dev": true, 1188 | "dependencies": { 1189 | "esrecurse": "^4.3.0", 1190 | "estraverse": "^5.2.0" 1191 | }, 1192 | "engines": { 1193 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1194 | }, 1195 | "funding": { 1196 | "url": "https://opencollective.com/eslint" 1197 | } 1198 | }, 1199 | "node_modules/eslint-visitor-keys": { 1200 | "version": "3.4.3", 1201 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1202 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1203 | "dev": true, 1204 | "engines": { 1205 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1206 | }, 1207 | "funding": { 1208 | "url": "https://opencollective.com/eslint" 1209 | } 1210 | }, 1211 | "node_modules/eslint/node_modules/brace-expansion": { 1212 | "version": "1.1.11", 1213 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1214 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1215 | "dev": true, 1216 | "dependencies": { 1217 | "balanced-match": "^1.0.0", 1218 | "concat-map": "0.0.1" 1219 | } 1220 | }, 1221 | "node_modules/eslint/node_modules/minimatch": { 1222 | "version": "3.1.2", 1223 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1224 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1225 | "dev": true, 1226 | "dependencies": { 1227 | "brace-expansion": "^1.1.7" 1228 | }, 1229 | "engines": { 1230 | "node": "*" 1231 | } 1232 | }, 1233 | "node_modules/espree": { 1234 | "version": "9.6.1", 1235 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1236 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1237 | "dev": true, 1238 | "dependencies": { 1239 | "acorn": "^8.9.0", 1240 | "acorn-jsx": "^5.3.2", 1241 | "eslint-visitor-keys": "^3.4.1" 1242 | }, 1243 | "engines": { 1244 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1245 | }, 1246 | "funding": { 1247 | "url": "https://opencollective.com/eslint" 1248 | } 1249 | }, 1250 | "node_modules/esquery": { 1251 | "version": "1.6.0", 1252 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1253 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1254 | "dev": true, 1255 | "dependencies": { 1256 | "estraverse": "^5.1.0" 1257 | }, 1258 | "engines": { 1259 | "node": ">=0.10" 1260 | } 1261 | }, 1262 | "node_modules/esrecurse": { 1263 | "version": "4.3.0", 1264 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1265 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1266 | "dev": true, 1267 | "dependencies": { 1268 | "estraverse": "^5.2.0" 1269 | }, 1270 | "engines": { 1271 | "node": ">=4.0" 1272 | } 1273 | }, 1274 | "node_modules/estraverse": { 1275 | "version": "5.3.0", 1276 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1277 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1278 | "dev": true, 1279 | "engines": { 1280 | "node": ">=4.0" 1281 | } 1282 | }, 1283 | "node_modules/esutils": { 1284 | "version": "2.0.3", 1285 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1286 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1287 | "dev": true, 1288 | "engines": { 1289 | "node": ">=0.10.0" 1290 | } 1291 | }, 1292 | "node_modules/eventemitter3": { 1293 | "version": "4.0.7", 1294 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", 1295 | "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", 1296 | "dev": true 1297 | }, 1298 | "node_modules/extend": { 1299 | "version": "3.0.2", 1300 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1301 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 1302 | "dev": true 1303 | }, 1304 | "node_modules/fast-deep-equal": { 1305 | "version": "3.1.3", 1306 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1307 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1308 | "dev": true 1309 | }, 1310 | "node_modules/fast-diff": { 1311 | "version": "1.3.0", 1312 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1313 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1314 | "dev": true 1315 | }, 1316 | "node_modules/fast-glob": { 1317 | "version": "3.3.2", 1318 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1319 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1320 | "dev": true, 1321 | "dependencies": { 1322 | "@nodelib/fs.stat": "^2.0.2", 1323 | "@nodelib/fs.walk": "^1.2.3", 1324 | "glob-parent": "^5.1.2", 1325 | "merge2": "^1.3.0", 1326 | "micromatch": "^4.0.4" 1327 | }, 1328 | "engines": { 1329 | "node": ">=8.6.0" 1330 | } 1331 | }, 1332 | "node_modules/fast-glob/node_modules/glob-parent": { 1333 | "version": "5.1.2", 1334 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1335 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1336 | "dev": true, 1337 | "dependencies": { 1338 | "is-glob": "^4.0.1" 1339 | }, 1340 | "engines": { 1341 | "node": ">= 6" 1342 | } 1343 | }, 1344 | "node_modules/fast-json-stable-stringify": { 1345 | "version": "2.1.0", 1346 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1347 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1348 | "dev": true 1349 | }, 1350 | "node_modules/fast-levenshtein": { 1351 | "version": "2.0.6", 1352 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1353 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1354 | "dev": true 1355 | }, 1356 | "node_modules/fastq": { 1357 | "version": "1.17.1", 1358 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1359 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1360 | "dev": true, 1361 | "dependencies": { 1362 | "reusify": "^1.0.4" 1363 | } 1364 | }, 1365 | "node_modules/file-entry-cache": { 1366 | "version": "6.0.1", 1367 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1368 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1369 | "dev": true, 1370 | "dependencies": { 1371 | "flat-cache": "^3.0.4" 1372 | }, 1373 | "engines": { 1374 | "node": "^10.12.0 || >=12.0.0" 1375 | } 1376 | }, 1377 | "node_modules/fill-range": { 1378 | "version": "7.1.1", 1379 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1380 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1381 | "dev": true, 1382 | "dependencies": { 1383 | "to-regex-range": "^5.0.1" 1384 | }, 1385 | "engines": { 1386 | "node": ">=8" 1387 | } 1388 | }, 1389 | "node_modules/finalhandler": { 1390 | "version": "1.1.2", 1391 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 1392 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 1393 | "dev": true, 1394 | "dependencies": { 1395 | "debug": "2.6.9", 1396 | "encodeurl": "~1.0.2", 1397 | "escape-html": "~1.0.3", 1398 | "on-finished": "~2.3.0", 1399 | "parseurl": "~1.3.3", 1400 | "statuses": "~1.5.0", 1401 | "unpipe": "~1.0.0" 1402 | }, 1403 | "engines": { 1404 | "node": ">= 0.8" 1405 | } 1406 | }, 1407 | "node_modules/finalhandler/node_modules/debug": { 1408 | "version": "2.6.9", 1409 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1410 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1411 | "dev": true, 1412 | "dependencies": { 1413 | "ms": "2.0.0" 1414 | } 1415 | }, 1416 | "node_modules/finalhandler/node_modules/ms": { 1417 | "version": "2.0.0", 1418 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1419 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1420 | "dev": true 1421 | }, 1422 | "node_modules/finalhandler/node_modules/on-finished": { 1423 | "version": "2.3.0", 1424 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1425 | "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", 1426 | "dev": true, 1427 | "dependencies": { 1428 | "ee-first": "1.1.1" 1429 | }, 1430 | "engines": { 1431 | "node": ">= 0.8" 1432 | } 1433 | }, 1434 | "node_modules/find-up": { 1435 | "version": "5.0.0", 1436 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1437 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1438 | "dev": true, 1439 | "dependencies": { 1440 | "locate-path": "^6.0.0", 1441 | "path-exists": "^4.0.0" 1442 | }, 1443 | "engines": { 1444 | "node": ">=10" 1445 | }, 1446 | "funding": { 1447 | "url": "https://github.com/sponsors/sindresorhus" 1448 | } 1449 | }, 1450 | "node_modules/flat-cache": { 1451 | "version": "3.2.0", 1452 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1453 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1454 | "dev": true, 1455 | "dependencies": { 1456 | "flatted": "^3.2.9", 1457 | "keyv": "^4.5.3", 1458 | "rimraf": "^3.0.2" 1459 | }, 1460 | "engines": { 1461 | "node": "^10.12.0 || >=12.0.0" 1462 | } 1463 | }, 1464 | "node_modules/flatted": { 1465 | "version": "3.3.1", 1466 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 1467 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 1468 | "dev": true 1469 | }, 1470 | "node_modules/follow-redirects": { 1471 | "version": "1.15.6", 1472 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", 1473 | "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", 1474 | "dev": true, 1475 | "funding": [ 1476 | { 1477 | "type": "individual", 1478 | "url": "https://github.com/sponsors/RubenVerborgh" 1479 | } 1480 | ], 1481 | "engines": { 1482 | "node": ">=4.0" 1483 | }, 1484 | "peerDependenciesMeta": { 1485 | "debug": { 1486 | "optional": true 1487 | } 1488 | } 1489 | }, 1490 | "node_modules/fs-extra": { 1491 | "version": "8.1.0", 1492 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", 1493 | "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", 1494 | "dev": true, 1495 | "dependencies": { 1496 | "graceful-fs": "^4.2.0", 1497 | "jsonfile": "^4.0.0", 1498 | "universalify": "^0.1.0" 1499 | }, 1500 | "engines": { 1501 | "node": ">=6 <7 || >=8" 1502 | } 1503 | }, 1504 | "node_modules/fs.realpath": { 1505 | "version": "1.0.0", 1506 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1507 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1508 | "dev": true 1509 | }, 1510 | "node_modules/fsevents": { 1511 | "version": "2.3.3", 1512 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1513 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1514 | "dev": true, 1515 | "hasInstallScript": true, 1516 | "optional": true, 1517 | "os": [ 1518 | "darwin" 1519 | ], 1520 | "engines": { 1521 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1522 | } 1523 | }, 1524 | "node_modules/function-bind": { 1525 | "version": "1.1.2", 1526 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1527 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1528 | "dev": true, 1529 | "funding": { 1530 | "url": "https://github.com/sponsors/ljharb" 1531 | } 1532 | }, 1533 | "node_modules/get-caller-file": { 1534 | "version": "2.0.5", 1535 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1536 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1537 | "dev": true, 1538 | "engines": { 1539 | "node": "6.* || 8.* || >= 10.*" 1540 | } 1541 | }, 1542 | "node_modules/get-intrinsic": { 1543 | "version": "1.2.4", 1544 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1545 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1546 | "dev": true, 1547 | "dependencies": { 1548 | "es-errors": "^1.3.0", 1549 | "function-bind": "^1.1.2", 1550 | "has-proto": "^1.0.1", 1551 | "has-symbols": "^1.0.3", 1552 | "hasown": "^2.0.0" 1553 | }, 1554 | "engines": { 1555 | "node": ">= 0.4" 1556 | }, 1557 | "funding": { 1558 | "url": "https://github.com/sponsors/ljharb" 1559 | } 1560 | }, 1561 | "node_modules/glob": { 1562 | "version": "7.2.3", 1563 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1564 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1565 | "deprecated": "Glob versions prior to v9 are no longer supported", 1566 | "dev": true, 1567 | "dependencies": { 1568 | "fs.realpath": "^1.0.0", 1569 | "inflight": "^1.0.4", 1570 | "inherits": "2", 1571 | "minimatch": "^3.1.1", 1572 | "once": "^1.3.0", 1573 | "path-is-absolute": "^1.0.0" 1574 | }, 1575 | "engines": { 1576 | "node": "*" 1577 | }, 1578 | "funding": { 1579 | "url": "https://github.com/sponsors/isaacs" 1580 | } 1581 | }, 1582 | "node_modules/glob-parent": { 1583 | "version": "6.0.2", 1584 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1585 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1586 | "dev": true, 1587 | "dependencies": { 1588 | "is-glob": "^4.0.3" 1589 | }, 1590 | "engines": { 1591 | "node": ">=10.13.0" 1592 | } 1593 | }, 1594 | "node_modules/glob/node_modules/brace-expansion": { 1595 | "version": "1.1.11", 1596 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1597 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1598 | "dev": true, 1599 | "dependencies": { 1600 | "balanced-match": "^1.0.0", 1601 | "concat-map": "0.0.1" 1602 | } 1603 | }, 1604 | "node_modules/glob/node_modules/minimatch": { 1605 | "version": "3.1.2", 1606 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1607 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1608 | "dev": true, 1609 | "dependencies": { 1610 | "brace-expansion": "^1.1.7" 1611 | }, 1612 | "engines": { 1613 | "node": "*" 1614 | } 1615 | }, 1616 | "node_modules/globals": { 1617 | "version": "13.24.0", 1618 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1619 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1620 | "dev": true, 1621 | "dependencies": { 1622 | "type-fest": "^0.20.2" 1623 | }, 1624 | "engines": { 1625 | "node": ">=8" 1626 | }, 1627 | "funding": { 1628 | "url": "https://github.com/sponsors/sindresorhus" 1629 | } 1630 | }, 1631 | "node_modules/globby": { 1632 | "version": "11.1.0", 1633 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1634 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1635 | "dev": true, 1636 | "dependencies": { 1637 | "array-union": "^2.1.0", 1638 | "dir-glob": "^3.0.1", 1639 | "fast-glob": "^3.2.9", 1640 | "ignore": "^5.2.0", 1641 | "merge2": "^1.4.1", 1642 | "slash": "^3.0.0" 1643 | }, 1644 | "engines": { 1645 | "node": ">=10" 1646 | }, 1647 | "funding": { 1648 | "url": "https://github.com/sponsors/sindresorhus" 1649 | } 1650 | }, 1651 | "node_modules/gopd": { 1652 | "version": "1.0.1", 1653 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1654 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1655 | "dev": true, 1656 | "dependencies": { 1657 | "get-intrinsic": "^1.1.3" 1658 | }, 1659 | "funding": { 1660 | "url": "https://github.com/sponsors/ljharb" 1661 | } 1662 | }, 1663 | "node_modules/graceful-fs": { 1664 | "version": "4.2.11", 1665 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1666 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1667 | "dev": true 1668 | }, 1669 | "node_modules/graphemer": { 1670 | "version": "1.4.0", 1671 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1672 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1673 | "dev": true 1674 | }, 1675 | "node_modules/has-flag": { 1676 | "version": "4.0.0", 1677 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1678 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1679 | "dev": true, 1680 | "engines": { 1681 | "node": ">=8" 1682 | } 1683 | }, 1684 | "node_modules/has-property-descriptors": { 1685 | "version": "1.0.2", 1686 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1687 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1688 | "dev": true, 1689 | "dependencies": { 1690 | "es-define-property": "^1.0.0" 1691 | }, 1692 | "funding": { 1693 | "url": "https://github.com/sponsors/ljharb" 1694 | } 1695 | }, 1696 | "node_modules/has-proto": { 1697 | "version": "1.0.3", 1698 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 1699 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 1700 | "dev": true, 1701 | "engines": { 1702 | "node": ">= 0.4" 1703 | }, 1704 | "funding": { 1705 | "url": "https://github.com/sponsors/ljharb" 1706 | } 1707 | }, 1708 | "node_modules/has-symbols": { 1709 | "version": "1.0.3", 1710 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1711 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1712 | "dev": true, 1713 | "engines": { 1714 | "node": ">= 0.4" 1715 | }, 1716 | "funding": { 1717 | "url": "https://github.com/sponsors/ljharb" 1718 | } 1719 | }, 1720 | "node_modules/hasown": { 1721 | "version": "2.0.2", 1722 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1723 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1724 | "dev": true, 1725 | "dependencies": { 1726 | "function-bind": "^1.1.2" 1727 | }, 1728 | "engines": { 1729 | "node": ">= 0.4" 1730 | } 1731 | }, 1732 | "node_modules/http-errors": { 1733 | "version": "2.0.0", 1734 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 1735 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 1736 | "dev": true, 1737 | "dependencies": { 1738 | "depd": "2.0.0", 1739 | "inherits": "2.0.4", 1740 | "setprototypeof": "1.2.0", 1741 | "statuses": "2.0.1", 1742 | "toidentifier": "1.0.1" 1743 | }, 1744 | "engines": { 1745 | "node": ">= 0.8" 1746 | } 1747 | }, 1748 | "node_modules/http-errors/node_modules/statuses": { 1749 | "version": "2.0.1", 1750 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1751 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1752 | "dev": true, 1753 | "engines": { 1754 | "node": ">= 0.8" 1755 | } 1756 | }, 1757 | "node_modules/http-proxy": { 1758 | "version": "1.18.1", 1759 | "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", 1760 | "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", 1761 | "dev": true, 1762 | "dependencies": { 1763 | "eventemitter3": "^4.0.0", 1764 | "follow-redirects": "^1.0.0", 1765 | "requires-port": "^1.0.0" 1766 | }, 1767 | "engines": { 1768 | "node": ">=8.0.0" 1769 | } 1770 | }, 1771 | "node_modules/iconv-lite": { 1772 | "version": "0.4.24", 1773 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1774 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1775 | "dev": true, 1776 | "dependencies": { 1777 | "safer-buffer": ">= 2.1.2 < 3" 1778 | }, 1779 | "engines": { 1780 | "node": ">=0.10.0" 1781 | } 1782 | }, 1783 | "node_modules/ignore": { 1784 | "version": "5.3.1", 1785 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1786 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1787 | "dev": true, 1788 | "engines": { 1789 | "node": ">= 4" 1790 | } 1791 | }, 1792 | "node_modules/import-fresh": { 1793 | "version": "3.3.0", 1794 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1795 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1796 | "dev": true, 1797 | "dependencies": { 1798 | "parent-module": "^1.0.0", 1799 | "resolve-from": "^4.0.0" 1800 | }, 1801 | "engines": { 1802 | "node": ">=6" 1803 | }, 1804 | "funding": { 1805 | "url": "https://github.com/sponsors/sindresorhus" 1806 | } 1807 | }, 1808 | "node_modules/imurmurhash": { 1809 | "version": "0.1.4", 1810 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1811 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1812 | "dev": true, 1813 | "engines": { 1814 | "node": ">=0.8.19" 1815 | } 1816 | }, 1817 | "node_modules/inflight": { 1818 | "version": "1.0.6", 1819 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1820 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1821 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1822 | "dev": true, 1823 | "dependencies": { 1824 | "once": "^1.3.0", 1825 | "wrappy": "1" 1826 | } 1827 | }, 1828 | "node_modules/inherits": { 1829 | "version": "2.0.4", 1830 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1831 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1832 | "dev": true 1833 | }, 1834 | "node_modules/is-binary-path": { 1835 | "version": "2.1.0", 1836 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1837 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1838 | "dev": true, 1839 | "dependencies": { 1840 | "binary-extensions": "^2.0.0" 1841 | }, 1842 | "engines": { 1843 | "node": ">=8" 1844 | } 1845 | }, 1846 | "node_modules/is-ci": { 1847 | "version": "3.0.1", 1848 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", 1849 | "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", 1850 | "dependencies": { 1851 | "ci-info": "^3.2.0" 1852 | }, 1853 | "bin": { 1854 | "is-ci": "bin.js" 1855 | } 1856 | }, 1857 | "node_modules/is-extglob": { 1858 | "version": "2.1.1", 1859 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1860 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1861 | "dev": true, 1862 | "engines": { 1863 | "node": ">=0.10.0" 1864 | } 1865 | }, 1866 | "node_modules/is-fullwidth-code-point": { 1867 | "version": "3.0.0", 1868 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1869 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1870 | "dev": true, 1871 | "engines": { 1872 | "node": ">=8" 1873 | } 1874 | }, 1875 | "node_modules/is-glob": { 1876 | "version": "4.0.3", 1877 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1878 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1879 | "dev": true, 1880 | "dependencies": { 1881 | "is-extglob": "^2.1.1" 1882 | }, 1883 | "engines": { 1884 | "node": ">=0.10.0" 1885 | } 1886 | }, 1887 | "node_modules/is-number": { 1888 | "version": "7.0.0", 1889 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1890 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1891 | "dev": true, 1892 | "engines": { 1893 | "node": ">=0.12.0" 1894 | } 1895 | }, 1896 | "node_modules/is-path-inside": { 1897 | "version": "3.0.3", 1898 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1899 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1900 | "dev": true, 1901 | "engines": { 1902 | "node": ">=8" 1903 | } 1904 | }, 1905 | "node_modules/isbinaryfile": { 1906 | "version": "4.0.10", 1907 | "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", 1908 | "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", 1909 | "dev": true, 1910 | "engines": { 1911 | "node": ">= 8.0.0" 1912 | }, 1913 | "funding": { 1914 | "url": "https://github.com/sponsors/gjtorikian/" 1915 | } 1916 | }, 1917 | "node_modules/isexe": { 1918 | "version": "2.0.0", 1919 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1920 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1921 | "dev": true 1922 | }, 1923 | "node_modules/jasmine-core": { 1924 | "version": "4.6.1", 1925 | "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.1.tgz", 1926 | "integrity": "sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==", 1927 | "dev": true 1928 | }, 1929 | "node_modules/js-yaml": { 1930 | "version": "4.1.0", 1931 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1932 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1933 | "dev": true, 1934 | "dependencies": { 1935 | "argparse": "^2.0.1" 1936 | }, 1937 | "bin": { 1938 | "js-yaml": "bin/js-yaml.js" 1939 | } 1940 | }, 1941 | "node_modules/json-buffer": { 1942 | "version": "3.0.1", 1943 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1944 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1945 | "dev": true 1946 | }, 1947 | "node_modules/json-schema-traverse": { 1948 | "version": "0.4.1", 1949 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1950 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1951 | "dev": true 1952 | }, 1953 | "node_modules/json-stable-stringify-without-jsonify": { 1954 | "version": "1.0.1", 1955 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1956 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1957 | "dev": true 1958 | }, 1959 | "node_modules/jsonfile": { 1960 | "version": "4.0.0", 1961 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", 1962 | "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", 1963 | "dev": true, 1964 | "optionalDependencies": { 1965 | "graceful-fs": "^4.1.6" 1966 | } 1967 | }, 1968 | "node_modules/karma": { 1969 | "version": "6.4.3", 1970 | "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.3.tgz", 1971 | "integrity": "sha512-LuucC/RE92tJ8mlCwqEoRWXP38UMAqpnq98vktmS9SznSoUPPUJQbc91dHcxcunROvfQjdORVA/YFviH+Xci9Q==", 1972 | "dev": true, 1973 | "dependencies": { 1974 | "@colors/colors": "1.5.0", 1975 | "body-parser": "^1.19.0", 1976 | "braces": "^3.0.2", 1977 | "chokidar": "^3.5.1", 1978 | "connect": "^3.7.0", 1979 | "di": "^0.0.1", 1980 | "dom-serialize": "^2.2.1", 1981 | "glob": "^7.1.7", 1982 | "graceful-fs": "^4.2.6", 1983 | "http-proxy": "^1.18.1", 1984 | "isbinaryfile": "^4.0.8", 1985 | "lodash": "^4.17.21", 1986 | "log4js": "^6.4.1", 1987 | "mime": "^2.5.2", 1988 | "minimatch": "^3.0.4", 1989 | "mkdirp": "^0.5.5", 1990 | "qjobs": "^1.2.0", 1991 | "range-parser": "^1.2.1", 1992 | "rimraf": "^3.0.2", 1993 | "socket.io": "^4.7.2", 1994 | "source-map": "^0.6.1", 1995 | "tmp": "^0.2.1", 1996 | "ua-parser-js": "^0.7.30", 1997 | "yargs": "^16.1.1" 1998 | }, 1999 | "bin": { 2000 | "karma": "bin/karma" 2001 | }, 2002 | "engines": { 2003 | "node": ">= 10" 2004 | } 2005 | }, 2006 | "node_modules/karma-jasmine": { 2007 | "version": "5.1.0", 2008 | "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-5.1.0.tgz", 2009 | "integrity": "sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==", 2010 | "dev": true, 2011 | "dependencies": { 2012 | "jasmine-core": "^4.1.0" 2013 | }, 2014 | "engines": { 2015 | "node": ">=12" 2016 | }, 2017 | "peerDependencies": { 2018 | "karma": "^6.0.0" 2019 | } 2020 | }, 2021 | "node_modules/karma/node_modules/brace-expansion": { 2022 | "version": "1.1.11", 2023 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2024 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2025 | "dev": true, 2026 | "dependencies": { 2027 | "balanced-match": "^1.0.0", 2028 | "concat-map": "0.0.1" 2029 | } 2030 | }, 2031 | "node_modules/karma/node_modules/minimatch": { 2032 | "version": "3.1.2", 2033 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2034 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2035 | "dev": true, 2036 | "dependencies": { 2037 | "brace-expansion": "^1.1.7" 2038 | }, 2039 | "engines": { 2040 | "node": "*" 2041 | } 2042 | }, 2043 | "node_modules/keyv": { 2044 | "version": "4.5.4", 2045 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2046 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2047 | "dev": true, 2048 | "dependencies": { 2049 | "json-buffer": "3.0.1" 2050 | } 2051 | }, 2052 | "node_modules/levn": { 2053 | "version": "0.4.1", 2054 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2055 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2056 | "dev": true, 2057 | "dependencies": { 2058 | "prelude-ls": "^1.2.1", 2059 | "type-check": "~0.4.0" 2060 | }, 2061 | "engines": { 2062 | "node": ">= 0.8.0" 2063 | } 2064 | }, 2065 | "node_modules/locate-path": { 2066 | "version": "6.0.0", 2067 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2068 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2069 | "dev": true, 2070 | "dependencies": { 2071 | "p-locate": "^5.0.0" 2072 | }, 2073 | "engines": { 2074 | "node": ">=10" 2075 | }, 2076 | "funding": { 2077 | "url": "https://github.com/sponsors/sindresorhus" 2078 | } 2079 | }, 2080 | "node_modules/lodash": { 2081 | "version": "4.17.21", 2082 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2083 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2084 | "dev": true 2085 | }, 2086 | "node_modules/lodash.merge": { 2087 | "version": "4.6.2", 2088 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2089 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2090 | "dev": true 2091 | }, 2092 | "node_modules/log4js": { 2093 | "version": "6.9.1", 2094 | "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", 2095 | "integrity": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==", 2096 | "dev": true, 2097 | "dependencies": { 2098 | "date-format": "^4.0.14", 2099 | "debug": "^4.3.4", 2100 | "flatted": "^3.2.7", 2101 | "rfdc": "^1.3.0", 2102 | "streamroller": "^3.1.5" 2103 | }, 2104 | "engines": { 2105 | "node": ">=8.0" 2106 | } 2107 | }, 2108 | "node_modules/media-typer": { 2109 | "version": "0.3.0", 2110 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 2111 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 2112 | "dev": true, 2113 | "engines": { 2114 | "node": ">= 0.6" 2115 | } 2116 | }, 2117 | "node_modules/merge2": { 2118 | "version": "1.4.1", 2119 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2120 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2121 | "dev": true, 2122 | "engines": { 2123 | "node": ">= 8" 2124 | } 2125 | }, 2126 | "node_modules/micromatch": { 2127 | "version": "4.0.7", 2128 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 2129 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 2130 | "dev": true, 2131 | "dependencies": { 2132 | "braces": "^3.0.3", 2133 | "picomatch": "^2.3.1" 2134 | }, 2135 | "engines": { 2136 | "node": ">=8.6" 2137 | } 2138 | }, 2139 | "node_modules/mime": { 2140 | "version": "2.6.0", 2141 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", 2142 | "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", 2143 | "dev": true, 2144 | "bin": { 2145 | "mime": "cli.js" 2146 | }, 2147 | "engines": { 2148 | "node": ">=4.0.0" 2149 | } 2150 | }, 2151 | "node_modules/mime-db": { 2152 | "version": "1.52.0", 2153 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2154 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2155 | "dev": true, 2156 | "engines": { 2157 | "node": ">= 0.6" 2158 | } 2159 | }, 2160 | "node_modules/mime-types": { 2161 | "version": "2.1.35", 2162 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2163 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2164 | "dev": true, 2165 | "dependencies": { 2166 | "mime-db": "1.52.0" 2167 | }, 2168 | "engines": { 2169 | "node": ">= 0.6" 2170 | } 2171 | }, 2172 | "node_modules/minimatch": { 2173 | "version": "9.0.5", 2174 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2175 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2176 | "dev": true, 2177 | "dependencies": { 2178 | "brace-expansion": "^2.0.1" 2179 | }, 2180 | "engines": { 2181 | "node": ">=16 || 14 >=14.17" 2182 | }, 2183 | "funding": { 2184 | "url": "https://github.com/sponsors/isaacs" 2185 | } 2186 | }, 2187 | "node_modules/minimist": { 2188 | "version": "1.2.8", 2189 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2190 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2191 | "dev": true, 2192 | "funding": { 2193 | "url": "https://github.com/sponsors/ljharb" 2194 | } 2195 | }, 2196 | "node_modules/mkdirp": { 2197 | "version": "0.5.6", 2198 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 2199 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 2200 | "dev": true, 2201 | "dependencies": { 2202 | "minimist": "^1.2.6" 2203 | }, 2204 | "bin": { 2205 | "mkdirp": "bin/cmd.js" 2206 | } 2207 | }, 2208 | "node_modules/ms": { 2209 | "version": "2.1.2", 2210 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2211 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2212 | "dev": true 2213 | }, 2214 | "node_modules/natural-compare": { 2215 | "version": "1.4.0", 2216 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2217 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2218 | "dev": true 2219 | }, 2220 | "node_modules/negotiator": { 2221 | "version": "0.6.3", 2222 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 2223 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 2224 | "dev": true, 2225 | "engines": { 2226 | "node": ">= 0.6" 2227 | } 2228 | }, 2229 | "node_modules/normalize-path": { 2230 | "version": "3.0.0", 2231 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2232 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2233 | "dev": true, 2234 | "engines": { 2235 | "node": ">=0.10.0" 2236 | } 2237 | }, 2238 | "node_modules/object-assign": { 2239 | "version": "4.1.1", 2240 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2241 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2242 | "dev": true, 2243 | "engines": { 2244 | "node": ">=0.10.0" 2245 | } 2246 | }, 2247 | "node_modules/object-inspect": { 2248 | "version": "1.13.2", 2249 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", 2250 | "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", 2251 | "dev": true, 2252 | "engines": { 2253 | "node": ">= 0.4" 2254 | }, 2255 | "funding": { 2256 | "url": "https://github.com/sponsors/ljharb" 2257 | } 2258 | }, 2259 | "node_modules/on-finished": { 2260 | "version": "2.4.1", 2261 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 2262 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 2263 | "dev": true, 2264 | "dependencies": { 2265 | "ee-first": "1.1.1" 2266 | }, 2267 | "engines": { 2268 | "node": ">= 0.8" 2269 | } 2270 | }, 2271 | "node_modules/once": { 2272 | "version": "1.4.0", 2273 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2274 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2275 | "dev": true, 2276 | "dependencies": { 2277 | "wrappy": "1" 2278 | } 2279 | }, 2280 | "node_modules/optionator": { 2281 | "version": "0.9.4", 2282 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2283 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2284 | "dev": true, 2285 | "dependencies": { 2286 | "deep-is": "^0.1.3", 2287 | "fast-levenshtein": "^2.0.6", 2288 | "levn": "^0.4.1", 2289 | "prelude-ls": "^1.2.1", 2290 | "type-check": "^0.4.0", 2291 | "word-wrap": "^1.2.5" 2292 | }, 2293 | "engines": { 2294 | "node": ">= 0.8.0" 2295 | } 2296 | }, 2297 | "node_modules/p-limit": { 2298 | "version": "3.1.0", 2299 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2300 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2301 | "dev": true, 2302 | "dependencies": { 2303 | "yocto-queue": "^0.1.0" 2304 | }, 2305 | "engines": { 2306 | "node": ">=10" 2307 | }, 2308 | "funding": { 2309 | "url": "https://github.com/sponsors/sindresorhus" 2310 | } 2311 | }, 2312 | "node_modules/p-locate": { 2313 | "version": "5.0.0", 2314 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2315 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2316 | "dev": true, 2317 | "dependencies": { 2318 | "p-limit": "^3.0.2" 2319 | }, 2320 | "engines": { 2321 | "node": ">=10" 2322 | }, 2323 | "funding": { 2324 | "url": "https://github.com/sponsors/sindresorhus" 2325 | } 2326 | }, 2327 | "node_modules/parent-module": { 2328 | "version": "1.0.1", 2329 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2330 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2331 | "dev": true, 2332 | "dependencies": { 2333 | "callsites": "^3.0.0" 2334 | }, 2335 | "engines": { 2336 | "node": ">=6" 2337 | } 2338 | }, 2339 | "node_modules/parseurl": { 2340 | "version": "1.3.3", 2341 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2342 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 2343 | "dev": true, 2344 | "engines": { 2345 | "node": ">= 0.8" 2346 | } 2347 | }, 2348 | "node_modules/path-exists": { 2349 | "version": "4.0.0", 2350 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2351 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2352 | "dev": true, 2353 | "engines": { 2354 | "node": ">=8" 2355 | } 2356 | }, 2357 | "node_modules/path-is-absolute": { 2358 | "version": "1.0.1", 2359 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2360 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2361 | "dev": true, 2362 | "engines": { 2363 | "node": ">=0.10.0" 2364 | } 2365 | }, 2366 | "node_modules/path-key": { 2367 | "version": "3.1.1", 2368 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2369 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2370 | "dev": true, 2371 | "engines": { 2372 | "node": ">=8" 2373 | } 2374 | }, 2375 | "node_modules/path-type": { 2376 | "version": "4.0.0", 2377 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2378 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2379 | "dev": true, 2380 | "engines": { 2381 | "node": ">=8" 2382 | } 2383 | }, 2384 | "node_modules/picomatch": { 2385 | "version": "2.3.1", 2386 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2387 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2388 | "dev": true, 2389 | "engines": { 2390 | "node": ">=8.6" 2391 | }, 2392 | "funding": { 2393 | "url": "https://github.com/sponsors/jonschlinkert" 2394 | } 2395 | }, 2396 | "node_modules/playwright-core": { 2397 | "version": "1.45.1", 2398 | "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.45.1.tgz", 2399 | "integrity": "sha512-LF4CUUtrUu2TCpDw4mcrAIuYrEjVDfT1cHbJMfwnE2+1b8PZcFzPNgvZCvq2JfQ4aTjRCCHw5EJ2tmr2NSzdPg==", 2400 | "dev": true, 2401 | "bin": { 2402 | "playwright-core": "cli.js" 2403 | }, 2404 | "engines": { 2405 | "node": ">=18" 2406 | } 2407 | }, 2408 | "node_modules/playwright-webkit": { 2409 | "version": "1.45.1", 2410 | "resolved": "https://registry.npmjs.org/playwright-webkit/-/playwright-webkit-1.45.1.tgz", 2411 | "integrity": "sha512-hiDq0/S44PqslN0VCEcCl4BowWCXjH0wglL8/vBE0GpKQvr/zw2ibvuAvTn89cVjfuf6fd1UhODknI+Ng1SufA==", 2412 | "dev": true, 2413 | "hasInstallScript": true, 2414 | "dependencies": { 2415 | "playwright-core": "1.45.1" 2416 | }, 2417 | "bin": { 2418 | "playwright": "cli.js" 2419 | }, 2420 | "engines": { 2421 | "node": ">=18" 2422 | } 2423 | }, 2424 | "node_modules/prelude-ls": { 2425 | "version": "1.2.1", 2426 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2427 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2428 | "dev": true, 2429 | "engines": { 2430 | "node": ">= 0.8.0" 2431 | } 2432 | }, 2433 | "node_modules/prettier": { 2434 | "version": "3.3.2", 2435 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", 2436 | "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", 2437 | "dev": true, 2438 | "bin": { 2439 | "prettier": "bin/prettier.cjs" 2440 | }, 2441 | "engines": { 2442 | "node": ">=14" 2443 | }, 2444 | "funding": { 2445 | "url": "https://github.com/prettier/prettier?sponsor=1" 2446 | } 2447 | }, 2448 | "node_modules/prettier-linter-helpers": { 2449 | "version": "1.0.0", 2450 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 2451 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 2452 | "dev": true, 2453 | "dependencies": { 2454 | "fast-diff": "^1.1.2" 2455 | }, 2456 | "engines": { 2457 | "node": ">=6.0.0" 2458 | } 2459 | }, 2460 | "node_modules/punycode": { 2461 | "version": "1.4.1", 2462 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 2463 | "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", 2464 | "dev": true 2465 | }, 2466 | "node_modules/qjobs": { 2467 | "version": "1.2.0", 2468 | "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz", 2469 | "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==", 2470 | "dev": true, 2471 | "engines": { 2472 | "node": ">=0.9" 2473 | } 2474 | }, 2475 | "node_modules/qs": { 2476 | "version": "6.11.0", 2477 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 2478 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 2479 | "dev": true, 2480 | "dependencies": { 2481 | "side-channel": "^1.0.4" 2482 | }, 2483 | "engines": { 2484 | "node": ">=0.6" 2485 | }, 2486 | "funding": { 2487 | "url": "https://github.com/sponsors/ljharb" 2488 | } 2489 | }, 2490 | "node_modules/queue-microtask": { 2491 | "version": "1.2.3", 2492 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2493 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2494 | "dev": true, 2495 | "funding": [ 2496 | { 2497 | "type": "github", 2498 | "url": "https://github.com/sponsors/feross" 2499 | }, 2500 | { 2501 | "type": "patreon", 2502 | "url": "https://www.patreon.com/feross" 2503 | }, 2504 | { 2505 | "type": "consulting", 2506 | "url": "https://feross.org/support" 2507 | } 2508 | ] 2509 | }, 2510 | "node_modules/range-parser": { 2511 | "version": "1.2.1", 2512 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2513 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 2514 | "dev": true, 2515 | "engines": { 2516 | "node": ">= 0.6" 2517 | } 2518 | }, 2519 | "node_modules/raw-body": { 2520 | "version": "2.5.2", 2521 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 2522 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 2523 | "dev": true, 2524 | "dependencies": { 2525 | "bytes": "3.1.2", 2526 | "http-errors": "2.0.0", 2527 | "iconv-lite": "0.4.24", 2528 | "unpipe": "1.0.0" 2529 | }, 2530 | "engines": { 2531 | "node": ">= 0.8" 2532 | } 2533 | }, 2534 | "node_modules/readdirp": { 2535 | "version": "3.6.0", 2536 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2537 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2538 | "dev": true, 2539 | "dependencies": { 2540 | "picomatch": "^2.2.1" 2541 | }, 2542 | "engines": { 2543 | "node": ">=8.10.0" 2544 | } 2545 | }, 2546 | "node_modules/require-directory": { 2547 | "version": "2.1.1", 2548 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2549 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2550 | "dev": true, 2551 | "engines": { 2552 | "node": ">=0.10.0" 2553 | } 2554 | }, 2555 | "node_modules/requires-port": { 2556 | "version": "1.0.0", 2557 | "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", 2558 | "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", 2559 | "dev": true 2560 | }, 2561 | "node_modules/resolve-from": { 2562 | "version": "4.0.0", 2563 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2564 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2565 | "dev": true, 2566 | "engines": { 2567 | "node": ">=4" 2568 | } 2569 | }, 2570 | "node_modules/reusify": { 2571 | "version": "1.0.4", 2572 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2573 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2574 | "dev": true, 2575 | "engines": { 2576 | "iojs": ">=1.0.0", 2577 | "node": ">=0.10.0" 2578 | } 2579 | }, 2580 | "node_modules/rfdc": { 2581 | "version": "1.4.1", 2582 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 2583 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 2584 | "dev": true 2585 | }, 2586 | "node_modules/rimraf": { 2587 | "version": "3.0.2", 2588 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2589 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2590 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 2591 | "dev": true, 2592 | "dependencies": { 2593 | "glob": "^7.1.3" 2594 | }, 2595 | "bin": { 2596 | "rimraf": "bin.js" 2597 | }, 2598 | "funding": { 2599 | "url": "https://github.com/sponsors/isaacs" 2600 | } 2601 | }, 2602 | "node_modules/run-parallel": { 2603 | "version": "1.2.0", 2604 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2605 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2606 | "dev": true, 2607 | "funding": [ 2608 | { 2609 | "type": "github", 2610 | "url": "https://github.com/sponsors/feross" 2611 | }, 2612 | { 2613 | "type": "patreon", 2614 | "url": "https://www.patreon.com/feross" 2615 | }, 2616 | { 2617 | "type": "consulting", 2618 | "url": "https://feross.org/support" 2619 | } 2620 | ], 2621 | "dependencies": { 2622 | "queue-microtask": "^1.2.2" 2623 | } 2624 | }, 2625 | "node_modules/safer-buffer": { 2626 | "version": "2.1.2", 2627 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2628 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 2629 | "dev": true 2630 | }, 2631 | "node_modules/semver": { 2632 | "version": "7.6.2", 2633 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 2634 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 2635 | "dev": true, 2636 | "bin": { 2637 | "semver": "bin/semver.js" 2638 | }, 2639 | "engines": { 2640 | "node": ">=10" 2641 | } 2642 | }, 2643 | "node_modules/set-function-length": { 2644 | "version": "1.2.2", 2645 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 2646 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 2647 | "dev": true, 2648 | "dependencies": { 2649 | "define-data-property": "^1.1.4", 2650 | "es-errors": "^1.3.0", 2651 | "function-bind": "^1.1.2", 2652 | "get-intrinsic": "^1.2.4", 2653 | "gopd": "^1.0.1", 2654 | "has-property-descriptors": "^1.0.2" 2655 | }, 2656 | "engines": { 2657 | "node": ">= 0.4" 2658 | } 2659 | }, 2660 | "node_modules/setprototypeof": { 2661 | "version": "1.2.0", 2662 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 2663 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 2664 | "dev": true 2665 | }, 2666 | "node_modules/shebang-command": { 2667 | "version": "2.0.0", 2668 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2669 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2670 | "dev": true, 2671 | "dependencies": { 2672 | "shebang-regex": "^3.0.0" 2673 | }, 2674 | "engines": { 2675 | "node": ">=8" 2676 | } 2677 | }, 2678 | "node_modules/shebang-regex": { 2679 | "version": "3.0.0", 2680 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2681 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2682 | "dev": true, 2683 | "engines": { 2684 | "node": ">=8" 2685 | } 2686 | }, 2687 | "node_modules/side-channel": { 2688 | "version": "1.0.6", 2689 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 2690 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 2691 | "dev": true, 2692 | "dependencies": { 2693 | "call-bind": "^1.0.7", 2694 | "es-errors": "^1.3.0", 2695 | "get-intrinsic": "^1.2.4", 2696 | "object-inspect": "^1.13.1" 2697 | }, 2698 | "engines": { 2699 | "node": ">= 0.4" 2700 | }, 2701 | "funding": { 2702 | "url": "https://github.com/sponsors/ljharb" 2703 | } 2704 | }, 2705 | "node_modules/slash": { 2706 | "version": "3.0.0", 2707 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2708 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2709 | "dev": true, 2710 | "engines": { 2711 | "node": ">=8" 2712 | } 2713 | }, 2714 | "node_modules/socket.io": { 2715 | "version": "4.7.5", 2716 | "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz", 2717 | "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==", 2718 | "dev": true, 2719 | "dependencies": { 2720 | "accepts": "~1.3.4", 2721 | "base64id": "~2.0.0", 2722 | "cors": "~2.8.5", 2723 | "debug": "~4.3.2", 2724 | "engine.io": "~6.5.2", 2725 | "socket.io-adapter": "~2.5.2", 2726 | "socket.io-parser": "~4.2.4" 2727 | }, 2728 | "engines": { 2729 | "node": ">=10.2.0" 2730 | } 2731 | }, 2732 | "node_modules/socket.io-adapter": { 2733 | "version": "2.5.5", 2734 | "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", 2735 | "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", 2736 | "dev": true, 2737 | "dependencies": { 2738 | "debug": "~4.3.4", 2739 | "ws": "~8.17.1" 2740 | } 2741 | }, 2742 | "node_modules/socket.io-parser": { 2743 | "version": "4.2.4", 2744 | "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", 2745 | "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", 2746 | "dev": true, 2747 | "dependencies": { 2748 | "@socket.io/component-emitter": "~3.1.0", 2749 | "debug": "~4.3.1" 2750 | }, 2751 | "engines": { 2752 | "node": ">=10.0.0" 2753 | } 2754 | }, 2755 | "node_modules/source-map": { 2756 | "version": "0.6.1", 2757 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2758 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2759 | "dev": true, 2760 | "engines": { 2761 | "node": ">=0.10.0" 2762 | } 2763 | }, 2764 | "node_modules/statuses": { 2765 | "version": "1.5.0", 2766 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2767 | "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 2768 | "dev": true, 2769 | "engines": { 2770 | "node": ">= 0.6" 2771 | } 2772 | }, 2773 | "node_modules/streamroller": { 2774 | "version": "3.1.5", 2775 | "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", 2776 | "integrity": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==", 2777 | "dev": true, 2778 | "dependencies": { 2779 | "date-format": "^4.0.14", 2780 | "debug": "^4.3.4", 2781 | "fs-extra": "^8.1.0" 2782 | }, 2783 | "engines": { 2784 | "node": ">=8.0" 2785 | } 2786 | }, 2787 | "node_modules/string-width": { 2788 | "version": "4.2.3", 2789 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2790 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2791 | "dev": true, 2792 | "dependencies": { 2793 | "emoji-regex": "^8.0.0", 2794 | "is-fullwidth-code-point": "^3.0.0", 2795 | "strip-ansi": "^6.0.1" 2796 | }, 2797 | "engines": { 2798 | "node": ">=8" 2799 | } 2800 | }, 2801 | "node_modules/strip-ansi": { 2802 | "version": "6.0.1", 2803 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2804 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2805 | "dev": true, 2806 | "dependencies": { 2807 | "ansi-regex": "^5.0.1" 2808 | }, 2809 | "engines": { 2810 | "node": ">=8" 2811 | } 2812 | }, 2813 | "node_modules/strip-json-comments": { 2814 | "version": "3.1.1", 2815 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2816 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2817 | "dev": true, 2818 | "engines": { 2819 | "node": ">=8" 2820 | }, 2821 | "funding": { 2822 | "url": "https://github.com/sponsors/sindresorhus" 2823 | } 2824 | }, 2825 | "node_modules/supports-color": { 2826 | "version": "7.2.0", 2827 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2828 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2829 | "dev": true, 2830 | "dependencies": { 2831 | "has-flag": "^4.0.0" 2832 | }, 2833 | "engines": { 2834 | "node": ">=8" 2835 | } 2836 | }, 2837 | "node_modules/synckit": { 2838 | "version": "0.8.8", 2839 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", 2840 | "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", 2841 | "dev": true, 2842 | "dependencies": { 2843 | "@pkgr/core": "^0.1.0", 2844 | "tslib": "^2.6.2" 2845 | }, 2846 | "engines": { 2847 | "node": "^14.18.0 || >=16.0.0" 2848 | }, 2849 | "funding": { 2850 | "url": "https://opencollective.com/unts" 2851 | } 2852 | }, 2853 | "node_modules/text-table": { 2854 | "version": "0.2.0", 2855 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2856 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2857 | "dev": true 2858 | }, 2859 | "node_modules/tmp": { 2860 | "version": "0.2.3", 2861 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", 2862 | "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", 2863 | "dev": true, 2864 | "engines": { 2865 | "node": ">=14.14" 2866 | } 2867 | }, 2868 | "node_modules/to-regex-range": { 2869 | "version": "5.0.1", 2870 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2871 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2872 | "dev": true, 2873 | "dependencies": { 2874 | "is-number": "^7.0.0" 2875 | }, 2876 | "engines": { 2877 | "node": ">=8.0" 2878 | } 2879 | }, 2880 | "node_modules/toidentifier": { 2881 | "version": "1.0.1", 2882 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 2883 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 2884 | "dev": true, 2885 | "engines": { 2886 | "node": ">=0.6" 2887 | } 2888 | }, 2889 | "node_modules/ts-api-utils": { 2890 | "version": "1.3.0", 2891 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 2892 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 2893 | "dev": true, 2894 | "engines": { 2895 | "node": ">=16" 2896 | }, 2897 | "peerDependencies": { 2898 | "typescript": ">=4.2.0" 2899 | } 2900 | }, 2901 | "node_modules/tslib": { 2902 | "version": "2.6.3", 2903 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", 2904 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", 2905 | "dev": true 2906 | }, 2907 | "node_modules/type-check": { 2908 | "version": "0.4.0", 2909 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2910 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2911 | "dev": true, 2912 | "dependencies": { 2913 | "prelude-ls": "^1.2.1" 2914 | }, 2915 | "engines": { 2916 | "node": ">= 0.8.0" 2917 | } 2918 | }, 2919 | "node_modules/type-fest": { 2920 | "version": "0.20.2", 2921 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2922 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2923 | "dev": true, 2924 | "engines": { 2925 | "node": ">=10" 2926 | }, 2927 | "funding": { 2928 | "url": "https://github.com/sponsors/sindresorhus" 2929 | } 2930 | }, 2931 | "node_modules/type-is": { 2932 | "version": "1.6.18", 2933 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2934 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2935 | "dev": true, 2936 | "dependencies": { 2937 | "media-typer": "0.3.0", 2938 | "mime-types": "~2.1.24" 2939 | }, 2940 | "engines": { 2941 | "node": ">= 0.6" 2942 | } 2943 | }, 2944 | "node_modules/typescript": { 2945 | "version": "5.5.3", 2946 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz", 2947 | "integrity": "sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==", 2948 | "dev": true, 2949 | "peer": true, 2950 | "bin": { 2951 | "tsc": "bin/tsc", 2952 | "tsserver": "bin/tsserver" 2953 | }, 2954 | "engines": { 2955 | "node": ">=14.17" 2956 | } 2957 | }, 2958 | "node_modules/ua-parser-js": { 2959 | "version": "0.7.38", 2960 | "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.38.tgz", 2961 | "integrity": "sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==", 2962 | "dev": true, 2963 | "funding": [ 2964 | { 2965 | "type": "opencollective", 2966 | "url": "https://opencollective.com/ua-parser-js" 2967 | }, 2968 | { 2969 | "type": "paypal", 2970 | "url": "https://paypal.me/faisalman" 2971 | }, 2972 | { 2973 | "type": "github", 2974 | "url": "https://github.com/sponsors/faisalman" 2975 | } 2976 | ], 2977 | "engines": { 2978 | "node": "*" 2979 | } 2980 | }, 2981 | "node_modules/undici-types": { 2982 | "version": "5.26.5", 2983 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 2984 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 2985 | "dev": true 2986 | }, 2987 | "node_modules/universalify": { 2988 | "version": "0.1.2", 2989 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", 2990 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", 2991 | "dev": true, 2992 | "engines": { 2993 | "node": ">= 4.0.0" 2994 | } 2995 | }, 2996 | "node_modules/unpipe": { 2997 | "version": "1.0.0", 2998 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2999 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 3000 | "dev": true, 3001 | "engines": { 3002 | "node": ">= 0.8" 3003 | } 3004 | }, 3005 | "node_modules/uri-js": { 3006 | "version": "4.4.1", 3007 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3008 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3009 | "dev": true, 3010 | "dependencies": { 3011 | "punycode": "^2.1.0" 3012 | } 3013 | }, 3014 | "node_modules/uri-js/node_modules/punycode": { 3015 | "version": "2.3.1", 3016 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3017 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3018 | "dev": true, 3019 | "engines": { 3020 | "node": ">=6" 3021 | } 3022 | }, 3023 | "node_modules/utils-merge": { 3024 | "version": "1.0.1", 3025 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 3026 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 3027 | "dev": true, 3028 | "engines": { 3029 | "node": ">= 0.4.0" 3030 | } 3031 | }, 3032 | "node_modules/uuid": { 3033 | "version": "10.0.0", 3034 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", 3035 | "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", 3036 | "funding": [ 3037 | "https://github.com/sponsors/broofa", 3038 | "https://github.com/sponsors/ctavan" 3039 | ], 3040 | "bin": { 3041 | "uuid": "dist/bin/uuid" 3042 | } 3043 | }, 3044 | "node_modules/vary": { 3045 | "version": "1.1.2", 3046 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 3047 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 3048 | "dev": true, 3049 | "engines": { 3050 | "node": ">= 0.8" 3051 | } 3052 | }, 3053 | "node_modules/void-elements": { 3054 | "version": "2.0.1", 3055 | "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", 3056 | "integrity": "sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==", 3057 | "dev": true, 3058 | "engines": { 3059 | "node": ">=0.10.0" 3060 | } 3061 | }, 3062 | "node_modules/which": { 3063 | "version": "2.0.2", 3064 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3065 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3066 | "dev": true, 3067 | "dependencies": { 3068 | "isexe": "^2.0.0" 3069 | }, 3070 | "bin": { 3071 | "node-which": "bin/node-which" 3072 | }, 3073 | "engines": { 3074 | "node": ">= 8" 3075 | } 3076 | }, 3077 | "node_modules/word-wrap": { 3078 | "version": "1.2.5", 3079 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3080 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3081 | "dev": true, 3082 | "engines": { 3083 | "node": ">=0.10.0" 3084 | } 3085 | }, 3086 | "node_modules/wrap-ansi": { 3087 | "version": "7.0.0", 3088 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3089 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3090 | "dev": true, 3091 | "dependencies": { 3092 | "ansi-styles": "^4.0.0", 3093 | "string-width": "^4.1.0", 3094 | "strip-ansi": "^6.0.0" 3095 | }, 3096 | "engines": { 3097 | "node": ">=10" 3098 | }, 3099 | "funding": { 3100 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3101 | } 3102 | }, 3103 | "node_modules/wrappy": { 3104 | "version": "1.0.2", 3105 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3106 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3107 | "dev": true 3108 | }, 3109 | "node_modules/ws": { 3110 | "version": "8.17.1", 3111 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", 3112 | "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", 3113 | "dev": true, 3114 | "engines": { 3115 | "node": ">=10.0.0" 3116 | }, 3117 | "peerDependencies": { 3118 | "bufferutil": "^4.0.1", 3119 | "utf-8-validate": ">=5.0.2" 3120 | }, 3121 | "peerDependenciesMeta": { 3122 | "bufferutil": { 3123 | "optional": true 3124 | }, 3125 | "utf-8-validate": { 3126 | "optional": true 3127 | } 3128 | } 3129 | }, 3130 | "node_modules/y18n": { 3131 | "version": "5.0.8", 3132 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3133 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3134 | "dev": true, 3135 | "engines": { 3136 | "node": ">=10" 3137 | } 3138 | }, 3139 | "node_modules/yargs": { 3140 | "version": "16.2.0", 3141 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 3142 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 3143 | "dev": true, 3144 | "dependencies": { 3145 | "cliui": "^7.0.2", 3146 | "escalade": "^3.1.1", 3147 | "get-caller-file": "^2.0.5", 3148 | "require-directory": "^2.1.1", 3149 | "string-width": "^4.2.0", 3150 | "y18n": "^5.0.5", 3151 | "yargs-parser": "^20.2.2" 3152 | }, 3153 | "engines": { 3154 | "node": ">=10" 3155 | } 3156 | }, 3157 | "node_modules/yargs-parser": { 3158 | "version": "20.2.9", 3159 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 3160 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 3161 | "dev": true, 3162 | "engines": { 3163 | "node": ">=10" 3164 | } 3165 | }, 3166 | "node_modules/yocto-queue": { 3167 | "version": "0.1.0", 3168 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3169 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3170 | "dev": true, 3171 | "engines": { 3172 | "node": ">=10" 3173 | }, 3174 | "funding": { 3175 | "url": "https://github.com/sponsors/sindresorhus" 3176 | } 3177 | } 3178 | } 3179 | } 3180 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "karma-webkit-launcher", 3 | "version": "2.6.0", 4 | "description": "A Karma plugin. Launcher for Webkit.", 5 | "preferGlobal": true, 6 | "keywords": [ 7 | "headless", 8 | "karma", 9 | "karma-launcher", 10 | "karma-plugin", 11 | "launcher", 12 | "playwright", 13 | "testing", 14 | "webkit" 15 | ], 16 | "main": "index.js", 17 | "license": "Apache-2.0", 18 | "dependencies": { 19 | "is-ci": "^3.0.1", 20 | "uuid": "^10.0.0" 21 | }, 22 | "devDependencies": { 23 | "@typescript-eslint/eslint-plugin": "^7.16.0", 24 | "eslint": "^8.56.0", 25 | "eslint-config-google": "^0.14.0", 26 | "eslint-config-prettier": "^9.1.0", 27 | "eslint-plugin-prettier": "^5.1.3", 28 | "karma": "^6.4.3", 29 | "karma-jasmine": "^5.1.0", 30 | "playwright-webkit": "^1.45.1", 31 | "prettier": "^3.3.2" 32 | }, 33 | "peerDependenciesMeta": { 34 | "playwright": { 35 | "optional": true 36 | } 37 | }, 38 | "author": { 39 | "name": "Markus Bordihn", 40 | "email": "Markus@Bordihn.de", 41 | "url": "https://github.com/MarkusBordihn" 42 | }, 43 | "repository": { 44 | "type": "git", 45 | "url": "https://github.com/google/karma-webkit-launcher.git" 46 | }, 47 | "bugs": { 48 | "url": "https://github.com/google/karma-webkit-launcher/issues" 49 | }, 50 | "scripts": { 51 | "lint": "eslint .", 52 | "lint-fix": "eslint . --fix", 53 | "test": "npm run test:auto_detect && npm run test:playwright && npm run test:playwright_headless", 54 | "test:auto_detect": "karma start test/auto_detect_test.conf", 55 | "test:epiphany": "karma start test/epiphany_test.conf", 56 | "test:safari": "karma start test/safari_test.conf", 57 | "test:playwright": "karma start test/playwright_test.conf", 58 | "test:playwright_headless": "karma start test/playwright_headless_test.conf", 59 | "sync": "git pull && npm install & npm update && npm prune && npm audit fix", 60 | "upgrade": "npx npm-check -u --skip-unused && npm install && npm update && npm prune && npm audit fix", 61 | "postupgrade": "npm run test" 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /scripts/CloseSafariTab.scpt: -------------------------------------------------------------------------------- 1 | -- Author: Markus Bordihn (mbordihn@google.com) 2 | -- Description: Close the passed Tab and quit the browser if no other tabs are open. 3 | 4 | on run argv 5 | 6 | tell application "Safari" 7 | close documents where URL = (item 1 of argv) 8 | end tell 9 | 10 | tell application "Safari" 11 | if number of tabs in windows <= 0 or (number of documents = 1 and document 1's source = "") 12 | quit 13 | end if 14 | end tell 15 | 16 | end run 17 | -------------------------------------------------------------------------------- /scripts/LaunchSafari.scpt: -------------------------------------------------------------------------------- 1 | -- Author: Markus Bordihn (mbordihn@google.com) 2 | -- Description: Open the passed URL over Safari 3 | 4 | on run argv 5 | 6 | tell application "Safari" 7 | make new document with properties {URL: (item 1 of argv)} 8 | end tell 9 | 10 | delay 60 11 | 12 | end run 13 | -------------------------------------------------------------------------------- /test/auto_detect_test.conf.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview MacOS specific tests config for karma-webkit-launcher. 3 | * 4 | * @license Copyright 2023 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | module.exports = (config) => { 22 | config.set({ 23 | basePath: "..", 24 | browserConsoleLogOptions: { level: "warn" }, 25 | browsers: ["Webkit"], 26 | singleRun: true, 27 | frameworks: ["jasmine"], 28 | files: ["test/browser_test.js"], 29 | plugins: [require.resolve("../"), "karma-jasmine"], 30 | }); 31 | }; 32 | -------------------------------------------------------------------------------- /test/browser_test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Karma Webkit Launcher - Test 3 | * 4 | * @license Copyright 2021 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | /** 22 | * @param {function} callback 23 | */ 24 | function deferredCallback(callback) { 25 | setTimeout(function () { 26 | callback("done."); 27 | }, 1000); 28 | } 29 | 30 | describe("Karma Webkit Launcher", function () { 31 | it("open", function () { 32 | expect(typeof window.webkitConvertPointFromNodeToPage).toEqual("function"); 33 | }); 34 | 35 | it("Simple Calculation: 1 + 1 = 2", function () { 36 | expect(1 + 1).toEqual(2); 37 | }); 38 | 39 | it("Timeout with 100ms delay", function (done) { 40 | setTimeout(() => { 41 | done(); 42 | }, 100); 43 | }); 44 | 45 | it("Timeout with 500ms delay", function (done) { 46 | setTimeout(() => { 47 | done(); 48 | }, 500); 49 | }); 50 | 51 | it("Deferred callback after 1 sec", function () { 52 | jasmine.clock().install(); 53 | const callback = jasmine.createSpy("callback"); 54 | deferredCallback(callback); 55 | jasmine.clock().tick(1000); 56 | expect(callback).toHaveBeenCalledWith("done."); 57 | jasmine.clock().uninstall(); 58 | }); 59 | }); 60 | -------------------------------------------------------------------------------- /test/epiphany_test.conf.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Epiphany specific tests config for karma-webkit-launcher. 3 | * 4 | * @license Copyright 2021 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | module.exports = (config) => { 22 | config.set({ 23 | basePath: "..", 24 | browserConsoleLogOptions: { level: "warn" }, 25 | browsers: ["Epiphany"], 26 | singleRun: true, 27 | frameworks: ["jasmine"], 28 | files: ["test/browser_test.js"], 29 | plugins: [require.resolve("../"), "karma-jasmine"], 30 | }); 31 | }; 32 | -------------------------------------------------------------------------------- /test/playwright_headless_test.conf.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Playwright specific tests config for karma-webkit-launcher. 3 | * 4 | * @license Copyright 2023 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | const { webkit } = require("playwright-webkit"); 22 | process.env.WEBKIT_HEADLESS_BIN = webkit.executablePath(); 23 | 24 | module.exports = (config) => { 25 | config.set({ 26 | basePath: "..", 27 | browserConsoleLogOptions: { level: "warn" }, 28 | browsers: ["WebkitHeadless"], 29 | singleRun: true, 30 | frameworks: ["jasmine"], 31 | files: ["test/browser_test.js", "test/playwright_test.js"], 32 | plugins: [require.resolve("../"), "karma-jasmine"], 33 | }); 34 | }; 35 | -------------------------------------------------------------------------------- /test/playwright_test.conf.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Playwright specific tests config for karma-webkit-launcher. 3 | * 4 | * @license Copyright 2021 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | const { webkit } = require("playwright-webkit"); 22 | process.env.WEBKIT_BIN = webkit.executablePath(); 23 | 24 | module.exports = (config) => { 25 | config.set({ 26 | basePath: "..", 27 | browserConsoleLogOptions: { level: "warn" }, 28 | browsers: ["Webkit"], 29 | singleRun: true, 30 | frameworks: ["jasmine"], 31 | files: ["test/browser_test.js", "test/playwright_test.js"], 32 | plugins: [require.resolve("../"), "karma-jasmine"], 33 | }); 34 | }; 35 | -------------------------------------------------------------------------------- /test/playwright_test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Karma Webkit Launcher - Test 3 | * 4 | * @license Copyright 2023 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | describe("Karma Webkit Launcher", function () { 22 | it("Playwright Environment", function () { 23 | expect( 24 | new URLSearchParams(document.referrer || window.location.search).get( 25 | "test_browser", 26 | ), 27 | ).toEqual("Playwright"); 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /test/safari_test.conf.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview MacOS specific tests config for karma-webkit-launcher. 3 | * 4 | * @license Copyright 2023 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | module.exports = (config) => { 22 | config.set({ 23 | basePath: "..", 24 | browserConsoleLogOptions: { level: "warn" }, 25 | browsers: ["Safari"], 26 | singleRun: true, 27 | frameworks: ["jasmine"], 28 | files: ["test/browser_test.js", "test/safari_test.js"], 29 | plugins: [require.resolve("../"), "karma-jasmine"], 30 | }); 31 | }; 32 | -------------------------------------------------------------------------------- /test/safari_test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Karma Webkit Launcher - Test 3 | * 4 | * @license Copyright 2023 Google Inc. All Rights Reserved. 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | * @author mbordihn@google.com (Markus Bordihn) 19 | */ 20 | 21 | describe("Karma Webkit Launcher", function () { 22 | it("Safari Environment", function () { 23 | expect( 24 | new URLSearchParams(document.referrer || window.location.search).get( 25 | "test_browser", 26 | ), 27 | ).toEqual("Safari"); 28 | }); 29 | }); 30 | --------------------------------------------------------------------------------