├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── support-request.md └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── config.schema.json ├── eslint.config.js ├── nodemon.json ├── package-lock.json ├── package.json ├── src ├── @types │ └── homebridge-lib.d.ts ├── index.ts ├── platform.ts ├── platformAccessory.ts └── settings.ts ├── test └── hbConfig │ ├── auth.json │ └── config.json └── tsconfig.json /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Describe The Bug:** 13 | 14 | 15 | **To Reproduce:** 16 | 17 | 18 | **Expected behavior:** 19 | 20 | 21 | **Logs:** 22 | 23 | ``` 24 | Show the Homebridge logs here, remove any sensitive information. 25 | ``` 26 | 27 | **Plugin Config:** 28 | 29 | ```json 30 | Show your Homebridge config.json here, remove any sensitive information. 31 | ``` 32 | 33 | **Screenshots:** 34 | 35 | 36 | **Environment:** 37 | 38 | * **Plugin Version**: 39 | * **Homebridge Version**: 40 | * **Node.js Version**: 41 | * **NPM Version**: 42 | * **Operating System**: 43 | 44 | 45 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # blank_issues_enabled: false 2 | # contact_links: 3 | # - name: Homebridge Discord Community 4 | # url: https://discord.gg/kqNCe2D 5 | # about: Ask your questions in the #YOUR_CHANNEL_HERE channel 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe:** 11 | 12 | 13 | **Describe the solution you'd like:** 14 | 15 | 16 | **Describe alternatives you've considered:** 17 | 18 | 19 | **Additional context:** 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Support Request 3 | about: Need help? 4 | title: '' 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Describe Your Problem:** 13 | 14 | 15 | **Logs:** 16 | 17 | ``` 18 | Show the Homebridge logs here, remove any sensitive information. 19 | ``` 20 | 21 | **Plugin Config:** 22 | 23 | ```json 24 | Show your Homebridge config.json here, remove any sensitive information. 25 | ``` 26 | 27 | **Screenshots:** 28 | 29 | 30 | **Environment:** 31 | 32 | * **Plugin Version**: 33 | * **Homebridge Version**: 34 | * **Node.js Version**: 35 | * **NPM Version**: 36 | * **Operating System**: 37 | 38 | 39 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build and Lint 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | 9 | strategy: 10 | fail-fast: false 11 | matrix: 12 | node-version: [18.x, 20.x, 22.x] 13 | 14 | steps: 15 | - uses: actions/checkout@v4 16 | 17 | - name: Use Node.js ${{ matrix.node-version }} 18 | uses: actions/setup-node@v4 19 | with: 20 | node-version: ${{ matrix.node-version }} 21 | 22 | - name: Install dependencies 23 | run: npm install 24 | 25 | - name: Lint the project 26 | run: npm run lint 27 | 28 | - name: Build the project 29 | run: npm run build 30 | 31 | - name: List, audit, fix outdated dependencies and build again 32 | run: | 33 | npm list --outdated 34 | npm audit || true # ignore failures 35 | npm audit fix || true 36 | npm list --outdated 37 | npm run build 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore compiled code 2 | dist 3 | 4 | # ------------- Defaults ------------- # 5 | .DS_Store 6 | 7 | # Logs 8 | logs 9 | *.log 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | lerna-debug.log* 14 | 15 | # Diagnostic reports (https://nodejs.org/api/report.html) 16 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 17 | 18 | # Runtime data 19 | pids 20 | *.pid 21 | *.seed 22 | *.pid.lock 23 | 24 | # Directory for instrumented libs generated by jscoverage/JSCover 25 | lib-cov 26 | 27 | # Coverage directory used by tools like istanbul 28 | coverage 29 | *.lcov 30 | 31 | # nyc test coverage 32 | .nyc_output 33 | 34 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 35 | .grunt 36 | 37 | # Bower dependency directory (https://bower.io/) 38 | bower_components 39 | 40 | # node-waf configuration 41 | .lock-wscript 42 | 43 | # Compiled binary addons (https://nodejs.org/api/addons.html) 44 | build/Release 45 | 46 | # Dependency directories 47 | node_modules/ 48 | jspm_packages/ 49 | 50 | # Snowpack dependency directory (https://snowpack.dev/) 51 | web_modules/ 52 | 53 | # TypeScript cache 54 | *.tsbuildinfo 55 | 56 | # Optional npm cache directory 57 | .npm 58 | 59 | # Optional eslint cache 60 | .eslintcache 61 | 62 | # Microbundle cache 63 | .rpt2_cache/ 64 | .rts2_cache_cjs/ 65 | .rts2_cache_es/ 66 | .rts2_cache_umd/ 67 | 68 | # Optional REPL history 69 | .node_repl_history 70 | 71 | # Output of 'npm pack' 72 | *.tgz 73 | 74 | # Yarn Integrity file 75 | .yarn-integrity 76 | 77 | # dotenv environment variables file 78 | .env 79 | .env.test 80 | 81 | # parcel-bundler cache (https://parceljs.org/) 82 | .cache 83 | .parcel-cache 84 | 85 | # Next.js build output 86 | .next 87 | 88 | # Nuxt.js build / generate output 89 | .nuxt 90 | dist 91 | 92 | # Gatsby files 93 | .cache/ 94 | # Comment in the public line in if your project uses Gatsby and not Next.js 95 | # https://nextjs.org/blog/next-9-1#public-directory-support 96 | # public 97 | 98 | # vuepress build output 99 | .vuepress/dist 100 | 101 | # Serverless directories 102 | .serverless/ 103 | 104 | # FuseBox cache 105 | .fusebox/ 106 | 107 | # DynamoDB Local files 108 | .dynamodb/ 109 | 110 | # TernJS port file 111 | .tern-port 112 | 113 | # Stores VSCode versions used for testing VSCode extensions 114 | .vscode-test 115 | 116 | # yarn v2 117 | 118 | .yarn/cache 119 | .yarn/unplugged 120 | .yarn/build-state.yml 121 | .pnp.* 122 | 123 | # Webstorm 124 | .idea 125 | 126 | /test/hbConfig 127 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Ignore source code 2 | src 3 | 4 | # ------------- Defaults ------------- # 5 | 6 | # gitHub actions 7 | .github 8 | 9 | # eslint 10 | eslint.config.js 11 | 12 | # typescript 13 | tsconfig.json 14 | 15 | # vscode 16 | .vscode 17 | 18 | # nodemon 19 | nodemon.json 20 | 21 | # Logs 22 | logs 23 | *.log 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | lerna-debug.log* 28 | 29 | # Diagnostic reports (https://nodejs.org/api/report.html) 30 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 31 | 32 | # Runtime data 33 | pids 34 | *.pid 35 | *.seed 36 | *.pid.lock 37 | 38 | # Directory for instrumented libs generated by jscoverage/JSCover 39 | lib-cov 40 | 41 | # Coverage directory used by tools like istanbul 42 | coverage 43 | *.lcov 44 | 45 | # nyc test coverage 46 | .nyc_output 47 | 48 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 49 | .grunt 50 | 51 | # Bower dependency directory (https://bower.io/) 52 | bower_components 53 | 54 | # node-waf configuration 55 | .lock-wscript 56 | 57 | # Compiled binary addons (https://nodejs.org/api/addons.html) 58 | build/Release 59 | 60 | # Dependency directories 61 | node_modules/ 62 | jspm_packages/ 63 | 64 | # Snowpack dependency directory (https://snowpack.dev/) 65 | web_modules/ 66 | 67 | # TypeScript cache 68 | *.tsbuildinfo 69 | 70 | # Optional npm cache directory 71 | .npm 72 | 73 | # Optional eslint cache 74 | .eslintcache 75 | 76 | # Microbundle cache 77 | .rpt2_cache/ 78 | .rts2_cache_cjs/ 79 | .rts2_cache_es/ 80 | .rts2_cache_umd/ 81 | 82 | # Optional REPL history 83 | .node_repl_history 84 | 85 | # Output of 'npm pack' 86 | *.tgz 87 | 88 | # Yarn Integrity file 89 | .yarn-integrity 90 | 91 | # dotenv environment variables file 92 | .env 93 | .env.test 94 | 95 | # parcel-bundler cache (https://parceljs.org/) 96 | .cache 97 | .parcel-cache 98 | 99 | # Next.js build output 100 | .next 101 | 102 | # Nuxt.js build / generate output 103 | .nuxt 104 | 105 | # Gatsby files 106 | .cache/ 107 | # Comment in the public line in if your project uses Gatsby and not Next.js 108 | # https://nextjs.org/blog/next-9-1#public-directory-support 109 | # public 110 | 111 | # vuepress build output 112 | .vuepress/dist 113 | 114 | # Serverless directories 115 | .serverless/ 116 | 117 | # FuseBox cache 118 | .fusebox/ 119 | 120 | # DynamoDB Local files 121 | .dynamodb/ 122 | 123 | # TernJS port file 124 | .tern-port 125 | 126 | # Stores VSCode versions used for testing VSCode extensions 127 | .vscode-test 128 | 129 | # yarn v2 130 | 131 | .yarn/cache 132 | .yarn/unplugged 133 | .yarn/build-state.yml 134 | .pnp.* 135 | 136 | test/ -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.eol": "\n", 3 | "editor.codeActionsOnSave": { 4 | "source.fixAll.eslint": "explicit" 5 | }, 6 | "editor.rulers": [ 7 | 140 8 | ], 9 | "eslint.enable": true 10 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 |

6 | 7 | 8 | 9 | # Homebridge Platform Plugin Template 10 | 11 | 12 | 13 | > [!IMPORTANT] 14 | > **Homebridge v2.0 Information** 15 | > 16 | > This template currently has a 17 | > - `package.json -> engines.homebridge` value of `"^1.8.0 || ^2.0.0-beta.0"` 18 | > - `package.json -> devDependencies.homebridge` value of `"^2.0.0-beta.0"` 19 | > 20 | > This is to ensure that your plugin will build and run on both Homebridge v1 and v2. 21 | > 22 | > Once Homebridge v2.0 has been released, you can remove the `-beta.0` in both places. 23 | 24 | --- 25 | 26 | This is a template Homebridge dynamic platform plugin and can be used as a base to help you get started developing your own plugin. 27 | 28 | This template should be used in conjunction with the [developer documentation](https://developers.homebridge.io/). A full list of all supported service types, and their characteristics is available on this site. 29 | 30 | ### Clone As Template 31 | 32 | Click the link below to create a new GitHub Repository using this template, or click the *Use This Template* button above. 33 | 34 | 35 | 36 | ### [Create New Repository From Template](https://github.com/homebridge/homebridge-plugin-template/generate) 37 | 38 | 39 | 40 | ### Setup Development Environment 41 | 42 | To develop Homebridge plugins you must have Node.js 18 or later installed, and a modern code editor such as [VS Code](https://code.visualstudio.com/). This plugin template uses [TypeScript](https://www.typescriptlang.org/) to make development easier and comes with pre-configured settings for [VS Code](https://code.visualstudio.com/) and ESLint. If you are using VS Code install these extensions: 43 | 44 | - [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) 45 | 46 | ### Install Development Dependencies 47 | 48 | Using a terminal, navigate to the project folder and run this command to install the development dependencies: 49 | 50 | ```shell 51 | npm install 52 | ``` 53 | 54 | ### Update package.json 55 | 56 | Open the [`package.json`](./package.json) and change the following attributes: 57 | 58 | - `name` - this should be prefixed with `homebridge-` or `@username/homebridge-`, is case-sensitive, and contains no spaces nor special characters apart from a dash `-` 59 | - `displayName` - this is the "nice" name displayed in the Homebridge UI 60 | - `homepage` - link to your GitHub repo's `README.md` 61 | - `repository.url` - link to your GitHub repo 62 | - `bugs.url` - link to your GitHub repo issues page 63 | 64 | When you are ready to publish the plugin you should set `private` to false, or remove the attribute entirely. 65 | 66 | ### Update Plugin Defaults 67 | 68 | Open the [`src/settings.ts`](./src/settings.ts) file and change the default values: 69 | 70 | - `PLATFORM_NAME` - Set this to be the name of your platform. This is the name of the platform that users will use to register the plugin in the Homebridge `config.json`. 71 | - `PLUGIN_NAME` - Set this to be the same name you set in the [`package.json`](./package.json) file. 72 | 73 | Open the [`config.schema.json`](./config.schema.json) file and change the following attribute: 74 | 75 | - `pluginAlias` - set this to match the `PLATFORM_NAME` you defined in the previous step. 76 | 77 | See the [Homebridge API docs](https://developers.homebridge.io/#/config-schema#default-values) for more details on the other attributes you can set in the `config.schema.json` file. 78 | 79 | ### Build Plugin 80 | 81 | TypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your [`src`](./src) directory and put the resulting code into the `dist` folder. 82 | 83 | ```shell 84 | npm run build 85 | ``` 86 | 87 | ### Link To Homebridge 88 | 89 | Run this command so your global installation of Homebridge can discover the plugin in your development environment: 90 | 91 | ```shell 92 | npm link 93 | ``` 94 | 95 | You can now start Homebridge, use the `-D` flag, so you can see debug log messages in your plugin: 96 | 97 | ```shell 98 | homebridge -D 99 | ``` 100 | 101 | ### Watch For Changes and Build Automatically 102 | 103 | If you want to have your code compile automatically as you make changes, and restart Homebridge automatically between changes, you first need to add your plugin as a platform in `./test/hbConfig/config.json`: 104 | ``` 105 | { 106 | ... 107 | "platforms": [ 108 | { 109 | "name": "Config", 110 | "port": 8581, 111 | "platform": "config" 112 | }, 113 | { 114 | "name": "", 115 | //... any other options, as listed in config.schema.json ... 116 | "platform": "" 117 | } 118 | ] 119 | } 120 | ``` 121 | 122 | and then you can run: 123 | 124 | ```shell 125 | npm run watch 126 | ``` 127 | 128 | This will launch an instance of Homebridge in debug mode which will restart every time you make a change to the source code. It will load the config stored in the default location under `~/.homebridge`. You may need to stop other running instances of Homebridge while using this command to prevent conflicts. You can adjust the Homebridge startup command in the [`nodemon.json`](./nodemon.json) file. 129 | 130 | ### Customise Plugin 131 | 132 | You can now start customising the plugin template to suit your requirements. 133 | 134 | - [`src/platform.ts`](./src/platform.ts) - this is where your device setup and discovery should go. 135 | - [`src/platformAccessory.ts`](./src/platformAccessory.ts) - this is where your accessory control logic should go, you can rename or create multiple instances of this file for each accessory type you need to implement as part of your platform plugin. You can refer to the [developer documentation](https://developers.homebridge.io/) to see what characteristics you need to implement for each service type. 136 | - [`config.schema.json`](./config.schema.json) - update the config schema to match the config you expect from the user. See the [Plugin Config Schema Documentation](https://developers.homebridge.io/#/config-schema). 137 | 138 | ### Versioning Your Plugin 139 | 140 | Given a version number `MAJOR`.`MINOR`.`PATCH`, such as `1.4.3`, increment the: 141 | 142 | 1. **MAJOR** version when you make breaking changes to your plugin, 143 | 2. **MINOR** version when you add functionality in a backwards compatible manner, and 144 | 3. **PATCH** version when you make backwards compatible bug fixes. 145 | 146 | You can use the `npm version` command to help you with this: 147 | 148 | ```shell 149 | # major update / breaking changes 150 | npm version major 151 | 152 | # minor update / new features 153 | npm version update 154 | 155 | # patch / bugfixes 156 | npm version patch 157 | ``` 158 | 159 | ### Publish Package 160 | 161 | When you are ready to publish your plugin to [npm](https://www.npmjs.com/), make sure you have removed the `private` attribute from the [`package.json`](./package.json) file then run: 162 | 163 | ```shell 164 | npm publish 165 | ``` 166 | 167 | If you are publishing a scoped plugin, i.e. `@username/homebridge-xxx` you will need to add `--access=public` to command the first time you publish. 168 | 169 | #### Publishing Beta Versions 170 | 171 | You can publish *beta* versions of your plugin for other users to test before you release it to everyone. 172 | 173 | ```shell 174 | # create a new pre-release version (eg. 2.1.0-beta.1) 175 | npm version prepatch --preid beta 176 | 177 | # publish to @beta 178 | npm publish --tag beta 179 | ``` 180 | 181 | Users can then install the *beta* version by appending `@beta` to the install command, for example: 182 | 183 | ```shell 184 | sudo npm install -g homebridge-example-plugin@beta 185 | ``` 186 | 187 | ### Best Practices 188 | 189 | Consider creating your plugin with the [Homebridge Verified](https://github.com/homebridge/verified) criteria in mind. This will help you to create a plugin that is easy to use and works well with Homebridge. 190 | You can then submit your plugin to the Homebridge Verified list for review. 191 | The most up-to-date criteria can be found [here](https://github.com/homebridge/verified#requirements). 192 | For reference, the current criteria are: 193 | 194 | - **General** 195 | - The plugin must be of type [dynamic platform](https://developers.homebridge.io/#/#dynamic-platform-template). 196 | - The plugin must not offer the same nor less functionality than that of any existing **verified** plugin. 197 | - **Repo** 198 | - The plugin must be published to NPM and the source code available on a GitHub repository, with issues enabled. 199 | - A GitHub release should be created for every new version of your plugin, with release notes. 200 | - **Environment** 201 | - The plugin must run on all [supported LTS versions of Node.js](https://github.com/homebridge/homebridge/wiki/How-To-Update-Node.js), at the time of writing this is Node v18, v20 and v22. 202 | - The plugin must successfully install and not start unless it is configured. 203 | - The plugin must not execute post-install scripts that modify the users' system in any way. 204 | - The plugin must not require the user to run Homebridge in a TTY or with non-standard startup parameters, even for initial configuration. 205 | - **Codebase** 206 | - The plugin must implement the [Homebridge Plugin Settings GUI](https://developers.homebridge.io/#/config-schema). 207 | - The plugin must not contain any analytics or calls that enable you to track the user. 208 | - If the plugin needs to write files to disk (cache, keys, etc.), it must store them inside the Homebridge storage directory. 209 | - The plugin must not throw unhandled exceptions, the plugin must catch and log its own errors. 210 | 211 | ### Useful Links 212 | 213 | Note these links are here for help but are not supported/verified by the Homebridge team 214 | 215 | - [Custom Characteristics](https://github.com/homebridge/homebridge-plugin-template/issues/20) 216 | -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginAlias": "ExampleHomebridgePlugin", 3 | "pluginType": "platform", 4 | "singular": true, 5 | "strictValidation": false, 6 | "schema": { 7 | "type": "object", 8 | "properties": { 9 | "name": { 10 | "title": "Name", 11 | "type": "string", 12 | "required": true, 13 | "default": "Example Dynamic Platform" 14 | } 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import eslint from '@eslint/js'; 2 | import tseslint from 'typescript-eslint'; 3 | 4 | export default tseslint.config( 5 | { 6 | ignores: ['dist/**'], 7 | }, 8 | { 9 | rules: { 10 | 'quotes': ['error', 'single'], 11 | 'indent': ['error', 2, { 'SwitchCase': 0 }], 12 | 'linebreak-style': ['error', 'unix'], 13 | 'semi': ['error', 'always'], 14 | 'comma-dangle': ['error', 'always-multiline'], 15 | 'dot-notation': 'error', 16 | 'eqeqeq': ['error', 'smart'], 17 | 'curly': ['error', 'all'], 18 | 'brace-style': ['error'], 19 | 'prefer-arrow-callback': 'warn', 20 | 'max-len': ['warn', 160], 21 | 'object-curly-spacing': ['error', 'always'], 22 | 'no-use-before-define': 'off', 23 | '@typescript-eslint/no-use-before-define': ['error', { 'classes': false, 'enums': false }], 24 | '@typescript-eslint/no-unused-vars': ['error', { 'caughtErrors': 'none' }], 25 | }, 26 | }, 27 | { 28 | languageOptions: { 29 | ecmaVersion: 2022, 30 | sourceType: 'module', 31 | }, 32 | }, 33 | eslint.configs.recommended, 34 | ...tseslint.configs.recommended, 35 | ); 36 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "watch": [ 3 | "src" 4 | ], 5 | "ext": "ts", 6 | "ignore": [], 7 | "exec": "tsc && homebridge -U ./test/hbConfig -D", 8 | "signal": "SIGTERM", 9 | "env": { 10 | "NODE_OPTIONS": "--trace-warnings" 11 | } 12 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "homebridge-plugin-name", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "homebridge-plugin-name", 9 | "version": "1.0.0", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "homebridge-lib": "^7.1.4" 13 | }, 14 | "devDependencies": { 15 | "@eslint/js": "^9.21.0", 16 | "@types/node": "^22.13.5", 17 | "eslint": "^9.21.0", 18 | "homebridge": "^2.0.0-beta.0", 19 | "nodemon": "^3.1.9", 20 | "rimraf": "^6.0.1", 21 | "ts-node": "^10.9.2", 22 | "typescript": "^5.7.3", 23 | "typescript-eslint": "^8.24.1" 24 | }, 25 | "engines": { 26 | "homebridge": "^1.8.0 || ^2.0.0-beta.0", 27 | "node": "^18.20.4 || ^20.18.0 || ^22.10.0" 28 | } 29 | }, 30 | "node_modules/@cspotcode/source-map-support": { 31 | "version": "0.8.1", 32 | "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", 33 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", 34 | "dev": true, 35 | "license": "MIT", 36 | "dependencies": { 37 | "@jridgewell/trace-mapping": "0.3.9" 38 | }, 39 | "engines": { 40 | "node": ">=12" 41 | } 42 | }, 43 | "node_modules/@eslint-community/eslint-utils": { 44 | "version": "4.4.1", 45 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 46 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 47 | "dev": true, 48 | "license": "MIT", 49 | "dependencies": { 50 | "eslint-visitor-keys": "^3.4.3" 51 | }, 52 | "engines": { 53 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 54 | }, 55 | "funding": { 56 | "url": "https://opencollective.com/eslint" 57 | }, 58 | "peerDependencies": { 59 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 60 | } 61 | }, 62 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 63 | "version": "3.4.3", 64 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 65 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 66 | "dev": true, 67 | "license": "Apache-2.0", 68 | "engines": { 69 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 70 | }, 71 | "funding": { 72 | "url": "https://opencollective.com/eslint" 73 | } 74 | }, 75 | "node_modules/@eslint-community/regexpp": { 76 | "version": "4.12.1", 77 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 78 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 79 | "dev": true, 80 | "license": "MIT", 81 | "engines": { 82 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 83 | } 84 | }, 85 | "node_modules/@eslint/config-array": { 86 | "version": "0.19.2", 87 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", 88 | "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", 89 | "dev": true, 90 | "license": "Apache-2.0", 91 | "dependencies": { 92 | "@eslint/object-schema": "^2.1.6", 93 | "debug": "^4.3.1", 94 | "minimatch": "^3.1.2" 95 | }, 96 | "engines": { 97 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 98 | } 99 | }, 100 | "node_modules/@eslint/core": { 101 | "version": "0.12.0", 102 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", 103 | "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", 104 | "dev": true, 105 | "license": "Apache-2.0", 106 | "dependencies": { 107 | "@types/json-schema": "^7.0.15" 108 | }, 109 | "engines": { 110 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 111 | } 112 | }, 113 | "node_modules/@eslint/eslintrc": { 114 | "version": "3.3.0", 115 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz", 116 | "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==", 117 | "dev": true, 118 | "license": "MIT", 119 | "dependencies": { 120 | "ajv": "^6.12.4", 121 | "debug": "^4.3.2", 122 | "espree": "^10.0.1", 123 | "globals": "^14.0.0", 124 | "ignore": "^5.2.0", 125 | "import-fresh": "^3.2.1", 126 | "js-yaml": "^4.1.0", 127 | "minimatch": "^3.1.2", 128 | "strip-json-comments": "^3.1.1" 129 | }, 130 | "engines": { 131 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 132 | }, 133 | "funding": { 134 | "url": "https://opencollective.com/eslint" 135 | } 136 | }, 137 | "node_modules/@eslint/js": { 138 | "version": "9.21.0", 139 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz", 140 | "integrity": "sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==", 141 | "dev": true, 142 | "license": "MIT", 143 | "engines": { 144 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 145 | } 146 | }, 147 | "node_modules/@eslint/object-schema": { 148 | "version": "2.1.6", 149 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 150 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 151 | "dev": true, 152 | "license": "Apache-2.0", 153 | "engines": { 154 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 155 | } 156 | }, 157 | "node_modules/@eslint/plugin-kit": { 158 | "version": "0.2.7", 159 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", 160 | "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", 161 | "dev": true, 162 | "license": "Apache-2.0", 163 | "dependencies": { 164 | "@eslint/core": "^0.12.0", 165 | "levn": "^0.4.1" 166 | }, 167 | "engines": { 168 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 169 | } 170 | }, 171 | "node_modules/@homebridge/ciao": { 172 | "version": "1.3.1", 173 | "resolved": "https://registry.npmjs.org/@homebridge/ciao/-/ciao-1.3.1.tgz", 174 | "integrity": "sha512-87tQCBNNnTymlbg8pKlQjRsk7a5uuqhWBpCbUriVYUebz3voJkLbbTmp0TQg7Sa6Jnpk/Uo6LA8zAOy2sbK9bw==", 175 | "dev": true, 176 | "license": "MIT", 177 | "dependencies": { 178 | "debug": "^4.3.6", 179 | "fast-deep-equal": "^3.1.3", 180 | "source-map-support": "^0.5.21", 181 | "tslib": "^2.6.3" 182 | }, 183 | "bin": { 184 | "ciao-bcs": "lib/bonjour-conformance-testing.js" 185 | }, 186 | "engines": { 187 | "node": "^18 || ^20 || ^22" 188 | } 189 | }, 190 | "node_modules/@homebridge/dbus-native": { 191 | "version": "0.6.0", 192 | "resolved": "https://registry.npmjs.org/@homebridge/dbus-native/-/dbus-native-0.6.0.tgz", 193 | "integrity": "sha512-xObqQeYHTXmt6wsfj10+krTo4xbzR9BgUfX2aQ+edDC9nc4ojfzLScfXCh3zluAm6UCowKw+AFfXn6WLWUOPkg==", 194 | "dev": true, 195 | "license": "MIT", 196 | "dependencies": { 197 | "@homebridge/long": "^5.2.1", 198 | "@homebridge/put": "^0.0.8", 199 | "event-stream": "^4.0.1", 200 | "hexy": "^0.3.5", 201 | "minimist": "^1.2.6", 202 | "safe-buffer": "^5.1.2", 203 | "xml2js": "^0.6.2" 204 | }, 205 | "bin": { 206 | "dbus2js": "bin/dbus2js.js" 207 | } 208 | }, 209 | "node_modules/@homebridge/long": { 210 | "version": "5.2.1", 211 | "resolved": "https://registry.npmjs.org/@homebridge/long/-/long-5.2.1.tgz", 212 | "integrity": "sha512-i5Df8R63XNPCn+Nj1OgAoRdw9e+jHUQb3CNUbvJneI2iu3j4+OtzQj+5PA1Ce+747NR1SPqZSvyvD483dOT3AA==", 213 | "dev": true, 214 | "license": "Apache-2.0" 215 | }, 216 | "node_modules/@homebridge/plugin-ui-utils": { 217 | "version": "2.0.1", 218 | "resolved": "https://registry.npmjs.org/@homebridge/plugin-ui-utils/-/plugin-ui-utils-2.0.1.tgz", 219 | "integrity": "sha512-1STG5iNdw5XarmAVz25AAM3ce7nKjVJfE1RgB55yYHOas6hIQo+MRbqHKUx72kjn0ZHbvwaEBckN69660zjkXA==", 220 | "license": "MIT" 221 | }, 222 | "node_modules/@homebridge/put": { 223 | "version": "0.0.8", 224 | "resolved": "https://registry.npmjs.org/@homebridge/put/-/put-0.0.8.tgz", 225 | "integrity": "sha512-mwxLHHqKebOmOSU0tsPEWQSBHGApPhuaqtNpCe7U+AMdsduweANiu64E9SXXUtdpyTjsOpgSMLhD1+kbLHD2gA==", 226 | "dev": true, 227 | "license": "MIT/X11", 228 | "engines": { 229 | "node": ">=0.3.0" 230 | } 231 | }, 232 | "node_modules/@humanfs/core": { 233 | "version": "0.19.1", 234 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 235 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 236 | "dev": true, 237 | "license": "Apache-2.0", 238 | "engines": { 239 | "node": ">=18.18.0" 240 | } 241 | }, 242 | "node_modules/@humanfs/node": { 243 | "version": "0.16.6", 244 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 245 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 246 | "dev": true, 247 | "license": "Apache-2.0", 248 | "dependencies": { 249 | "@humanfs/core": "^0.19.1", 250 | "@humanwhocodes/retry": "^0.3.0" 251 | }, 252 | "engines": { 253 | "node": ">=18.18.0" 254 | } 255 | }, 256 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 257 | "version": "0.3.1", 258 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 259 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 260 | "dev": true, 261 | "license": "Apache-2.0", 262 | "engines": { 263 | "node": ">=18.18" 264 | }, 265 | "funding": { 266 | "type": "github", 267 | "url": "https://github.com/sponsors/nzakas" 268 | } 269 | }, 270 | "node_modules/@humanwhocodes/module-importer": { 271 | "version": "1.0.1", 272 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 273 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 274 | "dev": true, 275 | "license": "Apache-2.0", 276 | "engines": { 277 | "node": ">=12.22" 278 | }, 279 | "funding": { 280 | "type": "github", 281 | "url": "https://github.com/sponsors/nzakas" 282 | } 283 | }, 284 | "node_modules/@humanwhocodes/retry": { 285 | "version": "0.4.2", 286 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", 287 | "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", 288 | "dev": true, 289 | "license": "Apache-2.0", 290 | "engines": { 291 | "node": ">=18.18" 292 | }, 293 | "funding": { 294 | "type": "github", 295 | "url": "https://github.com/sponsors/nzakas" 296 | } 297 | }, 298 | "node_modules/@isaacs/cliui": { 299 | "version": "8.0.2", 300 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 301 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 302 | "dev": true, 303 | "license": "ISC", 304 | "dependencies": { 305 | "string-width": "^5.1.2", 306 | "string-width-cjs": "npm:string-width@^4.2.0", 307 | "strip-ansi": "^7.0.1", 308 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 309 | "wrap-ansi": "^8.1.0", 310 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 311 | }, 312 | "engines": { 313 | "node": ">=12" 314 | } 315 | }, 316 | "node_modules/@jridgewell/resolve-uri": { 317 | "version": "3.1.2", 318 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 319 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 320 | "dev": true, 321 | "license": "MIT", 322 | "engines": { 323 | "node": ">=6.0.0" 324 | } 325 | }, 326 | "node_modules/@jridgewell/sourcemap-codec": { 327 | "version": "1.5.0", 328 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 329 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 330 | "dev": true, 331 | "license": "MIT" 332 | }, 333 | "node_modules/@jridgewell/trace-mapping": { 334 | "version": "0.3.9", 335 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", 336 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", 337 | "dev": true, 338 | "license": "MIT", 339 | "dependencies": { 340 | "@jridgewell/resolve-uri": "^3.0.3", 341 | "@jridgewell/sourcemap-codec": "^1.4.10" 342 | } 343 | }, 344 | "node_modules/@leichtgewicht/ip-codec": { 345 | "version": "2.0.5", 346 | "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", 347 | "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", 348 | "license": "MIT" 349 | }, 350 | "node_modules/@nodelib/fs.scandir": { 351 | "version": "2.1.5", 352 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 353 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 354 | "dev": true, 355 | "license": "MIT", 356 | "dependencies": { 357 | "@nodelib/fs.stat": "2.0.5", 358 | "run-parallel": "^1.1.9" 359 | }, 360 | "engines": { 361 | "node": ">= 8" 362 | } 363 | }, 364 | "node_modules/@nodelib/fs.stat": { 365 | "version": "2.0.5", 366 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 367 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 368 | "dev": true, 369 | "license": "MIT", 370 | "engines": { 371 | "node": ">= 8" 372 | } 373 | }, 374 | "node_modules/@nodelib/fs.walk": { 375 | "version": "1.2.8", 376 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 377 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 378 | "dev": true, 379 | "license": "MIT", 380 | "dependencies": { 381 | "@nodelib/fs.scandir": "2.1.5", 382 | "fastq": "^1.6.0" 383 | }, 384 | "engines": { 385 | "node": ">= 8" 386 | } 387 | }, 388 | "node_modules/@tsconfig/node10": { 389 | "version": "1.0.11", 390 | "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", 391 | "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", 392 | "dev": true, 393 | "license": "MIT" 394 | }, 395 | "node_modules/@tsconfig/node12": { 396 | "version": "1.0.11", 397 | "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", 398 | "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", 399 | "dev": true, 400 | "license": "MIT" 401 | }, 402 | "node_modules/@tsconfig/node14": { 403 | "version": "1.0.3", 404 | "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", 405 | "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", 406 | "dev": true, 407 | "license": "MIT" 408 | }, 409 | "node_modules/@tsconfig/node16": { 410 | "version": "1.0.4", 411 | "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", 412 | "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", 413 | "dev": true, 414 | "license": "MIT" 415 | }, 416 | "node_modules/@types/estree": { 417 | "version": "1.0.6", 418 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 419 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 420 | "dev": true, 421 | "license": "MIT" 422 | }, 423 | "node_modules/@types/json-schema": { 424 | "version": "7.0.15", 425 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 426 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 427 | "dev": true, 428 | "license": "MIT" 429 | }, 430 | "node_modules/@types/node": { 431 | "version": "22.13.5", 432 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz", 433 | "integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==", 434 | "dev": true, 435 | "license": "MIT", 436 | "dependencies": { 437 | "undici-types": "~6.20.0" 438 | } 439 | }, 440 | "node_modules/@typescript-eslint/eslint-plugin": { 441 | "version": "8.24.1", 442 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.24.1.tgz", 443 | "integrity": "sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==", 444 | "dev": true, 445 | "license": "MIT", 446 | "dependencies": { 447 | "@eslint-community/regexpp": "^4.10.0", 448 | "@typescript-eslint/scope-manager": "8.24.1", 449 | "@typescript-eslint/type-utils": "8.24.1", 450 | "@typescript-eslint/utils": "8.24.1", 451 | "@typescript-eslint/visitor-keys": "8.24.1", 452 | "graphemer": "^1.4.0", 453 | "ignore": "^5.3.1", 454 | "natural-compare": "^1.4.0", 455 | "ts-api-utils": "^2.0.1" 456 | }, 457 | "engines": { 458 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 459 | }, 460 | "funding": { 461 | "type": "opencollective", 462 | "url": "https://opencollective.com/typescript-eslint" 463 | }, 464 | "peerDependencies": { 465 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 466 | "eslint": "^8.57.0 || ^9.0.0", 467 | "typescript": ">=4.8.4 <5.8.0" 468 | } 469 | }, 470 | "node_modules/@typescript-eslint/parser": { 471 | "version": "8.24.1", 472 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.24.1.tgz", 473 | "integrity": "sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==", 474 | "dev": true, 475 | "license": "MIT", 476 | "dependencies": { 477 | "@typescript-eslint/scope-manager": "8.24.1", 478 | "@typescript-eslint/types": "8.24.1", 479 | "@typescript-eslint/typescript-estree": "8.24.1", 480 | "@typescript-eslint/visitor-keys": "8.24.1", 481 | "debug": "^4.3.4" 482 | }, 483 | "engines": { 484 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 485 | }, 486 | "funding": { 487 | "type": "opencollective", 488 | "url": "https://opencollective.com/typescript-eslint" 489 | }, 490 | "peerDependencies": { 491 | "eslint": "^8.57.0 || ^9.0.0", 492 | "typescript": ">=4.8.4 <5.8.0" 493 | } 494 | }, 495 | "node_modules/@typescript-eslint/scope-manager": { 496 | "version": "8.24.1", 497 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.24.1.tgz", 498 | "integrity": "sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==", 499 | "dev": true, 500 | "license": "MIT", 501 | "dependencies": { 502 | "@typescript-eslint/types": "8.24.1", 503 | "@typescript-eslint/visitor-keys": "8.24.1" 504 | }, 505 | "engines": { 506 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 507 | }, 508 | "funding": { 509 | "type": "opencollective", 510 | "url": "https://opencollective.com/typescript-eslint" 511 | } 512 | }, 513 | "node_modules/@typescript-eslint/type-utils": { 514 | "version": "8.24.1", 515 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.24.1.tgz", 516 | "integrity": "sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==", 517 | "dev": true, 518 | "license": "MIT", 519 | "dependencies": { 520 | "@typescript-eslint/typescript-estree": "8.24.1", 521 | "@typescript-eslint/utils": "8.24.1", 522 | "debug": "^4.3.4", 523 | "ts-api-utils": "^2.0.1" 524 | }, 525 | "engines": { 526 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 527 | }, 528 | "funding": { 529 | "type": "opencollective", 530 | "url": "https://opencollective.com/typescript-eslint" 531 | }, 532 | "peerDependencies": { 533 | "eslint": "^8.57.0 || ^9.0.0", 534 | "typescript": ">=4.8.4 <5.8.0" 535 | } 536 | }, 537 | "node_modules/@typescript-eslint/types": { 538 | "version": "8.24.1", 539 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.24.1.tgz", 540 | "integrity": "sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==", 541 | "dev": true, 542 | "license": "MIT", 543 | "engines": { 544 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 545 | }, 546 | "funding": { 547 | "type": "opencollective", 548 | "url": "https://opencollective.com/typescript-eslint" 549 | } 550 | }, 551 | "node_modules/@typescript-eslint/typescript-estree": { 552 | "version": "8.24.1", 553 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.1.tgz", 554 | "integrity": "sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==", 555 | "dev": true, 556 | "license": "MIT", 557 | "dependencies": { 558 | "@typescript-eslint/types": "8.24.1", 559 | "@typescript-eslint/visitor-keys": "8.24.1", 560 | "debug": "^4.3.4", 561 | "fast-glob": "^3.3.2", 562 | "is-glob": "^4.0.3", 563 | "minimatch": "^9.0.4", 564 | "semver": "^7.6.0", 565 | "ts-api-utils": "^2.0.1" 566 | }, 567 | "engines": { 568 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 569 | }, 570 | "funding": { 571 | "type": "opencollective", 572 | "url": "https://opencollective.com/typescript-eslint" 573 | }, 574 | "peerDependencies": { 575 | "typescript": ">=4.8.4 <5.8.0" 576 | } 577 | }, 578 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 579 | "version": "2.0.1", 580 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 581 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 582 | "dev": true, 583 | "license": "MIT", 584 | "dependencies": { 585 | "balanced-match": "^1.0.0" 586 | } 587 | }, 588 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 589 | "version": "9.0.5", 590 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 591 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 592 | "dev": true, 593 | "license": "ISC", 594 | "dependencies": { 595 | "brace-expansion": "^2.0.1" 596 | }, 597 | "engines": { 598 | "node": ">=16 || 14 >=14.17" 599 | }, 600 | "funding": { 601 | "url": "https://github.com/sponsors/isaacs" 602 | } 603 | }, 604 | "node_modules/@typescript-eslint/utils": { 605 | "version": "8.24.1", 606 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.24.1.tgz", 607 | "integrity": "sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==", 608 | "dev": true, 609 | "license": "MIT", 610 | "dependencies": { 611 | "@eslint-community/eslint-utils": "^4.4.0", 612 | "@typescript-eslint/scope-manager": "8.24.1", 613 | "@typescript-eslint/types": "8.24.1", 614 | "@typescript-eslint/typescript-estree": "8.24.1" 615 | }, 616 | "engines": { 617 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 618 | }, 619 | "funding": { 620 | "type": "opencollective", 621 | "url": "https://opencollective.com/typescript-eslint" 622 | }, 623 | "peerDependencies": { 624 | "eslint": "^8.57.0 || ^9.0.0", 625 | "typescript": ">=4.8.4 <5.8.0" 626 | } 627 | }, 628 | "node_modules/@typescript-eslint/visitor-keys": { 629 | "version": "8.24.1", 630 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.1.tgz", 631 | "integrity": "sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==", 632 | "dev": true, 633 | "license": "MIT", 634 | "dependencies": { 635 | "@typescript-eslint/types": "8.24.1", 636 | "eslint-visitor-keys": "^4.2.0" 637 | }, 638 | "engines": { 639 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 640 | }, 641 | "funding": { 642 | "type": "opencollective", 643 | "url": "https://opencollective.com/typescript-eslint" 644 | } 645 | }, 646 | "node_modules/acorn": { 647 | "version": "8.14.0", 648 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 649 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 650 | "dev": true, 651 | "license": "MIT", 652 | "bin": { 653 | "acorn": "bin/acorn" 654 | }, 655 | "engines": { 656 | "node": ">=0.4.0" 657 | } 658 | }, 659 | "node_modules/acorn-jsx": { 660 | "version": "5.3.2", 661 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 662 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 663 | "dev": true, 664 | "license": "MIT", 665 | "peerDependencies": { 666 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 667 | } 668 | }, 669 | "node_modules/acorn-walk": { 670 | "version": "8.3.4", 671 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", 672 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", 673 | "dev": true, 674 | "license": "MIT", 675 | "dependencies": { 676 | "acorn": "^8.11.0" 677 | }, 678 | "engines": { 679 | "node": ">=0.4.0" 680 | } 681 | }, 682 | "node_modules/ajv": { 683 | "version": "6.12.6", 684 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 685 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 686 | "dev": true, 687 | "license": "MIT", 688 | "dependencies": { 689 | "fast-deep-equal": "^3.1.1", 690 | "fast-json-stable-stringify": "^2.0.0", 691 | "json-schema-traverse": "^0.4.1", 692 | "uri-js": "^4.2.2" 693 | }, 694 | "funding": { 695 | "type": "github", 696 | "url": "https://github.com/sponsors/epoberezkin" 697 | } 698 | }, 699 | "node_modules/ansi-regex": { 700 | "version": "6.1.0", 701 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 702 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 703 | "dev": true, 704 | "license": "MIT", 705 | "engines": { 706 | "node": ">=12" 707 | }, 708 | "funding": { 709 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 710 | } 711 | }, 712 | "node_modules/ansi-styles": { 713 | "version": "4.3.0", 714 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 715 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 716 | "dev": true, 717 | "license": "MIT", 718 | "dependencies": { 719 | "color-convert": "^2.0.1" 720 | }, 721 | "engines": { 722 | "node": ">=8" 723 | }, 724 | "funding": { 725 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 726 | } 727 | }, 728 | "node_modules/anymatch": { 729 | "version": "3.1.3", 730 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 731 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 732 | "dev": true, 733 | "license": "ISC", 734 | "dependencies": { 735 | "normalize-path": "^3.0.0", 736 | "picomatch": "^2.0.4" 737 | }, 738 | "engines": { 739 | "node": ">= 8" 740 | } 741 | }, 742 | "node_modules/arg": { 743 | "version": "4.1.3", 744 | "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", 745 | "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", 746 | "dev": true, 747 | "license": "MIT" 748 | }, 749 | "node_modules/argparse": { 750 | "version": "2.0.1", 751 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 752 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 753 | "dev": true, 754 | "license": "Python-2.0" 755 | }, 756 | "node_modules/array-buffer-byte-length": { 757 | "version": "1.0.2", 758 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", 759 | "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", 760 | "license": "MIT", 761 | "dependencies": { 762 | "call-bound": "^1.0.3", 763 | "is-array-buffer": "^3.0.5" 764 | }, 765 | "engines": { 766 | "node": ">= 0.4" 767 | }, 768 | "funding": { 769 | "url": "https://github.com/sponsors/ljharb" 770 | } 771 | }, 772 | "node_modules/array-flatten": { 773 | "version": "3.0.0", 774 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", 775 | "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", 776 | "license": "MIT" 777 | }, 778 | "node_modules/available-typed-arrays": { 779 | "version": "1.0.7", 780 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 781 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 782 | "license": "MIT", 783 | "dependencies": { 784 | "possible-typed-array-names": "^1.0.0" 785 | }, 786 | "engines": { 787 | "node": ">= 0.4" 788 | }, 789 | "funding": { 790 | "url": "https://github.com/sponsors/ljharb" 791 | } 792 | }, 793 | "node_modules/balanced-match": { 794 | "version": "1.0.2", 795 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 796 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 797 | "dev": true, 798 | "license": "MIT" 799 | }, 800 | "node_modules/binary-extensions": { 801 | "version": "2.3.0", 802 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 803 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 804 | "dev": true, 805 | "license": "MIT", 806 | "engines": { 807 | "node": ">=8" 808 | }, 809 | "funding": { 810 | "url": "https://github.com/sponsors/sindresorhus" 811 | } 812 | }, 813 | "node_modules/bonjour-hap": { 814 | "version": "3.9.0", 815 | "resolved": "https://registry.npmjs.org/bonjour-hap/-/bonjour-hap-3.9.0.tgz", 816 | "integrity": "sha512-g/25iC9U3vYCwR8NvspPJhsl8kNgVSsXPbgAFO/+Gm0x6kn33XCL6CMvg79ZViAAo0NZRHqa5VR52eUw1zE2IA==", 817 | "license": "MIT", 818 | "dependencies": { 819 | "array-flatten": "^3.0.0", 820 | "deep-equal": "^2.2.3", 821 | "multicast-dns": "^7.2.5", 822 | "multicast-dns-service-types": "^1.1.0" 823 | } 824 | }, 825 | "node_modules/brace-expansion": { 826 | "version": "1.1.11", 827 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 828 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 829 | "dev": true, 830 | "license": "MIT", 831 | "dependencies": { 832 | "balanced-match": "^1.0.0", 833 | "concat-map": "0.0.1" 834 | } 835 | }, 836 | "node_modules/braces": { 837 | "version": "3.0.3", 838 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 839 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 840 | "dev": true, 841 | "license": "MIT", 842 | "dependencies": { 843 | "fill-range": "^7.1.1" 844 | }, 845 | "engines": { 846 | "node": ">=8" 847 | } 848 | }, 849 | "node_modules/buffer-from": { 850 | "version": "1.1.2", 851 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 852 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 853 | "dev": true, 854 | "license": "MIT" 855 | }, 856 | "node_modules/call-bind": { 857 | "version": "1.0.8", 858 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", 859 | "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", 860 | "license": "MIT", 861 | "dependencies": { 862 | "call-bind-apply-helpers": "^1.0.0", 863 | "es-define-property": "^1.0.0", 864 | "get-intrinsic": "^1.2.4", 865 | "set-function-length": "^1.2.2" 866 | }, 867 | "engines": { 868 | "node": ">= 0.4" 869 | }, 870 | "funding": { 871 | "url": "https://github.com/sponsors/ljharb" 872 | } 873 | }, 874 | "node_modules/call-bind-apply-helpers": { 875 | "version": "1.0.2", 876 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 877 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 878 | "license": "MIT", 879 | "dependencies": { 880 | "es-errors": "^1.3.0", 881 | "function-bind": "^1.1.2" 882 | }, 883 | "engines": { 884 | "node": ">= 0.4" 885 | } 886 | }, 887 | "node_modules/call-bound": { 888 | "version": "1.0.3", 889 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", 890 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", 891 | "license": "MIT", 892 | "dependencies": { 893 | "call-bind-apply-helpers": "^1.0.1", 894 | "get-intrinsic": "^1.2.6" 895 | }, 896 | "engines": { 897 | "node": ">= 0.4" 898 | }, 899 | "funding": { 900 | "url": "https://github.com/sponsors/ljharb" 901 | } 902 | }, 903 | "node_modules/callsites": { 904 | "version": "3.1.0", 905 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 906 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 907 | "dev": true, 908 | "license": "MIT", 909 | "engines": { 910 | "node": ">=6" 911 | } 912 | }, 913 | "node_modules/chalk": { 914 | "version": "4.1.2", 915 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 916 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 917 | "dev": true, 918 | "license": "MIT", 919 | "dependencies": { 920 | "ansi-styles": "^4.1.0", 921 | "supports-color": "^7.1.0" 922 | }, 923 | "engines": { 924 | "node": ">=10" 925 | }, 926 | "funding": { 927 | "url": "https://github.com/chalk/chalk?sponsor=1" 928 | } 929 | }, 930 | "node_modules/chokidar": { 931 | "version": "3.6.0", 932 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 933 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 934 | "dev": true, 935 | "license": "MIT", 936 | "dependencies": { 937 | "anymatch": "~3.1.2", 938 | "braces": "~3.0.2", 939 | "glob-parent": "~5.1.2", 940 | "is-binary-path": "~2.1.0", 941 | "is-glob": "~4.0.1", 942 | "normalize-path": "~3.0.0", 943 | "readdirp": "~3.6.0" 944 | }, 945 | "engines": { 946 | "node": ">= 8.10.0" 947 | }, 948 | "funding": { 949 | "url": "https://paulmillr.com/funding/" 950 | }, 951 | "optionalDependencies": { 952 | "fsevents": "~2.3.2" 953 | } 954 | }, 955 | "node_modules/chokidar/node_modules/glob-parent": { 956 | "version": "5.1.2", 957 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 958 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 959 | "dev": true, 960 | "license": "ISC", 961 | "dependencies": { 962 | "is-glob": "^4.0.1" 963 | }, 964 | "engines": { 965 | "node": ">= 6" 966 | } 967 | }, 968 | "node_modules/color-convert": { 969 | "version": "2.0.1", 970 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 971 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 972 | "dev": true, 973 | "license": "MIT", 974 | "dependencies": { 975 | "color-name": "~1.1.4" 976 | }, 977 | "engines": { 978 | "node": ">=7.0.0" 979 | } 980 | }, 981 | "node_modules/color-name": { 982 | "version": "1.1.4", 983 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 984 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 985 | "dev": true, 986 | "license": "MIT" 987 | }, 988 | "node_modules/commander": { 989 | "version": "13.0.0", 990 | "resolved": "https://registry.npmjs.org/commander/-/commander-13.0.0.tgz", 991 | "integrity": "sha512-oPYleIY8wmTVzkvQq10AEok6YcTC4sRUBl8F9gVuwchGVUCTbl/vhLTaQqutuuySYOsu8YTgV+OxKc/8Yvx+mQ==", 992 | "dev": true, 993 | "license": "MIT", 994 | "engines": { 995 | "node": ">=18" 996 | } 997 | }, 998 | "node_modules/concat-map": { 999 | "version": "0.0.1", 1000 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1001 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1002 | "dev": true, 1003 | "license": "MIT" 1004 | }, 1005 | "node_modules/create-require": { 1006 | "version": "1.1.1", 1007 | "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", 1008 | "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", 1009 | "dev": true, 1010 | "license": "MIT" 1011 | }, 1012 | "node_modules/cross-spawn": { 1013 | "version": "7.0.6", 1014 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1015 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1016 | "dev": true, 1017 | "license": "MIT", 1018 | "dependencies": { 1019 | "path-key": "^3.1.0", 1020 | "shebang-command": "^2.0.0", 1021 | "which": "^2.0.1" 1022 | }, 1023 | "engines": { 1024 | "node": ">= 8" 1025 | } 1026 | }, 1027 | "node_modules/debug": { 1028 | "version": "4.4.0", 1029 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1030 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1031 | "dev": true, 1032 | "license": "MIT", 1033 | "dependencies": { 1034 | "ms": "^2.1.3" 1035 | }, 1036 | "engines": { 1037 | "node": ">=6.0" 1038 | }, 1039 | "peerDependenciesMeta": { 1040 | "supports-color": { 1041 | "optional": true 1042 | } 1043 | } 1044 | }, 1045 | "node_modules/deep-equal": { 1046 | "version": "2.2.3", 1047 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", 1048 | "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", 1049 | "license": "MIT", 1050 | "dependencies": { 1051 | "array-buffer-byte-length": "^1.0.0", 1052 | "call-bind": "^1.0.5", 1053 | "es-get-iterator": "^1.1.3", 1054 | "get-intrinsic": "^1.2.2", 1055 | "is-arguments": "^1.1.1", 1056 | "is-array-buffer": "^3.0.2", 1057 | "is-date-object": "^1.0.5", 1058 | "is-regex": "^1.1.4", 1059 | "is-shared-array-buffer": "^1.0.2", 1060 | "isarray": "^2.0.5", 1061 | "object-is": "^1.1.5", 1062 | "object-keys": "^1.1.1", 1063 | "object.assign": "^4.1.4", 1064 | "regexp.prototype.flags": "^1.5.1", 1065 | "side-channel": "^1.0.4", 1066 | "which-boxed-primitive": "^1.0.2", 1067 | "which-collection": "^1.0.1", 1068 | "which-typed-array": "^1.1.13" 1069 | }, 1070 | "engines": { 1071 | "node": ">= 0.4" 1072 | }, 1073 | "funding": { 1074 | "url": "https://github.com/sponsors/ljharb" 1075 | } 1076 | }, 1077 | "node_modules/deep-is": { 1078 | "version": "0.1.4", 1079 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1080 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1081 | "dev": true, 1082 | "license": "MIT" 1083 | }, 1084 | "node_modules/define-data-property": { 1085 | "version": "1.1.4", 1086 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1087 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1088 | "license": "MIT", 1089 | "dependencies": { 1090 | "es-define-property": "^1.0.0", 1091 | "es-errors": "^1.3.0", 1092 | "gopd": "^1.0.1" 1093 | }, 1094 | "engines": { 1095 | "node": ">= 0.4" 1096 | }, 1097 | "funding": { 1098 | "url": "https://github.com/sponsors/ljharb" 1099 | } 1100 | }, 1101 | "node_modules/define-properties": { 1102 | "version": "1.2.1", 1103 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1104 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1105 | "license": "MIT", 1106 | "dependencies": { 1107 | "define-data-property": "^1.0.1", 1108 | "has-property-descriptors": "^1.0.0", 1109 | "object-keys": "^1.1.1" 1110 | }, 1111 | "engines": { 1112 | "node": ">= 0.4" 1113 | }, 1114 | "funding": { 1115 | "url": "https://github.com/sponsors/ljharb" 1116 | } 1117 | }, 1118 | "node_modules/diff": { 1119 | "version": "4.0.2", 1120 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", 1121 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", 1122 | "dev": true, 1123 | "license": "BSD-3-Clause", 1124 | "engines": { 1125 | "node": ">=0.3.1" 1126 | } 1127 | }, 1128 | "node_modules/dns-packet": { 1129 | "version": "5.6.1", 1130 | "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", 1131 | "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", 1132 | "license": "MIT", 1133 | "dependencies": { 1134 | "@leichtgewicht/ip-codec": "^2.0.1" 1135 | }, 1136 | "engines": { 1137 | "node": ">=6" 1138 | } 1139 | }, 1140 | "node_modules/dunder-proto": { 1141 | "version": "1.0.1", 1142 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1143 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1144 | "license": "MIT", 1145 | "dependencies": { 1146 | "call-bind-apply-helpers": "^1.0.1", 1147 | "es-errors": "^1.3.0", 1148 | "gopd": "^1.2.0" 1149 | }, 1150 | "engines": { 1151 | "node": ">= 0.4" 1152 | } 1153 | }, 1154 | "node_modules/duplexer": { 1155 | "version": "0.1.2", 1156 | "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", 1157 | "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", 1158 | "dev": true, 1159 | "license": "MIT" 1160 | }, 1161 | "node_modules/eastasianwidth": { 1162 | "version": "0.2.0", 1163 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1164 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1165 | "dev": true, 1166 | "license": "MIT" 1167 | }, 1168 | "node_modules/emoji-regex": { 1169 | "version": "9.2.2", 1170 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1171 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1172 | "dev": true, 1173 | "license": "MIT" 1174 | }, 1175 | "node_modules/es-define-property": { 1176 | "version": "1.0.1", 1177 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1178 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1179 | "license": "MIT", 1180 | "engines": { 1181 | "node": ">= 0.4" 1182 | } 1183 | }, 1184 | "node_modules/es-errors": { 1185 | "version": "1.3.0", 1186 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1187 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1188 | "license": "MIT", 1189 | "engines": { 1190 | "node": ">= 0.4" 1191 | } 1192 | }, 1193 | "node_modules/es-get-iterator": { 1194 | "version": "1.1.3", 1195 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1196 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1197 | "license": "MIT", 1198 | "dependencies": { 1199 | "call-bind": "^1.0.2", 1200 | "get-intrinsic": "^1.1.3", 1201 | "has-symbols": "^1.0.3", 1202 | "is-arguments": "^1.1.1", 1203 | "is-map": "^2.0.2", 1204 | "is-set": "^2.0.2", 1205 | "is-string": "^1.0.7", 1206 | "isarray": "^2.0.5", 1207 | "stop-iteration-iterator": "^1.0.0" 1208 | }, 1209 | "funding": { 1210 | "url": "https://github.com/sponsors/ljharb" 1211 | } 1212 | }, 1213 | "node_modules/es-object-atoms": { 1214 | "version": "1.1.1", 1215 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1216 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1217 | "license": "MIT", 1218 | "dependencies": { 1219 | "es-errors": "^1.3.0" 1220 | }, 1221 | "engines": { 1222 | "node": ">= 0.4" 1223 | } 1224 | }, 1225 | "node_modules/escape-string-regexp": { 1226 | "version": "4.0.0", 1227 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1228 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1229 | "dev": true, 1230 | "license": "MIT", 1231 | "engines": { 1232 | "node": ">=10" 1233 | }, 1234 | "funding": { 1235 | "url": "https://github.com/sponsors/sindresorhus" 1236 | } 1237 | }, 1238 | "node_modules/eslint": { 1239 | "version": "9.21.0", 1240 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz", 1241 | "integrity": "sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==", 1242 | "dev": true, 1243 | "license": "MIT", 1244 | "dependencies": { 1245 | "@eslint-community/eslint-utils": "^4.2.0", 1246 | "@eslint-community/regexpp": "^4.12.1", 1247 | "@eslint/config-array": "^0.19.2", 1248 | "@eslint/core": "^0.12.0", 1249 | "@eslint/eslintrc": "^3.3.0", 1250 | "@eslint/js": "9.21.0", 1251 | "@eslint/plugin-kit": "^0.2.7", 1252 | "@humanfs/node": "^0.16.6", 1253 | "@humanwhocodes/module-importer": "^1.0.1", 1254 | "@humanwhocodes/retry": "^0.4.2", 1255 | "@types/estree": "^1.0.6", 1256 | "@types/json-schema": "^7.0.15", 1257 | "ajv": "^6.12.4", 1258 | "chalk": "^4.0.0", 1259 | "cross-spawn": "^7.0.6", 1260 | "debug": "^4.3.2", 1261 | "escape-string-regexp": "^4.0.0", 1262 | "eslint-scope": "^8.2.0", 1263 | "eslint-visitor-keys": "^4.2.0", 1264 | "espree": "^10.3.0", 1265 | "esquery": "^1.5.0", 1266 | "esutils": "^2.0.2", 1267 | "fast-deep-equal": "^3.1.3", 1268 | "file-entry-cache": "^8.0.0", 1269 | "find-up": "^5.0.0", 1270 | "glob-parent": "^6.0.2", 1271 | "ignore": "^5.2.0", 1272 | "imurmurhash": "^0.1.4", 1273 | "is-glob": "^4.0.0", 1274 | "json-stable-stringify-without-jsonify": "^1.0.1", 1275 | "lodash.merge": "^4.6.2", 1276 | "minimatch": "^3.1.2", 1277 | "natural-compare": "^1.4.0", 1278 | "optionator": "^0.9.3" 1279 | }, 1280 | "bin": { 1281 | "eslint": "bin/eslint.js" 1282 | }, 1283 | "engines": { 1284 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1285 | }, 1286 | "funding": { 1287 | "url": "https://eslint.org/donate" 1288 | }, 1289 | "peerDependencies": { 1290 | "jiti": "*" 1291 | }, 1292 | "peerDependenciesMeta": { 1293 | "jiti": { 1294 | "optional": true 1295 | } 1296 | } 1297 | }, 1298 | "node_modules/eslint-scope": { 1299 | "version": "8.2.0", 1300 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1301 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1302 | "dev": true, 1303 | "license": "BSD-2-Clause", 1304 | "dependencies": { 1305 | "esrecurse": "^4.3.0", 1306 | "estraverse": "^5.2.0" 1307 | }, 1308 | "engines": { 1309 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1310 | }, 1311 | "funding": { 1312 | "url": "https://opencollective.com/eslint" 1313 | } 1314 | }, 1315 | "node_modules/eslint-visitor-keys": { 1316 | "version": "4.2.0", 1317 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1318 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1319 | "dev": true, 1320 | "license": "Apache-2.0", 1321 | "engines": { 1322 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1323 | }, 1324 | "funding": { 1325 | "url": "https://opencollective.com/eslint" 1326 | } 1327 | }, 1328 | "node_modules/espree": { 1329 | "version": "10.3.0", 1330 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1331 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1332 | "dev": true, 1333 | "license": "BSD-2-Clause", 1334 | "dependencies": { 1335 | "acorn": "^8.14.0", 1336 | "acorn-jsx": "^5.3.2", 1337 | "eslint-visitor-keys": "^4.2.0" 1338 | }, 1339 | "engines": { 1340 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1341 | }, 1342 | "funding": { 1343 | "url": "https://opencollective.com/eslint" 1344 | } 1345 | }, 1346 | "node_modules/esquery": { 1347 | "version": "1.6.0", 1348 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1349 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1350 | "dev": true, 1351 | "license": "BSD-3-Clause", 1352 | "dependencies": { 1353 | "estraverse": "^5.1.0" 1354 | }, 1355 | "engines": { 1356 | "node": ">=0.10" 1357 | } 1358 | }, 1359 | "node_modules/esrecurse": { 1360 | "version": "4.3.0", 1361 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1362 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1363 | "dev": true, 1364 | "license": "BSD-2-Clause", 1365 | "dependencies": { 1366 | "estraverse": "^5.2.0" 1367 | }, 1368 | "engines": { 1369 | "node": ">=4.0" 1370 | } 1371 | }, 1372 | "node_modules/estraverse": { 1373 | "version": "5.3.0", 1374 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1375 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1376 | "dev": true, 1377 | "license": "BSD-2-Clause", 1378 | "engines": { 1379 | "node": ">=4.0" 1380 | } 1381 | }, 1382 | "node_modules/esutils": { 1383 | "version": "2.0.3", 1384 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1385 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1386 | "dev": true, 1387 | "license": "BSD-2-Clause", 1388 | "engines": { 1389 | "node": ">=0.10.0" 1390 | } 1391 | }, 1392 | "node_modules/event-stream": { 1393 | "version": "4.0.1", 1394 | "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz", 1395 | "integrity": "sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==", 1396 | "dev": true, 1397 | "license": "MIT", 1398 | "dependencies": { 1399 | "duplexer": "^0.1.1", 1400 | "from": "^0.1.7", 1401 | "map-stream": "0.0.7", 1402 | "pause-stream": "^0.0.11", 1403 | "split": "^1.0.1", 1404 | "stream-combiner": "^0.2.2", 1405 | "through": "^2.3.8" 1406 | } 1407 | }, 1408 | "node_modules/fast-deep-equal": { 1409 | "version": "3.1.3", 1410 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1411 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1412 | "dev": true, 1413 | "license": "MIT" 1414 | }, 1415 | "node_modules/fast-glob": { 1416 | "version": "3.3.3", 1417 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1418 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1419 | "dev": true, 1420 | "license": "MIT", 1421 | "dependencies": { 1422 | "@nodelib/fs.stat": "^2.0.2", 1423 | "@nodelib/fs.walk": "^1.2.3", 1424 | "glob-parent": "^5.1.2", 1425 | "merge2": "^1.3.0", 1426 | "micromatch": "^4.0.8" 1427 | }, 1428 | "engines": { 1429 | "node": ">=8.6.0" 1430 | } 1431 | }, 1432 | "node_modules/fast-glob/node_modules/glob-parent": { 1433 | "version": "5.1.2", 1434 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1435 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1436 | "dev": true, 1437 | "license": "ISC", 1438 | "dependencies": { 1439 | "is-glob": "^4.0.1" 1440 | }, 1441 | "engines": { 1442 | "node": ">= 6" 1443 | } 1444 | }, 1445 | "node_modules/fast-json-stable-stringify": { 1446 | "version": "2.1.0", 1447 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1448 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1449 | "dev": true, 1450 | "license": "MIT" 1451 | }, 1452 | "node_modules/fast-levenshtein": { 1453 | "version": "2.0.6", 1454 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1455 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1456 | "dev": true, 1457 | "license": "MIT" 1458 | }, 1459 | "node_modules/fast-srp-hap": { 1460 | "version": "2.0.4", 1461 | "resolved": "https://registry.npmjs.org/fast-srp-hap/-/fast-srp-hap-2.0.4.tgz", 1462 | "integrity": "sha512-lHRYYaaIbMrhZtsdGTwPN82UbqD9Bv8QfOlKs+Dz6YRnByZifOh93EYmf2iEWFtkOEIqR2IK8cFD0UN5wLIWBQ==", 1463 | "dev": true, 1464 | "license": "MIT", 1465 | "engines": { 1466 | "node": ">=10.17.0" 1467 | } 1468 | }, 1469 | "node_modules/fastq": { 1470 | "version": "1.19.0", 1471 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz", 1472 | "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", 1473 | "dev": true, 1474 | "license": "ISC", 1475 | "dependencies": { 1476 | "reusify": "^1.0.4" 1477 | } 1478 | }, 1479 | "node_modules/file-entry-cache": { 1480 | "version": "8.0.0", 1481 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1482 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1483 | "dev": true, 1484 | "license": "MIT", 1485 | "dependencies": { 1486 | "flat-cache": "^4.0.0" 1487 | }, 1488 | "engines": { 1489 | "node": ">=16.0.0" 1490 | } 1491 | }, 1492 | "node_modules/fill-range": { 1493 | "version": "7.1.1", 1494 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1495 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1496 | "dev": true, 1497 | "license": "MIT", 1498 | "dependencies": { 1499 | "to-regex-range": "^5.0.1" 1500 | }, 1501 | "engines": { 1502 | "node": ">=8" 1503 | } 1504 | }, 1505 | "node_modules/find-up": { 1506 | "version": "5.0.0", 1507 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1508 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1509 | "dev": true, 1510 | "license": "MIT", 1511 | "dependencies": { 1512 | "locate-path": "^6.0.0", 1513 | "path-exists": "^4.0.0" 1514 | }, 1515 | "engines": { 1516 | "node": ">=10" 1517 | }, 1518 | "funding": { 1519 | "url": "https://github.com/sponsors/sindresorhus" 1520 | } 1521 | }, 1522 | "node_modules/flat-cache": { 1523 | "version": "4.0.1", 1524 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1525 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1526 | "dev": true, 1527 | "license": "MIT", 1528 | "dependencies": { 1529 | "flatted": "^3.2.9", 1530 | "keyv": "^4.5.4" 1531 | }, 1532 | "engines": { 1533 | "node": ">=16" 1534 | } 1535 | }, 1536 | "node_modules/flatted": { 1537 | "version": "3.3.3", 1538 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1539 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1540 | "dev": true, 1541 | "license": "ISC" 1542 | }, 1543 | "node_modules/for-each": { 1544 | "version": "0.3.5", 1545 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", 1546 | "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", 1547 | "license": "MIT", 1548 | "dependencies": { 1549 | "is-callable": "^1.2.7" 1550 | }, 1551 | "engines": { 1552 | "node": ">= 0.4" 1553 | }, 1554 | "funding": { 1555 | "url": "https://github.com/sponsors/ljharb" 1556 | } 1557 | }, 1558 | "node_modules/foreground-child": { 1559 | "version": "3.3.0", 1560 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 1561 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1562 | "dev": true, 1563 | "license": "ISC", 1564 | "dependencies": { 1565 | "cross-spawn": "^7.0.0", 1566 | "signal-exit": "^4.0.1" 1567 | }, 1568 | "engines": { 1569 | "node": ">=14" 1570 | }, 1571 | "funding": { 1572 | "url": "https://github.com/sponsors/isaacs" 1573 | } 1574 | }, 1575 | "node_modules/from": { 1576 | "version": "0.1.7", 1577 | "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", 1578 | "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", 1579 | "dev": true, 1580 | "license": "MIT" 1581 | }, 1582 | "node_modules/fs-extra": { 1583 | "version": "11.3.0", 1584 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", 1585 | "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", 1586 | "dev": true, 1587 | "license": "MIT", 1588 | "dependencies": { 1589 | "graceful-fs": "^4.2.0", 1590 | "jsonfile": "^6.0.1", 1591 | "universalify": "^2.0.0" 1592 | }, 1593 | "engines": { 1594 | "node": ">=14.14" 1595 | } 1596 | }, 1597 | "node_modules/fsevents": { 1598 | "version": "2.3.3", 1599 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1600 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1601 | "dev": true, 1602 | "hasInstallScript": true, 1603 | "license": "MIT", 1604 | "optional": true, 1605 | "os": [ 1606 | "darwin" 1607 | ], 1608 | "engines": { 1609 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1610 | } 1611 | }, 1612 | "node_modules/function-bind": { 1613 | "version": "1.1.2", 1614 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1615 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1616 | "license": "MIT", 1617 | "funding": { 1618 | "url": "https://github.com/sponsors/ljharb" 1619 | } 1620 | }, 1621 | "node_modules/functions-have-names": { 1622 | "version": "1.2.3", 1623 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1624 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1625 | "license": "MIT", 1626 | "funding": { 1627 | "url": "https://github.com/sponsors/ljharb" 1628 | } 1629 | }, 1630 | "node_modules/futoin-hkdf": { 1631 | "version": "1.5.3", 1632 | "resolved": "https://registry.npmjs.org/futoin-hkdf/-/futoin-hkdf-1.5.3.tgz", 1633 | "integrity": "sha512-SewY5KdMpaoCeh7jachEWFsh1nNlaDjNHZXWqL5IGwtpEYHTgkr2+AMCgNwKWkcc0wpSYrZfR7he4WdmHFtDxQ==", 1634 | "dev": true, 1635 | "license": "Apache-2.0", 1636 | "engines": { 1637 | "node": ">=8" 1638 | } 1639 | }, 1640 | "node_modules/get-intrinsic": { 1641 | "version": "1.2.7", 1642 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", 1643 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", 1644 | "license": "MIT", 1645 | "dependencies": { 1646 | "call-bind-apply-helpers": "^1.0.1", 1647 | "es-define-property": "^1.0.1", 1648 | "es-errors": "^1.3.0", 1649 | "es-object-atoms": "^1.0.0", 1650 | "function-bind": "^1.1.2", 1651 | "get-proto": "^1.0.0", 1652 | "gopd": "^1.2.0", 1653 | "has-symbols": "^1.1.0", 1654 | "hasown": "^2.0.2", 1655 | "math-intrinsics": "^1.1.0" 1656 | }, 1657 | "engines": { 1658 | "node": ">= 0.4" 1659 | }, 1660 | "funding": { 1661 | "url": "https://github.com/sponsors/ljharb" 1662 | } 1663 | }, 1664 | "node_modules/get-proto": { 1665 | "version": "1.0.1", 1666 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 1667 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 1668 | "license": "MIT", 1669 | "dependencies": { 1670 | "dunder-proto": "^1.0.1", 1671 | "es-object-atoms": "^1.0.0" 1672 | }, 1673 | "engines": { 1674 | "node": ">= 0.4" 1675 | } 1676 | }, 1677 | "node_modules/glob": { 1678 | "version": "11.0.1", 1679 | "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz", 1680 | "integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==", 1681 | "dev": true, 1682 | "license": "ISC", 1683 | "dependencies": { 1684 | "foreground-child": "^3.1.0", 1685 | "jackspeak": "^4.0.1", 1686 | "minimatch": "^10.0.0", 1687 | "minipass": "^7.1.2", 1688 | "package-json-from-dist": "^1.0.0", 1689 | "path-scurry": "^2.0.0" 1690 | }, 1691 | "bin": { 1692 | "glob": "dist/esm/bin.mjs" 1693 | }, 1694 | "engines": { 1695 | "node": "20 || >=22" 1696 | }, 1697 | "funding": { 1698 | "url": "https://github.com/sponsors/isaacs" 1699 | } 1700 | }, 1701 | "node_modules/glob-parent": { 1702 | "version": "6.0.2", 1703 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1704 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1705 | "dev": true, 1706 | "license": "ISC", 1707 | "dependencies": { 1708 | "is-glob": "^4.0.3" 1709 | }, 1710 | "engines": { 1711 | "node": ">=10.13.0" 1712 | } 1713 | }, 1714 | "node_modules/glob/node_modules/brace-expansion": { 1715 | "version": "2.0.1", 1716 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1717 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1718 | "dev": true, 1719 | "license": "MIT", 1720 | "dependencies": { 1721 | "balanced-match": "^1.0.0" 1722 | } 1723 | }, 1724 | "node_modules/glob/node_modules/minimatch": { 1725 | "version": "10.0.1", 1726 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", 1727 | "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", 1728 | "dev": true, 1729 | "license": "ISC", 1730 | "dependencies": { 1731 | "brace-expansion": "^2.0.1" 1732 | }, 1733 | "engines": { 1734 | "node": "20 || >=22" 1735 | }, 1736 | "funding": { 1737 | "url": "https://github.com/sponsors/isaacs" 1738 | } 1739 | }, 1740 | "node_modules/globals": { 1741 | "version": "14.0.0", 1742 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 1743 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 1744 | "dev": true, 1745 | "license": "MIT", 1746 | "engines": { 1747 | "node": ">=18" 1748 | }, 1749 | "funding": { 1750 | "url": "https://github.com/sponsors/sindresorhus" 1751 | } 1752 | }, 1753 | "node_modules/gopd": { 1754 | "version": "1.2.0", 1755 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 1756 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 1757 | "license": "MIT", 1758 | "engines": { 1759 | "node": ">= 0.4" 1760 | }, 1761 | "funding": { 1762 | "url": "https://github.com/sponsors/ljharb" 1763 | } 1764 | }, 1765 | "node_modules/graceful-fs": { 1766 | "version": "4.2.11", 1767 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1768 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1769 | "dev": true, 1770 | "license": "ISC" 1771 | }, 1772 | "node_modules/graphemer": { 1773 | "version": "1.4.0", 1774 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1775 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1776 | "dev": true, 1777 | "license": "MIT" 1778 | }, 1779 | "node_modules/hap-nodejs": { 1780 | "version": "1.1.1-beta.7", 1781 | "resolved": "https://registry.npmjs.org/hap-nodejs/-/hap-nodejs-1.1.1-beta.7.tgz", 1782 | "integrity": "sha512-ti/sg3KLV1AKwjJWymci76lIxf9Brya6oRBJT6Xs2PeDw3/PnRuXaSYvC62XRcWfiE670otye2JyUnT9ZVpSow==", 1783 | "dev": true, 1784 | "license": "Apache-2.0", 1785 | "dependencies": { 1786 | "@homebridge/ciao": "^1.3.1", 1787 | "@homebridge/dbus-native": "^0.6.0", 1788 | "bonjour-hap": "^3.8.0", 1789 | "debug": "^4.3.7", 1790 | "fast-srp-hap": "^2.0.4", 1791 | "futoin-hkdf": "^1.5.3", 1792 | "node-persist": "^0.0.12", 1793 | "source-map-support": "^0.5.21", 1794 | "tslib": "^2.7.0", 1795 | "tweetnacl": "^1.0.3" 1796 | }, 1797 | "engines": { 1798 | "node": "^18 || ^20 || ^22" 1799 | } 1800 | }, 1801 | "node_modules/has-bigints": { 1802 | "version": "1.1.0", 1803 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", 1804 | "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", 1805 | "license": "MIT", 1806 | "engines": { 1807 | "node": ">= 0.4" 1808 | }, 1809 | "funding": { 1810 | "url": "https://github.com/sponsors/ljharb" 1811 | } 1812 | }, 1813 | "node_modules/has-flag": { 1814 | "version": "4.0.0", 1815 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1816 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1817 | "dev": true, 1818 | "license": "MIT", 1819 | "engines": { 1820 | "node": ">=8" 1821 | } 1822 | }, 1823 | "node_modules/has-property-descriptors": { 1824 | "version": "1.0.2", 1825 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1826 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1827 | "license": "MIT", 1828 | "dependencies": { 1829 | "es-define-property": "^1.0.0" 1830 | }, 1831 | "funding": { 1832 | "url": "https://github.com/sponsors/ljharb" 1833 | } 1834 | }, 1835 | "node_modules/has-symbols": { 1836 | "version": "1.1.0", 1837 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 1838 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 1839 | "license": "MIT", 1840 | "engines": { 1841 | "node": ">= 0.4" 1842 | }, 1843 | "funding": { 1844 | "url": "https://github.com/sponsors/ljharb" 1845 | } 1846 | }, 1847 | "node_modules/has-tostringtag": { 1848 | "version": "1.0.2", 1849 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1850 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1851 | "license": "MIT", 1852 | "dependencies": { 1853 | "has-symbols": "^1.0.3" 1854 | }, 1855 | "engines": { 1856 | "node": ">= 0.4" 1857 | }, 1858 | "funding": { 1859 | "url": "https://github.com/sponsors/ljharb" 1860 | } 1861 | }, 1862 | "node_modules/hasown": { 1863 | "version": "2.0.2", 1864 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1865 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1866 | "license": "MIT", 1867 | "dependencies": { 1868 | "function-bind": "^1.1.2" 1869 | }, 1870 | "engines": { 1871 | "node": ">= 0.4" 1872 | } 1873 | }, 1874 | "node_modules/hb-lib-tools": { 1875 | "version": "2.2.2", 1876 | "resolved": "https://registry.npmjs.org/hb-lib-tools/-/hb-lib-tools-2.2.2.tgz", 1877 | "integrity": "sha512-hBEY3iPTtwnXi7xi3GPu8m35lOt9cKj0xMf9qFgvtHb1kjmhIzUU5Ob3igL1baYvu44jucjs0heP4HxMdvs1Xw==", 1878 | "license": "Apache-2.0", 1879 | "dependencies": { 1880 | "bonjour-hap": "^3.9.0", 1881 | "chalk": "^5.4.1", 1882 | "semver": "^7.7.1" 1883 | }, 1884 | "bin": { 1885 | "hap": "cli/hap.js", 1886 | "json": "cli/json.js", 1887 | "sysinfo": "cli/sysinfo.js", 1888 | "upnp": "cli/upnp.js" 1889 | }, 1890 | "engines": { 1891 | "node": "22.14.0||^22||^20||^18" 1892 | } 1893 | }, 1894 | "node_modules/hb-lib-tools/node_modules/chalk": { 1895 | "version": "5.4.1", 1896 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 1897 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 1898 | "license": "MIT", 1899 | "engines": { 1900 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 1901 | }, 1902 | "funding": { 1903 | "url": "https://github.com/chalk/chalk?sponsor=1" 1904 | } 1905 | }, 1906 | "node_modules/hb-lib-tools/node_modules/semver": { 1907 | "version": "7.7.1", 1908 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 1909 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 1910 | "license": "ISC", 1911 | "bin": { 1912 | "semver": "bin/semver.js" 1913 | }, 1914 | "engines": { 1915 | "node": ">=10" 1916 | } 1917 | }, 1918 | "node_modules/hexy": { 1919 | "version": "0.3.5", 1920 | "resolved": "https://registry.npmjs.org/hexy/-/hexy-0.3.5.tgz", 1921 | "integrity": "sha512-UCP7TIZPXz5kxYJnNOym+9xaenxCLor/JyhKieo8y8/bJWunGh9xbhy3YrgYJUQ87WwfXGm05X330DszOfINZw==", 1922 | "dev": true, 1923 | "license": "MIT", 1924 | "bin": { 1925 | "hexy": "bin/hexy_cmd.js" 1926 | }, 1927 | "engines": { 1928 | "node": ">=10.4" 1929 | } 1930 | }, 1931 | "node_modules/homebridge": { 1932 | "version": "2.0.0-beta.27", 1933 | "resolved": "https://registry.npmjs.org/homebridge/-/homebridge-2.0.0-beta.27.tgz", 1934 | "integrity": "sha512-SM/kxoUgu8ep8oT5+KTZfpCwTAnpPvXQRVPkE39TAjo3crh/KKFtOt3uyueDOmMr/wYTMB4u9Oin6L5Kmp5mdQ==", 1935 | "dev": true, 1936 | "license": "Apache-2.0", 1937 | "dependencies": { 1938 | "chalk": "5.4.1", 1939 | "commander": "13.0.0", 1940 | "fs-extra": "11.3.0", 1941 | "hap-nodejs": "1.1.1-beta.7", 1942 | "qrcode-terminal": "0.12.0", 1943 | "semver": "7.6.3", 1944 | "source-map-support": "0.5.21" 1945 | }, 1946 | "bin": { 1947 | "homebridge": "bin/homebridge.js" 1948 | }, 1949 | "engines": { 1950 | "node": "^18.15.0 || ^20.7.0 || ^22" 1951 | } 1952 | }, 1953 | "node_modules/homebridge-lib": { 1954 | "version": "7.1.4", 1955 | "resolved": "https://registry.npmjs.org/homebridge-lib/-/homebridge-lib-7.1.4.tgz", 1956 | "integrity": "sha512-qB6UsA2bU20ELcU4uMNDaufqpNI/QZO14Sbir3abAXDH58KVz3oDOzKUm1pdNRd129vbAOvkev2cSUxNfnDUTA==", 1957 | "license": "Apache-2.0", 1958 | "dependencies": { 1959 | "@homebridge/plugin-ui-utils": "~2.0.1", 1960 | "hb-lib-tools": "~2.2.2" 1961 | }, 1962 | "bin": { 1963 | "hap": "cli/hap.js", 1964 | "json": "cli/json.js", 1965 | "sysinfo": "cli/sysinfo.js", 1966 | "upnp": "cli/upnp.js" 1967 | }, 1968 | "engines": { 1969 | "homebridge": "^1.9.0||^2.0.0-beta", 1970 | "node": "22.14.0||^22||^20||^18" 1971 | } 1972 | }, 1973 | "node_modules/homebridge/node_modules/chalk": { 1974 | "version": "5.4.1", 1975 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 1976 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 1977 | "dev": true, 1978 | "license": "MIT", 1979 | "engines": { 1980 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 1981 | }, 1982 | "funding": { 1983 | "url": "https://github.com/chalk/chalk?sponsor=1" 1984 | } 1985 | }, 1986 | "node_modules/ignore": { 1987 | "version": "5.3.2", 1988 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1989 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1990 | "dev": true, 1991 | "license": "MIT", 1992 | "engines": { 1993 | "node": ">= 4" 1994 | } 1995 | }, 1996 | "node_modules/ignore-by-default": { 1997 | "version": "1.0.1", 1998 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1999 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 2000 | "dev": true, 2001 | "license": "ISC" 2002 | }, 2003 | "node_modules/import-fresh": { 2004 | "version": "3.3.1", 2005 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 2006 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 2007 | "dev": true, 2008 | "license": "MIT", 2009 | "dependencies": { 2010 | "parent-module": "^1.0.0", 2011 | "resolve-from": "^4.0.0" 2012 | }, 2013 | "engines": { 2014 | "node": ">=6" 2015 | }, 2016 | "funding": { 2017 | "url": "https://github.com/sponsors/sindresorhus" 2018 | } 2019 | }, 2020 | "node_modules/imurmurhash": { 2021 | "version": "0.1.4", 2022 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2023 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2024 | "dev": true, 2025 | "license": "MIT", 2026 | "engines": { 2027 | "node": ">=0.8.19" 2028 | } 2029 | }, 2030 | "node_modules/internal-slot": { 2031 | "version": "1.1.0", 2032 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", 2033 | "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", 2034 | "license": "MIT", 2035 | "dependencies": { 2036 | "es-errors": "^1.3.0", 2037 | "hasown": "^2.0.2", 2038 | "side-channel": "^1.1.0" 2039 | }, 2040 | "engines": { 2041 | "node": ">= 0.4" 2042 | } 2043 | }, 2044 | "node_modules/is-arguments": { 2045 | "version": "1.2.0", 2046 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", 2047 | "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", 2048 | "license": "MIT", 2049 | "dependencies": { 2050 | "call-bound": "^1.0.2", 2051 | "has-tostringtag": "^1.0.2" 2052 | }, 2053 | "engines": { 2054 | "node": ">= 0.4" 2055 | }, 2056 | "funding": { 2057 | "url": "https://github.com/sponsors/ljharb" 2058 | } 2059 | }, 2060 | "node_modules/is-array-buffer": { 2061 | "version": "3.0.5", 2062 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", 2063 | "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", 2064 | "license": "MIT", 2065 | "dependencies": { 2066 | "call-bind": "^1.0.8", 2067 | "call-bound": "^1.0.3", 2068 | "get-intrinsic": "^1.2.6" 2069 | }, 2070 | "engines": { 2071 | "node": ">= 0.4" 2072 | }, 2073 | "funding": { 2074 | "url": "https://github.com/sponsors/ljharb" 2075 | } 2076 | }, 2077 | "node_modules/is-bigint": { 2078 | "version": "1.1.0", 2079 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", 2080 | "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", 2081 | "license": "MIT", 2082 | "dependencies": { 2083 | "has-bigints": "^1.0.2" 2084 | }, 2085 | "engines": { 2086 | "node": ">= 0.4" 2087 | }, 2088 | "funding": { 2089 | "url": "https://github.com/sponsors/ljharb" 2090 | } 2091 | }, 2092 | "node_modules/is-binary-path": { 2093 | "version": "2.1.0", 2094 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2095 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2096 | "dev": true, 2097 | "license": "MIT", 2098 | "dependencies": { 2099 | "binary-extensions": "^2.0.0" 2100 | }, 2101 | "engines": { 2102 | "node": ">=8" 2103 | } 2104 | }, 2105 | "node_modules/is-boolean-object": { 2106 | "version": "1.2.2", 2107 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", 2108 | "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", 2109 | "license": "MIT", 2110 | "dependencies": { 2111 | "call-bound": "^1.0.3", 2112 | "has-tostringtag": "^1.0.2" 2113 | }, 2114 | "engines": { 2115 | "node": ">= 0.4" 2116 | }, 2117 | "funding": { 2118 | "url": "https://github.com/sponsors/ljharb" 2119 | } 2120 | }, 2121 | "node_modules/is-callable": { 2122 | "version": "1.2.7", 2123 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2124 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2125 | "license": "MIT", 2126 | "engines": { 2127 | "node": ">= 0.4" 2128 | }, 2129 | "funding": { 2130 | "url": "https://github.com/sponsors/ljharb" 2131 | } 2132 | }, 2133 | "node_modules/is-date-object": { 2134 | "version": "1.1.0", 2135 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", 2136 | "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", 2137 | "license": "MIT", 2138 | "dependencies": { 2139 | "call-bound": "^1.0.2", 2140 | "has-tostringtag": "^1.0.2" 2141 | }, 2142 | "engines": { 2143 | "node": ">= 0.4" 2144 | }, 2145 | "funding": { 2146 | "url": "https://github.com/sponsors/ljharb" 2147 | } 2148 | }, 2149 | "node_modules/is-extglob": { 2150 | "version": "2.1.1", 2151 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2152 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2153 | "dev": true, 2154 | "license": "MIT", 2155 | "engines": { 2156 | "node": ">=0.10.0" 2157 | } 2158 | }, 2159 | "node_modules/is-fullwidth-code-point": { 2160 | "version": "3.0.0", 2161 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2162 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2163 | "dev": true, 2164 | "license": "MIT", 2165 | "engines": { 2166 | "node": ">=8" 2167 | } 2168 | }, 2169 | "node_modules/is-glob": { 2170 | "version": "4.0.3", 2171 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2172 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2173 | "dev": true, 2174 | "license": "MIT", 2175 | "dependencies": { 2176 | "is-extglob": "^2.1.1" 2177 | }, 2178 | "engines": { 2179 | "node": ">=0.10.0" 2180 | } 2181 | }, 2182 | "node_modules/is-map": { 2183 | "version": "2.0.3", 2184 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", 2185 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", 2186 | "license": "MIT", 2187 | "engines": { 2188 | "node": ">= 0.4" 2189 | }, 2190 | "funding": { 2191 | "url": "https://github.com/sponsors/ljharb" 2192 | } 2193 | }, 2194 | "node_modules/is-number": { 2195 | "version": "7.0.0", 2196 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2197 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2198 | "dev": true, 2199 | "license": "MIT", 2200 | "engines": { 2201 | "node": ">=0.12.0" 2202 | } 2203 | }, 2204 | "node_modules/is-number-object": { 2205 | "version": "1.1.1", 2206 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", 2207 | "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", 2208 | "license": "MIT", 2209 | "dependencies": { 2210 | "call-bound": "^1.0.3", 2211 | "has-tostringtag": "^1.0.2" 2212 | }, 2213 | "engines": { 2214 | "node": ">= 0.4" 2215 | }, 2216 | "funding": { 2217 | "url": "https://github.com/sponsors/ljharb" 2218 | } 2219 | }, 2220 | "node_modules/is-regex": { 2221 | "version": "1.2.1", 2222 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", 2223 | "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", 2224 | "license": "MIT", 2225 | "dependencies": { 2226 | "call-bound": "^1.0.2", 2227 | "gopd": "^1.2.0", 2228 | "has-tostringtag": "^1.0.2", 2229 | "hasown": "^2.0.2" 2230 | }, 2231 | "engines": { 2232 | "node": ">= 0.4" 2233 | }, 2234 | "funding": { 2235 | "url": "https://github.com/sponsors/ljharb" 2236 | } 2237 | }, 2238 | "node_modules/is-set": { 2239 | "version": "2.0.3", 2240 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", 2241 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", 2242 | "license": "MIT", 2243 | "engines": { 2244 | "node": ">= 0.4" 2245 | }, 2246 | "funding": { 2247 | "url": "https://github.com/sponsors/ljharb" 2248 | } 2249 | }, 2250 | "node_modules/is-shared-array-buffer": { 2251 | "version": "1.0.4", 2252 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", 2253 | "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", 2254 | "license": "MIT", 2255 | "dependencies": { 2256 | "call-bound": "^1.0.3" 2257 | }, 2258 | "engines": { 2259 | "node": ">= 0.4" 2260 | }, 2261 | "funding": { 2262 | "url": "https://github.com/sponsors/ljharb" 2263 | } 2264 | }, 2265 | "node_modules/is-string": { 2266 | "version": "1.1.1", 2267 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", 2268 | "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", 2269 | "license": "MIT", 2270 | "dependencies": { 2271 | "call-bound": "^1.0.3", 2272 | "has-tostringtag": "^1.0.2" 2273 | }, 2274 | "engines": { 2275 | "node": ">= 0.4" 2276 | }, 2277 | "funding": { 2278 | "url": "https://github.com/sponsors/ljharb" 2279 | } 2280 | }, 2281 | "node_modules/is-symbol": { 2282 | "version": "1.1.1", 2283 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", 2284 | "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", 2285 | "license": "MIT", 2286 | "dependencies": { 2287 | "call-bound": "^1.0.2", 2288 | "has-symbols": "^1.1.0", 2289 | "safe-regex-test": "^1.1.0" 2290 | }, 2291 | "engines": { 2292 | "node": ">= 0.4" 2293 | }, 2294 | "funding": { 2295 | "url": "https://github.com/sponsors/ljharb" 2296 | } 2297 | }, 2298 | "node_modules/is-weakmap": { 2299 | "version": "2.0.2", 2300 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", 2301 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", 2302 | "license": "MIT", 2303 | "engines": { 2304 | "node": ">= 0.4" 2305 | }, 2306 | "funding": { 2307 | "url": "https://github.com/sponsors/ljharb" 2308 | } 2309 | }, 2310 | "node_modules/is-weakset": { 2311 | "version": "2.0.4", 2312 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", 2313 | "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", 2314 | "license": "MIT", 2315 | "dependencies": { 2316 | "call-bound": "^1.0.3", 2317 | "get-intrinsic": "^1.2.6" 2318 | }, 2319 | "engines": { 2320 | "node": ">= 0.4" 2321 | }, 2322 | "funding": { 2323 | "url": "https://github.com/sponsors/ljharb" 2324 | } 2325 | }, 2326 | "node_modules/isarray": { 2327 | "version": "2.0.5", 2328 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2329 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 2330 | "license": "MIT" 2331 | }, 2332 | "node_modules/isexe": { 2333 | "version": "2.0.0", 2334 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2335 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2336 | "dev": true, 2337 | "license": "ISC" 2338 | }, 2339 | "node_modules/jackspeak": { 2340 | "version": "4.0.3", 2341 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz", 2342 | "integrity": "sha512-oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw==", 2343 | "dev": true, 2344 | "license": "BlueOak-1.0.0", 2345 | "dependencies": { 2346 | "@isaacs/cliui": "^8.0.2" 2347 | }, 2348 | "engines": { 2349 | "node": "20 || >=22" 2350 | }, 2351 | "funding": { 2352 | "url": "https://github.com/sponsors/isaacs" 2353 | } 2354 | }, 2355 | "node_modules/js-yaml": { 2356 | "version": "4.1.0", 2357 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2358 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2359 | "dev": true, 2360 | "license": "MIT", 2361 | "dependencies": { 2362 | "argparse": "^2.0.1" 2363 | }, 2364 | "bin": { 2365 | "js-yaml": "bin/js-yaml.js" 2366 | } 2367 | }, 2368 | "node_modules/json-buffer": { 2369 | "version": "3.0.1", 2370 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2371 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2372 | "dev": true, 2373 | "license": "MIT" 2374 | }, 2375 | "node_modules/json-schema-traverse": { 2376 | "version": "0.4.1", 2377 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2378 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2379 | "dev": true, 2380 | "license": "MIT" 2381 | }, 2382 | "node_modules/json-stable-stringify-without-jsonify": { 2383 | "version": "1.0.1", 2384 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2385 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2386 | "dev": true, 2387 | "license": "MIT" 2388 | }, 2389 | "node_modules/jsonfile": { 2390 | "version": "6.1.0", 2391 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 2392 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 2393 | "dev": true, 2394 | "license": "MIT", 2395 | "dependencies": { 2396 | "universalify": "^2.0.0" 2397 | }, 2398 | "optionalDependencies": { 2399 | "graceful-fs": "^4.1.6" 2400 | } 2401 | }, 2402 | "node_modules/keyv": { 2403 | "version": "4.5.4", 2404 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2405 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2406 | "dev": true, 2407 | "license": "MIT", 2408 | "dependencies": { 2409 | "json-buffer": "3.0.1" 2410 | } 2411 | }, 2412 | "node_modules/levn": { 2413 | "version": "0.4.1", 2414 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2415 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2416 | "dev": true, 2417 | "license": "MIT", 2418 | "dependencies": { 2419 | "prelude-ls": "^1.2.1", 2420 | "type-check": "~0.4.0" 2421 | }, 2422 | "engines": { 2423 | "node": ">= 0.8.0" 2424 | } 2425 | }, 2426 | "node_modules/locate-path": { 2427 | "version": "6.0.0", 2428 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2429 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2430 | "dev": true, 2431 | "license": "MIT", 2432 | "dependencies": { 2433 | "p-locate": "^5.0.0" 2434 | }, 2435 | "engines": { 2436 | "node": ">=10" 2437 | }, 2438 | "funding": { 2439 | "url": "https://github.com/sponsors/sindresorhus" 2440 | } 2441 | }, 2442 | "node_modules/lodash.merge": { 2443 | "version": "4.6.2", 2444 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2445 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2446 | "dev": true, 2447 | "license": "MIT" 2448 | }, 2449 | "node_modules/lru-cache": { 2450 | "version": "11.0.2", 2451 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz", 2452 | "integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==", 2453 | "dev": true, 2454 | "license": "ISC", 2455 | "engines": { 2456 | "node": "20 || >=22" 2457 | } 2458 | }, 2459 | "node_modules/make-error": { 2460 | "version": "1.3.6", 2461 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 2462 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 2463 | "dev": true, 2464 | "license": "ISC" 2465 | }, 2466 | "node_modules/map-stream": { 2467 | "version": "0.0.7", 2468 | "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", 2469 | "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", 2470 | "dev": true, 2471 | "license": "MIT" 2472 | }, 2473 | "node_modules/math-intrinsics": { 2474 | "version": "1.1.0", 2475 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 2476 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 2477 | "license": "MIT", 2478 | "engines": { 2479 | "node": ">= 0.4" 2480 | } 2481 | }, 2482 | "node_modules/merge2": { 2483 | "version": "1.4.1", 2484 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2485 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2486 | "dev": true, 2487 | "license": "MIT", 2488 | "engines": { 2489 | "node": ">= 8" 2490 | } 2491 | }, 2492 | "node_modules/micromatch": { 2493 | "version": "4.0.8", 2494 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2495 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2496 | "dev": true, 2497 | "license": "MIT", 2498 | "dependencies": { 2499 | "braces": "^3.0.3", 2500 | "picomatch": "^2.3.1" 2501 | }, 2502 | "engines": { 2503 | "node": ">=8.6" 2504 | } 2505 | }, 2506 | "node_modules/minimatch": { 2507 | "version": "3.1.2", 2508 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2509 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2510 | "dev": true, 2511 | "license": "ISC", 2512 | "dependencies": { 2513 | "brace-expansion": "^1.1.7" 2514 | }, 2515 | "engines": { 2516 | "node": "*" 2517 | } 2518 | }, 2519 | "node_modules/minimist": { 2520 | "version": "1.2.8", 2521 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2522 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2523 | "dev": true, 2524 | "license": "MIT", 2525 | "funding": { 2526 | "url": "https://github.com/sponsors/ljharb" 2527 | } 2528 | }, 2529 | "node_modules/minipass": { 2530 | "version": "7.1.2", 2531 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2532 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2533 | "dev": true, 2534 | "license": "ISC", 2535 | "engines": { 2536 | "node": ">=16 || 14 >=14.17" 2537 | } 2538 | }, 2539 | "node_modules/mkdirp": { 2540 | "version": "0.5.6", 2541 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 2542 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 2543 | "dev": true, 2544 | "license": "MIT", 2545 | "dependencies": { 2546 | "minimist": "^1.2.6" 2547 | }, 2548 | "bin": { 2549 | "mkdirp": "bin/cmd.js" 2550 | } 2551 | }, 2552 | "node_modules/ms": { 2553 | "version": "2.1.3", 2554 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2555 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2556 | "dev": true, 2557 | "license": "MIT" 2558 | }, 2559 | "node_modules/multicast-dns": { 2560 | "version": "7.2.5", 2561 | "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", 2562 | "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", 2563 | "license": "MIT", 2564 | "dependencies": { 2565 | "dns-packet": "^5.2.2", 2566 | "thunky": "^1.0.2" 2567 | }, 2568 | "bin": { 2569 | "multicast-dns": "cli.js" 2570 | } 2571 | }, 2572 | "node_modules/multicast-dns-service-types": { 2573 | "version": "1.1.0", 2574 | "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", 2575 | "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", 2576 | "license": "MIT" 2577 | }, 2578 | "node_modules/natural-compare": { 2579 | "version": "1.4.0", 2580 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2581 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2582 | "dev": true, 2583 | "license": "MIT" 2584 | }, 2585 | "node_modules/node-persist": { 2586 | "version": "0.0.12", 2587 | "resolved": "https://registry.npmjs.org/node-persist/-/node-persist-0.0.12.tgz", 2588 | "integrity": "sha512-Fbia3FYnURzaql53wLu0t19dmAwQg/tXT6O7YPmdwNwysNKEyFmgoT2BQlPD3XXQnYeiQVNvR5lfvufGwKuxhg==", 2589 | "dev": true, 2590 | "license": "MIT", 2591 | "dependencies": { 2592 | "mkdirp": "~0.5.1", 2593 | "q": "~1.1.1" 2594 | } 2595 | }, 2596 | "node_modules/nodemon": { 2597 | "version": "3.1.9", 2598 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz", 2599 | "integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==", 2600 | "dev": true, 2601 | "license": "MIT", 2602 | "dependencies": { 2603 | "chokidar": "^3.5.2", 2604 | "debug": "^4", 2605 | "ignore-by-default": "^1.0.1", 2606 | "minimatch": "^3.1.2", 2607 | "pstree.remy": "^1.1.8", 2608 | "semver": "^7.5.3", 2609 | "simple-update-notifier": "^2.0.0", 2610 | "supports-color": "^5.5.0", 2611 | "touch": "^3.1.0", 2612 | "undefsafe": "^2.0.5" 2613 | }, 2614 | "bin": { 2615 | "nodemon": "bin/nodemon.js" 2616 | }, 2617 | "engines": { 2618 | "node": ">=10" 2619 | }, 2620 | "funding": { 2621 | "type": "opencollective", 2622 | "url": "https://opencollective.com/nodemon" 2623 | } 2624 | }, 2625 | "node_modules/nodemon/node_modules/has-flag": { 2626 | "version": "3.0.0", 2627 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2628 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2629 | "dev": true, 2630 | "license": "MIT", 2631 | "engines": { 2632 | "node": ">=4" 2633 | } 2634 | }, 2635 | "node_modules/nodemon/node_modules/supports-color": { 2636 | "version": "5.5.0", 2637 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2638 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2639 | "dev": true, 2640 | "license": "MIT", 2641 | "dependencies": { 2642 | "has-flag": "^3.0.0" 2643 | }, 2644 | "engines": { 2645 | "node": ">=4" 2646 | } 2647 | }, 2648 | "node_modules/normalize-path": { 2649 | "version": "3.0.0", 2650 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2651 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2652 | "dev": true, 2653 | "license": "MIT", 2654 | "engines": { 2655 | "node": ">=0.10.0" 2656 | } 2657 | }, 2658 | "node_modules/object-inspect": { 2659 | "version": "1.13.4", 2660 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 2661 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 2662 | "license": "MIT", 2663 | "engines": { 2664 | "node": ">= 0.4" 2665 | }, 2666 | "funding": { 2667 | "url": "https://github.com/sponsors/ljharb" 2668 | } 2669 | }, 2670 | "node_modules/object-is": { 2671 | "version": "1.1.6", 2672 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", 2673 | "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", 2674 | "license": "MIT", 2675 | "dependencies": { 2676 | "call-bind": "^1.0.7", 2677 | "define-properties": "^1.2.1" 2678 | }, 2679 | "engines": { 2680 | "node": ">= 0.4" 2681 | }, 2682 | "funding": { 2683 | "url": "https://github.com/sponsors/ljharb" 2684 | } 2685 | }, 2686 | "node_modules/object-keys": { 2687 | "version": "1.1.1", 2688 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2689 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2690 | "license": "MIT", 2691 | "engines": { 2692 | "node": ">= 0.4" 2693 | } 2694 | }, 2695 | "node_modules/object.assign": { 2696 | "version": "4.1.7", 2697 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", 2698 | "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", 2699 | "license": "MIT", 2700 | "dependencies": { 2701 | "call-bind": "^1.0.8", 2702 | "call-bound": "^1.0.3", 2703 | "define-properties": "^1.2.1", 2704 | "es-object-atoms": "^1.0.0", 2705 | "has-symbols": "^1.1.0", 2706 | "object-keys": "^1.1.1" 2707 | }, 2708 | "engines": { 2709 | "node": ">= 0.4" 2710 | }, 2711 | "funding": { 2712 | "url": "https://github.com/sponsors/ljharb" 2713 | } 2714 | }, 2715 | "node_modules/optionator": { 2716 | "version": "0.9.4", 2717 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2718 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2719 | "dev": true, 2720 | "license": "MIT", 2721 | "dependencies": { 2722 | "deep-is": "^0.1.3", 2723 | "fast-levenshtein": "^2.0.6", 2724 | "levn": "^0.4.1", 2725 | "prelude-ls": "^1.2.1", 2726 | "type-check": "^0.4.0", 2727 | "word-wrap": "^1.2.5" 2728 | }, 2729 | "engines": { 2730 | "node": ">= 0.8.0" 2731 | } 2732 | }, 2733 | "node_modules/p-limit": { 2734 | "version": "3.1.0", 2735 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2736 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2737 | "dev": true, 2738 | "license": "MIT", 2739 | "dependencies": { 2740 | "yocto-queue": "^0.1.0" 2741 | }, 2742 | "engines": { 2743 | "node": ">=10" 2744 | }, 2745 | "funding": { 2746 | "url": "https://github.com/sponsors/sindresorhus" 2747 | } 2748 | }, 2749 | "node_modules/p-locate": { 2750 | "version": "5.0.0", 2751 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2752 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2753 | "dev": true, 2754 | "license": "MIT", 2755 | "dependencies": { 2756 | "p-limit": "^3.0.2" 2757 | }, 2758 | "engines": { 2759 | "node": ">=10" 2760 | }, 2761 | "funding": { 2762 | "url": "https://github.com/sponsors/sindresorhus" 2763 | } 2764 | }, 2765 | "node_modules/package-json-from-dist": { 2766 | "version": "1.0.1", 2767 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2768 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 2769 | "dev": true, 2770 | "license": "BlueOak-1.0.0" 2771 | }, 2772 | "node_modules/parent-module": { 2773 | "version": "1.0.1", 2774 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2775 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2776 | "dev": true, 2777 | "license": "MIT", 2778 | "dependencies": { 2779 | "callsites": "^3.0.0" 2780 | }, 2781 | "engines": { 2782 | "node": ">=6" 2783 | } 2784 | }, 2785 | "node_modules/path-exists": { 2786 | "version": "4.0.0", 2787 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2788 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2789 | "dev": true, 2790 | "license": "MIT", 2791 | "engines": { 2792 | "node": ">=8" 2793 | } 2794 | }, 2795 | "node_modules/path-key": { 2796 | "version": "3.1.1", 2797 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2798 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2799 | "dev": true, 2800 | "license": "MIT", 2801 | "engines": { 2802 | "node": ">=8" 2803 | } 2804 | }, 2805 | "node_modules/path-scurry": { 2806 | "version": "2.0.0", 2807 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", 2808 | "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", 2809 | "dev": true, 2810 | "license": "BlueOak-1.0.0", 2811 | "dependencies": { 2812 | "lru-cache": "^11.0.0", 2813 | "minipass": "^7.1.2" 2814 | }, 2815 | "engines": { 2816 | "node": "20 || >=22" 2817 | }, 2818 | "funding": { 2819 | "url": "https://github.com/sponsors/isaacs" 2820 | } 2821 | }, 2822 | "node_modules/pause-stream": { 2823 | "version": "0.0.11", 2824 | "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", 2825 | "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", 2826 | "dev": true, 2827 | "license": [ 2828 | "MIT", 2829 | "Apache2" 2830 | ], 2831 | "dependencies": { 2832 | "through": "~2.3" 2833 | } 2834 | }, 2835 | "node_modules/picomatch": { 2836 | "version": "2.3.1", 2837 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2838 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2839 | "dev": true, 2840 | "license": "MIT", 2841 | "engines": { 2842 | "node": ">=8.6" 2843 | }, 2844 | "funding": { 2845 | "url": "https://github.com/sponsors/jonschlinkert" 2846 | } 2847 | }, 2848 | "node_modules/possible-typed-array-names": { 2849 | "version": "1.1.0", 2850 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", 2851 | "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", 2852 | "license": "MIT", 2853 | "engines": { 2854 | "node": ">= 0.4" 2855 | } 2856 | }, 2857 | "node_modules/prelude-ls": { 2858 | "version": "1.2.1", 2859 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2860 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2861 | "dev": true, 2862 | "license": "MIT", 2863 | "engines": { 2864 | "node": ">= 0.8.0" 2865 | } 2866 | }, 2867 | "node_modules/pstree.remy": { 2868 | "version": "1.1.8", 2869 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 2870 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 2871 | "dev": true, 2872 | "license": "MIT" 2873 | }, 2874 | "node_modules/punycode": { 2875 | "version": "2.3.1", 2876 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2877 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2878 | "dev": true, 2879 | "license": "MIT", 2880 | "engines": { 2881 | "node": ">=6" 2882 | } 2883 | }, 2884 | "node_modules/q": { 2885 | "version": "1.1.2", 2886 | "resolved": "https://registry.npmjs.org/q/-/q-1.1.2.tgz", 2887 | "integrity": "sha512-ROtylwux7Vkc4C07oKE/ReigUmb33kVoLtcR4SJ1QVqwaZkBEDL3vX4/kwFzIERQ5PfCl0XafbU8u2YUhyGgVA==", 2888 | "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", 2889 | "dev": true, 2890 | "license": "MIT", 2891 | "engines": { 2892 | "node": ">=0.6.0", 2893 | "teleport": ">=0.2.0" 2894 | } 2895 | }, 2896 | "node_modules/qrcode-terminal": { 2897 | "version": "0.12.0", 2898 | "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", 2899 | "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==", 2900 | "dev": true, 2901 | "bin": { 2902 | "qrcode-terminal": "bin/qrcode-terminal.js" 2903 | } 2904 | }, 2905 | "node_modules/queue-microtask": { 2906 | "version": "1.2.3", 2907 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2908 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2909 | "dev": true, 2910 | "funding": [ 2911 | { 2912 | "type": "github", 2913 | "url": "https://github.com/sponsors/feross" 2914 | }, 2915 | { 2916 | "type": "patreon", 2917 | "url": "https://www.patreon.com/feross" 2918 | }, 2919 | { 2920 | "type": "consulting", 2921 | "url": "https://feross.org/support" 2922 | } 2923 | ], 2924 | "license": "MIT" 2925 | }, 2926 | "node_modules/readdirp": { 2927 | "version": "3.6.0", 2928 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2929 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2930 | "dev": true, 2931 | "license": "MIT", 2932 | "dependencies": { 2933 | "picomatch": "^2.2.1" 2934 | }, 2935 | "engines": { 2936 | "node": ">=8.10.0" 2937 | } 2938 | }, 2939 | "node_modules/regexp.prototype.flags": { 2940 | "version": "1.5.4", 2941 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", 2942 | "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", 2943 | "license": "MIT", 2944 | "dependencies": { 2945 | "call-bind": "^1.0.8", 2946 | "define-properties": "^1.2.1", 2947 | "es-errors": "^1.3.0", 2948 | "get-proto": "^1.0.1", 2949 | "gopd": "^1.2.0", 2950 | "set-function-name": "^2.0.2" 2951 | }, 2952 | "engines": { 2953 | "node": ">= 0.4" 2954 | }, 2955 | "funding": { 2956 | "url": "https://github.com/sponsors/ljharb" 2957 | } 2958 | }, 2959 | "node_modules/resolve-from": { 2960 | "version": "4.0.0", 2961 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2962 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2963 | "dev": true, 2964 | "license": "MIT", 2965 | "engines": { 2966 | "node": ">=4" 2967 | } 2968 | }, 2969 | "node_modules/reusify": { 2970 | "version": "1.0.4", 2971 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2972 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2973 | "dev": true, 2974 | "license": "MIT", 2975 | "engines": { 2976 | "iojs": ">=1.0.0", 2977 | "node": ">=0.10.0" 2978 | } 2979 | }, 2980 | "node_modules/rimraf": { 2981 | "version": "6.0.1", 2982 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", 2983 | "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", 2984 | "dev": true, 2985 | "license": "ISC", 2986 | "dependencies": { 2987 | "glob": "^11.0.0", 2988 | "package-json-from-dist": "^1.0.0" 2989 | }, 2990 | "bin": { 2991 | "rimraf": "dist/esm/bin.mjs" 2992 | }, 2993 | "engines": { 2994 | "node": "20 || >=22" 2995 | }, 2996 | "funding": { 2997 | "url": "https://github.com/sponsors/isaacs" 2998 | } 2999 | }, 3000 | "node_modules/run-parallel": { 3001 | "version": "1.2.0", 3002 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3003 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3004 | "dev": true, 3005 | "funding": [ 3006 | { 3007 | "type": "github", 3008 | "url": "https://github.com/sponsors/feross" 3009 | }, 3010 | { 3011 | "type": "patreon", 3012 | "url": "https://www.patreon.com/feross" 3013 | }, 3014 | { 3015 | "type": "consulting", 3016 | "url": "https://feross.org/support" 3017 | } 3018 | ], 3019 | "license": "MIT", 3020 | "dependencies": { 3021 | "queue-microtask": "^1.2.2" 3022 | } 3023 | }, 3024 | "node_modules/safe-buffer": { 3025 | "version": "5.2.1", 3026 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3027 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3028 | "dev": true, 3029 | "funding": [ 3030 | { 3031 | "type": "github", 3032 | "url": "https://github.com/sponsors/feross" 3033 | }, 3034 | { 3035 | "type": "patreon", 3036 | "url": "https://www.patreon.com/feross" 3037 | }, 3038 | { 3039 | "type": "consulting", 3040 | "url": "https://feross.org/support" 3041 | } 3042 | ], 3043 | "license": "MIT" 3044 | }, 3045 | "node_modules/safe-regex-test": { 3046 | "version": "1.1.0", 3047 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", 3048 | "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", 3049 | "license": "MIT", 3050 | "dependencies": { 3051 | "call-bound": "^1.0.2", 3052 | "es-errors": "^1.3.0", 3053 | "is-regex": "^1.2.1" 3054 | }, 3055 | "engines": { 3056 | "node": ">= 0.4" 3057 | }, 3058 | "funding": { 3059 | "url": "https://github.com/sponsors/ljharb" 3060 | } 3061 | }, 3062 | "node_modules/sax": { 3063 | "version": "1.4.1", 3064 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", 3065 | "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", 3066 | "dev": true, 3067 | "license": "ISC" 3068 | }, 3069 | "node_modules/semver": { 3070 | "version": "7.6.3", 3071 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3072 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3073 | "dev": true, 3074 | "license": "ISC", 3075 | "bin": { 3076 | "semver": "bin/semver.js" 3077 | }, 3078 | "engines": { 3079 | "node": ">=10" 3080 | } 3081 | }, 3082 | "node_modules/set-function-length": { 3083 | "version": "1.2.2", 3084 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 3085 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 3086 | "license": "MIT", 3087 | "dependencies": { 3088 | "define-data-property": "^1.1.4", 3089 | "es-errors": "^1.3.0", 3090 | "function-bind": "^1.1.2", 3091 | "get-intrinsic": "^1.2.4", 3092 | "gopd": "^1.0.1", 3093 | "has-property-descriptors": "^1.0.2" 3094 | }, 3095 | "engines": { 3096 | "node": ">= 0.4" 3097 | } 3098 | }, 3099 | "node_modules/set-function-name": { 3100 | "version": "2.0.2", 3101 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 3102 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 3103 | "license": "MIT", 3104 | "dependencies": { 3105 | "define-data-property": "^1.1.4", 3106 | "es-errors": "^1.3.0", 3107 | "functions-have-names": "^1.2.3", 3108 | "has-property-descriptors": "^1.0.2" 3109 | }, 3110 | "engines": { 3111 | "node": ">= 0.4" 3112 | } 3113 | }, 3114 | "node_modules/shebang-command": { 3115 | "version": "2.0.0", 3116 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3117 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3118 | "dev": true, 3119 | "license": "MIT", 3120 | "dependencies": { 3121 | "shebang-regex": "^3.0.0" 3122 | }, 3123 | "engines": { 3124 | "node": ">=8" 3125 | } 3126 | }, 3127 | "node_modules/shebang-regex": { 3128 | "version": "3.0.0", 3129 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3130 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3131 | "dev": true, 3132 | "license": "MIT", 3133 | "engines": { 3134 | "node": ">=8" 3135 | } 3136 | }, 3137 | "node_modules/side-channel": { 3138 | "version": "1.1.0", 3139 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 3140 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 3141 | "license": "MIT", 3142 | "dependencies": { 3143 | "es-errors": "^1.3.0", 3144 | "object-inspect": "^1.13.3", 3145 | "side-channel-list": "^1.0.0", 3146 | "side-channel-map": "^1.0.1", 3147 | "side-channel-weakmap": "^1.0.2" 3148 | }, 3149 | "engines": { 3150 | "node": ">= 0.4" 3151 | }, 3152 | "funding": { 3153 | "url": "https://github.com/sponsors/ljharb" 3154 | } 3155 | }, 3156 | "node_modules/side-channel-list": { 3157 | "version": "1.0.0", 3158 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 3159 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 3160 | "license": "MIT", 3161 | "dependencies": { 3162 | "es-errors": "^1.3.0", 3163 | "object-inspect": "^1.13.3" 3164 | }, 3165 | "engines": { 3166 | "node": ">= 0.4" 3167 | }, 3168 | "funding": { 3169 | "url": "https://github.com/sponsors/ljharb" 3170 | } 3171 | }, 3172 | "node_modules/side-channel-map": { 3173 | "version": "1.0.1", 3174 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 3175 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 3176 | "license": "MIT", 3177 | "dependencies": { 3178 | "call-bound": "^1.0.2", 3179 | "es-errors": "^1.3.0", 3180 | "get-intrinsic": "^1.2.5", 3181 | "object-inspect": "^1.13.3" 3182 | }, 3183 | "engines": { 3184 | "node": ">= 0.4" 3185 | }, 3186 | "funding": { 3187 | "url": "https://github.com/sponsors/ljharb" 3188 | } 3189 | }, 3190 | "node_modules/side-channel-weakmap": { 3191 | "version": "1.0.2", 3192 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 3193 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 3194 | "license": "MIT", 3195 | "dependencies": { 3196 | "call-bound": "^1.0.2", 3197 | "es-errors": "^1.3.0", 3198 | "get-intrinsic": "^1.2.5", 3199 | "object-inspect": "^1.13.3", 3200 | "side-channel-map": "^1.0.1" 3201 | }, 3202 | "engines": { 3203 | "node": ">= 0.4" 3204 | }, 3205 | "funding": { 3206 | "url": "https://github.com/sponsors/ljharb" 3207 | } 3208 | }, 3209 | "node_modules/signal-exit": { 3210 | "version": "4.1.0", 3211 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3212 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3213 | "dev": true, 3214 | "license": "ISC", 3215 | "engines": { 3216 | "node": ">=14" 3217 | }, 3218 | "funding": { 3219 | "url": "https://github.com/sponsors/isaacs" 3220 | } 3221 | }, 3222 | "node_modules/simple-update-notifier": { 3223 | "version": "2.0.0", 3224 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 3225 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 3226 | "dev": true, 3227 | "license": "MIT", 3228 | "dependencies": { 3229 | "semver": "^7.5.3" 3230 | }, 3231 | "engines": { 3232 | "node": ">=10" 3233 | } 3234 | }, 3235 | "node_modules/source-map": { 3236 | "version": "0.6.1", 3237 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3238 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3239 | "dev": true, 3240 | "license": "BSD-3-Clause", 3241 | "engines": { 3242 | "node": ">=0.10.0" 3243 | } 3244 | }, 3245 | "node_modules/source-map-support": { 3246 | "version": "0.5.21", 3247 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 3248 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 3249 | "dev": true, 3250 | "license": "MIT", 3251 | "dependencies": { 3252 | "buffer-from": "^1.0.0", 3253 | "source-map": "^0.6.0" 3254 | } 3255 | }, 3256 | "node_modules/split": { 3257 | "version": "1.0.1", 3258 | "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", 3259 | "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", 3260 | "dev": true, 3261 | "license": "MIT", 3262 | "dependencies": { 3263 | "through": "2" 3264 | }, 3265 | "engines": { 3266 | "node": "*" 3267 | } 3268 | }, 3269 | "node_modules/stop-iteration-iterator": { 3270 | "version": "1.1.0", 3271 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", 3272 | "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", 3273 | "license": "MIT", 3274 | "dependencies": { 3275 | "es-errors": "^1.3.0", 3276 | "internal-slot": "^1.1.0" 3277 | }, 3278 | "engines": { 3279 | "node": ">= 0.4" 3280 | } 3281 | }, 3282 | "node_modules/stream-combiner": { 3283 | "version": "0.2.2", 3284 | "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", 3285 | "integrity": "sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==", 3286 | "dev": true, 3287 | "license": "MIT", 3288 | "dependencies": { 3289 | "duplexer": "~0.1.1", 3290 | "through": "~2.3.4" 3291 | } 3292 | }, 3293 | "node_modules/string-width": { 3294 | "version": "5.1.2", 3295 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 3296 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3297 | "dev": true, 3298 | "license": "MIT", 3299 | "dependencies": { 3300 | "eastasianwidth": "^0.2.0", 3301 | "emoji-regex": "^9.2.2", 3302 | "strip-ansi": "^7.0.1" 3303 | }, 3304 | "engines": { 3305 | "node": ">=12" 3306 | }, 3307 | "funding": { 3308 | "url": "https://github.com/sponsors/sindresorhus" 3309 | } 3310 | }, 3311 | "node_modules/string-width-cjs": { 3312 | "name": "string-width", 3313 | "version": "4.2.3", 3314 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3315 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3316 | "dev": true, 3317 | "license": "MIT", 3318 | "dependencies": { 3319 | "emoji-regex": "^8.0.0", 3320 | "is-fullwidth-code-point": "^3.0.0", 3321 | "strip-ansi": "^6.0.1" 3322 | }, 3323 | "engines": { 3324 | "node": ">=8" 3325 | } 3326 | }, 3327 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 3328 | "version": "5.0.1", 3329 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3330 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3331 | "dev": true, 3332 | "license": "MIT", 3333 | "engines": { 3334 | "node": ">=8" 3335 | } 3336 | }, 3337 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3338 | "version": "8.0.0", 3339 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3340 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3341 | "dev": true, 3342 | "license": "MIT" 3343 | }, 3344 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 3345 | "version": "6.0.1", 3346 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3347 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3348 | "dev": true, 3349 | "license": "MIT", 3350 | "dependencies": { 3351 | "ansi-regex": "^5.0.1" 3352 | }, 3353 | "engines": { 3354 | "node": ">=8" 3355 | } 3356 | }, 3357 | "node_modules/strip-ansi": { 3358 | "version": "7.1.0", 3359 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3360 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3361 | "dev": true, 3362 | "license": "MIT", 3363 | "dependencies": { 3364 | "ansi-regex": "^6.0.1" 3365 | }, 3366 | "engines": { 3367 | "node": ">=12" 3368 | }, 3369 | "funding": { 3370 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3371 | } 3372 | }, 3373 | "node_modules/strip-ansi-cjs": { 3374 | "name": "strip-ansi", 3375 | "version": "6.0.1", 3376 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3377 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3378 | "dev": true, 3379 | "license": "MIT", 3380 | "dependencies": { 3381 | "ansi-regex": "^5.0.1" 3382 | }, 3383 | "engines": { 3384 | "node": ">=8" 3385 | } 3386 | }, 3387 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3388 | "version": "5.0.1", 3389 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3390 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3391 | "dev": true, 3392 | "license": "MIT", 3393 | "engines": { 3394 | "node": ">=8" 3395 | } 3396 | }, 3397 | "node_modules/strip-json-comments": { 3398 | "version": "3.1.1", 3399 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3400 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3401 | "dev": true, 3402 | "license": "MIT", 3403 | "engines": { 3404 | "node": ">=8" 3405 | }, 3406 | "funding": { 3407 | "url": "https://github.com/sponsors/sindresorhus" 3408 | } 3409 | }, 3410 | "node_modules/supports-color": { 3411 | "version": "7.2.0", 3412 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3413 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3414 | "dev": true, 3415 | "license": "MIT", 3416 | "dependencies": { 3417 | "has-flag": "^4.0.0" 3418 | }, 3419 | "engines": { 3420 | "node": ">=8" 3421 | } 3422 | }, 3423 | "node_modules/through": { 3424 | "version": "2.3.8", 3425 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 3426 | "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", 3427 | "dev": true, 3428 | "license": "MIT" 3429 | }, 3430 | "node_modules/thunky": { 3431 | "version": "1.1.0", 3432 | "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", 3433 | "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", 3434 | "license": "MIT" 3435 | }, 3436 | "node_modules/to-regex-range": { 3437 | "version": "5.0.1", 3438 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3439 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3440 | "dev": true, 3441 | "license": "MIT", 3442 | "dependencies": { 3443 | "is-number": "^7.0.0" 3444 | }, 3445 | "engines": { 3446 | "node": ">=8.0" 3447 | } 3448 | }, 3449 | "node_modules/touch": { 3450 | "version": "3.1.1", 3451 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 3452 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 3453 | "dev": true, 3454 | "license": "ISC", 3455 | "bin": { 3456 | "nodetouch": "bin/nodetouch.js" 3457 | } 3458 | }, 3459 | "node_modules/ts-api-utils": { 3460 | "version": "2.0.1", 3461 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz", 3462 | "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", 3463 | "dev": true, 3464 | "license": "MIT", 3465 | "engines": { 3466 | "node": ">=18.12" 3467 | }, 3468 | "peerDependencies": { 3469 | "typescript": ">=4.8.4" 3470 | } 3471 | }, 3472 | "node_modules/ts-node": { 3473 | "version": "10.9.2", 3474 | "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", 3475 | "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", 3476 | "dev": true, 3477 | "license": "MIT", 3478 | "dependencies": { 3479 | "@cspotcode/source-map-support": "^0.8.0", 3480 | "@tsconfig/node10": "^1.0.7", 3481 | "@tsconfig/node12": "^1.0.7", 3482 | "@tsconfig/node14": "^1.0.0", 3483 | "@tsconfig/node16": "^1.0.2", 3484 | "acorn": "^8.4.1", 3485 | "acorn-walk": "^8.1.1", 3486 | "arg": "^4.1.0", 3487 | "create-require": "^1.1.0", 3488 | "diff": "^4.0.1", 3489 | "make-error": "^1.1.1", 3490 | "v8-compile-cache-lib": "^3.0.1", 3491 | "yn": "3.1.1" 3492 | }, 3493 | "bin": { 3494 | "ts-node": "dist/bin.js", 3495 | "ts-node-cwd": "dist/bin-cwd.js", 3496 | "ts-node-esm": "dist/bin-esm.js", 3497 | "ts-node-script": "dist/bin-script.js", 3498 | "ts-node-transpile-only": "dist/bin-transpile.js", 3499 | "ts-script": "dist/bin-script-deprecated.js" 3500 | }, 3501 | "peerDependencies": { 3502 | "@swc/core": ">=1.2.50", 3503 | "@swc/wasm": ">=1.2.50", 3504 | "@types/node": "*", 3505 | "typescript": ">=2.7" 3506 | }, 3507 | "peerDependenciesMeta": { 3508 | "@swc/core": { 3509 | "optional": true 3510 | }, 3511 | "@swc/wasm": { 3512 | "optional": true 3513 | } 3514 | } 3515 | }, 3516 | "node_modules/tslib": { 3517 | "version": "2.8.1", 3518 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3519 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3520 | "dev": true, 3521 | "license": "0BSD" 3522 | }, 3523 | "node_modules/tweetnacl": { 3524 | "version": "1.0.3", 3525 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", 3526 | "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", 3527 | "dev": true, 3528 | "license": "Unlicense" 3529 | }, 3530 | "node_modules/type-check": { 3531 | "version": "0.4.0", 3532 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3533 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3534 | "dev": true, 3535 | "license": "MIT", 3536 | "dependencies": { 3537 | "prelude-ls": "^1.2.1" 3538 | }, 3539 | "engines": { 3540 | "node": ">= 0.8.0" 3541 | } 3542 | }, 3543 | "node_modules/typescript": { 3544 | "version": "5.7.3", 3545 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 3546 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3547 | "dev": true, 3548 | "license": "Apache-2.0", 3549 | "bin": { 3550 | "tsc": "bin/tsc", 3551 | "tsserver": "bin/tsserver" 3552 | }, 3553 | "engines": { 3554 | "node": ">=14.17" 3555 | } 3556 | }, 3557 | "node_modules/typescript-eslint": { 3558 | "version": "8.24.1", 3559 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.24.1.tgz", 3560 | "integrity": "sha512-cw3rEdzDqBs70TIcb0Gdzbt6h11BSs2pS0yaq7hDWDBtCCSei1pPSUXE9qUdQ/Wm9NgFg8mKtMt1b8fTHIl1jA==", 3561 | "dev": true, 3562 | "license": "MIT", 3563 | "dependencies": { 3564 | "@typescript-eslint/eslint-plugin": "8.24.1", 3565 | "@typescript-eslint/parser": "8.24.1", 3566 | "@typescript-eslint/utils": "8.24.1" 3567 | }, 3568 | "engines": { 3569 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3570 | }, 3571 | "funding": { 3572 | "type": "opencollective", 3573 | "url": "https://opencollective.com/typescript-eslint" 3574 | }, 3575 | "peerDependencies": { 3576 | "eslint": "^8.57.0 || ^9.0.0", 3577 | "typescript": ">=4.8.4 <5.8.0" 3578 | } 3579 | }, 3580 | "node_modules/undefsafe": { 3581 | "version": "2.0.5", 3582 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 3583 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 3584 | "dev": true, 3585 | "license": "MIT" 3586 | }, 3587 | "node_modules/undici-types": { 3588 | "version": "6.20.0", 3589 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 3590 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 3591 | "dev": true, 3592 | "license": "MIT" 3593 | }, 3594 | "node_modules/universalify": { 3595 | "version": "2.0.1", 3596 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 3597 | "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 3598 | "dev": true, 3599 | "license": "MIT", 3600 | "engines": { 3601 | "node": ">= 10.0.0" 3602 | } 3603 | }, 3604 | "node_modules/uri-js": { 3605 | "version": "4.4.1", 3606 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3607 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3608 | "dev": true, 3609 | "license": "BSD-2-Clause", 3610 | "dependencies": { 3611 | "punycode": "^2.1.0" 3612 | } 3613 | }, 3614 | "node_modules/v8-compile-cache-lib": { 3615 | "version": "3.0.1", 3616 | "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", 3617 | "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", 3618 | "dev": true, 3619 | "license": "MIT" 3620 | }, 3621 | "node_modules/which": { 3622 | "version": "2.0.2", 3623 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3624 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3625 | "dev": true, 3626 | "license": "ISC", 3627 | "dependencies": { 3628 | "isexe": "^2.0.0" 3629 | }, 3630 | "bin": { 3631 | "node-which": "bin/node-which" 3632 | }, 3633 | "engines": { 3634 | "node": ">= 8" 3635 | } 3636 | }, 3637 | "node_modules/which-boxed-primitive": { 3638 | "version": "1.1.1", 3639 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", 3640 | "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", 3641 | "license": "MIT", 3642 | "dependencies": { 3643 | "is-bigint": "^1.1.0", 3644 | "is-boolean-object": "^1.2.1", 3645 | "is-number-object": "^1.1.1", 3646 | "is-string": "^1.1.1", 3647 | "is-symbol": "^1.1.1" 3648 | }, 3649 | "engines": { 3650 | "node": ">= 0.4" 3651 | }, 3652 | "funding": { 3653 | "url": "https://github.com/sponsors/ljharb" 3654 | } 3655 | }, 3656 | "node_modules/which-collection": { 3657 | "version": "1.0.2", 3658 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 3659 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 3660 | "license": "MIT", 3661 | "dependencies": { 3662 | "is-map": "^2.0.3", 3663 | "is-set": "^2.0.3", 3664 | "is-weakmap": "^2.0.2", 3665 | "is-weakset": "^2.0.3" 3666 | }, 3667 | "engines": { 3668 | "node": ">= 0.4" 3669 | }, 3670 | "funding": { 3671 | "url": "https://github.com/sponsors/ljharb" 3672 | } 3673 | }, 3674 | "node_modules/which-typed-array": { 3675 | "version": "1.1.18", 3676 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", 3677 | "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", 3678 | "license": "MIT", 3679 | "dependencies": { 3680 | "available-typed-arrays": "^1.0.7", 3681 | "call-bind": "^1.0.8", 3682 | "call-bound": "^1.0.3", 3683 | "for-each": "^0.3.3", 3684 | "gopd": "^1.2.0", 3685 | "has-tostringtag": "^1.0.2" 3686 | }, 3687 | "engines": { 3688 | "node": ">= 0.4" 3689 | }, 3690 | "funding": { 3691 | "url": "https://github.com/sponsors/ljharb" 3692 | } 3693 | }, 3694 | "node_modules/word-wrap": { 3695 | "version": "1.2.5", 3696 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3697 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3698 | "dev": true, 3699 | "license": "MIT", 3700 | "engines": { 3701 | "node": ">=0.10.0" 3702 | } 3703 | }, 3704 | "node_modules/wrap-ansi": { 3705 | "version": "8.1.0", 3706 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3707 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3708 | "dev": true, 3709 | "license": "MIT", 3710 | "dependencies": { 3711 | "ansi-styles": "^6.1.0", 3712 | "string-width": "^5.0.1", 3713 | "strip-ansi": "^7.0.1" 3714 | }, 3715 | "engines": { 3716 | "node": ">=12" 3717 | }, 3718 | "funding": { 3719 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3720 | } 3721 | }, 3722 | "node_modules/wrap-ansi-cjs": { 3723 | "name": "wrap-ansi", 3724 | "version": "7.0.0", 3725 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3726 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3727 | "dev": true, 3728 | "license": "MIT", 3729 | "dependencies": { 3730 | "ansi-styles": "^4.0.0", 3731 | "string-width": "^4.1.0", 3732 | "strip-ansi": "^6.0.0" 3733 | }, 3734 | "engines": { 3735 | "node": ">=10" 3736 | }, 3737 | "funding": { 3738 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3739 | } 3740 | }, 3741 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3742 | "version": "5.0.1", 3743 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3744 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3745 | "dev": true, 3746 | "license": "MIT", 3747 | "engines": { 3748 | "node": ">=8" 3749 | } 3750 | }, 3751 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3752 | "version": "8.0.0", 3753 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3754 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3755 | "dev": true, 3756 | "license": "MIT" 3757 | }, 3758 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3759 | "version": "4.2.3", 3760 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3761 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3762 | "dev": true, 3763 | "license": "MIT", 3764 | "dependencies": { 3765 | "emoji-regex": "^8.0.0", 3766 | "is-fullwidth-code-point": "^3.0.0", 3767 | "strip-ansi": "^6.0.1" 3768 | }, 3769 | "engines": { 3770 | "node": ">=8" 3771 | } 3772 | }, 3773 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3774 | "version": "6.0.1", 3775 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3776 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3777 | "dev": true, 3778 | "license": "MIT", 3779 | "dependencies": { 3780 | "ansi-regex": "^5.0.1" 3781 | }, 3782 | "engines": { 3783 | "node": ">=8" 3784 | } 3785 | }, 3786 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3787 | "version": "6.2.1", 3788 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 3789 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 3790 | "dev": true, 3791 | "license": "MIT", 3792 | "engines": { 3793 | "node": ">=12" 3794 | }, 3795 | "funding": { 3796 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3797 | } 3798 | }, 3799 | "node_modules/xml2js": { 3800 | "version": "0.6.2", 3801 | "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz", 3802 | "integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==", 3803 | "dev": true, 3804 | "license": "MIT", 3805 | "dependencies": { 3806 | "sax": ">=0.6.0", 3807 | "xmlbuilder": "~11.0.0" 3808 | }, 3809 | "engines": { 3810 | "node": ">=4.0.0" 3811 | } 3812 | }, 3813 | "node_modules/xmlbuilder": { 3814 | "version": "11.0.1", 3815 | "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", 3816 | "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", 3817 | "dev": true, 3818 | "license": "MIT", 3819 | "engines": { 3820 | "node": ">=4.0" 3821 | } 3822 | }, 3823 | "node_modules/yn": { 3824 | "version": "3.1.1", 3825 | "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", 3826 | "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", 3827 | "dev": true, 3828 | "license": "MIT", 3829 | "engines": { 3830 | "node": ">=6" 3831 | } 3832 | }, 3833 | "node_modules/yocto-queue": { 3834 | "version": "0.1.0", 3835 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3836 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3837 | "dev": true, 3838 | "license": "MIT", 3839 | "engines": { 3840 | "node": ">=10" 3841 | }, 3842 | "funding": { 3843 | "url": "https://github.com/sponsors/sindresorhus" 3844 | } 3845 | } 3846 | } 3847 | } 3848 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "homebridge-plugin-name", 3 | "displayName": "Plugin Name", 4 | "type": "module", 5 | "version": "1.0.0", 6 | "private": true, 7 | "description": "A short description about what your plugin does.", 8 | "author": "Your Name", 9 | "license": "Apache-2.0", 10 | "homepage": "https://github.com/USERNAME/GITHUB_PROJECT_NAME#readme", 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/USERNAME/GITHUB_PROJECT_NAME.git" 14 | }, 15 | "bugs": { 16 | "url": "https://github.com/USERNAME/GITHUB_PROJECT_NAME/issues" 17 | }, 18 | "keywords": [ 19 | "homebridge-plugin" 20 | ], 21 | "main": "dist/index.js", 22 | "engines": { 23 | "node": "^18.20.4 || ^20.18.0 || ^22.10.0", 24 | "homebridge": "^1.8.0 || ^2.0.0-beta.0" 25 | }, 26 | "scripts": { 27 | "build": "rimraf ./dist && tsc", 28 | "lint": "eslint . --max-warnings=0", 29 | "prepublishOnly": "npm run lint && npm run build", 30 | "watch": "npm run build && npm link && nodemon" 31 | }, 32 | "dependencies": { 33 | "homebridge-lib": "^7.1.4" 34 | }, 35 | "devDependencies": { 36 | "@eslint/js": "^9.21.0", 37 | "@types/node": "^22.13.5", 38 | "eslint": "^9.21.0", 39 | "homebridge": "^2.0.0-beta.0", 40 | "nodemon": "^3.1.9", 41 | "rimraf": "^6.0.1", 42 | "ts-node": "^10.9.2", 43 | "typescript": "^5.7.3", 44 | "typescript-eslint": "^8.24.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/@types/homebridge-lib.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'homebridge-lib/EveHomeKitTypes' { 2 | export class EveHomeKitTypes { 3 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 4 | constructor(homebridge: any); 5 | 6 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 7 | Characteristics: Record; 8 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 9 | Services: Record; 10 | } 11 | } 12 | 13 | declare module 'homebridge-lib' { 14 | } 15 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import type { API } from 'homebridge'; 2 | 3 | import { ExampleHomebridgePlatform } from './platform.js'; 4 | import { PLATFORM_NAME } from './settings.js'; 5 | 6 | /** 7 | * This method registers the platform with Homebridge 8 | */ 9 | export default (api: API) => { 10 | api.registerPlatform(PLATFORM_NAME, ExampleHomebridgePlatform); 11 | }; 12 | -------------------------------------------------------------------------------- /src/platform.ts: -------------------------------------------------------------------------------- 1 | import type { API, Characteristic, DynamicPlatformPlugin, Logging, PlatformAccessory, PlatformConfig, Service } from 'homebridge'; 2 | 3 | import { ExamplePlatformAccessory } from './platformAccessory.js'; 4 | import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'; 5 | 6 | // This is only required when using Custom Services and Characteristics not support by HomeKit 7 | import { EveHomeKitTypes } from 'homebridge-lib/EveHomeKitTypes'; 8 | 9 | /** 10 | * HomebridgePlatform 11 | * This class is the main constructor for your plugin, this is where you should 12 | * parse the user config and discover/register accessories with Homebridge. 13 | */ 14 | export class ExampleHomebridgePlatform implements DynamicPlatformPlugin { 15 | public readonly Service: typeof Service; 16 | public readonly Characteristic: typeof Characteristic; 17 | 18 | // this is used to track restored cached accessories 19 | public readonly accessories: Map = new Map(); 20 | public readonly discoveredCacheUUIDs: string[] = []; 21 | 22 | // This is only required when using Custom Services and Characteristics not support by HomeKit 23 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 24 | public readonly CustomServices: any; 25 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 26 | public readonly CustomCharacteristics: any; 27 | 28 | constructor( 29 | public readonly log: Logging, 30 | public readonly config: PlatformConfig, 31 | public readonly api: API, 32 | ) { 33 | this.Service = api.hap.Service; 34 | this.Characteristic = api.hap.Characteristic; 35 | 36 | // This is only required when using Custom Services and Characteristics not support by HomeKit 37 | this.CustomServices = new EveHomeKitTypes(this.api).Services; 38 | this.CustomCharacteristics = new EveHomeKitTypes(this.api).Characteristics; 39 | 40 | this.log.debug('Finished initializing platform:', this.config.name); 41 | 42 | // When this event is fired it means Homebridge has restored all cached accessories from disk. 43 | // Dynamic Platform plugins should only register new accessories after this event was fired, 44 | // in order to ensure they weren't added to homebridge already. This event can also be used 45 | // to start discovery of new accessories. 46 | this.api.on('didFinishLaunching', () => { 47 | log.debug('Executed didFinishLaunching callback'); 48 | // run the method to discover / register your devices as accessories 49 | this.discoverDevices(); 50 | }); 51 | } 52 | 53 | /** 54 | * This function is invoked when homebridge restores cached accessories from disk at startup. 55 | * It should be used to set up event handlers for characteristics and update respective values. 56 | */ 57 | configureAccessory(accessory: PlatformAccessory) { 58 | this.log.info('Loading accessory from cache:', accessory.displayName); 59 | 60 | // add the restored accessory to the accessories cache, so we can track if it has already been registered 61 | this.accessories.set(accessory.UUID, accessory); 62 | } 63 | 64 | /** 65 | * This is an example method showing how to register discovered accessories. 66 | * Accessories must only be registered once, previously created accessories 67 | * must not be registered again to prevent "duplicate UUID" errors. 68 | */ 69 | discoverDevices() { 70 | // EXAMPLE ONLY 71 | // A real plugin you would discover accessories from the local network, cloud services 72 | // or a user-defined array in the platform config. 73 | const exampleDevices = [ 74 | { 75 | exampleUniqueId: 'ABCD', 76 | exampleDisplayName: 'Bedroom', 77 | }, 78 | { 79 | exampleUniqueId: 'EFGH', 80 | exampleDisplayName: 'Kitchen', 81 | }, 82 | { 83 | // This is an example of a device which uses a Custom Service 84 | exampleUniqueId: 'IJKL', 85 | exampleDisplayName: 'Backyard', 86 | CustomService: 'AirPressureSensor', 87 | }, 88 | ]; 89 | 90 | // loop over the discovered devices and register each one if it has not already been registered 91 | for (const device of exampleDevices) { 92 | // generate a unique id for the accessory this should be generated from 93 | // something globally unique, but constant, for example, the device serial 94 | // number or MAC address 95 | const uuid = this.api.hap.uuid.generate(device.exampleUniqueId); 96 | 97 | // see if an accessory with the same uuid has already been registered and restored from 98 | // the cached devices we stored in the `configureAccessory` method above 99 | const existingAccessory = this.accessories.get(uuid); 100 | 101 | if (existingAccessory) { 102 | // the accessory already exists 103 | this.log.info('Restoring existing accessory from cache:', existingAccessory.displayName); 104 | 105 | // if you need to update the accessory.context then you should run `api.updatePlatformAccessories`. e.g.: 106 | // existingAccessory.context.device = device; 107 | // this.api.updatePlatformAccessories([existingAccessory]); 108 | 109 | // create the accessory handler for the restored accessory 110 | // this is imported from `platformAccessory.ts` 111 | new ExamplePlatformAccessory(this, existingAccessory); 112 | 113 | // it is possible to remove platform accessories at any time using `api.unregisterPlatformAccessories`, e.g.: 114 | // remove platform accessories when no longer present 115 | // this.api.unregisterPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, [existingAccessory]); 116 | // this.log.info('Removing existing accessory from cache:', existingAccessory.displayName); 117 | } else { 118 | // the accessory does not yet exist, so we need to create it 119 | this.log.info('Adding new accessory:', device.exampleDisplayName); 120 | 121 | // create a new accessory 122 | const accessory = new this.api.platformAccessory(device.exampleDisplayName, uuid); 123 | 124 | // store a copy of the device object in the `accessory.context` 125 | // the `context` property can be used to store any data about the accessory you may need 126 | accessory.context.device = device; 127 | 128 | // create the accessory handler for the newly create accessory 129 | // this is imported from `platformAccessory.ts` 130 | new ExamplePlatformAccessory(this, accessory); 131 | 132 | // link the accessory to your platform 133 | this.api.registerPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, [accessory]); 134 | } 135 | 136 | // push into discoveredCacheUUIDs 137 | this.discoveredCacheUUIDs.push(uuid); 138 | } 139 | 140 | // you can also deal with accessories from the cache which are no longer present by removing them from Homebridge 141 | // for example, if your plugin logs into a cloud account to retrieve a device list, and a user has previously removed a device 142 | // from this cloud account, then this device will no longer be present in the device list but will still be in the Homebridge cache 143 | for (const [uuid, accessory] of this.accessories) { 144 | if (!this.discoveredCacheUUIDs.includes(uuid)) { 145 | this.log.info('Removing existing accessory from cache:', accessory.displayName); 146 | this.api.unregisterPlatformAccessories(PLUGIN_NAME, PLATFORM_NAME, [accessory]); 147 | } 148 | } 149 | } 150 | } 151 | -------------------------------------------------------------------------------- /src/platformAccessory.ts: -------------------------------------------------------------------------------- 1 | import type { CharacteristicValue, PlatformAccessory, Service } from 'homebridge'; 2 | 3 | import type { ExampleHomebridgePlatform } from './platform.js'; 4 | 5 | /** 6 | * Platform Accessory 7 | * An instance of this class is created for each accessory your platform registers 8 | * Each accessory may expose multiple services of different service types. 9 | */ 10 | export class ExamplePlatformAccessory { 11 | private service: Service; 12 | 13 | /** 14 | * These are just used to create a working example 15 | * You should implement your own code to track the state of your accessory 16 | */ 17 | private exampleStates = { 18 | On: false, 19 | Brightness: 100, 20 | }; 21 | 22 | constructor( 23 | private readonly platform: ExampleHomebridgePlatform, 24 | private readonly accessory: PlatformAccessory, 25 | ) { 26 | // set accessory information 27 | this.accessory.getService(this.platform.Service.AccessoryInformation)! 28 | .setCharacteristic(this.platform.Characteristic.Manufacturer, 'Default-Manufacturer') 29 | .setCharacteristic(this.platform.Characteristic.Model, 'Default-Model') 30 | .setCharacteristic(this.platform.Characteristic.SerialNumber, 'Default-Serial'); 31 | 32 | // get the LightBulb service if it exists, otherwise create a new LightBulb service 33 | // you can create multiple services for each accessory 34 | 35 | if (accessory.context.device.CustomService) { 36 | // This is only required when using Custom Services and Characteristics not support by HomeKit 37 | this.service = this.accessory.getService(this.platform.CustomServices[accessory.context.device.CustomService]) || 38 | this.accessory.addService(this.platform.CustomServices[accessory.context.device.CustomService]); 39 | } else { 40 | this.service = this.accessory.getService(this.platform.Service.Lightbulb) || this.accessory.addService(this.platform.Service.Lightbulb); 41 | } 42 | 43 | // set the service name, this is what is displayed as the default name on the Home app 44 | // in this example we are using the name we stored in the `accessory.context` in the `discoverDevices` method. 45 | this.service.setCharacteristic(this.platform.Characteristic.Name, accessory.context.device.exampleDisplayName); 46 | 47 | // each service must implement at-minimum the "required characteristics" for the given service type 48 | // see https://developers.homebridge.io/#/service/Lightbulb 49 | 50 | // register handlers for the On/Off Characteristic 51 | this.service.getCharacteristic(this.platform.Characteristic.On) 52 | .onSet(this.setOn.bind(this)) // SET - bind to the `setOn` method below 53 | .onGet(this.getOn.bind(this)); // GET - bind to the `getOn` method below 54 | 55 | // register handlers for the Brightness Characteristic 56 | this.service.getCharacteristic(this.platform.Characteristic.Brightness) 57 | .onSet(this.setBrightness.bind(this)); // SET - bind to the `setBrightness` method below 58 | 59 | /** 60 | * Creating multiple services of the same type. 61 | * 62 | * To avoid "Cannot add a Service with the same UUID another Service without also defining a unique 'subtype' property." error, 63 | * when creating multiple services of the same type, you need to use the following syntax to specify a name and subtype id: 64 | * this.accessory.getService('NAME') || this.accessory.addService(this.platform.Service.Lightbulb, 'NAME', 'USER_DEFINED_SUBTYPE_ID'); 65 | * 66 | * The USER_DEFINED_SUBTYPE must be unique to the platform accessory (if you platform exposes multiple accessories, each accessory 67 | * can use the same subtype id.) 68 | */ 69 | 70 | // Example: add two "motion sensor" services to the accessory 71 | const motionSensorOneService = this.accessory.getService('Motion Sensor One Name') 72 | || this.accessory.addService(this.platform.Service.MotionSensor, 'Motion Sensor One Name', 'YourUniqueIdentifier-1'); 73 | 74 | const motionSensorTwoService = this.accessory.getService('Motion Sensor Two Name') 75 | || this.accessory.addService(this.platform.Service.MotionSensor, 'Motion Sensor Two Name', 'YourUniqueIdentifier-2'); 76 | 77 | /** 78 | * Updating characteristics values asynchronously. 79 | * 80 | * Example showing how to update the state of a Characteristic asynchronously instead 81 | * of using the `on('get')` handlers. 82 | * Here we change update the motion sensor trigger states on and off every 10 seconds 83 | * the `updateCharacteristic` method. 84 | * 85 | */ 86 | let motionDetected = false; 87 | setInterval(() => { 88 | // EXAMPLE - inverse the trigger 89 | motionDetected = !motionDetected; 90 | 91 | // push the new value to HomeKit 92 | motionSensorOneService.updateCharacteristic(this.platform.Characteristic.MotionDetected, motionDetected); 93 | motionSensorTwoService.updateCharacteristic(this.platform.Characteristic.MotionDetected, !motionDetected); 94 | 95 | this.platform.log.debug('Triggering motionSensorOneService:', motionDetected); 96 | this.platform.log.debug('Triggering motionSensorTwoService:', !motionDetected); 97 | }, 10000); 98 | } 99 | 100 | /** 101 | * Handle "SET" requests from HomeKit 102 | * These are sent when the user changes the state of an accessory, for example, turning on a Light bulb. 103 | */ 104 | async setOn(value: CharacteristicValue) { 105 | // implement your own code to turn your device on/off 106 | this.exampleStates.On = value as boolean; 107 | 108 | this.platform.log.debug('Set Characteristic On ->', value); 109 | } 110 | 111 | /** 112 | * Handle the "GET" requests from HomeKit 113 | * These are sent when HomeKit wants to know the current state of the accessory, for example, checking if a Light bulb is on. 114 | * 115 | * GET requests should return as fast as possible. A long delay here will result in 116 | * HomeKit being unresponsive and a bad user experience in general. 117 | * 118 | * If your device takes time to respond you should update the status of your device 119 | * asynchronously instead using the `updateCharacteristic` method instead. 120 | * In this case, you may decide not to implement `onGet` handlers, which may speed up 121 | * the responsiveness of your device in the Home app. 122 | 123 | * @example 124 | * this.service.updateCharacteristic(this.platform.Characteristic.On, true) 125 | */ 126 | async getOn(): Promise { 127 | // implement your own code to check if the device is on 128 | const isOn = this.exampleStates.On; 129 | 130 | this.platform.log.debug('Get Characteristic On ->', isOn); 131 | 132 | // if you need to return an error to show the device as "Not Responding" in the Home app: 133 | // throw new this.platform.api.hap.HapStatusError(this.platform.api.hap.HAPStatus.SERVICE_COMMUNICATION_FAILURE); 134 | 135 | return isOn; 136 | } 137 | 138 | /** 139 | * Handle "SET" requests from HomeKit 140 | * These are sent when the user changes the state of an accessory, for example, changing the Brightness 141 | */ 142 | async setBrightness(value: CharacteristicValue) { 143 | // implement your own code to set the brightness 144 | this.exampleStates.Brightness = value as number; 145 | 146 | this.platform.log.debug('Set Characteristic Brightness -> ', value); 147 | } 148 | } 149 | -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This is the name of the platform that users will use to register the plugin in the Homebridge config.json 3 | */ 4 | export const PLATFORM_NAME = 'ExampleHomebridgePlugin'; 5 | 6 | /** 7 | * This must match the name of your plugin as defined the package.json `name` property 8 | */ 9 | export const PLUGIN_NAME = 'homebridge-plugin-name'; 10 | -------------------------------------------------------------------------------- /test/hbConfig/auth.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "username": "test", 5 | "name": "test", 6 | "hashedPassword": "df121e72b850a058bd68f3d05b1f94dc985821a3885b5da38e263654f29843f98bb6d8e594f6042ff871a424602a9bff50dffa97f258bdc1dca4c79e87bac20c", 7 | "salt": "64085e70da64670349f042d4c3d3cac75b20233ffeb71db68399973f60da077d", 8 | "admin": true 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /test/hbConfig/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bridge": { 3 | "name": "PluginTemplate", 4 | "username": "AA:BB:CC:DD:EE:FF", 5 | "port": 51826, 6 | "pin": "031-45-154" 7 | }, 8 | "description": "HomeBridge HTTP Status Control", 9 | "plugins": [ 10 | "homebridge-plugin-name", 11 | "homebridge-config-ui-x" 12 | ], 13 | "platforms": [ 14 | { 15 | "name": "Config", 16 | "port": 8581, 17 | "auth": "none", 18 | "theme": "auto", 19 | "tempUnits": "c", 20 | "lang": "auto", 21 | "sudo": false, 22 | "platform": "config", 23 | "debug": false 24 | }, 25 | { 26 | "name": "homebridge-plugin-name", 27 | "platform": "ExampleHomebridgePlugin" 28 | } 29 | ], 30 | "accessories": [] 31 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2022", 4 | "lib": [ 5 | "DOM", 6 | "ES2022" 7 | ], 8 | "rootDir": "src", 9 | "module": "ES2022", 10 | "moduleResolution": "node", 11 | "strict": true, 12 | "declaration": true, 13 | "outDir": "dist", 14 | "sourceMap": true, 15 | "allowSyntheticDefaultImports": true, 16 | "esModuleInterop": true, 17 | "forceConsistentCasingInFileNames": true 18 | }, 19 | "include": [ 20 | "eslint.config.js", 21 | "homebridge-ui", 22 | "src" 23 | ] 24 | } 25 | --------------------------------------------------------------------------------