├── .github ├── dependabot.yml └── workflows │ ├── merge-or-push-to-main.yml │ ├── publish-docker-image.yml │ └── release.yml ├── .gitignore ├── .idea └── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── build.sh ├── docs ├── discord-error.png ├── discord-scheduled.png ├── discord-success.png └── slack-success.png ├── entrypoint.sh └── notifier-app ├── .dockerignore ├── .eslintrc.json ├── .prettierrc.json ├── discordNotification.js ├── index.js ├── package-lock.json ├── package.json └── slackNotification.js /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | 8 | - package-ecosystem: "npm" 9 | directory: "/notifier-app" 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.github/workflows/merge-or-push-to-main.yml: -------------------------------------------------------------------------------- 1 | name: Merge or push to main workflow 2 | 3 | on: 4 | 5 | workflow_dispatch: 6 | 7 | push: 8 | branches: ["main"] 9 | paths-ignore: 10 | - 'README.md' 11 | - '.github/**' 12 | 13 | jobs: 14 | checkout: 15 | name: Checkout 16 | runs-on: self-hosted 17 | outputs: 18 | date: ${{ steps.date.outputs.date }} 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v4 22 | 23 | - name: Get current date 24 | id: date 25 | run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT 26 | 27 | build-image: 28 | name: Build and push Docker image 29 | needs: [checkout] 30 | uses: ./.github/workflows/publish-docker-image.yml 31 | with: 32 | docker_tags: deduard/tools:restart-notifier-${{ needs.checkout.outputs.date }},deduard/tools:restart-notifier-test 33 | secrets: inherit 34 | -------------------------------------------------------------------------------- /.github/workflows/publish-docker-image.yml: -------------------------------------------------------------------------------- 1 | name: Docker Image Workflow 2 | 3 | on: 4 | workflow_call: 5 | inputs: 6 | docker_tags: 7 | required: true 8 | type: string 9 | 10 | jobs: 11 | build: 12 | runs-on: self-hosted 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v4 16 | 17 | - name: Set up QEMU 18 | uses: docker/setup-qemu-action@v3 19 | 20 | - name: Set up Docker Buildx 21 | uses: docker/setup-buildx-action@v3 22 | 23 | - name: Docker Login 24 | uses: docker/login-action@v3.3.0 25 | with: 26 | username: ${{ secrets.DOCKER_USER }} 27 | password: ${{ secrets.DOCKER_PAT }} 28 | 29 | - name: Build and push 30 | uses: docker/build-push-action@v6 31 | with: 32 | context: . 33 | platforms: linux/amd64,linux/arm64,linux/arm/v7 34 | push: true 35 | tags: ${{ inputs.docker_tags }} 36 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Create Github release 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | tags: [v*] 7 | 8 | jobs: 9 | release-notes: 10 | name: Create Release Notes 11 | runs-on: self-hosted 12 | outputs: 13 | date: ${{ steps.date.outputs.date }} 14 | permissions: 15 | contents: write 16 | steps: 17 | - name: Checkout 18 | uses: actions/checkout@v4 19 | 20 | - name: Get current date 21 | id: date 22 | run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT 23 | 24 | - name: Generate Release Notes 25 | id: gen_release_notes 26 | run: | 27 | echo "Release Notes 28 | " > release_notes.md 29 | echo "Docker Image 30 | " >> release_notes.md 31 | echo "https://hub.docker.com/r/deduard/tools/tags?page=1&name=restart-notifier" >> release_notes.md 32 | EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) 33 | echo "notes<<$EOF" >> $GITHUB_OUTPUT 34 | echo "$(cat release_notes.md)." >> $GITHUB_OUTPUT 35 | echo "$EOF" >> $GITHUB_OUTPUT 36 | 37 | - name: Create Release 38 | uses: softprops/action-gh-release@v2 39 | with: 40 | token: ${{ secrets.GITHUB_TOKEN }} 41 | body: ${{ steps.gen_release_notes.outputs.notes }} 42 | generate_release_notes: true 43 | 44 | build-image: 45 | name: Build and push Docker image 46 | needs: [release-notes] 47 | uses: ./.github/workflows/publish-docker-image.yml 48 | with: 49 | docker_tags: deduard/tools:restart-notifier-${{ needs.release-notes.outputs.date }},deduard/tools:restart-notifier-latest 50 | secrets: inherit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docker-compose.yml 2 | node_modules/ 3 | .env 4 | .idea 5 | *.iml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Stage 1: Build the Node.js application 2 | FROM node:latest AS builder 3 | 4 | # Set working directory 5 | WORKDIR /app 6 | 7 | # Copy package.json and package-lock.json 8 | COPY notifier-app/package*.json ./ 9 | 10 | # Install dependencies 11 | RUN npm install 12 | 13 | # Copy the rest of the application source code 14 | COPY notifier-app/ . 15 | 16 | RUN ls -la /app/* 17 | 18 | # Stage 2: Setup the final image 19 | FROM node:alpine 20 | 21 | # Install Docker CLI 22 | RUN apk add --no-cache docker-cli 23 | # Copy the built Node.js application from the builder stage 24 | COPY --from=builder /app /app 25 | 26 | # Set working directory 27 | WORKDIR /app 28 | 29 | # Create log directory 30 | RUN mkdir -p /var/log/restart-notifier 31 | 32 | # Set default cron schedule (the 15th of each month) 33 | ENV CRON_SCHEDULE="0 0 0 15 * *" 34 | # Environment variable to control immediate execution 35 | ENV RUN_ON_STARTUP="false" 36 | 37 | COPY entrypoint.sh / 38 | RUN chmod +x /entrypoint.sh 39 | 40 | # Define volume for logs 41 | VOLUME ["/var/log/restart-notifier"] 42 | 43 | ENTRYPOINT ["/bin/sh", "/entrypoint.sh"] 44 | -------------------------------------------------------------------------------- /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 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docker Image for Scheduled Container Restart with Discord/Slack Notifications 2 | ![build workflow](https://github.com/activecs/docker-cron-restart-notifier/actions/workflows/merge-or-push-to-main.yml/badge.svg) 3 | [![Create Github release](https://github.com/activecs/docker-cron-restart-notifier/actions/workflows/release.yml/badge.svg)](https://github.com/activecs/docker-cron-restart-notifier/actions/workflows/release.yml) 4 | ## Overview 5 | This Docker image is designed to automatically restart specified Docker containers and send notifications to a Discord channel or/and Slack channel upon each restart. It's particularly useful for maintaining long-running services, ensuring they're periodically refreshed and stakeholders are informed of these actions. 6 | 7 | ## Features 8 | - Automated Container Restart: Restart specified Docker containers. 9 | - (optional) Discord Notifications: Sends a message to a Discord channel after each container restart. 10 | - (optional) Slack Notifications: Sends a message to a Slack channel after each container restart. 11 | - Support for Docker Socket Proxy for enhanced security 12 | - Configurable execution timing and intervals 13 | 14 | ## Notification Examples 15 | ### Successful Container Restart 16 | #### Discord 17 | ![Discord Success Notification](https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/main/docs/discord-success.png) 18 | #### Slack 19 | ![Slack Success Notification](https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/main/docs/slack-success.png) 20 | 21 | ### Failed Container Restart 22 | #### Discord 23 | ![Discord Error Notification](https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/main/docs/discord-error.png) 24 | #### Slack 25 | TBA 26 | ### Next Execution Schedule 27 | #### Discord 28 | ![Discord Schedule Notification](https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/main/docs/discord-scheduled.png) 29 | #### Slack 30 | TBA 31 | 32 | ## Configuration 33 | 34 | ### Environment Variables 35 | 36 | | Variable | Description | Default | 37 | |----------|-------------|---------| 38 | | `DISCORD_WEBHOOK_URL` | Discord webhook URL for notifications | - | 39 | | `SLACK_WEBHOOK_URL` | Slack webhook URL for notifications | - | 40 | | `RESTART_CONTAINERS` | Comma-separated list of container names to restart | - | 41 | | `RUN_ON_STARTUP` | Whether to run on container startup | `false` | 42 | | `CRON_SCHEDULE` | Cron expression for scheduling restarts | `0 4 * * FRI` | 43 | | `CYCLE_PERIOD` | Time between container restarts (ms) | `10000` | 44 | | `DOCKER_HOST` | Docker daemon connection URL (optional) | - | 45 | 46 | ### Docker Connection Options 47 | 48 | The application supports two ways to connect to the Docker daemon: 49 | 50 | 1. **Direct Socket Access (Default)** 51 | - Uses the Docker socket at `/var/run/docker.sock` 52 | - Requires mounting the socket in the container 53 | - Example Docker Compose configuration: 54 | ```yaml 55 | volumes: 56 | - /var/run/docker.sock:/var/run/docker.sock 57 | ``` 58 | 59 | 2. **Docker Socket Proxy (Optional)** 60 | - Uses a secure proxy to access the Docker API 61 | - Requires the [Docker Socket Proxy](https://github.com/Tecnativa/docker-socket-proxy) service 62 | - Example Docker Compose configuration: 63 | ```yaml 64 | environment: 65 | DOCKER_HOST: 'tcp://docker-socket-proxy:2375' 66 | networks: 67 | - docker-socket-proxy 68 | ``` 69 | 70 | ## Running the Container 71 | Run the container with the following command: 72 | ```bash 73 | docker run -d \ 74 | -e CRON_SCHEDULE="0 4 * * FRI" \ 75 | -e RESTART_CONTAINERS="container1,container2" \ 76 | -e DISCORD_WEBHOOK_URL="your_discord_webhook_url" \ 77 | -e SLACK_WEBHOOK_URL="your_slack_webhook_url" \ 78 | -v /var/run/docker.sock:/var/run/docker.sock \ 79 | index.docker.io/deduard/tools:restart-notifier-latest 80 | ``` 81 | 82 | ## Sample docker-compose.yml 83 | ```yaml 84 | 85 | services: 86 | restart-notifier: 87 | container_name: restart-notifier 88 | image: index.docker.io/deduard/tools:restart-notifier-latest 89 | restart: unless-stopped 90 | environment: 91 | DISCORD_WEBHOOK_URL: 'https://discord.com/api/webhooks/119207436456853270/mRC3HfPoT5_MFsvn3sHUuG1Qeeg3WTUAo_bf0LR8' 92 | SLACK_WEBHOOK_URL: 'https://hooks.slack.com/services/T04JS2CSY4U/B06HRRFSRGW/1UL9bv1i1JnaYsUBo' 93 | RESTART_CONTAINERS: "nervous_moore1,nervous_moore2" 94 | RUN_ON_STARTUP: "false" 95 | CRON_SCHEDULE: "0 4 * * FRI" # Every Friday at 4:00 AM 96 | CYCLE_PERIOD: "10000" # 10 sec 97 | volumes: 98 | - /var/run/docker.sock:/var/run/docker.sock 99 | ``` 100 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | docker build -t deduard/tools:restart-notifier-$(date +%Y%m%d) . --rm 2 | docker push deduard/tools:restart-notifier-$(date +%Y%m%d) -------------------------------------------------------------------------------- /docs/discord-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/934964d6694d474e59e685513ab96788c3c2348a/docs/discord-error.png -------------------------------------------------------------------------------- /docs/discord-scheduled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/934964d6694d474e59e685513ab96788c3c2348a/docs/discord-scheduled.png -------------------------------------------------------------------------------- /docs/discord-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/934964d6694d474e59e685513ab96788c3c2348a/docs/discord-success.png -------------------------------------------------------------------------------- /docs/slack-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activecs/docker-cron-restart-notifier/934964d6694d474e59e685513ab96788c3c2348a/docs/slack-success.png -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Alpine comes with built in cron schedules 4 | # min hour day month weekday command 5 | # */15 * * * * run-parts /etc/periodic/15min 6 | # 0 * * * * run-parts /etc/periodic/hourly 7 | # 0 2 * * * run-parts /etc/periodic/daily 8 | # 0 3 * * 6 run-parts /etc/periodic/weekly 9 | # 0 5 1 * * run-parts /etc/periodic/monthly 10 | 11 | # Setup cron job 12 | touch crontab.tmp \ 13 | && echo "$CRON_SCHEDULE cd /app && node index.js >> /var/log/restart-notifier/cron.log 2>&1 " > crontab.tmp \ 14 | && crontab crontab.tmp \ 15 | && rm -rf crontab.tmp 16 | 17 | # Check if DISCORD_WEBHOOK_URL is provided 18 | if [ -z "$DISCORD_WEBHOOK_URL" ]; then 19 | echo "Warning: DISCORD_WEBHOOK_URL environment variable is empty." >&2 20 | fi 21 | 22 | # Check if DISCORD_WEBHOOK_URL is provided 23 | if [ -z "$SLACK_WEBHOOK_URL" ]; then 24 | echo "Warning: SLACK_WEBHOOK_URL environment variable is empty." >&2 25 | fi 26 | 27 | if [ "$RUN_ON_STARTUP" = "true" ]; then 28 | echo "Running on startup" 29 | node /app/index.js 30 | else 31 | echo "Next scheduled execution time: $CRON_SCHEDULE" 32 | node /app/index.js SEND_ONLY_NEXT_SCHEDULED_EXECUTION_TIME_NOTIFICATION 33 | fi 34 | 35 | 36 | 37 | 38 | # Start the cron daemon in the foreground 39 | # crond --help 40 | # BusyBox v1.28.4 (2018-05-30 10:45:57 UTC) multi-call binary. 41 | # Usage: crond -fbS -l N -d N -L LOGFILE -c DIR 42 | # -f Foreground 43 | # -b Background (default) 44 | # -S Log to syslog (default) 45 | # -l N Set log level. Most verbose 0, default 8 46 | # -d N Set log level, log to stderr 47 | # -L FILE Log to FILE 48 | # -c DIR Cron dir. Default:/var/spool/cron/crontabs 49 | echo "Starting cron daemon in the foreground: $CRON_SCHEDULE" 50 | exec crond -f -d 8 51 | -------------------------------------------------------------------------------- /notifier-app/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /notifier-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": false, 4 | "es2021": true 5 | }, 6 | "extends": ["standard", "prettier"], 7 | "plugins": ["prettier"], 8 | "parserOptions": { 9 | "ecmaVersion": "latest", 10 | "sourceType": "module" 11 | }, 12 | "rules": { 13 | "prettier/prettier": "error", 14 | "arrow-body-style": "off", 15 | "prefer-arrow-callback": "off", 16 | "max-len": ["warn", { "code": 160 }] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /notifier-app/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "semi": false, 4 | "printWidth": 120, 5 | "trailingComma": "none", 6 | "bracketSpacing": true, 7 | "jsxBracketSameLine": false, 8 | "arrowParens": "avoid", 9 | "proseWrap": "always" 10 | } 11 | -------------------------------------------------------------------------------- /notifier-app/discordNotification.js: -------------------------------------------------------------------------------- 1 | const { DiscordNotification } = require('@penseapp/discord-notification') 2 | 3 | function getEnvironmentVariables() { 4 | const discordWebhookUrl = process.env.DISCORD_WEBHOOK_URL 5 | return { discordWebhookUrl } 6 | } 7 | 8 | function validateWebhookUrl() { 9 | const { discordWebhookUrl } = getEnvironmentVariables() 10 | const discordWebhookURLPattern = /^https:\/\/discord\.com\/api\/webhooks\/.+/ 11 | return discordWebhookURLPattern.test(discordWebhookUrl) 12 | } 13 | 14 | async function sendRestartNotification(containerName, success, executionTime, output) { 15 | if (!validateWebhookUrl()) { 16 | return 17 | } 18 | const { discordWebhookUrl } = getEnvironmentVariables() 19 | const discordNotification = new DiscordNotification('restart-notifier', discordWebhookUrl) 20 | const message = success ? discordNotification.sucessfulMessage() : discordNotification.errorMessage() 21 | const formattedOutput = output ? `> ${output.replace(/\n/g, '\n> ')}` : 'No output available' 22 | 23 | try { 24 | await message 25 | .addTitle('Cron Restart Container') 26 | .addDescription(`The scheduled restart task for Docker container has been executed.`) 27 | .addField({ name: 'Container', value: formatContainers([containerName]), inline: false }) 28 | .addField({ 29 | name: 'Status', 30 | value: success ? '✅ Successfully restarted' : '❌ Failed to restart', 31 | inline: false 32 | }) 33 | .addField({ name: 'Time', value: toDiscordTimestamp(new Date()), inline: false }) 34 | .addField({ name: 'Output', value: formattedOutput, inline: false }) 35 | .addFooter(`Total execution time: ${executionTime} ms`) 36 | .sendMessage() 37 | console.log(`Discord notification sent for ${containerName}, output: ${output}`) 38 | } catch (error) { 39 | console.error(`Error sending Discord notification for ${containerName}`, error) 40 | if (error.response) { 41 | console.error('Discord API Response:', error.response) 42 | } 43 | } 44 | } 45 | 46 | async function sendNextExecutionNotification(containers, nextExecutionDate) { 47 | if (!validateWebhookUrl()) { 48 | console.warn( 49 | 'Invalid Discord webhook URL, it should be in the format: https://discord.com/api/webhooks/1234567890/abc123' 50 | ) 51 | return 52 | } 53 | const { discordWebhookUrl } = getEnvironmentVariables() 54 | if (!nextExecutionDate) { 55 | console.log('Unable to determine the next execution date.') 56 | return 57 | } 58 | const discordNotification = new DiscordNotification('restart-notifier', discordWebhookUrl) 59 | try { 60 | await discordNotification 61 | .sucessfulMessage() 62 | .addTitle('Container Restart Scheduled') 63 | .addDescription(`The next container restart is scheduled.`) 64 | .addField({ name: 'Containers', value: formatContainers(containers), inline: false }) 65 | .addField({ name: 'Scheduled Time', value: toDiscordTimestamp(nextExecutionDate), inline: false }) 66 | .addFooter('Container Restart Scheduler') 67 | .sendMessage() 68 | console.log('Startup discord notification sent.') 69 | } catch (error) { 70 | console.error(`Error discord sending startup notification`, error) 71 | if (error.response) { 72 | console.error('Discord API Response:', error.response) 73 | } 74 | } 75 | } 76 | 77 | function formatContainers(containers) { 78 | return containers.map(container => `• ${container}`).join('\n') 79 | } 80 | 81 | function toDiscordTimestamp(date) { 82 | return `` 83 | } 84 | 85 | function toUnixTimestamp(date) { 86 | return Math.floor(date.getTime() / 1000) 87 | } 88 | 89 | module.exports = { validateWebhookUrl, sendRestartNotification, sendNextExecutionNotification } 90 | -------------------------------------------------------------------------------- /notifier-app/index.js: -------------------------------------------------------------------------------- 1 | const { Queue } = require('async-await-queue') 2 | const cronParser = require('cron-parser') 3 | const slackNotification = require('./slackNotification') 4 | const discordNotification = require('./discordNotification') 5 | const Docker = require('dockerode') 6 | 7 | async function main() { 8 | const { containers, cronExpression, cyclePeriod, dockerHost } = getEnvironmentVariables() 9 | if (!containers.length || !cronExpression) { 10 | console.error('Missing required environment variables: RESTART_CONTAINERS, CRON_SCHEDULE') 11 | process.exit(1) 12 | } 13 | if (getArguments().SEND_ONLY_NEXT_SCHEDULED_EXECUTION_TIME_NOTIFICATION) { 14 | await sendNextExecutionNotification(containers, cronExpression) 15 | return 16 | } 17 | const cycleLimiter = new Queue(1, cyclePeriod) 18 | const docker = createDockerClient(dockerHost) 19 | await restartContainersAndNotify(containers, cycleLimiter, docker) 20 | } 21 | 22 | function getEnvironmentVariables() { 23 | const containers = process.env.RESTART_CONTAINERS ? process.env.RESTART_CONTAINERS.split(',') : [] 24 | const cronExpression = process.env.CRON_SCHEDULE 25 | const cyclePeriod = process.env.CYCLE_PERIOD || 10000 26 | const dockerHost = process.env.DOCKER_HOST 27 | return { containers, cronExpression, cyclePeriod, dockerHost } 28 | } 29 | 30 | function getArguments() { 31 | const args = {} 32 | process.argv.slice(2).forEach(arg => { 33 | const [key, value] = arg.split('=') 34 | args[key] = value || true 35 | }) 36 | return args 37 | } 38 | 39 | function createDockerClient(dockerHost) { 40 | if (dockerHost) { 41 | return new Docker({ 42 | host: dockerHost 43 | }) 44 | } else { 45 | // Fallback to direct socket access 46 | return new Docker({ 47 | socketPath: '/var/run/docker.sock' 48 | }) 49 | } 50 | } 51 | 52 | async function restartContainersAndNotify(containers, cycleLimiter, docker) { 53 | for (const container of containers) { 54 | const startTime = new Date() 55 | await cycleLimiter.wait(container, 0) 56 | await restartContainer(docker, container) 57 | .then(output => sendRestartNotification(container, true, getRestartExecutionTime(startTime), output)) 58 | .catch(error => sendRestartNotification(container, false, getRestartExecutionTime(startTime), error.message)) 59 | .finally(() => cycleLimiter.end(container)) 60 | } 61 | } 62 | 63 | function getRestartExecutionTime(startTime) { 64 | return new Date() - startTime 65 | } 66 | 67 | /** 68 | * Restarts a Docker container and returns its status 69 | * @param {Docker} docker - Docker client instance 70 | * @param {string} containerName - Name of the container to restart 71 | * @returns {Promise} Status message of the container 72 | * @throws {Error} If container restart fails 73 | */ 74 | async function restartContainer(docker, containerName) { 75 | const container = docker.getContainer(containerName) 76 | try { 77 | await container.inspect() 78 | } catch (error) { 79 | throw new Error(`Container ${containerName} not found: ${error.message}`) 80 | } 81 | try { 82 | const infoBefore = await container.inspect() 83 | if (infoBefore.State.Status === 'running' || infoBefore.State.Status === 'restarting' || infoBefore.State.Status === 'paused') { 84 | await container.stop({ t: 60 }) 85 | console.log(`Container ${containerName} stopped successfully`) 86 | } 87 | await container.start() 88 | console.log(`Container ${containerName} started successfully`) 89 | const infoAfter = await container.inspect() 90 | return `Container ${containerName} restarted successfully.\nStatus before: ${infoBefore.State.Status}\nStatus after: ${infoAfter.State.Status}` 91 | } catch (error) { 92 | console.error(`Error restarting container ${containerName}:`, error.message) 93 | throw error 94 | } 95 | } 96 | 97 | async function sendRestartNotification(containerName, success, executionTime, output) { 98 | await discordNotification.sendRestartNotification(containerName, success, executionTime, output) 99 | await slackNotification.sendRestartNotification(containerName, success, executionTime, output) 100 | } 101 | 102 | async function sendNextExecutionNotification(containers, cronExpression) { 103 | const nextExecutionDate = getNextExecutionDate(cronExpression) 104 | await discordNotification.sendNextExecutionNotification(containers, nextExecutionDate) 105 | await slackNotification.sendNextExecutionNotification(containers, nextExecutionDate) 106 | } 107 | 108 | function getNextExecutionDate(cronExpression) { 109 | try { 110 | const interval = cronParser.parseExpression(cronExpression) 111 | return interval.next().toDate() 112 | } catch (err) { 113 | console.error('Error parsing cron expression:', err) 114 | return null 115 | } 116 | } 117 | 118 | main() 119 | .then(() => console.log('Done')) 120 | .catch(ex => console.log(ex.message)) 121 | 122 | module.exports = { main } 123 | -------------------------------------------------------------------------------- /notifier-app/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docker-restart-app", 3 | "version": "1.2.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "docker-restart-app", 9 | "version": "1.2.0", 10 | "dependencies": { 11 | "@penseapp/discord-notification": "^2.0.9", 12 | "@slack/webhook": "^7.0.2", 13 | "async-await-queue": "2.1.4", 14 | "child_process": "^1.0.2", 15 | "cron-parser": "^4.9.0", 16 | "dockerode": "^4.0.5", 17 | "dotenv": "^16.4.7" 18 | }, 19 | "devDependencies": { 20 | "eslint-config-prettier": "^9.0.0", 21 | "eslint-config-standard": "^17.1.0", 22 | "eslint-plugin-import": "^2.29.1", 23 | "eslint-plugin-n": "^16.6.2", 24 | "eslint-plugin-prettier": "^5.1.3", 25 | "eslint-plugin-promise": "^6.1.1", 26 | "prettier": "^3.2.5" 27 | } 28 | }, 29 | "node_modules/@aashutoshrathi/word-wrap": { 30 | "version": "1.2.6", 31 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 32 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 33 | "dev": true, 34 | "peer": true, 35 | "engines": { 36 | "node": ">=0.10.0" 37 | } 38 | }, 39 | "node_modules/@balena/dockerignore": { 40 | "version": "1.0.2", 41 | "resolved": "https://registry.npmjs.org/@balena/dockerignore/-/dockerignore-1.0.2.tgz", 42 | "integrity": "sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==" 43 | }, 44 | "node_modules/@eslint-community/eslint-utils": { 45 | "version": "4.4.0", 46 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 47 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 48 | "dev": true, 49 | "dependencies": { 50 | "eslint-visitor-keys": "^3.3.0" 51 | }, 52 | "engines": { 53 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 54 | }, 55 | "peerDependencies": { 56 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 57 | } 58 | }, 59 | "node_modules/@eslint-community/regexpp": { 60 | "version": "4.10.0", 61 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 62 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 63 | "dev": true, 64 | "engines": { 65 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 66 | } 67 | }, 68 | "node_modules/@eslint/eslintrc": { 69 | "version": "2.1.4", 70 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 71 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 72 | "dev": true, 73 | "peer": true, 74 | "dependencies": { 75 | "ajv": "^6.12.4", 76 | "debug": "^4.3.2", 77 | "espree": "^9.6.0", 78 | "globals": "^13.19.0", 79 | "ignore": "^5.2.0", 80 | "import-fresh": "^3.2.1", 81 | "js-yaml": "^4.1.0", 82 | "minimatch": "^3.1.2", 83 | "strip-json-comments": "^3.1.1" 84 | }, 85 | "engines": { 86 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 87 | }, 88 | "funding": { 89 | "url": "https://opencollective.com/eslint" 90 | } 91 | }, 92 | "node_modules/@eslint/js": { 93 | "version": "8.56.0", 94 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", 95 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", 96 | "dev": true, 97 | "peer": true, 98 | "engines": { 99 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 100 | } 101 | }, 102 | "node_modules/@grpc/grpc-js": { 103 | "version": "1.13.3", 104 | "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.13.3.tgz", 105 | "integrity": "sha512-FTXHdOoPbZrBjlVLHuKbDZnsTxXv2BlHF57xw6LuThXacXvtkahEPED0CKMk6obZDf65Hv4k3z62eyPNpvinIg==", 106 | "dependencies": { 107 | "@grpc/proto-loader": "^0.7.13", 108 | "@js-sdsl/ordered-map": "^4.4.2" 109 | }, 110 | "engines": { 111 | "node": ">=12.10.0" 112 | } 113 | }, 114 | "node_modules/@grpc/proto-loader": { 115 | "version": "0.7.14", 116 | "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.14.tgz", 117 | "integrity": "sha512-oS0FyK8eGNBJC6aB/qsS4LOxCYQlBniNzp6W8IdjlRVRGs0FOK9dS84OV+kXGaZf8Ozeos8fbUMJUGGzSpOCzQ==", 118 | "dependencies": { 119 | "lodash.camelcase": "^4.3.0", 120 | "long": "^5.0.0", 121 | "protobufjs": "^7.2.5", 122 | "yargs": "^17.7.2" 123 | }, 124 | "bin": { 125 | "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" 126 | }, 127 | "engines": { 128 | "node": ">=6" 129 | } 130 | }, 131 | "node_modules/@humanwhocodes/config-array": { 132 | "version": "0.11.13", 133 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", 134 | "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", 135 | "dev": true, 136 | "peer": true, 137 | "dependencies": { 138 | "@humanwhocodes/object-schema": "^2.0.1", 139 | "debug": "^4.1.1", 140 | "minimatch": "^3.0.5" 141 | }, 142 | "engines": { 143 | "node": ">=10.10.0" 144 | } 145 | }, 146 | "node_modules/@humanwhocodes/module-importer": { 147 | "version": "1.0.1", 148 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 149 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 150 | "dev": true, 151 | "peer": true, 152 | "engines": { 153 | "node": ">=12.22" 154 | }, 155 | "funding": { 156 | "type": "github", 157 | "url": "https://github.com/sponsors/nzakas" 158 | } 159 | }, 160 | "node_modules/@humanwhocodes/object-schema": { 161 | "version": "2.0.1", 162 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", 163 | "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", 164 | "dev": true, 165 | "peer": true 166 | }, 167 | "node_modules/@js-sdsl/ordered-map": { 168 | "version": "4.4.2", 169 | "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", 170 | "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", 171 | "funding": { 172 | "type": "opencollective", 173 | "url": "https://opencollective.com/js-sdsl" 174 | } 175 | }, 176 | "node_modules/@nodelib/fs.scandir": { 177 | "version": "2.1.5", 178 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 179 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 180 | "dev": true, 181 | "dependencies": { 182 | "@nodelib/fs.stat": "2.0.5", 183 | "run-parallel": "^1.1.9" 184 | }, 185 | "engines": { 186 | "node": ">= 8" 187 | } 188 | }, 189 | "node_modules/@nodelib/fs.stat": { 190 | "version": "2.0.5", 191 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 192 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 193 | "dev": true, 194 | "engines": { 195 | "node": ">= 8" 196 | } 197 | }, 198 | "node_modules/@nodelib/fs.walk": { 199 | "version": "1.2.8", 200 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 201 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 202 | "dev": true, 203 | "dependencies": { 204 | "@nodelib/fs.scandir": "2.1.5", 205 | "fastq": "^1.6.0" 206 | }, 207 | "engines": { 208 | "node": ">= 8" 209 | } 210 | }, 211 | "node_modules/@penseapp/discord-notification": { 212 | "version": "2.0.9", 213 | "resolved": "https://registry.npmjs.org/@penseapp/discord-notification/-/discord-notification-2.0.9.tgz", 214 | "integrity": "sha512-934JQdf6Pt4rjom0t2C4PhO8z77mhhwfaJDDGo5NH+o9+zreyplhMia2gkHvWV0WNS0n07kEaAJ0WvFd68JvoQ==", 215 | "dependencies": { 216 | "axios": "^0.25.0" 217 | } 218 | }, 219 | "node_modules/@pkgr/utils": { 220 | "version": "2.4.2", 221 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", 222 | "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", 223 | "dev": true, 224 | "dependencies": { 225 | "cross-spawn": "^7.0.3", 226 | "fast-glob": "^3.3.0", 227 | "is-glob": "^4.0.3", 228 | "open": "^9.1.0", 229 | "picocolors": "^1.0.0", 230 | "tslib": "^2.6.0" 231 | }, 232 | "engines": { 233 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 234 | }, 235 | "funding": { 236 | "url": "https://opencollective.com/unts" 237 | } 238 | }, 239 | "node_modules/@protobufjs/aspromise": { 240 | "version": "1.1.2", 241 | "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", 242 | "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" 243 | }, 244 | "node_modules/@protobufjs/base64": { 245 | "version": "1.1.2", 246 | "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", 247 | "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" 248 | }, 249 | "node_modules/@protobufjs/codegen": { 250 | "version": "2.0.4", 251 | "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", 252 | "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" 253 | }, 254 | "node_modules/@protobufjs/eventemitter": { 255 | "version": "1.1.0", 256 | "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", 257 | "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" 258 | }, 259 | "node_modules/@protobufjs/fetch": { 260 | "version": "1.1.0", 261 | "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", 262 | "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", 263 | "dependencies": { 264 | "@protobufjs/aspromise": "^1.1.1", 265 | "@protobufjs/inquire": "^1.1.0" 266 | } 267 | }, 268 | "node_modules/@protobufjs/float": { 269 | "version": "1.0.2", 270 | "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", 271 | "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" 272 | }, 273 | "node_modules/@protobufjs/inquire": { 274 | "version": "1.1.0", 275 | "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", 276 | "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" 277 | }, 278 | "node_modules/@protobufjs/path": { 279 | "version": "1.1.2", 280 | "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", 281 | "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" 282 | }, 283 | "node_modules/@protobufjs/pool": { 284 | "version": "1.1.0", 285 | "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", 286 | "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" 287 | }, 288 | "node_modules/@protobufjs/utf8": { 289 | "version": "1.1.0", 290 | "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", 291 | "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" 292 | }, 293 | "node_modules/@slack/types": { 294 | "version": "2.11.0", 295 | "resolved": "https://registry.npmjs.org/@slack/types/-/types-2.11.0.tgz", 296 | "integrity": "sha512-UlIrDWvuLaDly3QZhCPnwUSI/KYmV1N9LyhuH6EDKCRS1HWZhyTG3Ja46T3D0rYfqdltKYFXbJSSRPwZpwO0cQ==", 297 | "engines": { 298 | "node": ">= 12.13.0", 299 | "npm": ">= 6.12.0" 300 | } 301 | }, 302 | "node_modules/@slack/webhook": { 303 | "version": "7.0.2", 304 | "resolved": "https://registry.npmjs.org/@slack/webhook/-/webhook-7.0.2.tgz", 305 | "integrity": "sha512-dsrO/ow6a6+xkLm/lZKbUNTsFJlBc679tD+qwlVTztsQkDxPLH6odM7FKALz1IHa+KpLX8HKUIPV13a7y7z29w==", 306 | "dependencies": { 307 | "@slack/types": "^2.9.0", 308 | "@types/node": ">=18.0.0", 309 | "axios": "^1.6.3" 310 | }, 311 | "engines": { 312 | "node": ">= 18", 313 | "npm": ">= 8.6.0" 314 | } 315 | }, 316 | "node_modules/@slack/webhook/node_modules/axios": { 317 | "version": "1.6.7", 318 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", 319 | "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", 320 | "dependencies": { 321 | "follow-redirects": "^1.15.4", 322 | "form-data": "^4.0.0", 323 | "proxy-from-env": "^1.1.0" 324 | } 325 | }, 326 | "node_modules/@types/json5": { 327 | "version": "0.0.29", 328 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 329 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 330 | "dev": true 331 | }, 332 | "node_modules/@types/node": { 333 | "version": "20.11.16", 334 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.16.tgz", 335 | "integrity": "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==", 336 | "dependencies": { 337 | "undici-types": "~5.26.4" 338 | } 339 | }, 340 | "node_modules/@ungap/structured-clone": { 341 | "version": "1.2.0", 342 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 343 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 344 | "dev": true, 345 | "peer": true 346 | }, 347 | "node_modules/acorn": { 348 | "version": "8.11.2", 349 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", 350 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 351 | "dev": true, 352 | "peer": true, 353 | "bin": { 354 | "acorn": "bin/acorn" 355 | }, 356 | "engines": { 357 | "node": ">=0.4.0" 358 | } 359 | }, 360 | "node_modules/acorn-jsx": { 361 | "version": "5.3.2", 362 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 363 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 364 | "dev": true, 365 | "peer": true, 366 | "peerDependencies": { 367 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 368 | } 369 | }, 370 | "node_modules/ajv": { 371 | "version": "6.12.6", 372 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 373 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 374 | "dev": true, 375 | "peer": true, 376 | "dependencies": { 377 | "fast-deep-equal": "^3.1.1", 378 | "fast-json-stable-stringify": "^2.0.0", 379 | "json-schema-traverse": "^0.4.1", 380 | "uri-js": "^4.2.2" 381 | }, 382 | "funding": { 383 | "type": "github", 384 | "url": "https://github.com/sponsors/epoberezkin" 385 | } 386 | }, 387 | "node_modules/ansi-regex": { 388 | "version": "5.0.1", 389 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 390 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 391 | "engines": { 392 | "node": ">=8" 393 | } 394 | }, 395 | "node_modules/ansi-styles": { 396 | "version": "4.3.0", 397 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 398 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 399 | "dependencies": { 400 | "color-convert": "^2.0.1" 401 | }, 402 | "engines": { 403 | "node": ">=8" 404 | }, 405 | "funding": { 406 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 407 | } 408 | }, 409 | "node_modules/argparse": { 410 | "version": "2.0.1", 411 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 412 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 413 | "dev": true, 414 | "peer": true 415 | }, 416 | "node_modules/array-buffer-byte-length": { 417 | "version": "1.0.0", 418 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 419 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 420 | "dev": true, 421 | "dependencies": { 422 | "call-bind": "^1.0.2", 423 | "is-array-buffer": "^3.0.1" 424 | }, 425 | "funding": { 426 | "url": "https://github.com/sponsors/ljharb" 427 | } 428 | }, 429 | "node_modules/array-includes": { 430 | "version": "3.1.7", 431 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", 432 | "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", 433 | "dev": true, 434 | "dependencies": { 435 | "call-bind": "^1.0.2", 436 | "define-properties": "^1.2.0", 437 | "es-abstract": "^1.22.1", 438 | "get-intrinsic": "^1.2.1", 439 | "is-string": "^1.0.7" 440 | }, 441 | "engines": { 442 | "node": ">= 0.4" 443 | }, 444 | "funding": { 445 | "url": "https://github.com/sponsors/ljharb" 446 | } 447 | }, 448 | "node_modules/array.prototype.findlastindex": { 449 | "version": "1.2.3", 450 | "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", 451 | "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", 452 | "dev": true, 453 | "dependencies": { 454 | "call-bind": "^1.0.2", 455 | "define-properties": "^1.2.0", 456 | "es-abstract": "^1.22.1", 457 | "es-shim-unscopables": "^1.0.0", 458 | "get-intrinsic": "^1.2.1" 459 | }, 460 | "engines": { 461 | "node": ">= 0.4" 462 | }, 463 | "funding": { 464 | "url": "https://github.com/sponsors/ljharb" 465 | } 466 | }, 467 | "node_modules/array.prototype.flat": { 468 | "version": "1.3.2", 469 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", 470 | "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", 471 | "dev": true, 472 | "dependencies": { 473 | "call-bind": "^1.0.2", 474 | "define-properties": "^1.2.0", 475 | "es-abstract": "^1.22.1", 476 | "es-shim-unscopables": "^1.0.0" 477 | }, 478 | "engines": { 479 | "node": ">= 0.4" 480 | }, 481 | "funding": { 482 | "url": "https://github.com/sponsors/ljharb" 483 | } 484 | }, 485 | "node_modules/array.prototype.flatmap": { 486 | "version": "1.3.2", 487 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", 488 | "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", 489 | "dev": true, 490 | "dependencies": { 491 | "call-bind": "^1.0.2", 492 | "define-properties": "^1.2.0", 493 | "es-abstract": "^1.22.1", 494 | "es-shim-unscopables": "^1.0.0" 495 | }, 496 | "engines": { 497 | "node": ">= 0.4" 498 | }, 499 | "funding": { 500 | "url": "https://github.com/sponsors/ljharb" 501 | } 502 | }, 503 | "node_modules/arraybuffer.prototype.slice": { 504 | "version": "1.0.2", 505 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", 506 | "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", 507 | "dev": true, 508 | "dependencies": { 509 | "array-buffer-byte-length": "^1.0.0", 510 | "call-bind": "^1.0.2", 511 | "define-properties": "^1.2.0", 512 | "es-abstract": "^1.22.1", 513 | "get-intrinsic": "^1.2.1", 514 | "is-array-buffer": "^3.0.2", 515 | "is-shared-array-buffer": "^1.0.2" 516 | }, 517 | "engines": { 518 | "node": ">= 0.4" 519 | }, 520 | "funding": { 521 | "url": "https://github.com/sponsors/ljharb" 522 | } 523 | }, 524 | "node_modules/asn1": { 525 | "version": "0.2.6", 526 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", 527 | "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", 528 | "dependencies": { 529 | "safer-buffer": "~2.1.0" 530 | } 531 | }, 532 | "node_modules/async-await-queue": { 533 | "version": "2.1.4", 534 | "resolved": "https://registry.npmjs.org/async-await-queue/-/async-await-queue-2.1.4.tgz", 535 | "integrity": "sha512-3DpDtxkKO0O/FPlWbk/CrbexjuSxWm1CH1bXlVNVyMBIkKHhT5D85gzHmGJokG3ibNGWQ7pHBmStxUW/z/0LYQ==" 536 | }, 537 | "node_modules/asynckit": { 538 | "version": "0.4.0", 539 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 540 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 541 | }, 542 | "node_modules/available-typed-arrays": { 543 | "version": "1.0.5", 544 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 545 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 546 | "dev": true, 547 | "engines": { 548 | "node": ">= 0.4" 549 | }, 550 | "funding": { 551 | "url": "https://github.com/sponsors/ljharb" 552 | } 553 | }, 554 | "node_modules/axios": { 555 | "version": "0.25.0", 556 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", 557 | "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", 558 | "dependencies": { 559 | "follow-redirects": "^1.14.7" 560 | } 561 | }, 562 | "node_modules/balanced-match": { 563 | "version": "1.0.2", 564 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 565 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 566 | "dev": true 567 | }, 568 | "node_modules/base64-js": { 569 | "version": "1.5.1", 570 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 571 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 572 | "funding": [ 573 | { 574 | "type": "github", 575 | "url": "https://github.com/sponsors/feross" 576 | }, 577 | { 578 | "type": "patreon", 579 | "url": "https://www.patreon.com/feross" 580 | }, 581 | { 582 | "type": "consulting", 583 | "url": "https://feross.org/support" 584 | } 585 | ] 586 | }, 587 | "node_modules/bcrypt-pbkdf": { 588 | "version": "1.0.2", 589 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 590 | "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", 591 | "dependencies": { 592 | "tweetnacl": "^0.14.3" 593 | } 594 | }, 595 | "node_modules/big-integer": { 596 | "version": "1.6.52", 597 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", 598 | "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", 599 | "dev": true, 600 | "engines": { 601 | "node": ">=0.6" 602 | } 603 | }, 604 | "node_modules/bl": { 605 | "version": "4.1.0", 606 | "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", 607 | "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", 608 | "dependencies": { 609 | "buffer": "^5.5.0", 610 | "inherits": "^2.0.4", 611 | "readable-stream": "^3.4.0" 612 | } 613 | }, 614 | "node_modules/bplist-parser": { 615 | "version": "0.2.0", 616 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 617 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 618 | "dev": true, 619 | "dependencies": { 620 | "big-integer": "^1.6.44" 621 | }, 622 | "engines": { 623 | "node": ">= 5.10.0" 624 | } 625 | }, 626 | "node_modules/brace-expansion": { 627 | "version": "1.1.11", 628 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 629 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 630 | "dev": true, 631 | "dependencies": { 632 | "balanced-match": "^1.0.0", 633 | "concat-map": "0.0.1" 634 | } 635 | }, 636 | "node_modules/braces": { 637 | "version": "3.0.2", 638 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 639 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 640 | "dev": true, 641 | "dependencies": { 642 | "fill-range": "^7.0.1" 643 | }, 644 | "engines": { 645 | "node": ">=8" 646 | } 647 | }, 648 | "node_modules/buffer": { 649 | "version": "5.7.1", 650 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 651 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 652 | "funding": [ 653 | { 654 | "type": "github", 655 | "url": "https://github.com/sponsors/feross" 656 | }, 657 | { 658 | "type": "patreon", 659 | "url": "https://www.patreon.com/feross" 660 | }, 661 | { 662 | "type": "consulting", 663 | "url": "https://feross.org/support" 664 | } 665 | ], 666 | "dependencies": { 667 | "base64-js": "^1.3.1", 668 | "ieee754": "^1.1.13" 669 | } 670 | }, 671 | "node_modules/buildcheck": { 672 | "version": "0.0.6", 673 | "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.6.tgz", 674 | "integrity": "sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==", 675 | "optional": true, 676 | "engines": { 677 | "node": ">=10.0.0" 678 | } 679 | }, 680 | "node_modules/builtin-modules": { 681 | "version": "3.3.0", 682 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 683 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 684 | "dev": true, 685 | "engines": { 686 | "node": ">=6" 687 | }, 688 | "funding": { 689 | "url": "https://github.com/sponsors/sindresorhus" 690 | } 691 | }, 692 | "node_modules/builtins": { 693 | "version": "5.1.0", 694 | "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz", 695 | "integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==", 696 | "dev": true, 697 | "dependencies": { 698 | "semver": "^7.0.0" 699 | } 700 | }, 701 | "node_modules/builtins/node_modules/semver": { 702 | "version": "7.6.2", 703 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 704 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 705 | "dev": true, 706 | "bin": { 707 | "semver": "bin/semver.js" 708 | }, 709 | "engines": { 710 | "node": ">=10" 711 | } 712 | }, 713 | "node_modules/bundle-name": { 714 | "version": "3.0.0", 715 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 716 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 717 | "dev": true, 718 | "dependencies": { 719 | "run-applescript": "^5.0.0" 720 | }, 721 | "engines": { 722 | "node": ">=12" 723 | }, 724 | "funding": { 725 | "url": "https://github.com/sponsors/sindresorhus" 726 | } 727 | }, 728 | "node_modules/call-bind": { 729 | "version": "1.0.5", 730 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", 731 | "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", 732 | "dev": true, 733 | "dependencies": { 734 | "function-bind": "^1.1.2", 735 | "get-intrinsic": "^1.2.1", 736 | "set-function-length": "^1.1.1" 737 | }, 738 | "funding": { 739 | "url": "https://github.com/sponsors/ljharb" 740 | } 741 | }, 742 | "node_modules/callsites": { 743 | "version": "3.1.0", 744 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 745 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 746 | "dev": true, 747 | "peer": true, 748 | "engines": { 749 | "node": ">=6" 750 | } 751 | }, 752 | "node_modules/chalk": { 753 | "version": "4.1.2", 754 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 755 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 756 | "dev": true, 757 | "peer": true, 758 | "dependencies": { 759 | "ansi-styles": "^4.1.0", 760 | "supports-color": "^7.1.0" 761 | }, 762 | "engines": { 763 | "node": ">=10" 764 | }, 765 | "funding": { 766 | "url": "https://github.com/chalk/chalk?sponsor=1" 767 | } 768 | }, 769 | "node_modules/child_process": { 770 | "version": "1.0.2", 771 | "resolved": "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz", 772 | "integrity": "sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==" 773 | }, 774 | "node_modules/chownr": { 775 | "version": "1.1.4", 776 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", 777 | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" 778 | }, 779 | "node_modules/cliui": { 780 | "version": "8.0.1", 781 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 782 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 783 | "dependencies": { 784 | "string-width": "^4.2.0", 785 | "strip-ansi": "^6.0.1", 786 | "wrap-ansi": "^7.0.0" 787 | }, 788 | "engines": { 789 | "node": ">=12" 790 | } 791 | }, 792 | "node_modules/color-convert": { 793 | "version": "2.0.1", 794 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 795 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 796 | "dependencies": { 797 | "color-name": "~1.1.4" 798 | }, 799 | "engines": { 800 | "node": ">=7.0.0" 801 | } 802 | }, 803 | "node_modules/color-name": { 804 | "version": "1.1.4", 805 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 806 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 807 | }, 808 | "node_modules/combined-stream": { 809 | "version": "1.0.8", 810 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 811 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 812 | "dependencies": { 813 | "delayed-stream": "~1.0.0" 814 | }, 815 | "engines": { 816 | "node": ">= 0.8" 817 | } 818 | }, 819 | "node_modules/concat-map": { 820 | "version": "0.0.1", 821 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 822 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 823 | "dev": true 824 | }, 825 | "node_modules/cpu-features": { 826 | "version": "0.0.10", 827 | "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.10.tgz", 828 | "integrity": "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==", 829 | "hasInstallScript": true, 830 | "optional": true, 831 | "dependencies": { 832 | "buildcheck": "~0.0.6", 833 | "nan": "^2.19.0" 834 | }, 835 | "engines": { 836 | "node": ">=10.0.0" 837 | } 838 | }, 839 | "node_modules/cron-parser": { 840 | "version": "4.9.0", 841 | "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-4.9.0.tgz", 842 | "integrity": "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==", 843 | "dependencies": { 844 | "luxon": "^3.2.1" 845 | }, 846 | "engines": { 847 | "node": ">=12.0.0" 848 | } 849 | }, 850 | "node_modules/cross-spawn": { 851 | "version": "7.0.3", 852 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 853 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 854 | "dev": true, 855 | "dependencies": { 856 | "path-key": "^3.1.0", 857 | "shebang-command": "^2.0.0", 858 | "which": "^2.0.1" 859 | }, 860 | "engines": { 861 | "node": ">= 8" 862 | } 863 | }, 864 | "node_modules/debug": { 865 | "version": "4.3.4", 866 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 867 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 868 | "dependencies": { 869 | "ms": "2.1.2" 870 | }, 871 | "engines": { 872 | "node": ">=6.0" 873 | }, 874 | "peerDependenciesMeta": { 875 | "supports-color": { 876 | "optional": true 877 | } 878 | } 879 | }, 880 | "node_modules/deep-is": { 881 | "version": "0.1.4", 882 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 883 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 884 | "dev": true, 885 | "peer": true 886 | }, 887 | "node_modules/default-browser": { 888 | "version": "4.0.0", 889 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 890 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 891 | "dev": true, 892 | "dependencies": { 893 | "bundle-name": "^3.0.0", 894 | "default-browser-id": "^3.0.0", 895 | "execa": "^7.1.1", 896 | "titleize": "^3.0.0" 897 | }, 898 | "engines": { 899 | "node": ">=14.16" 900 | }, 901 | "funding": { 902 | "url": "https://github.com/sponsors/sindresorhus" 903 | } 904 | }, 905 | "node_modules/default-browser-id": { 906 | "version": "3.0.0", 907 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 908 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 909 | "dev": true, 910 | "dependencies": { 911 | "bplist-parser": "^0.2.0", 912 | "untildify": "^4.0.0" 913 | }, 914 | "engines": { 915 | "node": ">=12" 916 | }, 917 | "funding": { 918 | "url": "https://github.com/sponsors/sindresorhus" 919 | } 920 | }, 921 | "node_modules/define-data-property": { 922 | "version": "1.1.1", 923 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", 924 | "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", 925 | "dev": true, 926 | "dependencies": { 927 | "get-intrinsic": "^1.2.1", 928 | "gopd": "^1.0.1", 929 | "has-property-descriptors": "^1.0.0" 930 | }, 931 | "engines": { 932 | "node": ">= 0.4" 933 | } 934 | }, 935 | "node_modules/define-lazy-prop": { 936 | "version": "3.0.0", 937 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 938 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 939 | "dev": true, 940 | "engines": { 941 | "node": ">=12" 942 | }, 943 | "funding": { 944 | "url": "https://github.com/sponsors/sindresorhus" 945 | } 946 | }, 947 | "node_modules/define-properties": { 948 | "version": "1.2.1", 949 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 950 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 951 | "dev": true, 952 | "dependencies": { 953 | "define-data-property": "^1.0.1", 954 | "has-property-descriptors": "^1.0.0", 955 | "object-keys": "^1.1.1" 956 | }, 957 | "engines": { 958 | "node": ">= 0.4" 959 | }, 960 | "funding": { 961 | "url": "https://github.com/sponsors/ljharb" 962 | } 963 | }, 964 | "node_modules/delayed-stream": { 965 | "version": "1.0.0", 966 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 967 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 968 | "engines": { 969 | "node": ">=0.4.0" 970 | } 971 | }, 972 | "node_modules/docker-modem": { 973 | "version": "5.0.6", 974 | "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.6.tgz", 975 | "integrity": "sha512-ens7BiayssQz/uAxGzH8zGXCtiV24rRWXdjNha5V4zSOcxmAZsfGVm/PPFbwQdqEkDnhG+SyR9E3zSHUbOKXBQ==", 976 | "dependencies": { 977 | "debug": "^4.1.1", 978 | "readable-stream": "^3.5.0", 979 | "split-ca": "^1.0.1", 980 | "ssh2": "^1.15.0" 981 | }, 982 | "engines": { 983 | "node": ">= 8.0" 984 | } 985 | }, 986 | "node_modules/dockerode": { 987 | "version": "4.0.5", 988 | "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.5.tgz", 989 | "integrity": "sha512-ZPmKSr1k1571Mrh7oIBS/j0AqAccoecY2yH420ni5j1KyNMgnoTh4Nu4FWunh0HZIJmRSmSysJjBIpa/zyWUEA==", 990 | "dependencies": { 991 | "@balena/dockerignore": "^1.0.2", 992 | "@grpc/grpc-js": "^1.11.1", 993 | "@grpc/proto-loader": "^0.7.13", 994 | "docker-modem": "^5.0.6", 995 | "protobufjs": "^7.3.2", 996 | "tar-fs": "~2.1.2", 997 | "uuid": "^10.0.0" 998 | }, 999 | "engines": { 1000 | "node": ">= 8.0" 1001 | } 1002 | }, 1003 | "node_modules/doctrine": { 1004 | "version": "3.0.0", 1005 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1006 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1007 | "dev": true, 1008 | "peer": true, 1009 | "dependencies": { 1010 | "esutils": "^2.0.2" 1011 | }, 1012 | "engines": { 1013 | "node": ">=6.0.0" 1014 | } 1015 | }, 1016 | "node_modules/dotenv": { 1017 | "version": "16.4.7", 1018 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", 1019 | "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", 1020 | "license": "BSD-2-Clause", 1021 | "engines": { 1022 | "node": ">=12" 1023 | }, 1024 | "funding": { 1025 | "url": "https://dotenvx.com" 1026 | } 1027 | }, 1028 | "node_modules/emoji-regex": { 1029 | "version": "8.0.0", 1030 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1031 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 1032 | }, 1033 | "node_modules/end-of-stream": { 1034 | "version": "1.4.4", 1035 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 1036 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 1037 | "dependencies": { 1038 | "once": "^1.4.0" 1039 | } 1040 | }, 1041 | "node_modules/es-abstract": { 1042 | "version": "1.22.3", 1043 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", 1044 | "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", 1045 | "dev": true, 1046 | "dependencies": { 1047 | "array-buffer-byte-length": "^1.0.0", 1048 | "arraybuffer.prototype.slice": "^1.0.2", 1049 | "available-typed-arrays": "^1.0.5", 1050 | "call-bind": "^1.0.5", 1051 | "es-set-tostringtag": "^2.0.1", 1052 | "es-to-primitive": "^1.2.1", 1053 | "function.prototype.name": "^1.1.6", 1054 | "get-intrinsic": "^1.2.2", 1055 | "get-symbol-description": "^1.0.0", 1056 | "globalthis": "^1.0.3", 1057 | "gopd": "^1.0.1", 1058 | "has-property-descriptors": "^1.0.0", 1059 | "has-proto": "^1.0.1", 1060 | "has-symbols": "^1.0.3", 1061 | "hasown": "^2.0.0", 1062 | "internal-slot": "^1.0.5", 1063 | "is-array-buffer": "^3.0.2", 1064 | "is-callable": "^1.2.7", 1065 | "is-negative-zero": "^2.0.2", 1066 | "is-regex": "^1.1.4", 1067 | "is-shared-array-buffer": "^1.0.2", 1068 | "is-string": "^1.0.7", 1069 | "is-typed-array": "^1.1.12", 1070 | "is-weakref": "^1.0.2", 1071 | "object-inspect": "^1.13.1", 1072 | "object-keys": "^1.1.1", 1073 | "object.assign": "^4.1.4", 1074 | "regexp.prototype.flags": "^1.5.1", 1075 | "safe-array-concat": "^1.0.1", 1076 | "safe-regex-test": "^1.0.0", 1077 | "string.prototype.trim": "^1.2.8", 1078 | "string.prototype.trimend": "^1.0.7", 1079 | "string.prototype.trimstart": "^1.0.7", 1080 | "typed-array-buffer": "^1.0.0", 1081 | "typed-array-byte-length": "^1.0.0", 1082 | "typed-array-byte-offset": "^1.0.0", 1083 | "typed-array-length": "^1.0.4", 1084 | "unbox-primitive": "^1.0.2", 1085 | "which-typed-array": "^1.1.13" 1086 | }, 1087 | "engines": { 1088 | "node": ">= 0.4" 1089 | }, 1090 | "funding": { 1091 | "url": "https://github.com/sponsors/ljharb" 1092 | } 1093 | }, 1094 | "node_modules/es-set-tostringtag": { 1095 | "version": "2.0.2", 1096 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", 1097 | "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", 1098 | "dev": true, 1099 | "dependencies": { 1100 | "get-intrinsic": "^1.2.2", 1101 | "has-tostringtag": "^1.0.0", 1102 | "hasown": "^2.0.0" 1103 | }, 1104 | "engines": { 1105 | "node": ">= 0.4" 1106 | } 1107 | }, 1108 | "node_modules/es-shim-unscopables": { 1109 | "version": "1.0.2", 1110 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", 1111 | "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", 1112 | "dev": true, 1113 | "dependencies": { 1114 | "hasown": "^2.0.0" 1115 | } 1116 | }, 1117 | "node_modules/es-to-primitive": { 1118 | "version": "1.2.1", 1119 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1120 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1121 | "dev": true, 1122 | "dependencies": { 1123 | "is-callable": "^1.1.4", 1124 | "is-date-object": "^1.0.1", 1125 | "is-symbol": "^1.0.2" 1126 | }, 1127 | "engines": { 1128 | "node": ">= 0.4" 1129 | }, 1130 | "funding": { 1131 | "url": "https://github.com/sponsors/ljharb" 1132 | } 1133 | }, 1134 | "node_modules/escalade": { 1135 | "version": "3.2.0", 1136 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1137 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1138 | "engines": { 1139 | "node": ">=6" 1140 | } 1141 | }, 1142 | "node_modules/escape-string-regexp": { 1143 | "version": "4.0.0", 1144 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1145 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1146 | "dev": true, 1147 | "peer": true, 1148 | "engines": { 1149 | "node": ">=10" 1150 | }, 1151 | "funding": { 1152 | "url": "https://github.com/sponsors/sindresorhus" 1153 | } 1154 | }, 1155 | "node_modules/eslint": { 1156 | "version": "8.56.0", 1157 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", 1158 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", 1159 | "dev": true, 1160 | "peer": true, 1161 | "dependencies": { 1162 | "@eslint-community/eslint-utils": "^4.2.0", 1163 | "@eslint-community/regexpp": "^4.6.1", 1164 | "@eslint/eslintrc": "^2.1.4", 1165 | "@eslint/js": "8.56.0", 1166 | "@humanwhocodes/config-array": "^0.11.13", 1167 | "@humanwhocodes/module-importer": "^1.0.1", 1168 | "@nodelib/fs.walk": "^1.2.8", 1169 | "@ungap/structured-clone": "^1.2.0", 1170 | "ajv": "^6.12.4", 1171 | "chalk": "^4.0.0", 1172 | "cross-spawn": "^7.0.2", 1173 | "debug": "^4.3.2", 1174 | "doctrine": "^3.0.0", 1175 | "escape-string-regexp": "^4.0.0", 1176 | "eslint-scope": "^7.2.2", 1177 | "eslint-visitor-keys": "^3.4.3", 1178 | "espree": "^9.6.1", 1179 | "esquery": "^1.4.2", 1180 | "esutils": "^2.0.2", 1181 | "fast-deep-equal": "^3.1.3", 1182 | "file-entry-cache": "^6.0.1", 1183 | "find-up": "^5.0.0", 1184 | "glob-parent": "^6.0.2", 1185 | "globals": "^13.19.0", 1186 | "graphemer": "^1.4.0", 1187 | "ignore": "^5.2.0", 1188 | "imurmurhash": "^0.1.4", 1189 | "is-glob": "^4.0.0", 1190 | "is-path-inside": "^3.0.3", 1191 | "js-yaml": "^4.1.0", 1192 | "json-stable-stringify-without-jsonify": "^1.0.1", 1193 | "levn": "^0.4.1", 1194 | "lodash.merge": "^4.6.2", 1195 | "minimatch": "^3.1.2", 1196 | "natural-compare": "^1.4.0", 1197 | "optionator": "^0.9.3", 1198 | "strip-ansi": "^6.0.1", 1199 | "text-table": "^0.2.0" 1200 | }, 1201 | "bin": { 1202 | "eslint": "bin/eslint.js" 1203 | }, 1204 | "engines": { 1205 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1206 | }, 1207 | "funding": { 1208 | "url": "https://opencollective.com/eslint" 1209 | } 1210 | }, 1211 | "node_modules/eslint-compat-utils": { 1212 | "version": "0.1.2", 1213 | "resolved": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.1.2.tgz", 1214 | "integrity": "sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==", 1215 | "dev": true, 1216 | "engines": { 1217 | "node": ">=12" 1218 | }, 1219 | "peerDependencies": { 1220 | "eslint": ">=6.0.0" 1221 | } 1222 | }, 1223 | "node_modules/eslint-config-prettier": { 1224 | "version": "9.1.0", 1225 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 1226 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 1227 | "dev": true, 1228 | "bin": { 1229 | "eslint-config-prettier": "bin/cli.js" 1230 | }, 1231 | "peerDependencies": { 1232 | "eslint": ">=7.0.0" 1233 | } 1234 | }, 1235 | "node_modules/eslint-config-standard": { 1236 | "version": "17.1.0", 1237 | "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", 1238 | "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", 1239 | "dev": true, 1240 | "funding": [ 1241 | { 1242 | "type": "github", 1243 | "url": "https://github.com/sponsors/feross" 1244 | }, 1245 | { 1246 | "type": "patreon", 1247 | "url": "https://www.patreon.com/feross" 1248 | }, 1249 | { 1250 | "type": "consulting", 1251 | "url": "https://feross.org/support" 1252 | } 1253 | ], 1254 | "engines": { 1255 | "node": ">=12.0.0" 1256 | }, 1257 | "peerDependencies": { 1258 | "eslint": "^8.0.1", 1259 | "eslint-plugin-import": "^2.25.2", 1260 | "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", 1261 | "eslint-plugin-promise": "^6.0.0" 1262 | } 1263 | }, 1264 | "node_modules/eslint-import-resolver-node": { 1265 | "version": "0.3.9", 1266 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", 1267 | "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", 1268 | "dev": true, 1269 | "dependencies": { 1270 | "debug": "^3.2.7", 1271 | "is-core-module": "^2.13.0", 1272 | "resolve": "^1.22.4" 1273 | } 1274 | }, 1275 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1276 | "version": "3.2.7", 1277 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1278 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1279 | "dev": true, 1280 | "dependencies": { 1281 | "ms": "^2.1.1" 1282 | } 1283 | }, 1284 | "node_modules/eslint-module-utils": { 1285 | "version": "2.8.0", 1286 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1287 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1288 | "dev": true, 1289 | "dependencies": { 1290 | "debug": "^3.2.7" 1291 | }, 1292 | "engines": { 1293 | "node": ">=4" 1294 | }, 1295 | "peerDependenciesMeta": { 1296 | "eslint": { 1297 | "optional": true 1298 | } 1299 | } 1300 | }, 1301 | "node_modules/eslint-module-utils/node_modules/debug": { 1302 | "version": "3.2.7", 1303 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1304 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1305 | "dev": true, 1306 | "dependencies": { 1307 | "ms": "^2.1.1" 1308 | } 1309 | }, 1310 | "node_modules/eslint-plugin-es-x": { 1311 | "version": "7.5.0", 1312 | "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.5.0.tgz", 1313 | "integrity": "sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==", 1314 | "dev": true, 1315 | "dependencies": { 1316 | "@eslint-community/eslint-utils": "^4.1.2", 1317 | "@eslint-community/regexpp": "^4.6.0", 1318 | "eslint-compat-utils": "^0.1.2" 1319 | }, 1320 | "engines": { 1321 | "node": "^14.18.0 || >=16.0.0" 1322 | }, 1323 | "funding": { 1324 | "url": "https://github.com/sponsors/ota-meshi" 1325 | }, 1326 | "peerDependencies": { 1327 | "eslint": ">=8" 1328 | } 1329 | }, 1330 | "node_modules/eslint-plugin-import": { 1331 | "version": "2.29.1", 1332 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", 1333 | "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", 1334 | "dev": true, 1335 | "dependencies": { 1336 | "array-includes": "^3.1.7", 1337 | "array.prototype.findlastindex": "^1.2.3", 1338 | "array.prototype.flat": "^1.3.2", 1339 | "array.prototype.flatmap": "^1.3.2", 1340 | "debug": "^3.2.7", 1341 | "doctrine": "^2.1.0", 1342 | "eslint-import-resolver-node": "^0.3.9", 1343 | "eslint-module-utils": "^2.8.0", 1344 | "hasown": "^2.0.0", 1345 | "is-core-module": "^2.13.1", 1346 | "is-glob": "^4.0.3", 1347 | "minimatch": "^3.1.2", 1348 | "object.fromentries": "^2.0.7", 1349 | "object.groupby": "^1.0.1", 1350 | "object.values": "^1.1.7", 1351 | "semver": "^6.3.1", 1352 | "tsconfig-paths": "^3.15.0" 1353 | }, 1354 | "engines": { 1355 | "node": ">=4" 1356 | }, 1357 | "peerDependencies": { 1358 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1359 | } 1360 | }, 1361 | "node_modules/eslint-plugin-import/node_modules/debug": { 1362 | "version": "3.2.7", 1363 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1364 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1365 | "dev": true, 1366 | "dependencies": { 1367 | "ms": "^2.1.1" 1368 | } 1369 | }, 1370 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1371 | "version": "2.1.0", 1372 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1373 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1374 | "dev": true, 1375 | "dependencies": { 1376 | "esutils": "^2.0.2" 1377 | }, 1378 | "engines": { 1379 | "node": ">=0.10.0" 1380 | } 1381 | }, 1382 | "node_modules/eslint-plugin-n": { 1383 | "version": "16.6.2", 1384 | "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.6.2.tgz", 1385 | "integrity": "sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==", 1386 | "dev": true, 1387 | "dependencies": { 1388 | "@eslint-community/eslint-utils": "^4.4.0", 1389 | "builtins": "^5.0.1", 1390 | "eslint-plugin-es-x": "^7.5.0", 1391 | "get-tsconfig": "^4.7.0", 1392 | "globals": "^13.24.0", 1393 | "ignore": "^5.2.4", 1394 | "is-builtin-module": "^3.2.1", 1395 | "is-core-module": "^2.12.1", 1396 | "minimatch": "^3.1.2", 1397 | "resolve": "^1.22.2", 1398 | "semver": "^7.5.3" 1399 | }, 1400 | "engines": { 1401 | "node": ">=16.0.0" 1402 | }, 1403 | "funding": { 1404 | "url": "https://github.com/sponsors/mysticatea" 1405 | }, 1406 | "peerDependencies": { 1407 | "eslint": ">=7.0.0" 1408 | } 1409 | }, 1410 | "node_modules/eslint-plugin-n/node_modules/semver": { 1411 | "version": "7.5.4", 1412 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 1413 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 1414 | "dev": true, 1415 | "dependencies": { 1416 | "lru-cache": "^6.0.0" 1417 | }, 1418 | "bin": { 1419 | "semver": "bin/semver.js" 1420 | }, 1421 | "engines": { 1422 | "node": ">=10" 1423 | } 1424 | }, 1425 | "node_modules/eslint-plugin-prettier": { 1426 | "version": "5.1.3", 1427 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", 1428 | "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", 1429 | "dev": true, 1430 | "dependencies": { 1431 | "prettier-linter-helpers": "^1.0.0", 1432 | "synckit": "^0.8.6" 1433 | }, 1434 | "engines": { 1435 | "node": "^14.18.0 || >=16.0.0" 1436 | }, 1437 | "funding": { 1438 | "url": "https://opencollective.com/eslint-plugin-prettier" 1439 | }, 1440 | "peerDependencies": { 1441 | "@types/eslint": ">=8.0.0", 1442 | "eslint": ">=8.0.0", 1443 | "eslint-config-prettier": "*", 1444 | "prettier": ">=3.0.0" 1445 | }, 1446 | "peerDependenciesMeta": { 1447 | "@types/eslint": { 1448 | "optional": true 1449 | }, 1450 | "eslint-config-prettier": { 1451 | "optional": true 1452 | } 1453 | } 1454 | }, 1455 | "node_modules/eslint-plugin-promise": { 1456 | "version": "6.1.1", 1457 | "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", 1458 | "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", 1459 | "dev": true, 1460 | "engines": { 1461 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1462 | }, 1463 | "peerDependencies": { 1464 | "eslint": "^7.0.0 || ^8.0.0" 1465 | } 1466 | }, 1467 | "node_modules/eslint-scope": { 1468 | "version": "7.2.2", 1469 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1470 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1471 | "dev": true, 1472 | "peer": true, 1473 | "dependencies": { 1474 | "esrecurse": "^4.3.0", 1475 | "estraverse": "^5.2.0" 1476 | }, 1477 | "engines": { 1478 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1479 | }, 1480 | "funding": { 1481 | "url": "https://opencollective.com/eslint" 1482 | } 1483 | }, 1484 | "node_modules/eslint-visitor-keys": { 1485 | "version": "3.4.3", 1486 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1487 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1488 | "dev": true, 1489 | "engines": { 1490 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1491 | }, 1492 | "funding": { 1493 | "url": "https://opencollective.com/eslint" 1494 | } 1495 | }, 1496 | "node_modules/espree": { 1497 | "version": "9.6.1", 1498 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1499 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1500 | "dev": true, 1501 | "peer": true, 1502 | "dependencies": { 1503 | "acorn": "^8.9.0", 1504 | "acorn-jsx": "^5.3.2", 1505 | "eslint-visitor-keys": "^3.4.1" 1506 | }, 1507 | "engines": { 1508 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1509 | }, 1510 | "funding": { 1511 | "url": "https://opencollective.com/eslint" 1512 | } 1513 | }, 1514 | "node_modules/esquery": { 1515 | "version": "1.5.0", 1516 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1517 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1518 | "dev": true, 1519 | "peer": true, 1520 | "dependencies": { 1521 | "estraverse": "^5.1.0" 1522 | }, 1523 | "engines": { 1524 | "node": ">=0.10" 1525 | } 1526 | }, 1527 | "node_modules/esrecurse": { 1528 | "version": "4.3.0", 1529 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1530 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1531 | "dev": true, 1532 | "peer": true, 1533 | "dependencies": { 1534 | "estraverse": "^5.2.0" 1535 | }, 1536 | "engines": { 1537 | "node": ">=4.0" 1538 | } 1539 | }, 1540 | "node_modules/estraverse": { 1541 | "version": "5.3.0", 1542 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1543 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1544 | "dev": true, 1545 | "peer": true, 1546 | "engines": { 1547 | "node": ">=4.0" 1548 | } 1549 | }, 1550 | "node_modules/esutils": { 1551 | "version": "2.0.3", 1552 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1553 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1554 | "dev": true, 1555 | "engines": { 1556 | "node": ">=0.10.0" 1557 | } 1558 | }, 1559 | "node_modules/execa": { 1560 | "version": "7.2.0", 1561 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", 1562 | "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", 1563 | "dev": true, 1564 | "dependencies": { 1565 | "cross-spawn": "^7.0.3", 1566 | "get-stream": "^6.0.1", 1567 | "human-signals": "^4.3.0", 1568 | "is-stream": "^3.0.0", 1569 | "merge-stream": "^2.0.0", 1570 | "npm-run-path": "^5.1.0", 1571 | "onetime": "^6.0.0", 1572 | "signal-exit": "^3.0.7", 1573 | "strip-final-newline": "^3.0.0" 1574 | }, 1575 | "engines": { 1576 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1577 | }, 1578 | "funding": { 1579 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1580 | } 1581 | }, 1582 | "node_modules/fast-deep-equal": { 1583 | "version": "3.1.3", 1584 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1585 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1586 | "dev": true, 1587 | "peer": true 1588 | }, 1589 | "node_modules/fast-diff": { 1590 | "version": "1.3.0", 1591 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1592 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1593 | "dev": true 1594 | }, 1595 | "node_modules/fast-glob": { 1596 | "version": "3.3.2", 1597 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1598 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1599 | "dev": true, 1600 | "dependencies": { 1601 | "@nodelib/fs.stat": "^2.0.2", 1602 | "@nodelib/fs.walk": "^1.2.3", 1603 | "glob-parent": "^5.1.2", 1604 | "merge2": "^1.3.0", 1605 | "micromatch": "^4.0.4" 1606 | }, 1607 | "engines": { 1608 | "node": ">=8.6.0" 1609 | } 1610 | }, 1611 | "node_modules/fast-glob/node_modules/glob-parent": { 1612 | "version": "5.1.2", 1613 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1614 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1615 | "dev": true, 1616 | "dependencies": { 1617 | "is-glob": "^4.0.1" 1618 | }, 1619 | "engines": { 1620 | "node": ">= 6" 1621 | } 1622 | }, 1623 | "node_modules/fast-json-stable-stringify": { 1624 | "version": "2.1.0", 1625 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1626 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1627 | "dev": true, 1628 | "peer": true 1629 | }, 1630 | "node_modules/fast-levenshtein": { 1631 | "version": "2.0.6", 1632 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1633 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1634 | "dev": true, 1635 | "peer": true 1636 | }, 1637 | "node_modules/fastq": { 1638 | "version": "1.15.0", 1639 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1640 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1641 | "dev": true, 1642 | "dependencies": { 1643 | "reusify": "^1.0.4" 1644 | } 1645 | }, 1646 | "node_modules/file-entry-cache": { 1647 | "version": "6.0.1", 1648 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1649 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1650 | "dev": true, 1651 | "peer": true, 1652 | "dependencies": { 1653 | "flat-cache": "^3.0.4" 1654 | }, 1655 | "engines": { 1656 | "node": "^10.12.0 || >=12.0.0" 1657 | } 1658 | }, 1659 | "node_modules/fill-range": { 1660 | "version": "7.0.1", 1661 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1662 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1663 | "dev": true, 1664 | "dependencies": { 1665 | "to-regex-range": "^5.0.1" 1666 | }, 1667 | "engines": { 1668 | "node": ">=8" 1669 | } 1670 | }, 1671 | "node_modules/find-up": { 1672 | "version": "5.0.0", 1673 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1674 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1675 | "dev": true, 1676 | "peer": true, 1677 | "dependencies": { 1678 | "locate-path": "^6.0.0", 1679 | "path-exists": "^4.0.0" 1680 | }, 1681 | "engines": { 1682 | "node": ">=10" 1683 | }, 1684 | "funding": { 1685 | "url": "https://github.com/sponsors/sindresorhus" 1686 | } 1687 | }, 1688 | "node_modules/flat-cache": { 1689 | "version": "3.2.0", 1690 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1691 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1692 | "dev": true, 1693 | "peer": true, 1694 | "dependencies": { 1695 | "flatted": "^3.2.9", 1696 | "keyv": "^4.5.3", 1697 | "rimraf": "^3.0.2" 1698 | }, 1699 | "engines": { 1700 | "node": "^10.12.0 || >=12.0.0" 1701 | } 1702 | }, 1703 | "node_modules/flatted": { 1704 | "version": "3.2.9", 1705 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 1706 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 1707 | "dev": true, 1708 | "peer": true 1709 | }, 1710 | "node_modules/follow-redirects": { 1711 | "version": "1.15.4", 1712 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz", 1713 | "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==", 1714 | "funding": [ 1715 | { 1716 | "type": "individual", 1717 | "url": "https://github.com/sponsors/RubenVerborgh" 1718 | } 1719 | ], 1720 | "engines": { 1721 | "node": ">=4.0" 1722 | }, 1723 | "peerDependenciesMeta": { 1724 | "debug": { 1725 | "optional": true 1726 | } 1727 | } 1728 | }, 1729 | "node_modules/for-each": { 1730 | "version": "0.3.3", 1731 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1732 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1733 | "dev": true, 1734 | "dependencies": { 1735 | "is-callable": "^1.1.3" 1736 | } 1737 | }, 1738 | "node_modules/form-data": { 1739 | "version": "4.0.0", 1740 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1741 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1742 | "dependencies": { 1743 | "asynckit": "^0.4.0", 1744 | "combined-stream": "^1.0.8", 1745 | "mime-types": "^2.1.12" 1746 | }, 1747 | "engines": { 1748 | "node": ">= 6" 1749 | } 1750 | }, 1751 | "node_modules/fs-constants": { 1752 | "version": "1.0.0", 1753 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", 1754 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" 1755 | }, 1756 | "node_modules/fs.realpath": { 1757 | "version": "1.0.0", 1758 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1759 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1760 | "dev": true, 1761 | "peer": true 1762 | }, 1763 | "node_modules/function-bind": { 1764 | "version": "1.1.2", 1765 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1766 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1767 | "dev": true, 1768 | "funding": { 1769 | "url": "https://github.com/sponsors/ljharb" 1770 | } 1771 | }, 1772 | "node_modules/function.prototype.name": { 1773 | "version": "1.1.6", 1774 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 1775 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 1776 | "dev": true, 1777 | "dependencies": { 1778 | "call-bind": "^1.0.2", 1779 | "define-properties": "^1.2.0", 1780 | "es-abstract": "^1.22.1", 1781 | "functions-have-names": "^1.2.3" 1782 | }, 1783 | "engines": { 1784 | "node": ">= 0.4" 1785 | }, 1786 | "funding": { 1787 | "url": "https://github.com/sponsors/ljharb" 1788 | } 1789 | }, 1790 | "node_modules/functions-have-names": { 1791 | "version": "1.2.3", 1792 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1793 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1794 | "dev": true, 1795 | "funding": { 1796 | "url": "https://github.com/sponsors/ljharb" 1797 | } 1798 | }, 1799 | "node_modules/get-caller-file": { 1800 | "version": "2.0.5", 1801 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1802 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1803 | "engines": { 1804 | "node": "6.* || 8.* || >= 10.*" 1805 | } 1806 | }, 1807 | "node_modules/get-intrinsic": { 1808 | "version": "1.2.2", 1809 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", 1810 | "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", 1811 | "dev": true, 1812 | "dependencies": { 1813 | "function-bind": "^1.1.2", 1814 | "has-proto": "^1.0.1", 1815 | "has-symbols": "^1.0.3", 1816 | "hasown": "^2.0.0" 1817 | }, 1818 | "funding": { 1819 | "url": "https://github.com/sponsors/ljharb" 1820 | } 1821 | }, 1822 | "node_modules/get-stream": { 1823 | "version": "6.0.1", 1824 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1825 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1826 | "dev": true, 1827 | "engines": { 1828 | "node": ">=10" 1829 | }, 1830 | "funding": { 1831 | "url": "https://github.com/sponsors/sindresorhus" 1832 | } 1833 | }, 1834 | "node_modules/get-symbol-description": { 1835 | "version": "1.0.0", 1836 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1837 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1838 | "dev": true, 1839 | "dependencies": { 1840 | "call-bind": "^1.0.2", 1841 | "get-intrinsic": "^1.1.1" 1842 | }, 1843 | "engines": { 1844 | "node": ">= 0.4" 1845 | }, 1846 | "funding": { 1847 | "url": "https://github.com/sponsors/ljharb" 1848 | } 1849 | }, 1850 | "node_modules/get-tsconfig": { 1851 | "version": "4.7.2", 1852 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", 1853 | "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", 1854 | "dev": true, 1855 | "dependencies": { 1856 | "resolve-pkg-maps": "^1.0.0" 1857 | }, 1858 | "funding": { 1859 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1860 | } 1861 | }, 1862 | "node_modules/glob": { 1863 | "version": "7.2.3", 1864 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1865 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1866 | "dev": true, 1867 | "peer": true, 1868 | "dependencies": { 1869 | "fs.realpath": "^1.0.0", 1870 | "inflight": "^1.0.4", 1871 | "inherits": "2", 1872 | "minimatch": "^3.1.1", 1873 | "once": "^1.3.0", 1874 | "path-is-absolute": "^1.0.0" 1875 | }, 1876 | "engines": { 1877 | "node": "*" 1878 | }, 1879 | "funding": { 1880 | "url": "https://github.com/sponsors/isaacs" 1881 | } 1882 | }, 1883 | "node_modules/glob-parent": { 1884 | "version": "6.0.2", 1885 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1886 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1887 | "dev": true, 1888 | "peer": true, 1889 | "dependencies": { 1890 | "is-glob": "^4.0.3" 1891 | }, 1892 | "engines": { 1893 | "node": ">=10.13.0" 1894 | } 1895 | }, 1896 | "node_modules/globals": { 1897 | "version": "13.24.0", 1898 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1899 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1900 | "dev": true, 1901 | "dependencies": { 1902 | "type-fest": "^0.20.2" 1903 | }, 1904 | "engines": { 1905 | "node": ">=8" 1906 | }, 1907 | "funding": { 1908 | "url": "https://github.com/sponsors/sindresorhus" 1909 | } 1910 | }, 1911 | "node_modules/globalthis": { 1912 | "version": "1.0.3", 1913 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1914 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1915 | "dev": true, 1916 | "dependencies": { 1917 | "define-properties": "^1.1.3" 1918 | }, 1919 | "engines": { 1920 | "node": ">= 0.4" 1921 | }, 1922 | "funding": { 1923 | "url": "https://github.com/sponsors/ljharb" 1924 | } 1925 | }, 1926 | "node_modules/gopd": { 1927 | "version": "1.0.1", 1928 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1929 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1930 | "dev": true, 1931 | "dependencies": { 1932 | "get-intrinsic": "^1.1.3" 1933 | }, 1934 | "funding": { 1935 | "url": "https://github.com/sponsors/ljharb" 1936 | } 1937 | }, 1938 | "node_modules/graphemer": { 1939 | "version": "1.4.0", 1940 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1941 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1942 | "dev": true, 1943 | "peer": true 1944 | }, 1945 | "node_modules/has-bigints": { 1946 | "version": "1.0.2", 1947 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1948 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1949 | "dev": true, 1950 | "funding": { 1951 | "url": "https://github.com/sponsors/ljharb" 1952 | } 1953 | }, 1954 | "node_modules/has-flag": { 1955 | "version": "4.0.0", 1956 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1957 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1958 | "dev": true, 1959 | "peer": true, 1960 | "engines": { 1961 | "node": ">=8" 1962 | } 1963 | }, 1964 | "node_modules/has-property-descriptors": { 1965 | "version": "1.0.1", 1966 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", 1967 | "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", 1968 | "dev": true, 1969 | "dependencies": { 1970 | "get-intrinsic": "^1.2.2" 1971 | }, 1972 | "funding": { 1973 | "url": "https://github.com/sponsors/ljharb" 1974 | } 1975 | }, 1976 | "node_modules/has-proto": { 1977 | "version": "1.0.1", 1978 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 1979 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 1980 | "dev": true, 1981 | "engines": { 1982 | "node": ">= 0.4" 1983 | }, 1984 | "funding": { 1985 | "url": "https://github.com/sponsors/ljharb" 1986 | } 1987 | }, 1988 | "node_modules/has-symbols": { 1989 | "version": "1.0.3", 1990 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1991 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1992 | "dev": true, 1993 | "engines": { 1994 | "node": ">= 0.4" 1995 | }, 1996 | "funding": { 1997 | "url": "https://github.com/sponsors/ljharb" 1998 | } 1999 | }, 2000 | "node_modules/has-tostringtag": { 2001 | "version": "1.0.0", 2002 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2003 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2004 | "dev": true, 2005 | "dependencies": { 2006 | "has-symbols": "^1.0.2" 2007 | }, 2008 | "engines": { 2009 | "node": ">= 0.4" 2010 | }, 2011 | "funding": { 2012 | "url": "https://github.com/sponsors/ljharb" 2013 | } 2014 | }, 2015 | "node_modules/hasown": { 2016 | "version": "2.0.0", 2017 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 2018 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 2019 | "dev": true, 2020 | "dependencies": { 2021 | "function-bind": "^1.1.2" 2022 | }, 2023 | "engines": { 2024 | "node": ">= 0.4" 2025 | } 2026 | }, 2027 | "node_modules/human-signals": { 2028 | "version": "4.3.1", 2029 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2030 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2031 | "dev": true, 2032 | "engines": { 2033 | "node": ">=14.18.0" 2034 | } 2035 | }, 2036 | "node_modules/ieee754": { 2037 | "version": "1.2.1", 2038 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 2039 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 2040 | "funding": [ 2041 | { 2042 | "type": "github", 2043 | "url": "https://github.com/sponsors/feross" 2044 | }, 2045 | { 2046 | "type": "patreon", 2047 | "url": "https://www.patreon.com/feross" 2048 | }, 2049 | { 2050 | "type": "consulting", 2051 | "url": "https://feross.org/support" 2052 | } 2053 | ] 2054 | }, 2055 | "node_modules/ignore": { 2056 | "version": "5.3.0", 2057 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 2058 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 2059 | "dev": true, 2060 | "engines": { 2061 | "node": ">= 4" 2062 | } 2063 | }, 2064 | "node_modules/import-fresh": { 2065 | "version": "3.3.0", 2066 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2067 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2068 | "dev": true, 2069 | "peer": true, 2070 | "dependencies": { 2071 | "parent-module": "^1.0.0", 2072 | "resolve-from": "^4.0.0" 2073 | }, 2074 | "engines": { 2075 | "node": ">=6" 2076 | }, 2077 | "funding": { 2078 | "url": "https://github.com/sponsors/sindresorhus" 2079 | } 2080 | }, 2081 | "node_modules/imurmurhash": { 2082 | "version": "0.1.4", 2083 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2084 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2085 | "dev": true, 2086 | "peer": true, 2087 | "engines": { 2088 | "node": ">=0.8.19" 2089 | } 2090 | }, 2091 | "node_modules/inflight": { 2092 | "version": "1.0.6", 2093 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2094 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2095 | "dev": true, 2096 | "peer": true, 2097 | "dependencies": { 2098 | "once": "^1.3.0", 2099 | "wrappy": "1" 2100 | } 2101 | }, 2102 | "node_modules/inherits": { 2103 | "version": "2.0.4", 2104 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2105 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2106 | }, 2107 | "node_modules/internal-slot": { 2108 | "version": "1.0.6", 2109 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", 2110 | "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", 2111 | "dev": true, 2112 | "dependencies": { 2113 | "get-intrinsic": "^1.2.2", 2114 | "hasown": "^2.0.0", 2115 | "side-channel": "^1.0.4" 2116 | }, 2117 | "engines": { 2118 | "node": ">= 0.4" 2119 | } 2120 | }, 2121 | "node_modules/is-array-buffer": { 2122 | "version": "3.0.2", 2123 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2124 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2125 | "dev": true, 2126 | "dependencies": { 2127 | "call-bind": "^1.0.2", 2128 | "get-intrinsic": "^1.2.0", 2129 | "is-typed-array": "^1.1.10" 2130 | }, 2131 | "funding": { 2132 | "url": "https://github.com/sponsors/ljharb" 2133 | } 2134 | }, 2135 | "node_modules/is-bigint": { 2136 | "version": "1.0.4", 2137 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2138 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2139 | "dev": true, 2140 | "dependencies": { 2141 | "has-bigints": "^1.0.1" 2142 | }, 2143 | "funding": { 2144 | "url": "https://github.com/sponsors/ljharb" 2145 | } 2146 | }, 2147 | "node_modules/is-boolean-object": { 2148 | "version": "1.1.2", 2149 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2150 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2151 | "dev": true, 2152 | "dependencies": { 2153 | "call-bind": "^1.0.2", 2154 | "has-tostringtag": "^1.0.0" 2155 | }, 2156 | "engines": { 2157 | "node": ">= 0.4" 2158 | }, 2159 | "funding": { 2160 | "url": "https://github.com/sponsors/ljharb" 2161 | } 2162 | }, 2163 | "node_modules/is-builtin-module": { 2164 | "version": "3.2.1", 2165 | "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", 2166 | "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", 2167 | "dev": true, 2168 | "dependencies": { 2169 | "builtin-modules": "^3.3.0" 2170 | }, 2171 | "engines": { 2172 | "node": ">=6" 2173 | }, 2174 | "funding": { 2175 | "url": "https://github.com/sponsors/sindresorhus" 2176 | } 2177 | }, 2178 | "node_modules/is-callable": { 2179 | "version": "1.2.7", 2180 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2181 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2182 | "dev": true, 2183 | "engines": { 2184 | "node": ">= 0.4" 2185 | }, 2186 | "funding": { 2187 | "url": "https://github.com/sponsors/ljharb" 2188 | } 2189 | }, 2190 | "node_modules/is-core-module": { 2191 | "version": "2.13.1", 2192 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 2193 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 2194 | "dev": true, 2195 | "dependencies": { 2196 | "hasown": "^2.0.0" 2197 | }, 2198 | "funding": { 2199 | "url": "https://github.com/sponsors/ljharb" 2200 | } 2201 | }, 2202 | "node_modules/is-date-object": { 2203 | "version": "1.0.5", 2204 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2205 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2206 | "dev": true, 2207 | "dependencies": { 2208 | "has-tostringtag": "^1.0.0" 2209 | }, 2210 | "engines": { 2211 | "node": ">= 0.4" 2212 | }, 2213 | "funding": { 2214 | "url": "https://github.com/sponsors/ljharb" 2215 | } 2216 | }, 2217 | "node_modules/is-docker": { 2218 | "version": "3.0.0", 2219 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2220 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2221 | "dev": true, 2222 | "bin": { 2223 | "is-docker": "cli.js" 2224 | }, 2225 | "engines": { 2226 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2227 | }, 2228 | "funding": { 2229 | "url": "https://github.com/sponsors/sindresorhus" 2230 | } 2231 | }, 2232 | "node_modules/is-extglob": { 2233 | "version": "2.1.1", 2234 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2235 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2236 | "dev": true, 2237 | "engines": { 2238 | "node": ">=0.10.0" 2239 | } 2240 | }, 2241 | "node_modules/is-fullwidth-code-point": { 2242 | "version": "3.0.0", 2243 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2244 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2245 | "engines": { 2246 | "node": ">=8" 2247 | } 2248 | }, 2249 | "node_modules/is-glob": { 2250 | "version": "4.0.3", 2251 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2252 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2253 | "dev": true, 2254 | "dependencies": { 2255 | "is-extglob": "^2.1.1" 2256 | }, 2257 | "engines": { 2258 | "node": ">=0.10.0" 2259 | } 2260 | }, 2261 | "node_modules/is-inside-container": { 2262 | "version": "1.0.0", 2263 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2264 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2265 | "dev": true, 2266 | "dependencies": { 2267 | "is-docker": "^3.0.0" 2268 | }, 2269 | "bin": { 2270 | "is-inside-container": "cli.js" 2271 | }, 2272 | "engines": { 2273 | "node": ">=14.16" 2274 | }, 2275 | "funding": { 2276 | "url": "https://github.com/sponsors/sindresorhus" 2277 | } 2278 | }, 2279 | "node_modules/is-negative-zero": { 2280 | "version": "2.0.2", 2281 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2282 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2283 | "dev": true, 2284 | "engines": { 2285 | "node": ">= 0.4" 2286 | }, 2287 | "funding": { 2288 | "url": "https://github.com/sponsors/ljharb" 2289 | } 2290 | }, 2291 | "node_modules/is-number": { 2292 | "version": "7.0.0", 2293 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2294 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2295 | "dev": true, 2296 | "engines": { 2297 | "node": ">=0.12.0" 2298 | } 2299 | }, 2300 | "node_modules/is-number-object": { 2301 | "version": "1.0.7", 2302 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2303 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2304 | "dev": true, 2305 | "dependencies": { 2306 | "has-tostringtag": "^1.0.0" 2307 | }, 2308 | "engines": { 2309 | "node": ">= 0.4" 2310 | }, 2311 | "funding": { 2312 | "url": "https://github.com/sponsors/ljharb" 2313 | } 2314 | }, 2315 | "node_modules/is-path-inside": { 2316 | "version": "3.0.3", 2317 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2318 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2319 | "dev": true, 2320 | "peer": true, 2321 | "engines": { 2322 | "node": ">=8" 2323 | } 2324 | }, 2325 | "node_modules/is-regex": { 2326 | "version": "1.1.4", 2327 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2328 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2329 | "dev": true, 2330 | "dependencies": { 2331 | "call-bind": "^1.0.2", 2332 | "has-tostringtag": "^1.0.0" 2333 | }, 2334 | "engines": { 2335 | "node": ">= 0.4" 2336 | }, 2337 | "funding": { 2338 | "url": "https://github.com/sponsors/ljharb" 2339 | } 2340 | }, 2341 | "node_modules/is-shared-array-buffer": { 2342 | "version": "1.0.2", 2343 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2344 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2345 | "dev": true, 2346 | "dependencies": { 2347 | "call-bind": "^1.0.2" 2348 | }, 2349 | "funding": { 2350 | "url": "https://github.com/sponsors/ljharb" 2351 | } 2352 | }, 2353 | "node_modules/is-stream": { 2354 | "version": "3.0.0", 2355 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2356 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2357 | "dev": true, 2358 | "engines": { 2359 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2360 | }, 2361 | "funding": { 2362 | "url": "https://github.com/sponsors/sindresorhus" 2363 | } 2364 | }, 2365 | "node_modules/is-string": { 2366 | "version": "1.0.7", 2367 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2368 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2369 | "dev": true, 2370 | "dependencies": { 2371 | "has-tostringtag": "^1.0.0" 2372 | }, 2373 | "engines": { 2374 | "node": ">= 0.4" 2375 | }, 2376 | "funding": { 2377 | "url": "https://github.com/sponsors/ljharb" 2378 | } 2379 | }, 2380 | "node_modules/is-symbol": { 2381 | "version": "1.0.4", 2382 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2383 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2384 | "dev": true, 2385 | "dependencies": { 2386 | "has-symbols": "^1.0.2" 2387 | }, 2388 | "engines": { 2389 | "node": ">= 0.4" 2390 | }, 2391 | "funding": { 2392 | "url": "https://github.com/sponsors/ljharb" 2393 | } 2394 | }, 2395 | "node_modules/is-typed-array": { 2396 | "version": "1.1.12", 2397 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", 2398 | "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", 2399 | "dev": true, 2400 | "dependencies": { 2401 | "which-typed-array": "^1.1.11" 2402 | }, 2403 | "engines": { 2404 | "node": ">= 0.4" 2405 | }, 2406 | "funding": { 2407 | "url": "https://github.com/sponsors/ljharb" 2408 | } 2409 | }, 2410 | "node_modules/is-weakref": { 2411 | "version": "1.0.2", 2412 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2413 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2414 | "dev": true, 2415 | "dependencies": { 2416 | "call-bind": "^1.0.2" 2417 | }, 2418 | "funding": { 2419 | "url": "https://github.com/sponsors/ljharb" 2420 | } 2421 | }, 2422 | "node_modules/is-wsl": { 2423 | "version": "2.2.0", 2424 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2425 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2426 | "dev": true, 2427 | "dependencies": { 2428 | "is-docker": "^2.0.0" 2429 | }, 2430 | "engines": { 2431 | "node": ">=8" 2432 | } 2433 | }, 2434 | "node_modules/is-wsl/node_modules/is-docker": { 2435 | "version": "2.2.1", 2436 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2437 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2438 | "dev": true, 2439 | "bin": { 2440 | "is-docker": "cli.js" 2441 | }, 2442 | "engines": { 2443 | "node": ">=8" 2444 | }, 2445 | "funding": { 2446 | "url": "https://github.com/sponsors/sindresorhus" 2447 | } 2448 | }, 2449 | "node_modules/isarray": { 2450 | "version": "2.0.5", 2451 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2452 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 2453 | "dev": true 2454 | }, 2455 | "node_modules/isexe": { 2456 | "version": "2.0.0", 2457 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2458 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2459 | "dev": true 2460 | }, 2461 | "node_modules/js-yaml": { 2462 | "version": "4.1.0", 2463 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2464 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2465 | "dev": true, 2466 | "peer": true, 2467 | "dependencies": { 2468 | "argparse": "^2.0.1" 2469 | }, 2470 | "bin": { 2471 | "js-yaml": "bin/js-yaml.js" 2472 | } 2473 | }, 2474 | "node_modules/json-buffer": { 2475 | "version": "3.0.1", 2476 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2477 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2478 | "dev": true, 2479 | "peer": true 2480 | }, 2481 | "node_modules/json-schema-traverse": { 2482 | "version": "0.4.1", 2483 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2484 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2485 | "dev": true, 2486 | "peer": true 2487 | }, 2488 | "node_modules/json-stable-stringify-without-jsonify": { 2489 | "version": "1.0.1", 2490 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2491 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2492 | "dev": true, 2493 | "peer": true 2494 | }, 2495 | "node_modules/json5": { 2496 | "version": "1.0.2", 2497 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2498 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2499 | "dev": true, 2500 | "dependencies": { 2501 | "minimist": "^1.2.0" 2502 | }, 2503 | "bin": { 2504 | "json5": "lib/cli.js" 2505 | } 2506 | }, 2507 | "node_modules/keyv": { 2508 | "version": "4.5.4", 2509 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2510 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2511 | "dev": true, 2512 | "peer": true, 2513 | "dependencies": { 2514 | "json-buffer": "3.0.1" 2515 | } 2516 | }, 2517 | "node_modules/levn": { 2518 | "version": "0.4.1", 2519 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2520 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2521 | "dev": true, 2522 | "peer": true, 2523 | "dependencies": { 2524 | "prelude-ls": "^1.2.1", 2525 | "type-check": "~0.4.0" 2526 | }, 2527 | "engines": { 2528 | "node": ">= 0.8.0" 2529 | } 2530 | }, 2531 | "node_modules/locate-path": { 2532 | "version": "6.0.0", 2533 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2534 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2535 | "dev": true, 2536 | "peer": true, 2537 | "dependencies": { 2538 | "p-locate": "^5.0.0" 2539 | }, 2540 | "engines": { 2541 | "node": ">=10" 2542 | }, 2543 | "funding": { 2544 | "url": "https://github.com/sponsors/sindresorhus" 2545 | } 2546 | }, 2547 | "node_modules/lodash.camelcase": { 2548 | "version": "4.3.0", 2549 | "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", 2550 | "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" 2551 | }, 2552 | "node_modules/lodash.merge": { 2553 | "version": "4.6.2", 2554 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2555 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2556 | "dev": true, 2557 | "peer": true 2558 | }, 2559 | "node_modules/long": { 2560 | "version": "5.3.2", 2561 | "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", 2562 | "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" 2563 | }, 2564 | "node_modules/lru-cache": { 2565 | "version": "6.0.0", 2566 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2567 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2568 | "dev": true, 2569 | "dependencies": { 2570 | "yallist": "^4.0.0" 2571 | }, 2572 | "engines": { 2573 | "node": ">=10" 2574 | } 2575 | }, 2576 | "node_modules/luxon": { 2577 | "version": "3.4.4", 2578 | "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", 2579 | "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", 2580 | "engines": { 2581 | "node": ">=12" 2582 | } 2583 | }, 2584 | "node_modules/merge-stream": { 2585 | "version": "2.0.0", 2586 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2587 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 2588 | "dev": true 2589 | }, 2590 | "node_modules/merge2": { 2591 | "version": "1.4.1", 2592 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2593 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2594 | "dev": true, 2595 | "engines": { 2596 | "node": ">= 8" 2597 | } 2598 | }, 2599 | "node_modules/micromatch": { 2600 | "version": "4.0.5", 2601 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2602 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2603 | "dev": true, 2604 | "dependencies": { 2605 | "braces": "^3.0.2", 2606 | "picomatch": "^2.3.1" 2607 | }, 2608 | "engines": { 2609 | "node": ">=8.6" 2610 | } 2611 | }, 2612 | "node_modules/mime-db": { 2613 | "version": "1.52.0", 2614 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2615 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2616 | "engines": { 2617 | "node": ">= 0.6" 2618 | } 2619 | }, 2620 | "node_modules/mime-types": { 2621 | "version": "2.1.35", 2622 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2623 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2624 | "dependencies": { 2625 | "mime-db": "1.52.0" 2626 | }, 2627 | "engines": { 2628 | "node": ">= 0.6" 2629 | } 2630 | }, 2631 | "node_modules/mimic-fn": { 2632 | "version": "4.0.0", 2633 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2634 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2635 | "dev": true, 2636 | "engines": { 2637 | "node": ">=12" 2638 | }, 2639 | "funding": { 2640 | "url": "https://github.com/sponsors/sindresorhus" 2641 | } 2642 | }, 2643 | "node_modules/minimatch": { 2644 | "version": "3.1.2", 2645 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2646 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2647 | "dev": true, 2648 | "dependencies": { 2649 | "brace-expansion": "^1.1.7" 2650 | }, 2651 | "engines": { 2652 | "node": "*" 2653 | } 2654 | }, 2655 | "node_modules/minimist": { 2656 | "version": "1.2.8", 2657 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2658 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2659 | "dev": true, 2660 | "funding": { 2661 | "url": "https://github.com/sponsors/ljharb" 2662 | } 2663 | }, 2664 | "node_modules/mkdirp-classic": { 2665 | "version": "0.5.3", 2666 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", 2667 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" 2668 | }, 2669 | "node_modules/ms": { 2670 | "version": "2.1.2", 2671 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2672 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2673 | }, 2674 | "node_modules/nan": { 2675 | "version": "2.22.2", 2676 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz", 2677 | "integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==", 2678 | "optional": true 2679 | }, 2680 | "node_modules/natural-compare": { 2681 | "version": "1.4.0", 2682 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2683 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2684 | "dev": true, 2685 | "peer": true 2686 | }, 2687 | "node_modules/npm-run-path": { 2688 | "version": "5.1.0", 2689 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 2690 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 2691 | "dev": true, 2692 | "dependencies": { 2693 | "path-key": "^4.0.0" 2694 | }, 2695 | "engines": { 2696 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2697 | }, 2698 | "funding": { 2699 | "url": "https://github.com/sponsors/sindresorhus" 2700 | } 2701 | }, 2702 | "node_modules/npm-run-path/node_modules/path-key": { 2703 | "version": "4.0.0", 2704 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 2705 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 2706 | "dev": true, 2707 | "engines": { 2708 | "node": ">=12" 2709 | }, 2710 | "funding": { 2711 | "url": "https://github.com/sponsors/sindresorhus" 2712 | } 2713 | }, 2714 | "node_modules/object-inspect": { 2715 | "version": "1.13.1", 2716 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", 2717 | "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", 2718 | "dev": true, 2719 | "funding": { 2720 | "url": "https://github.com/sponsors/ljharb" 2721 | } 2722 | }, 2723 | "node_modules/object-keys": { 2724 | "version": "1.1.1", 2725 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2726 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2727 | "dev": true, 2728 | "engines": { 2729 | "node": ">= 0.4" 2730 | } 2731 | }, 2732 | "node_modules/object.assign": { 2733 | "version": "4.1.5", 2734 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", 2735 | "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", 2736 | "dev": true, 2737 | "dependencies": { 2738 | "call-bind": "^1.0.5", 2739 | "define-properties": "^1.2.1", 2740 | "has-symbols": "^1.0.3", 2741 | "object-keys": "^1.1.1" 2742 | }, 2743 | "engines": { 2744 | "node": ">= 0.4" 2745 | }, 2746 | "funding": { 2747 | "url": "https://github.com/sponsors/ljharb" 2748 | } 2749 | }, 2750 | "node_modules/object.fromentries": { 2751 | "version": "2.0.7", 2752 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", 2753 | "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", 2754 | "dev": true, 2755 | "dependencies": { 2756 | "call-bind": "^1.0.2", 2757 | "define-properties": "^1.2.0", 2758 | "es-abstract": "^1.22.1" 2759 | }, 2760 | "engines": { 2761 | "node": ">= 0.4" 2762 | }, 2763 | "funding": { 2764 | "url": "https://github.com/sponsors/ljharb" 2765 | } 2766 | }, 2767 | "node_modules/object.groupby": { 2768 | "version": "1.0.1", 2769 | "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", 2770 | "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", 2771 | "dev": true, 2772 | "dependencies": { 2773 | "call-bind": "^1.0.2", 2774 | "define-properties": "^1.2.0", 2775 | "es-abstract": "^1.22.1", 2776 | "get-intrinsic": "^1.2.1" 2777 | } 2778 | }, 2779 | "node_modules/object.values": { 2780 | "version": "1.1.7", 2781 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", 2782 | "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", 2783 | "dev": true, 2784 | "dependencies": { 2785 | "call-bind": "^1.0.2", 2786 | "define-properties": "^1.2.0", 2787 | "es-abstract": "^1.22.1" 2788 | }, 2789 | "engines": { 2790 | "node": ">= 0.4" 2791 | }, 2792 | "funding": { 2793 | "url": "https://github.com/sponsors/ljharb" 2794 | } 2795 | }, 2796 | "node_modules/once": { 2797 | "version": "1.4.0", 2798 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2799 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2800 | "dependencies": { 2801 | "wrappy": "1" 2802 | } 2803 | }, 2804 | "node_modules/onetime": { 2805 | "version": "6.0.0", 2806 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 2807 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 2808 | "dev": true, 2809 | "dependencies": { 2810 | "mimic-fn": "^4.0.0" 2811 | }, 2812 | "engines": { 2813 | "node": ">=12" 2814 | }, 2815 | "funding": { 2816 | "url": "https://github.com/sponsors/sindresorhus" 2817 | } 2818 | }, 2819 | "node_modules/open": { 2820 | "version": "9.1.0", 2821 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 2822 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 2823 | "dev": true, 2824 | "dependencies": { 2825 | "default-browser": "^4.0.0", 2826 | "define-lazy-prop": "^3.0.0", 2827 | "is-inside-container": "^1.0.0", 2828 | "is-wsl": "^2.2.0" 2829 | }, 2830 | "engines": { 2831 | "node": ">=14.16" 2832 | }, 2833 | "funding": { 2834 | "url": "https://github.com/sponsors/sindresorhus" 2835 | } 2836 | }, 2837 | "node_modules/optionator": { 2838 | "version": "0.9.3", 2839 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 2840 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 2841 | "dev": true, 2842 | "peer": true, 2843 | "dependencies": { 2844 | "@aashutoshrathi/word-wrap": "^1.2.3", 2845 | "deep-is": "^0.1.3", 2846 | "fast-levenshtein": "^2.0.6", 2847 | "levn": "^0.4.1", 2848 | "prelude-ls": "^1.2.1", 2849 | "type-check": "^0.4.0" 2850 | }, 2851 | "engines": { 2852 | "node": ">= 0.8.0" 2853 | } 2854 | }, 2855 | "node_modules/p-limit": { 2856 | "version": "3.1.0", 2857 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2858 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2859 | "dev": true, 2860 | "peer": true, 2861 | "dependencies": { 2862 | "yocto-queue": "^0.1.0" 2863 | }, 2864 | "engines": { 2865 | "node": ">=10" 2866 | }, 2867 | "funding": { 2868 | "url": "https://github.com/sponsors/sindresorhus" 2869 | } 2870 | }, 2871 | "node_modules/p-locate": { 2872 | "version": "5.0.0", 2873 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2874 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2875 | "dev": true, 2876 | "peer": true, 2877 | "dependencies": { 2878 | "p-limit": "^3.0.2" 2879 | }, 2880 | "engines": { 2881 | "node": ">=10" 2882 | }, 2883 | "funding": { 2884 | "url": "https://github.com/sponsors/sindresorhus" 2885 | } 2886 | }, 2887 | "node_modules/parent-module": { 2888 | "version": "1.0.1", 2889 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2890 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2891 | "dev": true, 2892 | "peer": true, 2893 | "dependencies": { 2894 | "callsites": "^3.0.0" 2895 | }, 2896 | "engines": { 2897 | "node": ">=6" 2898 | } 2899 | }, 2900 | "node_modules/path-exists": { 2901 | "version": "4.0.0", 2902 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2903 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2904 | "dev": true, 2905 | "peer": true, 2906 | "engines": { 2907 | "node": ">=8" 2908 | } 2909 | }, 2910 | "node_modules/path-is-absolute": { 2911 | "version": "1.0.1", 2912 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2913 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2914 | "dev": true, 2915 | "peer": true, 2916 | "engines": { 2917 | "node": ">=0.10.0" 2918 | } 2919 | }, 2920 | "node_modules/path-key": { 2921 | "version": "3.1.1", 2922 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2923 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2924 | "dev": true, 2925 | "engines": { 2926 | "node": ">=8" 2927 | } 2928 | }, 2929 | "node_modules/path-parse": { 2930 | "version": "1.0.7", 2931 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2932 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2933 | "dev": true 2934 | }, 2935 | "node_modules/picocolors": { 2936 | "version": "1.0.0", 2937 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2938 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 2939 | "dev": true 2940 | }, 2941 | "node_modules/picomatch": { 2942 | "version": "2.3.1", 2943 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2944 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2945 | "dev": true, 2946 | "engines": { 2947 | "node": ">=8.6" 2948 | }, 2949 | "funding": { 2950 | "url": "https://github.com/sponsors/jonschlinkert" 2951 | } 2952 | }, 2953 | "node_modules/prelude-ls": { 2954 | "version": "1.2.1", 2955 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2956 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2957 | "dev": true, 2958 | "peer": true, 2959 | "engines": { 2960 | "node": ">= 0.8.0" 2961 | } 2962 | }, 2963 | "node_modules/prettier": { 2964 | "version": "3.2.5", 2965 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", 2966 | "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", 2967 | "dev": true, 2968 | "bin": { 2969 | "prettier": "bin/prettier.cjs" 2970 | }, 2971 | "engines": { 2972 | "node": ">=14" 2973 | }, 2974 | "funding": { 2975 | "url": "https://github.com/prettier/prettier?sponsor=1" 2976 | } 2977 | }, 2978 | "node_modules/prettier-linter-helpers": { 2979 | "version": "1.0.0", 2980 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 2981 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 2982 | "dev": true, 2983 | "dependencies": { 2984 | "fast-diff": "^1.1.2" 2985 | }, 2986 | "engines": { 2987 | "node": ">=6.0.0" 2988 | } 2989 | }, 2990 | "node_modules/protobufjs": { 2991 | "version": "7.5.0", 2992 | "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.0.tgz", 2993 | "integrity": "sha512-Z2E/kOY1QjoMlCytmexzYfDm/w5fKAiRwpSzGtdnXW1zC88Z2yXazHHrOtwCzn+7wSxyE8PYM4rvVcMphF9sOA==", 2994 | "hasInstallScript": true, 2995 | "dependencies": { 2996 | "@protobufjs/aspromise": "^1.1.2", 2997 | "@protobufjs/base64": "^1.1.2", 2998 | "@protobufjs/codegen": "^2.0.4", 2999 | "@protobufjs/eventemitter": "^1.1.0", 3000 | "@protobufjs/fetch": "^1.1.0", 3001 | "@protobufjs/float": "^1.0.2", 3002 | "@protobufjs/inquire": "^1.1.0", 3003 | "@protobufjs/path": "^1.1.2", 3004 | "@protobufjs/pool": "^1.1.0", 3005 | "@protobufjs/utf8": "^1.1.0", 3006 | "@types/node": ">=13.7.0", 3007 | "long": "^5.0.0" 3008 | }, 3009 | "engines": { 3010 | "node": ">=12.0.0" 3011 | } 3012 | }, 3013 | "node_modules/proxy-from-env": { 3014 | "version": "1.1.0", 3015 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3016 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 3017 | }, 3018 | "node_modules/pump": { 3019 | "version": "3.0.2", 3020 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", 3021 | "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", 3022 | "dependencies": { 3023 | "end-of-stream": "^1.1.0", 3024 | "once": "^1.3.1" 3025 | } 3026 | }, 3027 | "node_modules/punycode": { 3028 | "version": "2.3.1", 3029 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3030 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3031 | "dev": true, 3032 | "peer": true, 3033 | "engines": { 3034 | "node": ">=6" 3035 | } 3036 | }, 3037 | "node_modules/queue-microtask": { 3038 | "version": "1.2.3", 3039 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3040 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3041 | "dev": true, 3042 | "funding": [ 3043 | { 3044 | "type": "github", 3045 | "url": "https://github.com/sponsors/feross" 3046 | }, 3047 | { 3048 | "type": "patreon", 3049 | "url": "https://www.patreon.com/feross" 3050 | }, 3051 | { 3052 | "type": "consulting", 3053 | "url": "https://feross.org/support" 3054 | } 3055 | ] 3056 | }, 3057 | "node_modules/readable-stream": { 3058 | "version": "3.6.2", 3059 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3060 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3061 | "dependencies": { 3062 | "inherits": "^2.0.3", 3063 | "string_decoder": "^1.1.1", 3064 | "util-deprecate": "^1.0.1" 3065 | }, 3066 | "engines": { 3067 | "node": ">= 6" 3068 | } 3069 | }, 3070 | "node_modules/regexp.prototype.flags": { 3071 | "version": "1.5.1", 3072 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", 3073 | "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", 3074 | "dev": true, 3075 | "dependencies": { 3076 | "call-bind": "^1.0.2", 3077 | "define-properties": "^1.2.0", 3078 | "set-function-name": "^2.0.0" 3079 | }, 3080 | "engines": { 3081 | "node": ">= 0.4" 3082 | }, 3083 | "funding": { 3084 | "url": "https://github.com/sponsors/ljharb" 3085 | } 3086 | }, 3087 | "node_modules/require-directory": { 3088 | "version": "2.1.1", 3089 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3090 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3091 | "engines": { 3092 | "node": ">=0.10.0" 3093 | } 3094 | }, 3095 | "node_modules/resolve": { 3096 | "version": "1.22.8", 3097 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3098 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3099 | "dev": true, 3100 | "dependencies": { 3101 | "is-core-module": "^2.13.0", 3102 | "path-parse": "^1.0.7", 3103 | "supports-preserve-symlinks-flag": "^1.0.0" 3104 | }, 3105 | "bin": { 3106 | "resolve": "bin/resolve" 3107 | }, 3108 | "funding": { 3109 | "url": "https://github.com/sponsors/ljharb" 3110 | } 3111 | }, 3112 | "node_modules/resolve-from": { 3113 | "version": "4.0.0", 3114 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3115 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3116 | "dev": true, 3117 | "peer": true, 3118 | "engines": { 3119 | "node": ">=4" 3120 | } 3121 | }, 3122 | "node_modules/resolve-pkg-maps": { 3123 | "version": "1.0.0", 3124 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3125 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3126 | "dev": true, 3127 | "funding": { 3128 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3129 | } 3130 | }, 3131 | "node_modules/reusify": { 3132 | "version": "1.0.4", 3133 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3134 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3135 | "dev": true, 3136 | "engines": { 3137 | "iojs": ">=1.0.0", 3138 | "node": ">=0.10.0" 3139 | } 3140 | }, 3141 | "node_modules/rimraf": { 3142 | "version": "3.0.2", 3143 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3144 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3145 | "dev": true, 3146 | "peer": true, 3147 | "dependencies": { 3148 | "glob": "^7.1.3" 3149 | }, 3150 | "bin": { 3151 | "rimraf": "bin.js" 3152 | }, 3153 | "funding": { 3154 | "url": "https://github.com/sponsors/isaacs" 3155 | } 3156 | }, 3157 | "node_modules/run-applescript": { 3158 | "version": "5.0.0", 3159 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3160 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3161 | "dev": true, 3162 | "dependencies": { 3163 | "execa": "^5.0.0" 3164 | }, 3165 | "engines": { 3166 | "node": ">=12" 3167 | }, 3168 | "funding": { 3169 | "url": "https://github.com/sponsors/sindresorhus" 3170 | } 3171 | }, 3172 | "node_modules/run-applescript/node_modules/execa": { 3173 | "version": "5.1.1", 3174 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3175 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3176 | "dev": true, 3177 | "dependencies": { 3178 | "cross-spawn": "^7.0.3", 3179 | "get-stream": "^6.0.0", 3180 | "human-signals": "^2.1.0", 3181 | "is-stream": "^2.0.0", 3182 | "merge-stream": "^2.0.0", 3183 | "npm-run-path": "^4.0.1", 3184 | "onetime": "^5.1.2", 3185 | "signal-exit": "^3.0.3", 3186 | "strip-final-newline": "^2.0.0" 3187 | }, 3188 | "engines": { 3189 | "node": ">=10" 3190 | }, 3191 | "funding": { 3192 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3193 | } 3194 | }, 3195 | "node_modules/run-applescript/node_modules/human-signals": { 3196 | "version": "2.1.0", 3197 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3198 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3199 | "dev": true, 3200 | "engines": { 3201 | "node": ">=10.17.0" 3202 | } 3203 | }, 3204 | "node_modules/run-applescript/node_modules/is-stream": { 3205 | "version": "2.0.1", 3206 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3207 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3208 | "dev": true, 3209 | "engines": { 3210 | "node": ">=8" 3211 | }, 3212 | "funding": { 3213 | "url": "https://github.com/sponsors/sindresorhus" 3214 | } 3215 | }, 3216 | "node_modules/run-applescript/node_modules/mimic-fn": { 3217 | "version": "2.1.0", 3218 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3219 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3220 | "dev": true, 3221 | "engines": { 3222 | "node": ">=6" 3223 | } 3224 | }, 3225 | "node_modules/run-applescript/node_modules/npm-run-path": { 3226 | "version": "4.0.1", 3227 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3228 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3229 | "dev": true, 3230 | "dependencies": { 3231 | "path-key": "^3.0.0" 3232 | }, 3233 | "engines": { 3234 | "node": ">=8" 3235 | } 3236 | }, 3237 | "node_modules/run-applescript/node_modules/onetime": { 3238 | "version": "5.1.2", 3239 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3240 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3241 | "dev": true, 3242 | "dependencies": { 3243 | "mimic-fn": "^2.1.0" 3244 | }, 3245 | "engines": { 3246 | "node": ">=6" 3247 | }, 3248 | "funding": { 3249 | "url": "https://github.com/sponsors/sindresorhus" 3250 | } 3251 | }, 3252 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3253 | "version": "2.0.0", 3254 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3255 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3256 | "dev": true, 3257 | "engines": { 3258 | "node": ">=6" 3259 | } 3260 | }, 3261 | "node_modules/run-parallel": { 3262 | "version": "1.2.0", 3263 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3264 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3265 | "dev": true, 3266 | "funding": [ 3267 | { 3268 | "type": "github", 3269 | "url": "https://github.com/sponsors/feross" 3270 | }, 3271 | { 3272 | "type": "patreon", 3273 | "url": "https://www.patreon.com/feross" 3274 | }, 3275 | { 3276 | "type": "consulting", 3277 | "url": "https://feross.org/support" 3278 | } 3279 | ], 3280 | "dependencies": { 3281 | "queue-microtask": "^1.2.2" 3282 | } 3283 | }, 3284 | "node_modules/safe-array-concat": { 3285 | "version": "1.0.1", 3286 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", 3287 | "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", 3288 | "dev": true, 3289 | "dependencies": { 3290 | "call-bind": "^1.0.2", 3291 | "get-intrinsic": "^1.2.1", 3292 | "has-symbols": "^1.0.3", 3293 | "isarray": "^2.0.5" 3294 | }, 3295 | "engines": { 3296 | "node": ">=0.4" 3297 | }, 3298 | "funding": { 3299 | "url": "https://github.com/sponsors/ljharb" 3300 | } 3301 | }, 3302 | "node_modules/safe-buffer": { 3303 | "version": "5.2.1", 3304 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3305 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3306 | "funding": [ 3307 | { 3308 | "type": "github", 3309 | "url": "https://github.com/sponsors/feross" 3310 | }, 3311 | { 3312 | "type": "patreon", 3313 | "url": "https://www.patreon.com/feross" 3314 | }, 3315 | { 3316 | "type": "consulting", 3317 | "url": "https://feross.org/support" 3318 | } 3319 | ] 3320 | }, 3321 | "node_modules/safe-regex-test": { 3322 | "version": "1.0.0", 3323 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3324 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3325 | "dev": true, 3326 | "dependencies": { 3327 | "call-bind": "^1.0.2", 3328 | "get-intrinsic": "^1.1.3", 3329 | "is-regex": "^1.1.4" 3330 | }, 3331 | "funding": { 3332 | "url": "https://github.com/sponsors/ljharb" 3333 | } 3334 | }, 3335 | "node_modules/safer-buffer": { 3336 | "version": "2.1.2", 3337 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3338 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 3339 | }, 3340 | "node_modules/semver": { 3341 | "version": "6.3.1", 3342 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3343 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3344 | "dev": true, 3345 | "bin": { 3346 | "semver": "bin/semver.js" 3347 | } 3348 | }, 3349 | "node_modules/set-function-length": { 3350 | "version": "1.1.1", 3351 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", 3352 | "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", 3353 | "dev": true, 3354 | "dependencies": { 3355 | "define-data-property": "^1.1.1", 3356 | "get-intrinsic": "^1.2.1", 3357 | "gopd": "^1.0.1", 3358 | "has-property-descriptors": "^1.0.0" 3359 | }, 3360 | "engines": { 3361 | "node": ">= 0.4" 3362 | } 3363 | }, 3364 | "node_modules/set-function-name": { 3365 | "version": "2.0.1", 3366 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", 3367 | "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", 3368 | "dev": true, 3369 | "dependencies": { 3370 | "define-data-property": "^1.0.1", 3371 | "functions-have-names": "^1.2.3", 3372 | "has-property-descriptors": "^1.0.0" 3373 | }, 3374 | "engines": { 3375 | "node": ">= 0.4" 3376 | } 3377 | }, 3378 | "node_modules/shebang-command": { 3379 | "version": "2.0.0", 3380 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3381 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3382 | "dev": true, 3383 | "dependencies": { 3384 | "shebang-regex": "^3.0.0" 3385 | }, 3386 | "engines": { 3387 | "node": ">=8" 3388 | } 3389 | }, 3390 | "node_modules/shebang-regex": { 3391 | "version": "3.0.0", 3392 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3393 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3394 | "dev": true, 3395 | "engines": { 3396 | "node": ">=8" 3397 | } 3398 | }, 3399 | "node_modules/side-channel": { 3400 | "version": "1.0.4", 3401 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3402 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3403 | "dev": true, 3404 | "dependencies": { 3405 | "call-bind": "^1.0.0", 3406 | "get-intrinsic": "^1.0.2", 3407 | "object-inspect": "^1.9.0" 3408 | }, 3409 | "funding": { 3410 | "url": "https://github.com/sponsors/ljharb" 3411 | } 3412 | }, 3413 | "node_modules/signal-exit": { 3414 | "version": "3.0.7", 3415 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3416 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3417 | "dev": true 3418 | }, 3419 | "node_modules/split-ca": { 3420 | "version": "1.0.1", 3421 | "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz", 3422 | "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==" 3423 | }, 3424 | "node_modules/ssh2": { 3425 | "version": "1.16.0", 3426 | "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.16.0.tgz", 3427 | "integrity": "sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==", 3428 | "hasInstallScript": true, 3429 | "dependencies": { 3430 | "asn1": "^0.2.6", 3431 | "bcrypt-pbkdf": "^1.0.2" 3432 | }, 3433 | "engines": { 3434 | "node": ">=10.16.0" 3435 | }, 3436 | "optionalDependencies": { 3437 | "cpu-features": "~0.0.10", 3438 | "nan": "^2.20.0" 3439 | } 3440 | }, 3441 | "node_modules/string_decoder": { 3442 | "version": "1.3.0", 3443 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 3444 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 3445 | "dependencies": { 3446 | "safe-buffer": "~5.2.0" 3447 | } 3448 | }, 3449 | "node_modules/string-width": { 3450 | "version": "4.2.3", 3451 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3452 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3453 | "dependencies": { 3454 | "emoji-regex": "^8.0.0", 3455 | "is-fullwidth-code-point": "^3.0.0", 3456 | "strip-ansi": "^6.0.1" 3457 | }, 3458 | "engines": { 3459 | "node": ">=8" 3460 | } 3461 | }, 3462 | "node_modules/string.prototype.trim": { 3463 | "version": "1.2.8", 3464 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", 3465 | "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", 3466 | "dev": true, 3467 | "dependencies": { 3468 | "call-bind": "^1.0.2", 3469 | "define-properties": "^1.2.0", 3470 | "es-abstract": "^1.22.1" 3471 | }, 3472 | "engines": { 3473 | "node": ">= 0.4" 3474 | }, 3475 | "funding": { 3476 | "url": "https://github.com/sponsors/ljharb" 3477 | } 3478 | }, 3479 | "node_modules/string.prototype.trimend": { 3480 | "version": "1.0.7", 3481 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", 3482 | "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", 3483 | "dev": true, 3484 | "dependencies": { 3485 | "call-bind": "^1.0.2", 3486 | "define-properties": "^1.2.0", 3487 | "es-abstract": "^1.22.1" 3488 | }, 3489 | "funding": { 3490 | "url": "https://github.com/sponsors/ljharb" 3491 | } 3492 | }, 3493 | "node_modules/string.prototype.trimstart": { 3494 | "version": "1.0.7", 3495 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", 3496 | "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", 3497 | "dev": true, 3498 | "dependencies": { 3499 | "call-bind": "^1.0.2", 3500 | "define-properties": "^1.2.0", 3501 | "es-abstract": "^1.22.1" 3502 | }, 3503 | "funding": { 3504 | "url": "https://github.com/sponsors/ljharb" 3505 | } 3506 | }, 3507 | "node_modules/strip-ansi": { 3508 | "version": "6.0.1", 3509 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3510 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3511 | "dependencies": { 3512 | "ansi-regex": "^5.0.1" 3513 | }, 3514 | "engines": { 3515 | "node": ">=8" 3516 | } 3517 | }, 3518 | "node_modules/strip-bom": { 3519 | "version": "3.0.0", 3520 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3521 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3522 | "dev": true, 3523 | "engines": { 3524 | "node": ">=4" 3525 | } 3526 | }, 3527 | "node_modules/strip-final-newline": { 3528 | "version": "3.0.0", 3529 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3530 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3531 | "dev": true, 3532 | "engines": { 3533 | "node": ">=12" 3534 | }, 3535 | "funding": { 3536 | "url": "https://github.com/sponsors/sindresorhus" 3537 | } 3538 | }, 3539 | "node_modules/strip-json-comments": { 3540 | "version": "3.1.1", 3541 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3542 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3543 | "dev": true, 3544 | "peer": true, 3545 | "engines": { 3546 | "node": ">=8" 3547 | }, 3548 | "funding": { 3549 | "url": "https://github.com/sponsors/sindresorhus" 3550 | } 3551 | }, 3552 | "node_modules/supports-color": { 3553 | "version": "7.2.0", 3554 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3555 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3556 | "dev": true, 3557 | "peer": true, 3558 | "dependencies": { 3559 | "has-flag": "^4.0.0" 3560 | }, 3561 | "engines": { 3562 | "node": ">=8" 3563 | } 3564 | }, 3565 | "node_modules/supports-preserve-symlinks-flag": { 3566 | "version": "1.0.0", 3567 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3568 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3569 | "dev": true, 3570 | "engines": { 3571 | "node": ">= 0.4" 3572 | }, 3573 | "funding": { 3574 | "url": "https://github.com/sponsors/ljharb" 3575 | } 3576 | }, 3577 | "node_modules/synckit": { 3578 | "version": "0.8.6", 3579 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.6.tgz", 3580 | "integrity": "sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==", 3581 | "dev": true, 3582 | "dependencies": { 3583 | "@pkgr/utils": "^2.4.2", 3584 | "tslib": "^2.6.2" 3585 | }, 3586 | "engines": { 3587 | "node": "^14.18.0 || >=16.0.0" 3588 | }, 3589 | "funding": { 3590 | "url": "https://opencollective.com/unts" 3591 | } 3592 | }, 3593 | "node_modules/tar-fs": { 3594 | "version": "2.1.2", 3595 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz", 3596 | "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==", 3597 | "dependencies": { 3598 | "chownr": "^1.1.1", 3599 | "mkdirp-classic": "^0.5.2", 3600 | "pump": "^3.0.0", 3601 | "tar-stream": "^2.1.4" 3602 | } 3603 | }, 3604 | "node_modules/tar-stream": { 3605 | "version": "2.2.0", 3606 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", 3607 | "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", 3608 | "dependencies": { 3609 | "bl": "^4.0.3", 3610 | "end-of-stream": "^1.4.1", 3611 | "fs-constants": "^1.0.0", 3612 | "inherits": "^2.0.3", 3613 | "readable-stream": "^3.1.1" 3614 | }, 3615 | "engines": { 3616 | "node": ">=6" 3617 | } 3618 | }, 3619 | "node_modules/text-table": { 3620 | "version": "0.2.0", 3621 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3622 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3623 | "dev": true, 3624 | "peer": true 3625 | }, 3626 | "node_modules/titleize": { 3627 | "version": "3.0.0", 3628 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 3629 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 3630 | "dev": true, 3631 | "engines": { 3632 | "node": ">=12" 3633 | }, 3634 | "funding": { 3635 | "url": "https://github.com/sponsors/sindresorhus" 3636 | } 3637 | }, 3638 | "node_modules/to-regex-range": { 3639 | "version": "5.0.1", 3640 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3641 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3642 | "dev": true, 3643 | "dependencies": { 3644 | "is-number": "^7.0.0" 3645 | }, 3646 | "engines": { 3647 | "node": ">=8.0" 3648 | } 3649 | }, 3650 | "node_modules/tsconfig-paths": { 3651 | "version": "3.15.0", 3652 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", 3653 | "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", 3654 | "dev": true, 3655 | "dependencies": { 3656 | "@types/json5": "^0.0.29", 3657 | "json5": "^1.0.2", 3658 | "minimist": "^1.2.6", 3659 | "strip-bom": "^3.0.0" 3660 | } 3661 | }, 3662 | "node_modules/tslib": { 3663 | "version": "2.6.2", 3664 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 3665 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", 3666 | "dev": true 3667 | }, 3668 | "node_modules/tweetnacl": { 3669 | "version": "0.14.5", 3670 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 3671 | "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" 3672 | }, 3673 | "node_modules/type-check": { 3674 | "version": "0.4.0", 3675 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3676 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3677 | "dev": true, 3678 | "peer": true, 3679 | "dependencies": { 3680 | "prelude-ls": "^1.2.1" 3681 | }, 3682 | "engines": { 3683 | "node": ">= 0.8.0" 3684 | } 3685 | }, 3686 | "node_modules/type-fest": { 3687 | "version": "0.20.2", 3688 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3689 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3690 | "dev": true, 3691 | "engines": { 3692 | "node": ">=10" 3693 | }, 3694 | "funding": { 3695 | "url": "https://github.com/sponsors/sindresorhus" 3696 | } 3697 | }, 3698 | "node_modules/typed-array-buffer": { 3699 | "version": "1.0.0", 3700 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", 3701 | "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", 3702 | "dev": true, 3703 | "dependencies": { 3704 | "call-bind": "^1.0.2", 3705 | "get-intrinsic": "^1.2.1", 3706 | "is-typed-array": "^1.1.10" 3707 | }, 3708 | "engines": { 3709 | "node": ">= 0.4" 3710 | } 3711 | }, 3712 | "node_modules/typed-array-byte-length": { 3713 | "version": "1.0.0", 3714 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", 3715 | "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", 3716 | "dev": true, 3717 | "dependencies": { 3718 | "call-bind": "^1.0.2", 3719 | "for-each": "^0.3.3", 3720 | "has-proto": "^1.0.1", 3721 | "is-typed-array": "^1.1.10" 3722 | }, 3723 | "engines": { 3724 | "node": ">= 0.4" 3725 | }, 3726 | "funding": { 3727 | "url": "https://github.com/sponsors/ljharb" 3728 | } 3729 | }, 3730 | "node_modules/typed-array-byte-offset": { 3731 | "version": "1.0.0", 3732 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", 3733 | "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", 3734 | "dev": true, 3735 | "dependencies": { 3736 | "available-typed-arrays": "^1.0.5", 3737 | "call-bind": "^1.0.2", 3738 | "for-each": "^0.3.3", 3739 | "has-proto": "^1.0.1", 3740 | "is-typed-array": "^1.1.10" 3741 | }, 3742 | "engines": { 3743 | "node": ">= 0.4" 3744 | }, 3745 | "funding": { 3746 | "url": "https://github.com/sponsors/ljharb" 3747 | } 3748 | }, 3749 | "node_modules/typed-array-length": { 3750 | "version": "1.0.4", 3751 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 3752 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 3753 | "dev": true, 3754 | "dependencies": { 3755 | "call-bind": "^1.0.2", 3756 | "for-each": "^0.3.3", 3757 | "is-typed-array": "^1.1.9" 3758 | }, 3759 | "funding": { 3760 | "url": "https://github.com/sponsors/ljharb" 3761 | } 3762 | }, 3763 | "node_modules/unbox-primitive": { 3764 | "version": "1.0.2", 3765 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3766 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3767 | "dev": true, 3768 | "dependencies": { 3769 | "call-bind": "^1.0.2", 3770 | "has-bigints": "^1.0.2", 3771 | "has-symbols": "^1.0.3", 3772 | "which-boxed-primitive": "^1.0.2" 3773 | }, 3774 | "funding": { 3775 | "url": "https://github.com/sponsors/ljharb" 3776 | } 3777 | }, 3778 | "node_modules/undici-types": { 3779 | "version": "5.26.5", 3780 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3781 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" 3782 | }, 3783 | "node_modules/untildify": { 3784 | "version": "4.0.0", 3785 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 3786 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 3787 | "dev": true, 3788 | "engines": { 3789 | "node": ">=8" 3790 | } 3791 | }, 3792 | "node_modules/uri-js": { 3793 | "version": "4.4.1", 3794 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3795 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3796 | "dev": true, 3797 | "peer": true, 3798 | "dependencies": { 3799 | "punycode": "^2.1.0" 3800 | } 3801 | }, 3802 | "node_modules/util-deprecate": { 3803 | "version": "1.0.2", 3804 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3805 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 3806 | }, 3807 | "node_modules/uuid": { 3808 | "version": "10.0.0", 3809 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", 3810 | "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", 3811 | "funding": [ 3812 | "https://github.com/sponsors/broofa", 3813 | "https://github.com/sponsors/ctavan" 3814 | ], 3815 | "bin": { 3816 | "uuid": "dist/bin/uuid" 3817 | } 3818 | }, 3819 | "node_modules/which": { 3820 | "version": "2.0.2", 3821 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3822 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3823 | "dev": true, 3824 | "dependencies": { 3825 | "isexe": "^2.0.0" 3826 | }, 3827 | "bin": { 3828 | "node-which": "bin/node-which" 3829 | }, 3830 | "engines": { 3831 | "node": ">= 8" 3832 | } 3833 | }, 3834 | "node_modules/which-boxed-primitive": { 3835 | "version": "1.0.2", 3836 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3837 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3838 | "dev": true, 3839 | "dependencies": { 3840 | "is-bigint": "^1.0.1", 3841 | "is-boolean-object": "^1.1.0", 3842 | "is-number-object": "^1.0.4", 3843 | "is-string": "^1.0.5", 3844 | "is-symbol": "^1.0.3" 3845 | }, 3846 | "funding": { 3847 | "url": "https://github.com/sponsors/ljharb" 3848 | } 3849 | }, 3850 | "node_modules/which-typed-array": { 3851 | "version": "1.1.13", 3852 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", 3853 | "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", 3854 | "dev": true, 3855 | "dependencies": { 3856 | "available-typed-arrays": "^1.0.5", 3857 | "call-bind": "^1.0.4", 3858 | "for-each": "^0.3.3", 3859 | "gopd": "^1.0.1", 3860 | "has-tostringtag": "^1.0.0" 3861 | }, 3862 | "engines": { 3863 | "node": ">= 0.4" 3864 | }, 3865 | "funding": { 3866 | "url": "https://github.com/sponsors/ljharb" 3867 | } 3868 | }, 3869 | "node_modules/wrap-ansi": { 3870 | "version": "7.0.0", 3871 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3872 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3873 | "dependencies": { 3874 | "ansi-styles": "^4.0.0", 3875 | "string-width": "^4.1.0", 3876 | "strip-ansi": "^6.0.0" 3877 | }, 3878 | "engines": { 3879 | "node": ">=10" 3880 | }, 3881 | "funding": { 3882 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3883 | } 3884 | }, 3885 | "node_modules/wrappy": { 3886 | "version": "1.0.2", 3887 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3888 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3889 | }, 3890 | "node_modules/y18n": { 3891 | "version": "5.0.8", 3892 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3893 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3894 | "engines": { 3895 | "node": ">=10" 3896 | } 3897 | }, 3898 | "node_modules/yallist": { 3899 | "version": "4.0.0", 3900 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3901 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3902 | "dev": true 3903 | }, 3904 | "node_modules/yargs": { 3905 | "version": "17.7.2", 3906 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3907 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3908 | "dependencies": { 3909 | "cliui": "^8.0.1", 3910 | "escalade": "^3.1.1", 3911 | "get-caller-file": "^2.0.5", 3912 | "require-directory": "^2.1.1", 3913 | "string-width": "^4.2.3", 3914 | "y18n": "^5.0.5", 3915 | "yargs-parser": "^21.1.1" 3916 | }, 3917 | "engines": { 3918 | "node": ">=12" 3919 | } 3920 | }, 3921 | "node_modules/yargs-parser": { 3922 | "version": "21.1.1", 3923 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3924 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3925 | "engines": { 3926 | "node": ">=12" 3927 | } 3928 | }, 3929 | "node_modules/yocto-queue": { 3930 | "version": "0.1.0", 3931 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3932 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3933 | "dev": true, 3934 | "peer": true, 3935 | "engines": { 3936 | "node": ">=10" 3937 | }, 3938 | "funding": { 3939 | "url": "https://github.com/sponsors/sindresorhus" 3940 | } 3941 | } 3942 | } 3943 | } 3944 | -------------------------------------------------------------------------------- /notifier-app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docker-restart-app", 3 | "version": "1.2.0", 4 | "main": "index.js", 5 | "scripts": { 6 | "start": "node index.js", 7 | "lint": "eslint . --ext .js --fix" 8 | }, 9 | "dependencies": { 10 | "@penseapp/discord-notification": "^2.0.9", 11 | "@slack/webhook": "^7.0.2", 12 | "async-await-queue": "2.1.4", 13 | "cron-parser": "^4.9.0", 14 | "dotenv": "^16.4.7", 15 | "dockerode": "^4.0.5" 16 | }, 17 | "devDependencies": { 18 | "eslint-config-prettier": "^9.0.0", 19 | "eslint-config-standard": "^17.1.0", 20 | "eslint-plugin-import": "^2.29.1", 21 | "eslint-plugin-n": "^16.6.2", 22 | "eslint-plugin-prettier": "^5.1.3", 23 | "eslint-plugin-promise": "^6.1.1", 24 | "prettier": "^3.2.5" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /notifier-app/slackNotification.js: -------------------------------------------------------------------------------- 1 | const { IncomingWebhook } = require('@slack/webhook') 2 | 3 | function getEnvironmentVariables() { 4 | const slackWebhookUrl = process.env.SLACK_WEBHOOK_URL 5 | return { slackWebhookUrl } 6 | } 7 | 8 | function validateWebhookUrl() { 9 | const { slackWebhookUrl } = getEnvironmentVariables() 10 | const slackWebhookURLPattern = /^https:\/\/hooks\.slack\.com\/services\/T[A-Z0-9]+\/B[A-Z0-9]+\/[a-zA-Z0-9]+$/ 11 | return slackWebhookURLPattern.test(slackWebhookUrl) 12 | } 13 | 14 | async function sendRestartNotification(containerName, success, executionTime, output) { 15 | if (!validateWebhookUrl()) { 16 | return 17 | } 18 | const { slackWebhookUrl } = getEnvironmentVariables() 19 | const webhook = new IncomingWebhook(slackWebhookUrl) 20 | 21 | const statusEmoji = success ? '✅' : '❌' 22 | const statusText = success ? 'Successfully restarted' : 'Failed to restart' 23 | const formattedOutput = output ? `\`\`\`${output}\`\`\`` : 'No output available' 24 | 25 | try { 26 | await webhook.send({ 27 | text: 'Cron Restart Container', 28 | blocks: [ 29 | { 30 | type: 'header', 31 | text: { 32 | type: 'plain_text', 33 | text: 'Cron Restart Container', 34 | emoji: true 35 | } 36 | }, 37 | { 38 | type: 'section', 39 | text: { 40 | type: 'mrkdwn', 41 | text: 'The scheduled restart task for Docker container has been executed.' 42 | } 43 | }, 44 | { 45 | type: 'section', 46 | fields: [ 47 | { 48 | type: 'mrkdwn', 49 | text: `*Container*\n• ${containerName}` 50 | }, 51 | { 52 | type: 'mrkdwn', 53 | text: `*Status*\n${statusEmoji} ${statusText}` 54 | } 55 | ] 56 | }, 57 | { 58 | type: 'section', 59 | fields: [ 60 | { 61 | type: 'mrkdwn', 62 | text: `*Time*\n` 63 | }, 64 | { 65 | type: 'mrkdwn', 66 | text: `*Execution Time*\n${executionTime} ms` 67 | } 68 | ] 69 | }, 70 | { 71 | type: 'section', 72 | text: { 73 | type: 'mrkdwn', 74 | text: `*Output*\n${formattedOutput}` 75 | } 76 | }, 77 | { 78 | type: 'context', 79 | elements: [ 80 | { 81 | type: 'mrkdwn', 82 | text: `Total execution time: ${executionTime} ms` 83 | } 84 | ] 85 | } 86 | ] 87 | }) 88 | console.log(`Slack notification sent for ${containerName}, output: ${output}`) 89 | } catch (error) { 90 | console.error(`Error sending Slack notification for ${containerName}: ${error}`) 91 | } 92 | } 93 | 94 | async function sendNextExecutionNotification(containers, nextExecutionDate) { 95 | if (!validateWebhookUrl()) { 96 | console.warn( 97 | 'Invalid Slack webhook URL, it should be in the format: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX' 98 | ) 99 | return 100 | } 101 | const { slackWebhookUrl } = getEnvironmentVariables() 102 | if (!nextExecutionDate) { 103 | console.warn('Unable to determine the next execution date.') 104 | return 105 | } 106 | const webhook = new IncomingWebhook(slackWebhookUrl) 107 | 108 | try { 109 | await webhook.send({ 110 | text: 'Container Restart Scheduled', 111 | blocks: [ 112 | { 113 | type: 'header', 114 | text: { 115 | type: 'plain_text', 116 | text: 'Container Restart Scheduled', 117 | emoji: true 118 | } 119 | }, 120 | { 121 | type: 'section', 122 | text: { 123 | type: 'mrkdwn', 124 | text: 'The next container restart is scheduled.' 125 | } 126 | }, 127 | { 128 | type: 'section', 129 | fields: [ 130 | { 131 | type: 'mrkdwn', 132 | text: `*Containers*\n${formatContainers(containers)}` 133 | }, 134 | { 135 | type: 'mrkdwn', 136 | text: `*Scheduled Time*\n` 137 | } 138 | ] 139 | }, 140 | { 141 | type: 'context', 142 | elements: [ 143 | { 144 | type: 'mrkdwn', 145 | text: 'Container Restart Scheduler' 146 | } 147 | ] 148 | } 149 | ] 150 | }) 151 | console.log('Startup slack notification sent.') 152 | } catch (error) { 153 | console.error(`Error slack sending startup notification: ${error}`) 154 | } 155 | } 156 | 157 | function formatContainers(containers) { 158 | return containers.map(container => `• ${container}`).join('\n') 159 | } 160 | 161 | module.exports = { validateWebhookUrl, sendRestartNotification, sendNextExecutionNotification } 162 | --------------------------------------------------------------------------------