├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── README.md ├── configTokens.json ├── configure.js ├── configure.sh ├── install.sh ├── logger.js ├── package-lock.json ├── package.json ├── processes.json ├── start.sh ├── stop.sh ├── upgrade.sh ├── web_interface.js └── wpm.json /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ master, v5.64, v5.68, v5.70 ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ master ] 20 | schedule: 21 | - cron: '22 11 * * 5' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | 28 | strategy: 29 | fail-fast: false 30 | matrix: 31 | language: [ 'javascript' ] 32 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] 33 | # Learn more: 34 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 35 | 36 | steps: 37 | - name: Checkout repository 38 | uses: actions/checkout@v2 39 | 40 | # Initializes the CodeQL tools for scanning. 41 | - name: Initialize CodeQL 42 | uses: github/codeql-action/init@v1 43 | with: 44 | languages: ${{ matrix.language }} 45 | # If you wish to specify custom queries, you can do so here or in a config file. 46 | # By default, queries listed here will override any specified in a config file. 47 | # Prefix the list here with "+" to use these queries and those in the config file. 48 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 49 | 50 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 51 | # If this step fails, then you should remove it and run the build manually (see below) 52 | - name: Autobuild 53 | uses: github/codeql-action/autobuild@v1 54 | 55 | # ℹ️ Command-line programs to run using the OS shell. 56 | # 📚 https://git.io/JvXDl 57 | 58 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 59 | # and modify them (or add more) to build your code if your project 60 | # uses a compiled language 61 | 62 | #- run: | 63 | # make bootstrap 64 | # make release 65 | 66 | - name: Perform CodeQL Analysis 67 | uses: github/codeql-action/analyze@v1 68 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.key 3 | *.cert 4 | *.output 5 | build/ 6 | last_id.json 7 | processes_backup.json 8 | attachments/ 9 | users.txt 10 | files 11 | .eslintrc.js 12 | exclude-list.txt 13 | sync.sh 14 | .env* 15 | ._.DS_store 16 | software 17 | .DS_Store 18 | software.tar.gz 19 | coverage 20 | mysql_move_data.log 21 | mysqld.cnf 22 | .github 23 | .nyc_output 24 | -------------------------------------------------------------------------------- /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 2021 Wickr, Inc. 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 | # WickrIO API Web Interface 2 | 3 | The official WickrIO Web API tool. Allows to send HTTP requests to communicate with the WickrIO API, and also makes it possible to create Wickr Integrations using any programming language. 4 | 5 | To get started with the WickrIO Web API Interface: 6 | 7 | First, you would need to setup your system, download and install Docker and run the WickrIO Docker container. Full instructions on how to do so are available here: https://wickrinc.github.io/wickrio-docs/#wickr-io-getting-started 8 | 9 | ## Configuration: 10 | Run configure.sh after installing the Web API Interface software module, it will propmpt you to configure several properties that are needed to access the URL endpoints. The WickrIO console will walk you through entering the following values: 11 | 1. BOT_USERNAME = This is the username of the WickrIO client. If prompted enter that value. 12 | 2. BOT_PORT = The TCP/IP port that the Wickr IO bot will listen on. NOTE: you will have to add the port to the docker run command that starts the Wickr IO Docker container so that port is made available to the Wickr IO integration software. 13 | 3. BOT_API_KEY = The API Key that is used in every endpoint call. This is the \ value that is contained in every endpoint URL. 14 | 4. BOT_API_AUTH_TOKEN = The authentication string used to generate the Base64 value to be sent in the authorization field of the HTTP Header (Recommended: 24-character alphanumeric string). You will need to generate a Base64 value of this token and the add it to the HTTP authorization header (i.e. Basic MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNA==). 15 | 5. HTTPS_CHOICE = Choose whether to use an HTTPS server instead of the default HTTP. It is highly recommended that HTTPS be used for security. 16 | 6. SSL_KEY_LOCATION = Full path name of the .key file (only required if you are going to use HTTPS). The file must be located in the shared directory that the integration software running on the Docker image can access. 17 | 7. SSL_CERT_LOCATION = Full path name of the .cert file (only required if you are going to use HTTPS). The file must be located in the shared directory that the integration software running on the Docker image can access. 18 | 19 | For HTTPS and SSL support, you need an OpenSSL certificate file and a key file. Both can be created with the following command: 20 | 21 |
22 | ``` 23 | openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout my.key -out my.cert 24 | ``` 25 | ### Authentication 26 | 27 | This version of the Web Interface supports basic authentication. The authentication will use the "Authorization" HTTP header to send the necessary authentication information to the Wickr IO server. If the proper authentication information is not presented to the Wickr IO server then an HTTP 401 response will be sent. 28 | 29 | When using basic authentication, a base64 encoded string will be sent to the Wickr IO server.  The following steps should be performed for basic authentication: 30 | 31 | 1. When the associated Wickr IO bot client is configured and associated with the Web Interface integration, the associated authentication string will be setup. You will use this string to generate the base64 encoded string. 32 | 2. Base64 encode the string mentioned above. 33 | 3. Supply an "Authorization" header with content "Basic " followed by the encoded string. For example, the string "The big red fox" encodes to "VGhlIGJpZyByZWQgZm94" in base 64, so you would send the string "Basic VGhlIGJpZyByZWQgZm94" in the "Authorization" HTTP header. 34 | 35 | 38 | 39 | ## Web Interface REST API 40 | 41 | This section describes the REST APIs that are supported by the 2.x version of the Wickr IO Web Interface integration. The following table identifies each of the actions the API supports, the type of HTTP request and the URL used. 42 | 43 | API | HTTP | URL 44 | ----|------|----- 45 | Send Message | POST | https://\:\/WickrIO/V1/Apps/\/Messages 46 | Set Message URL Callback | POST | https://\:\/WickrIO/V1/Apps/\/MsgRecvCallback?callbackurl=\ 47 | Get Message URL Callback | GET | https://\:\/WickrIO/V1/Apps/\/MsgRecvCallback 48 | Delete Message URL Callback | DELETE | https://\:\/WickrIO/V1/Apps/\/MsgRecvCallback 49 | Get Received Messages | GET | https://\:\/WickrIO/V1/Apps/\/Messages?start=\&count=\ 50 | Get Statistics | GET | https://\:\/WickrIO/V1/Apps/\/Statistics 51 | Clear Statistics | DELETE | https://\:\/WickrIO/V1/Apps/\/Statistics 52 | Create Secure Room | POST | https://\:\/WickrIO/V1/Apps/\/Rooms 53 | Get Room | GET | https://\:\/WickrIO/V1/Apps/\/Rooms/\ 54 | Get Rooms | GET | https://\:\/WickrIO/V1/Apps/\/Rooms 55 | Delete Room | DELETE | https://\:\/WickrIO/V1/Apps/\/Rooms/\ 56 | Leave Room | DELETE | https://\:\/WickrIO/V1/Apps/\/Rooms/\&reason=leave 57 | Modify Room | POST | https://\:\/WickrIO/V1/Apps/\/Rooms/\ 58 | Create Group Conversation | POST | https://\:\/WickrIO/V1/Apps/\/GroupConvo 59 | Get Group Conversations | GET | https://\:\/WickrIO/V1/Apps/\/GroupConvo 60 | Get Group Conversation | GET | https://\:\/WickrIO/V1/Apps/\/GroupConvo /\ 61 | Delete Group Conversation | DELETE | https://\:\/WickrIO/V1/Apps/\/GroupConvo/\ 62 | Get Directory | GET | https://\:\/WickrIO/V1/Apps/\/Directory 63 | 64 | The \ value is the value you entered during the configuration of the Wickr Web Interface intagration. 65 | 66 | ## Usage: 67 | * For full documentation and for information on all of the endpoints and requirements visit: https://wickrinc.github.io/wickrio-docs/#web-interface-rest-api 68 | 69 | # License 70 | 71 | This software is distributed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html) 72 | 73 | ``` 74 | Copyright 2021 Wickr, Inc. 75 | 76 | Licensed under the Apache License, Version 2.0 (the "License"); 77 | you may not use this file except in compliance with the License. 78 | You may obtain a copy of the License at 79 | 80 | http://www.apache.org/licenses/LICENSE-2.0 81 | 82 | Unless required by applicable law or agreed to in writing, software 83 | distributed under the License is distributed on an "AS IS" BASIS, 84 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 85 | See the License for the specific language governing permissions and 86 | limitations under the License. 87 | ``` 88 | -------------------------------------------------------------------------------- /configTokens.json: -------------------------------------------------------------------------------- 1 | { 2 | "supportAdministrators":false, 3 | "supportVerification":false, 4 | "integration":"WickrIO-Web-Interface", 5 | "tokens":[ 6 | { 7 | "token": "BOT_PORT", 8 | "pattern": "^((6553[0-5])|(655[0-2][0-9])|(65[0-4][0-9]{2})|(6[0-4][0-9]{3})|([1-5][0-9]{4})|([0-5]{0,5})|([0-9]{1,4}))$", 9 | "type": "port", 10 | "description": "Please enter your client bot's port", 11 | "message": "Please enter a valid port number", 12 | "required": true, 13 | "default": "" 14 | }, 15 | { 16 | "token": "BOT_API_KEY", 17 | "pattern": "", 18 | "type": "string", 19 | "description": "Please enter your client bot's API-Key", 20 | "message": "Cannot leave empty! Please enter a value", 21 | "required": true, 22 | "default": "" 23 | }, 24 | { 25 | "token": "BOT_API_AUTH_TOKEN", 26 | "pattern": "", 27 | "type": "string", 28 | "description": "Please create an Web API Basic Authorization Token, we recommend an alphanumeric string with at least 24 characters", 29 | "message": "Cannot leave empty! Please enter a value", 30 | "required": true, 31 | "default": "" 32 | }, 33 | { 34 | "token": "HTTPS_CHOICE", 35 | "pattern": "yes|no", 36 | "type": "string", 37 | "description": "Do you want to set up an HTTPS connection with the Web API Interface, highly recommended", 38 | "message": "Please enter either yes or no", 39 | "required": true, 40 | "default": "no", 41 | "list": [ 42 | { 43 | "token": "SSL_KEY_LOCATION", 44 | "pattern": "", 45 | "type": "file", 46 | "description": "Please enter the name and location of your SSL .key file", 47 | "message": "Cannot find file!", 48 | "required": true, 49 | "default": "" 50 | }, 51 | { 52 | "token": "SSL_CRT_LOCATION", 53 | "pattern": "", 54 | "type": "file", 55 | "description": "Please enter the name and location of your SSL .crt file", 56 | "message": "Cannot find file!", 57 | "required": true, 58 | "default": "" 59 | } 60 | ] 61 | } 62 | ] 63 | } 64 | -------------------------------------------------------------------------------- /configure.js: -------------------------------------------------------------------------------- 1 | const WickrIOBotAPI = require('wickrio-bot-api'); 2 | const util = require('util') 3 | 4 | 5 | require("dotenv").config({ 6 | path: `.env.configure` 7 | }) 8 | 9 | var wickrIOConfigure; 10 | 11 | process.stdin.resume(); //so the program will not close instantly 12 | 13 | function exitHandler(options, err) { 14 | try { 15 | if (err) { 16 | process.kill(process.pid); 17 | process.exit(); 18 | } 19 | if (options.exit) { 20 | process.exit(); 21 | } else if (options.pid) { 22 | process.kill(process.pid); 23 | } 24 | } catch (err) { 25 | console.log(err); 26 | } 27 | } 28 | 29 | //catches ctrl+c and stop.sh events 30 | process.on('SIGINT', exitHandler.bind(null, {exit: true})); 31 | 32 | //catches "kill pid" (for example: nodemon restart) 33 | process.on('SIGUSR1', exitHandler.bind(null, {pid: true})); 34 | process.on('SIGUSR2', exitHandler.bind(null, {pid: true})); 35 | 36 | //catches uncaught exceptions 37 | process.on('uncaughtException', exitHandler.bind(null, { 38 | exit: true, 39 | reason: 'uncaughtException' 40 | })); 41 | 42 | main(); 43 | 44 | async function main() 45 | { 46 | const tokens = require('./configTokens.json') 47 | var fullName = process.cwd() + "/processes.json"; 48 | wickrIOConfigure = new WickrIOBotAPI.WickrIOConfigure(tokens.tokens, fullName, tokens.supportAdministrators, tokens.supportVerification); 49 | 50 | await wickrIOConfigure.configureYourBot(tokens.integration); 51 | process.exit(); 52 | } 53 | 54 | -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Remove the configure environment variable file 5 | # 6 | rm -f .env.configure 7 | 8 | # 9 | # If the client_bot_info.txt file exists then convert the values 10 | # from it so that they will be used to configure the values. 11 | # This file is no longer used after this configuration. 12 | # 13 | if [ -f "client_bot_info.txt" ]; then 14 | . ./client_bot_info.txt 15 | if [ "$HTTPS_CHOICE" = "n" ]; then 16 | sed -i "s/HTTPS_CHOICE.*/HTTPS_CHOICE='no'/" client_bot_info.txt 17 | . ./client_bot_info.txt 18 | elif [ "$HTTPS_CHOICE" = "y" ]; then 19 | sed -i "s/HTTPS_CHOICE.*/HTTPS_CHOICE='yes'/" client_bot_info.txt 20 | . ./client_bot_info.txt 21 | fi 22 | 23 | mv client_bot_info.txt .env.configure 24 | CLIENT_NAME=$BOT_USERNAME 25 | # 26 | # If the input argument exists then check if it is a file 27 | # if so it should contain a list of key=value entries. 28 | # 29 | elif [ -n "$1" ]; then 30 | if [ -f "$1" ]; then 31 | . "$1" 32 | cp "$1" .env.configure 33 | fi 34 | fi 35 | 36 | if [ -f "/usr/local/nvm/nvm.sh" ]; then 37 | . /usr/local/nvm/nvm.sh 38 | # nvm use 18 39 | fi 40 | 41 | if [ -z "$CLIENT_NAME" ]; 42 | then 43 | node configure.js 44 | else 45 | WICKRIO_BOT_NAME=$CLIENT_NAME node configure.js 46 | fi 47 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if [ -f "/usr/local/nvm/nvm.sh" ]; then 3 | . /usr/local/nvm/nvm.sh 4 | fi 5 | 6 | if [ -f ./node_modules.tgz ] 7 | then 8 | tar -xvf ./node_modules.tgz 9 | else 10 | npm install --unsafe-perm 11 | fi 12 | -------------------------------------------------------------------------------- /logger.js: -------------------------------------------------------------------------------- 1 | const util = require('util') 2 | 3 | const logger = require('wickrio-bot-api').logger 4 | 5 | console.log = function () { 6 | logger.info(util.format.apply(null, arguments)) 7 | } 8 | console.error = function () { 9 | logger.error(util.format.apply(null, arguments)) 10 | } 11 | 12 | module.exports = logger 13 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wickrio_web_interface", 3 | "version": "6.46.3", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@aminya/node-gyp-build": { 8 | "version": "4.8.1-aminya.1", 9 | "resolved": "https://registry.npmjs.org/@aminya/node-gyp-build/-/node-gyp-build-4.8.1-aminya.1.tgz", 10 | "integrity": "sha512-r5eD8cvhlXpr5H2TKKsDBlPUzmK8FaWQG4QQ0+AbHyGra2a1uZBa7r9DXCe4FSADw1sU9RAMRJH5/POm4lojFQ==" 11 | }, 12 | "@aws-crypto/sha256-browser": { 13 | "version": "5.2.0", 14 | "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz", 15 | "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==", 16 | "requires": { 17 | "@aws-crypto/sha256-js": "^5.2.0", 18 | "@aws-crypto/supports-web-crypto": "^5.2.0", 19 | "@aws-crypto/util": "^5.2.0", 20 | "@aws-sdk/types": "^3.222.0", 21 | "@aws-sdk/util-locate-window": "^3.0.0", 22 | "@smithy/util-utf8": "^2.0.0", 23 | "tslib": "^2.6.2" 24 | }, 25 | "dependencies": { 26 | "@smithy/util-utf8": { 27 | "version": "2.3.0", 28 | "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", 29 | "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", 30 | "requires": { 31 | "@smithy/util-buffer-from": "^2.2.0", 32 | "tslib": "^2.6.2" 33 | } 34 | } 35 | } 36 | }, 37 | "@aws-crypto/sha256-js": { 38 | "version": "5.2.0", 39 | "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz", 40 | "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==", 41 | "requires": { 42 | "@aws-crypto/util": "^5.2.0", 43 | "@aws-sdk/types": "^3.222.0", 44 | "tslib": "^2.6.2" 45 | } 46 | }, 47 | "@aws-crypto/supports-web-crypto": { 48 | "version": "5.2.0", 49 | "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz", 50 | "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==", 51 | "requires": { 52 | "tslib": "^2.6.2" 53 | } 54 | }, 55 | "@aws-crypto/util": { 56 | "version": "5.2.0", 57 | "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz", 58 | "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==", 59 | "requires": { 60 | "@aws-sdk/types": "^3.222.0", 61 | "@smithy/util-utf8": "^2.0.0", 62 | "tslib": "^2.6.2" 63 | }, 64 | "dependencies": { 65 | "@smithy/util-utf8": { 66 | "version": "2.3.0", 67 | "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz", 68 | "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", 69 | "requires": { 70 | "@smithy/util-buffer-from": "^2.2.0", 71 | "tslib": "^2.6.2" 72 | } 73 | } 74 | } 75 | }, 76 | "@aws-sdk/client-sqs": { 77 | "version": "3.658.1", 78 | "resolved": "https://registry.npmjs.org/@aws-sdk/client-sqs/-/client-sqs-3.658.1.tgz", 79 | "integrity": "sha512-rCUulDaRRSHIVDCb2UdREMLmhXrp5m++yzv4/UIT4WzGRd6jd2E8uqkoQEtvEiE5eaPYac0rU8J0/s/rnEo1Gw==", 80 | "requires": { 81 | "@aws-crypto/sha256-browser": "5.2.0", 82 | "@aws-crypto/sha256-js": "5.2.0", 83 | "@aws-sdk/client-sso-oidc": "3.658.1", 84 | "@aws-sdk/client-sts": "3.658.1", 85 | "@aws-sdk/core": "3.658.1", 86 | "@aws-sdk/credential-provider-node": "3.658.1", 87 | "@aws-sdk/middleware-host-header": "3.654.0", 88 | "@aws-sdk/middleware-logger": "3.654.0", 89 | "@aws-sdk/middleware-recursion-detection": "3.654.0", 90 | "@aws-sdk/middleware-sdk-sqs": "3.658.1", 91 | "@aws-sdk/middleware-user-agent": "3.654.0", 92 | "@aws-sdk/region-config-resolver": "3.654.0", 93 | "@aws-sdk/types": "3.654.0", 94 | "@aws-sdk/util-endpoints": "3.654.0", 95 | "@aws-sdk/util-user-agent-browser": "3.654.0", 96 | "@aws-sdk/util-user-agent-node": "3.654.0", 97 | "@smithy/config-resolver": "^3.0.8", 98 | "@smithy/core": "^2.4.6", 99 | "@smithy/fetch-http-handler": "^3.2.8", 100 | "@smithy/hash-node": "^3.0.6", 101 | "@smithy/invalid-dependency": "^3.0.6", 102 | "@smithy/md5-js": "^3.0.6", 103 | "@smithy/middleware-content-length": "^3.0.8", 104 | "@smithy/middleware-endpoint": "^3.1.3", 105 | "@smithy/middleware-retry": "^3.0.21", 106 | "@smithy/middleware-serde": "^3.0.6", 107 | "@smithy/middleware-stack": "^3.0.6", 108 | "@smithy/node-config-provider": "^3.1.7", 109 | "@smithy/node-http-handler": "^3.2.3", 110 | "@smithy/protocol-http": "^4.1.3", 111 | "@smithy/smithy-client": "^3.3.5", 112 | "@smithy/types": "^3.4.2", 113 | "@smithy/url-parser": "^3.0.6", 114 | "@smithy/util-base64": "^3.0.0", 115 | "@smithy/util-body-length-browser": "^3.0.0", 116 | "@smithy/util-body-length-node": "^3.0.0", 117 | "@smithy/util-defaults-mode-browser": "^3.0.21", 118 | "@smithy/util-defaults-mode-node": "^3.0.21", 119 | "@smithy/util-endpoints": "^2.1.2", 120 | "@smithy/util-middleware": "^3.0.6", 121 | "@smithy/util-retry": "^3.0.6", 122 | "@smithy/util-utf8": "^3.0.0", 123 | "tslib": "^2.6.2" 124 | } 125 | }, 126 | "@aws-sdk/client-sso": { 127 | "version": "3.658.1", 128 | "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.658.1.tgz", 129 | "integrity": "sha512-lOuaBtqPTYGn6xpXlQF4LsNDsQ8Ij2kOdnk+i69Kp6yS76TYvtUuukyLL5kx8zE1c8WbYtxj9y8VNw9/6uKl7Q==", 130 | "requires": { 131 | "@aws-crypto/sha256-browser": "5.2.0", 132 | "@aws-crypto/sha256-js": "5.2.0", 133 | "@aws-sdk/core": "3.658.1", 134 | "@aws-sdk/middleware-host-header": "3.654.0", 135 | "@aws-sdk/middleware-logger": "3.654.0", 136 | "@aws-sdk/middleware-recursion-detection": "3.654.0", 137 | "@aws-sdk/middleware-user-agent": "3.654.0", 138 | "@aws-sdk/region-config-resolver": "3.654.0", 139 | "@aws-sdk/types": "3.654.0", 140 | "@aws-sdk/util-endpoints": "3.654.0", 141 | "@aws-sdk/util-user-agent-browser": "3.654.0", 142 | "@aws-sdk/util-user-agent-node": "3.654.0", 143 | "@smithy/config-resolver": "^3.0.8", 144 | "@smithy/core": "^2.4.6", 145 | "@smithy/fetch-http-handler": "^3.2.8", 146 | "@smithy/hash-node": "^3.0.6", 147 | "@smithy/invalid-dependency": "^3.0.6", 148 | "@smithy/middleware-content-length": "^3.0.8", 149 | "@smithy/middleware-endpoint": "^3.1.3", 150 | "@smithy/middleware-retry": "^3.0.21", 151 | "@smithy/middleware-serde": "^3.0.6", 152 | "@smithy/middleware-stack": "^3.0.6", 153 | "@smithy/node-config-provider": "^3.1.7", 154 | "@smithy/node-http-handler": "^3.2.3", 155 | "@smithy/protocol-http": "^4.1.3", 156 | "@smithy/smithy-client": "^3.3.5", 157 | "@smithy/types": "^3.4.2", 158 | "@smithy/url-parser": "^3.0.6", 159 | "@smithy/util-base64": "^3.0.0", 160 | "@smithy/util-body-length-browser": "^3.0.0", 161 | "@smithy/util-body-length-node": "^3.0.0", 162 | "@smithy/util-defaults-mode-browser": "^3.0.21", 163 | "@smithy/util-defaults-mode-node": "^3.0.21", 164 | "@smithy/util-endpoints": "^2.1.2", 165 | "@smithy/util-middleware": "^3.0.6", 166 | "@smithy/util-retry": "^3.0.6", 167 | "@smithy/util-utf8": "^3.0.0", 168 | "tslib": "^2.6.2" 169 | } 170 | }, 171 | "@aws-sdk/client-sso-oidc": { 172 | "version": "3.658.1", 173 | "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.658.1.tgz", 174 | "integrity": "sha512-RGcZAI3qEA05JszPKwa0cAyp8rnS1nUvs0Sqw4hqLNQ1kD7b7V6CPjRXe7EFQqCOMvM4kGqx0+cEEVTOmBsFLw==", 175 | "requires": { 176 | "@aws-crypto/sha256-browser": "5.2.0", 177 | "@aws-crypto/sha256-js": "5.2.0", 178 | "@aws-sdk/core": "3.658.1", 179 | "@aws-sdk/credential-provider-node": "3.658.1", 180 | "@aws-sdk/middleware-host-header": "3.654.0", 181 | "@aws-sdk/middleware-logger": "3.654.0", 182 | "@aws-sdk/middleware-recursion-detection": "3.654.0", 183 | "@aws-sdk/middleware-user-agent": "3.654.0", 184 | "@aws-sdk/region-config-resolver": "3.654.0", 185 | "@aws-sdk/types": "3.654.0", 186 | "@aws-sdk/util-endpoints": "3.654.0", 187 | "@aws-sdk/util-user-agent-browser": "3.654.0", 188 | "@aws-sdk/util-user-agent-node": "3.654.0", 189 | "@smithy/config-resolver": "^3.0.8", 190 | "@smithy/core": "^2.4.6", 191 | "@smithy/fetch-http-handler": "^3.2.8", 192 | "@smithy/hash-node": "^3.0.6", 193 | "@smithy/invalid-dependency": "^3.0.6", 194 | "@smithy/middleware-content-length": "^3.0.8", 195 | "@smithy/middleware-endpoint": "^3.1.3", 196 | "@smithy/middleware-retry": "^3.0.21", 197 | "@smithy/middleware-serde": "^3.0.6", 198 | "@smithy/middleware-stack": "^3.0.6", 199 | "@smithy/node-config-provider": "^3.1.7", 200 | "@smithy/node-http-handler": "^3.2.3", 201 | "@smithy/protocol-http": "^4.1.3", 202 | "@smithy/smithy-client": "^3.3.5", 203 | "@smithy/types": "^3.4.2", 204 | "@smithy/url-parser": "^3.0.6", 205 | "@smithy/util-base64": "^3.0.0", 206 | "@smithy/util-body-length-browser": "^3.0.0", 207 | "@smithy/util-body-length-node": "^3.0.0", 208 | "@smithy/util-defaults-mode-browser": "^3.0.21", 209 | "@smithy/util-defaults-mode-node": "^3.0.21", 210 | "@smithy/util-endpoints": "^2.1.2", 211 | "@smithy/util-middleware": "^3.0.6", 212 | "@smithy/util-retry": "^3.0.6", 213 | "@smithy/util-utf8": "^3.0.0", 214 | "tslib": "^2.6.2" 215 | } 216 | }, 217 | "@aws-sdk/client-sts": { 218 | "version": "3.658.1", 219 | "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.658.1.tgz", 220 | "integrity": "sha512-yw9hc5blTnbT1V6mR7Cx9HGc9KQpcLQ1QXj8rntiJi6tIYu3aFNVEyy81JHL7NsuBSeQulJTvHO3y6r3O0sfRg==", 221 | "requires": { 222 | "@aws-crypto/sha256-browser": "5.2.0", 223 | "@aws-crypto/sha256-js": "5.2.0", 224 | "@aws-sdk/client-sso-oidc": "3.658.1", 225 | "@aws-sdk/core": "3.658.1", 226 | "@aws-sdk/credential-provider-node": "3.658.1", 227 | "@aws-sdk/middleware-host-header": "3.654.0", 228 | "@aws-sdk/middleware-logger": "3.654.0", 229 | "@aws-sdk/middleware-recursion-detection": "3.654.0", 230 | "@aws-sdk/middleware-user-agent": "3.654.0", 231 | "@aws-sdk/region-config-resolver": "3.654.0", 232 | "@aws-sdk/types": "3.654.0", 233 | "@aws-sdk/util-endpoints": "3.654.0", 234 | "@aws-sdk/util-user-agent-browser": "3.654.0", 235 | "@aws-sdk/util-user-agent-node": "3.654.0", 236 | "@smithy/config-resolver": "^3.0.8", 237 | "@smithy/core": "^2.4.6", 238 | "@smithy/fetch-http-handler": "^3.2.8", 239 | "@smithy/hash-node": "^3.0.6", 240 | "@smithy/invalid-dependency": "^3.0.6", 241 | "@smithy/middleware-content-length": "^3.0.8", 242 | "@smithy/middleware-endpoint": "^3.1.3", 243 | "@smithy/middleware-retry": "^3.0.21", 244 | "@smithy/middleware-serde": "^3.0.6", 245 | "@smithy/middleware-stack": "^3.0.6", 246 | "@smithy/node-config-provider": "^3.1.7", 247 | "@smithy/node-http-handler": "^3.2.3", 248 | "@smithy/protocol-http": "^4.1.3", 249 | "@smithy/smithy-client": "^3.3.5", 250 | "@smithy/types": "^3.4.2", 251 | "@smithy/url-parser": "^3.0.6", 252 | "@smithy/util-base64": "^3.0.0", 253 | "@smithy/util-body-length-browser": "^3.0.0", 254 | "@smithy/util-body-length-node": "^3.0.0", 255 | "@smithy/util-defaults-mode-browser": "^3.0.21", 256 | "@smithy/util-defaults-mode-node": "^3.0.21", 257 | "@smithy/util-endpoints": "^2.1.2", 258 | "@smithy/util-middleware": "^3.0.6", 259 | "@smithy/util-retry": "^3.0.6", 260 | "@smithy/util-utf8": "^3.0.0", 261 | "tslib": "^2.6.2" 262 | } 263 | }, 264 | "@aws-sdk/core": { 265 | "version": "3.658.1", 266 | "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.658.1.tgz", 267 | "integrity": "sha512-vJVMoMcSKXK2gBRSu9Ywwv6wQ7tXH8VL1fqB1uVxgCqBZ3IHfqNn4zvpMPWrwgO2/3wv7XFyikGQ5ypPTCw4jA==", 268 | "requires": { 269 | "@smithy/core": "^2.4.6", 270 | "@smithy/node-config-provider": "^3.1.7", 271 | "@smithy/property-provider": "^3.1.6", 272 | "@smithy/protocol-http": "^4.1.3", 273 | "@smithy/signature-v4": "^4.1.4", 274 | "@smithy/smithy-client": "^3.3.5", 275 | "@smithy/types": "^3.4.2", 276 | "@smithy/util-middleware": "^3.0.6", 277 | "fast-xml-parser": "4.4.1", 278 | "tslib": "^2.6.2" 279 | } 280 | }, 281 | "@aws-sdk/credential-provider-env": { 282 | "version": "3.654.0", 283 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.654.0.tgz", 284 | "integrity": "sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==", 285 | "requires": { 286 | "@aws-sdk/types": "3.654.0", 287 | "@smithy/property-provider": "^3.1.6", 288 | "@smithy/types": "^3.4.2", 289 | "tslib": "^2.6.2" 290 | } 291 | }, 292 | "@aws-sdk/credential-provider-http": { 293 | "version": "3.658.1", 294 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.658.1.tgz", 295 | "integrity": "sha512-4ubkJjEVCZflxkZnV1JDQv8P2pburxk1LrEp55telfJRzXrnowzBKwuV2ED0QMNC448g2B3VCaffS+Ct7c4IWQ==", 296 | "requires": { 297 | "@aws-sdk/types": "3.654.0", 298 | "@smithy/fetch-http-handler": "^3.2.8", 299 | "@smithy/node-http-handler": "^3.2.3", 300 | "@smithy/property-provider": "^3.1.6", 301 | "@smithy/protocol-http": "^4.1.3", 302 | "@smithy/smithy-client": "^3.3.5", 303 | "@smithy/types": "^3.4.2", 304 | "@smithy/util-stream": "^3.1.8", 305 | "tslib": "^2.6.2" 306 | } 307 | }, 308 | "@aws-sdk/credential-provider-ini": { 309 | "version": "3.658.1", 310 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.658.1.tgz", 311 | "integrity": "sha512-2uwOamQg5ppwfegwen1ddPu5HM3/IBSnaGlaKLFhltkdtZ0jiqTZWUtX2V+4Q+buLnT0hQvLS/frQ+7QUam+0Q==", 312 | "requires": { 313 | "@aws-sdk/credential-provider-env": "3.654.0", 314 | "@aws-sdk/credential-provider-http": "3.658.1", 315 | "@aws-sdk/credential-provider-process": "3.654.0", 316 | "@aws-sdk/credential-provider-sso": "3.658.1", 317 | "@aws-sdk/credential-provider-web-identity": "3.654.0", 318 | "@aws-sdk/types": "3.654.0", 319 | "@smithy/credential-provider-imds": "^3.2.3", 320 | "@smithy/property-provider": "^3.1.6", 321 | "@smithy/shared-ini-file-loader": "^3.1.7", 322 | "@smithy/types": "^3.4.2", 323 | "tslib": "^2.6.2" 324 | } 325 | }, 326 | "@aws-sdk/credential-provider-node": { 327 | "version": "3.658.1", 328 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.658.1.tgz", 329 | "integrity": "sha512-XwxW6N+uPXPYAuyq+GfOEdfL/MZGAlCSfB5gEWtLBFmFbikhmEuqfWtI6CD60OwudCUOh6argd21BsJf8o1SJA==", 330 | "requires": { 331 | "@aws-sdk/credential-provider-env": "3.654.0", 332 | "@aws-sdk/credential-provider-http": "3.658.1", 333 | "@aws-sdk/credential-provider-ini": "3.658.1", 334 | "@aws-sdk/credential-provider-process": "3.654.0", 335 | "@aws-sdk/credential-provider-sso": "3.658.1", 336 | "@aws-sdk/credential-provider-web-identity": "3.654.0", 337 | "@aws-sdk/types": "3.654.0", 338 | "@smithy/credential-provider-imds": "^3.2.3", 339 | "@smithy/property-provider": "^3.1.6", 340 | "@smithy/shared-ini-file-loader": "^3.1.7", 341 | "@smithy/types": "^3.4.2", 342 | "tslib": "^2.6.2" 343 | } 344 | }, 345 | "@aws-sdk/credential-provider-process": { 346 | "version": "3.654.0", 347 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.654.0.tgz", 348 | "integrity": "sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==", 349 | "requires": { 350 | "@aws-sdk/types": "3.654.0", 351 | "@smithy/property-provider": "^3.1.6", 352 | "@smithy/shared-ini-file-loader": "^3.1.7", 353 | "@smithy/types": "^3.4.2", 354 | "tslib": "^2.6.2" 355 | } 356 | }, 357 | "@aws-sdk/credential-provider-sso": { 358 | "version": "3.658.1", 359 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.658.1.tgz", 360 | "integrity": "sha512-YOagVEsZEk9DmgJEBg+4MBXrPcw/tYas0VQ5OVBqC5XHNbi2OBGJqgmjVPesuu393E7W0VQxtJFDS00O1ewQgA==", 361 | "requires": { 362 | "@aws-sdk/client-sso": "3.658.1", 363 | "@aws-sdk/token-providers": "3.654.0", 364 | "@aws-sdk/types": "3.654.0", 365 | "@smithy/property-provider": "^3.1.6", 366 | "@smithy/shared-ini-file-loader": "^3.1.7", 367 | "@smithy/types": "^3.4.2", 368 | "tslib": "^2.6.2" 369 | } 370 | }, 371 | "@aws-sdk/credential-provider-web-identity": { 372 | "version": "3.654.0", 373 | "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.654.0.tgz", 374 | "integrity": "sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==", 375 | "requires": { 376 | "@aws-sdk/types": "3.654.0", 377 | "@smithy/property-provider": "^3.1.6", 378 | "@smithy/types": "^3.4.2", 379 | "tslib": "^2.6.2" 380 | } 381 | }, 382 | "@aws-sdk/middleware-host-header": { 383 | "version": "3.654.0", 384 | "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.654.0.tgz", 385 | "integrity": "sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==", 386 | "requires": { 387 | "@aws-sdk/types": "3.654.0", 388 | "@smithy/protocol-http": "^4.1.3", 389 | "@smithy/types": "^3.4.2", 390 | "tslib": "^2.6.2" 391 | } 392 | }, 393 | "@aws-sdk/middleware-logger": { 394 | "version": "3.654.0", 395 | "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.654.0.tgz", 396 | "integrity": "sha512-OQYb+nWlmASyXfRb989pwkJ9EVUMP1CrKn2eyTk3usl20JZmKo2Vjis6I0tLUkMSxMhnBJJlQKyWkRpD/u1FVg==", 397 | "requires": { 398 | "@aws-sdk/types": "3.654.0", 399 | "@smithy/types": "^3.4.2", 400 | "tslib": "^2.6.2" 401 | } 402 | }, 403 | "@aws-sdk/middleware-recursion-detection": { 404 | "version": "3.654.0", 405 | "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.654.0.tgz", 406 | "integrity": "sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==", 407 | "requires": { 408 | "@aws-sdk/types": "3.654.0", 409 | "@smithy/protocol-http": "^4.1.3", 410 | "@smithy/types": "^3.4.2", 411 | "tslib": "^2.6.2" 412 | } 413 | }, 414 | "@aws-sdk/middleware-sdk-sqs": { 415 | "version": "3.658.1", 416 | "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sqs/-/middleware-sdk-sqs-3.658.1.tgz", 417 | "integrity": "sha512-tAHVjNS6WxCC/C5PZic4Bvm0sB+8CYoG+dhV+cmIXv7kYxEKyyjXV7n8equxUxmkjXPaGL4HecNViMYtUPaRag==", 418 | "requires": { 419 | "@aws-sdk/types": "3.654.0", 420 | "@smithy/smithy-client": "^3.3.5", 421 | "@smithy/types": "^3.4.2", 422 | "@smithy/util-hex-encoding": "^3.0.0", 423 | "@smithy/util-utf8": "^3.0.0", 424 | "tslib": "^2.6.2" 425 | } 426 | }, 427 | "@aws-sdk/middleware-user-agent": { 428 | "version": "3.654.0", 429 | "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.654.0.tgz", 430 | "integrity": "sha512-liCcqPAyRsr53cy2tYu4qeH4MMN0eh9g6k56XzI5xd4SghXH5YWh4qOYAlQ8T66ZV4nPMtD8GLtLXGzsH8moFg==", 431 | "requires": { 432 | "@aws-sdk/types": "3.654.0", 433 | "@aws-sdk/util-endpoints": "3.654.0", 434 | "@smithy/protocol-http": "^4.1.3", 435 | "@smithy/types": "^3.4.2", 436 | "tslib": "^2.6.2" 437 | } 438 | }, 439 | "@aws-sdk/region-config-resolver": { 440 | "version": "3.654.0", 441 | "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.654.0.tgz", 442 | "integrity": "sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==", 443 | "requires": { 444 | "@aws-sdk/types": "3.654.0", 445 | "@smithy/node-config-provider": "^3.1.7", 446 | "@smithy/types": "^3.4.2", 447 | "@smithy/util-config-provider": "^3.0.0", 448 | "@smithy/util-middleware": "^3.0.6", 449 | "tslib": "^2.6.2" 450 | } 451 | }, 452 | "@aws-sdk/token-providers": { 453 | "version": "3.654.0", 454 | "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.654.0.tgz", 455 | "integrity": "sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==", 456 | "requires": { 457 | "@aws-sdk/types": "3.654.0", 458 | "@smithy/property-provider": "^3.1.6", 459 | "@smithy/shared-ini-file-loader": "^3.1.7", 460 | "@smithy/types": "^3.4.2", 461 | "tslib": "^2.6.2" 462 | } 463 | }, 464 | "@aws-sdk/types": { 465 | "version": "3.654.0", 466 | "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.654.0.tgz", 467 | "integrity": "sha512-VWvbED3SV+10QJIcmU/PKjsKilsTV16d1I7/on4bvD/jo1qGeMXqLDBSen3ks/tuvXZF/mFc7ZW/W2DiLVtO7A==", 468 | "requires": { 469 | "@smithy/types": "^3.4.2", 470 | "tslib": "^2.6.2" 471 | } 472 | }, 473 | "@aws-sdk/util-endpoints": { 474 | "version": "3.654.0", 475 | "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.654.0.tgz", 476 | "integrity": "sha512-i902fcBknHs0Irgdpi62+QMvzxE+bczvILXigYrlHL4+PiEnlMVpni5L5W1qCkNZXf8AaMrSBuR1NZAGp6UOUw==", 477 | "requires": { 478 | "@aws-sdk/types": "3.654.0", 479 | "@smithy/types": "^3.4.2", 480 | "@smithy/util-endpoints": "^2.1.2", 481 | "tslib": "^2.6.2" 482 | } 483 | }, 484 | "@aws-sdk/util-locate-window": { 485 | "version": "3.568.0", 486 | "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.568.0.tgz", 487 | "integrity": "sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==", 488 | "requires": { 489 | "tslib": "^2.6.2" 490 | } 491 | }, 492 | "@aws-sdk/util-user-agent-browser": { 493 | "version": "3.654.0", 494 | "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.654.0.tgz", 495 | "integrity": "sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==", 496 | "requires": { 497 | "@aws-sdk/types": "3.654.0", 498 | "@smithy/types": "^3.4.2", 499 | "bowser": "^2.11.0", 500 | "tslib": "^2.6.2" 501 | }, 502 | "dependencies": { 503 | "bowser": { 504 | "version": "2.11.0", 505 | "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", 506 | "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" 507 | } 508 | } 509 | }, 510 | "@aws-sdk/util-user-agent-node": { 511 | "version": "3.654.0", 512 | "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.654.0.tgz", 513 | "integrity": "sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==", 514 | "requires": { 515 | "@aws-sdk/types": "3.654.0", 516 | "@smithy/node-config-provider": "^3.1.7", 517 | "@smithy/types": "^3.4.2", 518 | "tslib": "^2.6.2" 519 | } 520 | }, 521 | "@colors/colors": { 522 | "version": "1.5.0", 523 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", 524 | "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" 525 | }, 526 | "@dabh/diagnostics": { 527 | "version": "2.0.3", 528 | "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", 529 | "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", 530 | "requires": { 531 | "colorspace": "1.1.x", 532 | "enabled": "2.0.x", 533 | "kuler": "^2.0.0" 534 | } 535 | }, 536 | "@isaacs/cliui": { 537 | "version": "8.0.2", 538 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 539 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 540 | "requires": { 541 | "string-width": "^5.1.2", 542 | "string-width-cjs": "npm:string-width@^4.2.0", 543 | "strip-ansi": "^7.0.1", 544 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 545 | "wrap-ansi": "^8.1.0", 546 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 547 | } 548 | }, 549 | "@npmcli/agent": { 550 | "version": "2.2.2", 551 | "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz", 552 | "integrity": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==", 553 | "requires": { 554 | "agent-base": "^7.1.0", 555 | "http-proxy-agent": "^7.0.0", 556 | "https-proxy-agent": "^7.0.1", 557 | "lru-cache": "^10.0.1", 558 | "socks-proxy-agent": "^8.0.3" 559 | } 560 | }, 561 | "@npmcli/fs": { 562 | "version": "3.1.1", 563 | "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", 564 | "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", 565 | "requires": { 566 | "semver": "^7.3.5" 567 | } 568 | }, 569 | "@pkgjs/parseargs": { 570 | "version": "0.11.0", 571 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 572 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 573 | "optional": true 574 | }, 575 | "@smithy/abort-controller": { 576 | "version": "3.1.4", 577 | "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.4.tgz", 578 | "integrity": "sha512-VupaALAQlXViW3/enTf/f5l5JZYSAxoJL7f0nanhNNKnww6DGCg1oYIuNP78KDugnkwthBO6iEcym16HhWV8RQ==", 579 | "requires": { 580 | "@smithy/types": "^3.4.2", 581 | "tslib": "^2.6.2" 582 | } 583 | }, 584 | "@smithy/config-resolver": { 585 | "version": "3.0.8", 586 | "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.8.tgz", 587 | "integrity": "sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==", 588 | "requires": { 589 | "@smithy/node-config-provider": "^3.1.7", 590 | "@smithy/types": "^3.4.2", 591 | "@smithy/util-config-provider": "^3.0.0", 592 | "@smithy/util-middleware": "^3.0.6", 593 | "tslib": "^2.6.2" 594 | } 595 | }, 596 | "@smithy/core": { 597 | "version": "2.4.6", 598 | "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.4.6.tgz", 599 | "integrity": "sha512-6lQQp99hnyuNNIzeTYSzCUXJHwvvFLY7hfdFGSJM95tjRDJGfzWYFRBXPaM9766LiiTsQ561KErtbufzUFSYUg==", 600 | "requires": { 601 | "@smithy/middleware-endpoint": "^3.1.3", 602 | "@smithy/middleware-retry": "^3.0.21", 603 | "@smithy/middleware-serde": "^3.0.6", 604 | "@smithy/protocol-http": "^4.1.3", 605 | "@smithy/smithy-client": "^3.3.5", 606 | "@smithy/types": "^3.4.2", 607 | "@smithy/util-body-length-browser": "^3.0.0", 608 | "@smithy/util-middleware": "^3.0.6", 609 | "@smithy/util-utf8": "^3.0.0", 610 | "tslib": "^2.6.2" 611 | } 612 | }, 613 | "@smithy/credential-provider-imds": { 614 | "version": "3.2.3", 615 | "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.3.tgz", 616 | "integrity": "sha512-VoxMzSzdvkkjMJNE38yQgx4CfnmT+Z+5EUXkg4x7yag93eQkVQgZvN3XBSHC/ylfBbLbAtdu7flTCChX9I+mVg==", 617 | "requires": { 618 | "@smithy/node-config-provider": "^3.1.7", 619 | "@smithy/property-provider": "^3.1.6", 620 | "@smithy/types": "^3.4.2", 621 | "@smithy/url-parser": "^3.0.6", 622 | "tslib": "^2.6.2" 623 | } 624 | }, 625 | "@smithy/fetch-http-handler": { 626 | "version": "3.2.8", 627 | "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.8.tgz", 628 | "integrity": "sha512-Lqe0B8F5RM7zkw//6avq1SJ8AfaRd3ubFUS1eVp5WszV7p6Ne5hQ4dSuMHDpNRPhgTvj4va9Kd/pcVigHEHRow==", 629 | "requires": { 630 | "@smithy/protocol-http": "^4.1.3", 631 | "@smithy/querystring-builder": "^3.0.6", 632 | "@smithy/types": "^3.4.2", 633 | "@smithy/util-base64": "^3.0.0", 634 | "tslib": "^2.6.2" 635 | } 636 | }, 637 | "@smithy/hash-node": { 638 | "version": "3.0.6", 639 | "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.6.tgz", 640 | "integrity": "sha512-c/FHEdKK/7DU2z6ZE91L36ahyXWayR3B+FzELjnYq7wH5YqIseM24V+pWCS9kFn1Ln8OFGTf+pyYPiHZuX0s/Q==", 641 | "requires": { 642 | "@smithy/types": "^3.4.2", 643 | "@smithy/util-buffer-from": "^3.0.0", 644 | "@smithy/util-utf8": "^3.0.0", 645 | "tslib": "^2.6.2" 646 | }, 647 | "dependencies": { 648 | "@smithy/is-array-buffer": { 649 | "version": "3.0.0", 650 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", 651 | "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", 652 | "requires": { 653 | "tslib": "^2.6.2" 654 | } 655 | }, 656 | "@smithy/util-buffer-from": { 657 | "version": "3.0.0", 658 | "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", 659 | "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", 660 | "requires": { 661 | "@smithy/is-array-buffer": "^3.0.0", 662 | "tslib": "^2.6.2" 663 | } 664 | } 665 | } 666 | }, 667 | "@smithy/invalid-dependency": { 668 | "version": "3.0.6", 669 | "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.6.tgz", 670 | "integrity": "sha512-czM7Ioq3s8pIXht7oD+vmgy4Wfb4XavU/k/irO8NdXFFOx7YAlsCCcKOh/lJD1mJSYQqiR7NmpZ9JviryD/7AQ==", 671 | "requires": { 672 | "@smithy/types": "^3.4.2", 673 | "tslib": "^2.6.2" 674 | } 675 | }, 676 | "@smithy/is-array-buffer": { 677 | "version": "2.2.0", 678 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz", 679 | "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", 680 | "requires": { 681 | "tslib": "^2.6.2" 682 | } 683 | }, 684 | "@smithy/md5-js": { 685 | "version": "3.0.6", 686 | "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.6.tgz", 687 | "integrity": "sha512-Ze690T8O3M5SVbb70WormwrKzVf9QQRtIuxtJDgpUQDkmt+PtdYDetBbyCbF9ryupxLw6tgzWKgwffAShhVIXQ==", 688 | "requires": { 689 | "@smithy/types": "^3.4.2", 690 | "@smithy/util-utf8": "^3.0.0", 691 | "tslib": "^2.6.2" 692 | } 693 | }, 694 | "@smithy/middleware-content-length": { 695 | "version": "3.0.8", 696 | "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.8.tgz", 697 | "integrity": "sha512-VuyszlSO49WKh3H9/kIO2kf07VUwGV80QRiaDxUfP8P8UKlokz381ETJvwLhwuypBYhLymCYyNhB3fLAGBX2og==", 698 | "requires": { 699 | "@smithy/protocol-http": "^4.1.3", 700 | "@smithy/types": "^3.4.2", 701 | "tslib": "^2.6.2" 702 | } 703 | }, 704 | "@smithy/middleware-endpoint": { 705 | "version": "3.1.3", 706 | "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.3.tgz", 707 | "integrity": "sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==", 708 | "requires": { 709 | "@smithy/middleware-serde": "^3.0.6", 710 | "@smithy/node-config-provider": "^3.1.7", 711 | "@smithy/shared-ini-file-loader": "^3.1.7", 712 | "@smithy/types": "^3.4.2", 713 | "@smithy/url-parser": "^3.0.6", 714 | "@smithy/util-middleware": "^3.0.6", 715 | "tslib": "^2.6.2" 716 | } 717 | }, 718 | "@smithy/middleware-retry": { 719 | "version": "3.0.21", 720 | "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.21.tgz", 721 | "integrity": "sha512-/h0fElV95LekVVEJuSw+aI11S1Y3zIUwBc6h9ZbUv43Gl2weXsbQwjLoet6j/Qtb0phfrSxS6pNg6FqgJOWZkA==", 722 | "requires": { 723 | "@smithy/node-config-provider": "^3.1.7", 724 | "@smithy/protocol-http": "^4.1.3", 725 | "@smithy/service-error-classification": "^3.0.6", 726 | "@smithy/smithy-client": "^3.3.5", 727 | "@smithy/types": "^3.4.2", 728 | "@smithy/util-middleware": "^3.0.6", 729 | "@smithy/util-retry": "^3.0.6", 730 | "tslib": "^2.6.2", 731 | "uuid": "^9.0.1" 732 | } 733 | }, 734 | "@smithy/middleware-serde": { 735 | "version": "3.0.6", 736 | "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.6.tgz", 737 | "integrity": "sha512-KKTUSl1MzOM0MAjGbudeaVNtIDo+PpekTBkCNwvfZlKndodrnvRo+00USatiyLOc0ujjO9UydMRu3O9dYML7ag==", 738 | "requires": { 739 | "@smithy/types": "^3.4.2", 740 | "tslib": "^2.6.2" 741 | } 742 | }, 743 | "@smithy/middleware-stack": { 744 | "version": "3.0.6", 745 | "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.6.tgz", 746 | "integrity": "sha512-2c0eSYhTQ8xQqHMcRxLMpadFbTXg6Zla5l0mwNftFCZMQmuhI7EbAJMx6R5eqfuV3YbJ3QGyS3d5uSmrHV8Khg==", 747 | "requires": { 748 | "@smithy/types": "^3.4.2", 749 | "tslib": "^2.6.2" 750 | } 751 | }, 752 | "@smithy/node-config-provider": { 753 | "version": "3.1.7", 754 | "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.7.tgz", 755 | "integrity": "sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==", 756 | "requires": { 757 | "@smithy/property-provider": "^3.1.6", 758 | "@smithy/shared-ini-file-loader": "^3.1.7", 759 | "@smithy/types": "^3.4.2", 760 | "tslib": "^2.6.2" 761 | } 762 | }, 763 | "@smithy/node-http-handler": { 764 | "version": "3.2.3", 765 | "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.3.tgz", 766 | "integrity": "sha512-/gcm5DJ3k1b1zEInzBGAZC8ntJ+jwrz1NcSIu+9dSXd1FfG0G6QgkDI40tt8/WYUbHtLyo8fEqtm2v29koWo/w==", 767 | "requires": { 768 | "@smithy/abort-controller": "^3.1.4", 769 | "@smithy/protocol-http": "^4.1.3", 770 | "@smithy/querystring-builder": "^3.0.6", 771 | "@smithy/types": "^3.4.2", 772 | "tslib": "^2.6.2" 773 | } 774 | }, 775 | "@smithy/property-provider": { 776 | "version": "3.1.6", 777 | "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.6.tgz", 778 | "integrity": "sha512-NK3y/T7Q/Bw+Z8vsVs9MYIQ5v7gOX7clyrXcwhhIBQhbPgRl6JDrZbusO9qWDhcEus75Tg+VCxtIRfo3H76fpw==", 779 | "requires": { 780 | "@smithy/types": "^3.4.2", 781 | "tslib": "^2.6.2" 782 | } 783 | }, 784 | "@smithy/protocol-http": { 785 | "version": "4.1.3", 786 | "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.3.tgz", 787 | "integrity": "sha512-GcbMmOYpH9iRqtC05RbRnc/0FssxSTHlmaNhYBTgSgNCYpdR3Kt88u5GAZTBmouzv+Zlj/VRv92J9ruuDeJuEw==", 788 | "requires": { 789 | "@smithy/types": "^3.4.2", 790 | "tslib": "^2.6.2" 791 | } 792 | }, 793 | "@smithy/querystring-builder": { 794 | "version": "3.0.6", 795 | "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.6.tgz", 796 | "integrity": "sha512-sQe08RunoObe+Usujn9+R2zrLuQERi3CWvRO3BvnoWSYUaIrLKuAIeY7cMeDax6xGyfIP3x/yFWbEKSXvOnvVg==", 797 | "requires": { 798 | "@smithy/types": "^3.4.2", 799 | "@smithy/util-uri-escape": "^3.0.0", 800 | "tslib": "^2.6.2" 801 | } 802 | }, 803 | "@smithy/querystring-parser": { 804 | "version": "3.0.6", 805 | "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.6.tgz", 806 | "integrity": "sha512-UJKw4LlEkytzz2Wq+uIdHf6qOtFfee/o7ruH0jF5I6UAuU+19r9QV7nU3P/uI0l6+oElRHmG/5cBBcGJrD7Ozg==", 807 | "requires": { 808 | "@smithy/types": "^3.4.2", 809 | "tslib": "^2.6.2" 810 | } 811 | }, 812 | "@smithy/service-error-classification": { 813 | "version": "3.0.6", 814 | "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.6.tgz", 815 | "integrity": "sha512-53SpchU3+DUZrN7J6sBx9tBiCVGzsib2e4sc512Q7K9fpC5zkJKs6Z9s+qbMxSYrkEkle6hnMtrts7XNkMJJMg==", 816 | "requires": { 817 | "@smithy/types": "^3.4.2" 818 | } 819 | }, 820 | "@smithy/shared-ini-file-loader": { 821 | "version": "3.1.7", 822 | "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.7.tgz", 823 | "integrity": "sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==", 824 | "requires": { 825 | "@smithy/types": "^3.4.2", 826 | "tslib": "^2.6.2" 827 | } 828 | }, 829 | "@smithy/signature-v4": { 830 | "version": "4.1.4", 831 | "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.1.4.tgz", 832 | "integrity": "sha512-72MiK7xYukNsnLJI9NqvUHqTu0ziEsfMsYNlWpiJfuGQnCTFKpckThlEatirvcA/LmT1h7rRO+pJD06PYsPu9Q==", 833 | "requires": { 834 | "@smithy/is-array-buffer": "^3.0.0", 835 | "@smithy/protocol-http": "^4.1.3", 836 | "@smithy/types": "^3.4.2", 837 | "@smithy/util-hex-encoding": "^3.0.0", 838 | "@smithy/util-middleware": "^3.0.6", 839 | "@smithy/util-uri-escape": "^3.0.0", 840 | "@smithy/util-utf8": "^3.0.0", 841 | "tslib": "^2.6.2" 842 | }, 843 | "dependencies": { 844 | "@smithy/is-array-buffer": { 845 | "version": "3.0.0", 846 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", 847 | "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", 848 | "requires": { 849 | "tslib": "^2.6.2" 850 | } 851 | } 852 | } 853 | }, 854 | "@smithy/smithy-client": { 855 | "version": "3.3.5", 856 | "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.3.5.tgz", 857 | "integrity": "sha512-7IZi8J3Dr9n3tX+lcpmJ/5tCYIqoXdblFBaPuv0SEKZFRpCxE+TqIWL6I3t7jLlk9TWu3JSvEZAhtjB9yvB+zA==", 858 | "requires": { 859 | "@smithy/middleware-endpoint": "^3.1.3", 860 | "@smithy/middleware-stack": "^3.0.6", 861 | "@smithy/protocol-http": "^4.1.3", 862 | "@smithy/types": "^3.4.2", 863 | "@smithy/util-stream": "^3.1.8", 864 | "tslib": "^2.6.2" 865 | } 866 | }, 867 | "@smithy/types": { 868 | "version": "3.4.2", 869 | "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.4.2.tgz", 870 | "integrity": "sha512-tHiFcfcVedVBHpmHUEUHOCCih8iZbIAYn9NvPsNzaPm/237I3imdDdZoOC8c87H5HBAVEa06tTgb+OcSWV9g5w==", 871 | "requires": { 872 | "tslib": "^2.6.2" 873 | } 874 | }, 875 | "@smithy/url-parser": { 876 | "version": "3.0.6", 877 | "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.6.tgz", 878 | "integrity": "sha512-47Op/NU8Opt49KyGpHtVdnmmJMsp2hEwBdyjuFB9M2V5QVOwA7pBhhxKN5z6ztKGrMw76gd8MlbPuzzvaAncuQ==", 879 | "requires": { 880 | "@smithy/querystring-parser": "^3.0.6", 881 | "@smithy/types": "^3.4.2", 882 | "tslib": "^2.6.2" 883 | } 884 | }, 885 | "@smithy/util-base64": { 886 | "version": "3.0.0", 887 | "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", 888 | "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", 889 | "requires": { 890 | "@smithy/util-buffer-from": "^3.0.0", 891 | "@smithy/util-utf8": "^3.0.0", 892 | "tslib": "^2.6.2" 893 | }, 894 | "dependencies": { 895 | "@smithy/is-array-buffer": { 896 | "version": "3.0.0", 897 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", 898 | "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", 899 | "requires": { 900 | "tslib": "^2.6.2" 901 | } 902 | }, 903 | "@smithy/util-buffer-from": { 904 | "version": "3.0.0", 905 | "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", 906 | "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", 907 | "requires": { 908 | "@smithy/is-array-buffer": "^3.0.0", 909 | "tslib": "^2.6.2" 910 | } 911 | } 912 | } 913 | }, 914 | "@smithy/util-body-length-browser": { 915 | "version": "3.0.0", 916 | "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", 917 | "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", 918 | "requires": { 919 | "tslib": "^2.6.2" 920 | } 921 | }, 922 | "@smithy/util-body-length-node": { 923 | "version": "3.0.0", 924 | "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", 925 | "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", 926 | "requires": { 927 | "tslib": "^2.6.2" 928 | } 929 | }, 930 | "@smithy/util-buffer-from": { 931 | "version": "2.2.0", 932 | "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz", 933 | "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", 934 | "requires": { 935 | "@smithy/is-array-buffer": "^2.2.0", 936 | "tslib": "^2.6.2" 937 | } 938 | }, 939 | "@smithy/util-config-provider": { 940 | "version": "3.0.0", 941 | "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", 942 | "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", 943 | "requires": { 944 | "tslib": "^2.6.2" 945 | } 946 | }, 947 | "@smithy/util-defaults-mode-browser": { 948 | "version": "3.0.21", 949 | "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.21.tgz", 950 | "integrity": "sha512-M/FhTBk4c/SsB91dD/M4gMGfJO7z/qJaM9+XQQIqBOf4qzZYMExnP7R4VdGwxxH8IKMGW+8F0I4rNtVRrcfPoA==", 951 | "requires": { 952 | "@smithy/property-provider": "^3.1.6", 953 | "@smithy/smithy-client": "^3.3.5", 954 | "@smithy/types": "^3.4.2", 955 | "bowser": "^2.11.0", 956 | "tslib": "^2.6.2" 957 | }, 958 | "dependencies": { 959 | "bowser": { 960 | "version": "2.11.0", 961 | "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", 962 | "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" 963 | } 964 | } 965 | }, 966 | "@smithy/util-defaults-mode-node": { 967 | "version": "3.0.21", 968 | "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.21.tgz", 969 | "integrity": "sha512-NiLinPvF86U3S2Pdx/ycqd4bnY5dmFSPNL5KYRwbNjqQFS09M5Wzqk8BNk61/47xCYz1X/6KeiSk9qgYPTtuDw==", 970 | "requires": { 971 | "@smithy/config-resolver": "^3.0.8", 972 | "@smithy/credential-provider-imds": "^3.2.3", 973 | "@smithy/node-config-provider": "^3.1.7", 974 | "@smithy/property-provider": "^3.1.6", 975 | "@smithy/smithy-client": "^3.3.5", 976 | "@smithy/types": "^3.4.2", 977 | "tslib": "^2.6.2" 978 | } 979 | }, 980 | "@smithy/util-endpoints": { 981 | "version": "2.1.2", 982 | "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.2.tgz", 983 | "integrity": "sha512-FEISzffb4H8DLzGq1g4MuDpcv6CIG15fXoQzDH9SjpRJv6h7J++1STFWWinilG0tQh9H1v2UKWG19Jjr2B16zQ==", 984 | "requires": { 985 | "@smithy/node-config-provider": "^3.1.7", 986 | "@smithy/types": "^3.4.2", 987 | "tslib": "^2.6.2" 988 | } 989 | }, 990 | "@smithy/util-hex-encoding": { 991 | "version": "3.0.0", 992 | "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", 993 | "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", 994 | "requires": { 995 | "tslib": "^2.6.2" 996 | } 997 | }, 998 | "@smithy/util-middleware": { 999 | "version": "3.0.6", 1000 | "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.6.tgz", 1001 | "integrity": "sha512-BxbX4aBhI1O9p87/xM+zWy0GzT3CEVcXFPBRDoHAM+pV0eSW156pR+PSYEz0DQHDMYDsYAflC2bQNz2uaDBUZQ==", 1002 | "requires": { 1003 | "@smithy/types": "^3.4.2", 1004 | "tslib": "^2.6.2" 1005 | } 1006 | }, 1007 | "@smithy/util-retry": { 1008 | "version": "3.0.6", 1009 | "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.6.tgz", 1010 | "integrity": "sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==", 1011 | "requires": { 1012 | "@smithy/service-error-classification": "^3.0.6", 1013 | "@smithy/types": "^3.4.2", 1014 | "tslib": "^2.6.2" 1015 | } 1016 | }, 1017 | "@smithy/util-stream": { 1018 | "version": "3.1.8", 1019 | "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.1.8.tgz", 1020 | "integrity": "sha512-hoKOqSmb8FD3WLObuB5hwbM7bNIWgcnvkThokTvVq7J5PKjlLUK5qQQcB9zWLHIoSaIlf3VIv2OxZY2wtQjcRQ==", 1021 | "requires": { 1022 | "@smithy/fetch-http-handler": "^3.2.8", 1023 | "@smithy/node-http-handler": "^3.2.3", 1024 | "@smithy/types": "^3.4.2", 1025 | "@smithy/util-base64": "^3.0.0", 1026 | "@smithy/util-buffer-from": "^3.0.0", 1027 | "@smithy/util-hex-encoding": "^3.0.0", 1028 | "@smithy/util-utf8": "^3.0.0", 1029 | "tslib": "^2.6.2" 1030 | }, 1031 | "dependencies": { 1032 | "@smithy/is-array-buffer": { 1033 | "version": "3.0.0", 1034 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", 1035 | "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", 1036 | "requires": { 1037 | "tslib": "^2.6.2" 1038 | } 1039 | }, 1040 | "@smithy/util-buffer-from": { 1041 | "version": "3.0.0", 1042 | "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", 1043 | "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", 1044 | "requires": { 1045 | "@smithy/is-array-buffer": "^3.0.0", 1046 | "tslib": "^2.6.2" 1047 | } 1048 | } 1049 | } 1050 | }, 1051 | "@smithy/util-uri-escape": { 1052 | "version": "3.0.0", 1053 | "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", 1054 | "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", 1055 | "requires": { 1056 | "tslib": "^2.6.2" 1057 | } 1058 | }, 1059 | "@smithy/util-utf8": { 1060 | "version": "3.0.0", 1061 | "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", 1062 | "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", 1063 | "requires": { 1064 | "@smithy/util-buffer-from": "^3.0.0", 1065 | "tslib": "^2.6.2" 1066 | }, 1067 | "dependencies": { 1068 | "@smithy/is-array-buffer": { 1069 | "version": "3.0.0", 1070 | "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", 1071 | "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", 1072 | "requires": { 1073 | "tslib": "^2.6.2" 1074 | } 1075 | }, 1076 | "@smithy/util-buffer-from": { 1077 | "version": "3.0.0", 1078 | "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", 1079 | "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", 1080 | "requires": { 1081 | "@smithy/is-array-buffer": "^3.0.0", 1082 | "tslib": "^2.6.2" 1083 | } 1084 | } 1085 | } 1086 | }, 1087 | "@types/triple-beam": { 1088 | "version": "1.3.5", 1089 | "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", 1090 | "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" 1091 | }, 1092 | "abbrev": { 1093 | "version": "2.0.0", 1094 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", 1095 | "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" 1096 | }, 1097 | "accepts": { 1098 | "version": "1.3.8", 1099 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 1100 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 1101 | "requires": { 1102 | "mime-types": "~2.1.34", 1103 | "negotiator": "0.6.3" 1104 | } 1105 | }, 1106 | "agent-base": { 1107 | "version": "7.1.1", 1108 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", 1109 | "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", 1110 | "requires": { 1111 | "debug": "^4.3.4" 1112 | }, 1113 | "dependencies": { 1114 | "debug": { 1115 | "version": "4.3.7", 1116 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1117 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1118 | "requires": { 1119 | "ms": "^2.1.3" 1120 | } 1121 | }, 1122 | "ms": { 1123 | "version": "2.1.3", 1124 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1125 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1126 | } 1127 | } 1128 | }, 1129 | "aggregate-error": { 1130 | "version": "3.1.0", 1131 | "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", 1132 | "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", 1133 | "requires": { 1134 | "clean-stack": "^2.0.0", 1135 | "indent-string": "^4.0.0" 1136 | } 1137 | }, 1138 | "ansi-regex": { 1139 | "version": "6.1.0", 1140 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 1141 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" 1142 | }, 1143 | "ansi-styles": { 1144 | "version": "6.2.1", 1145 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 1146 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" 1147 | }, 1148 | "append-field": { 1149 | "version": "1.0.0", 1150 | "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", 1151 | "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" 1152 | }, 1153 | "array-flatten": { 1154 | "version": "1.1.1", 1155 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 1156 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 1157 | }, 1158 | "async": { 1159 | "version": "3.2.3", 1160 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", 1161 | "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" 1162 | }, 1163 | "async-mutex": { 1164 | "version": "0.5.0", 1165 | "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.5.0.tgz", 1166 | "integrity": "sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==", 1167 | "requires": { 1168 | "tslib": "^2.4.0" 1169 | } 1170 | }, 1171 | "balanced-match": { 1172 | "version": "1.0.2", 1173 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1174 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1175 | }, 1176 | "bindings": { 1177 | "version": "1.5.0", 1178 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 1179 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 1180 | "requires": { 1181 | "file-uri-to-path": "1.0.0" 1182 | } 1183 | }, 1184 | "body-parser": { 1185 | "version": "1.20.3", 1186 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", 1187 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", 1188 | "requires": { 1189 | "bytes": "3.1.2", 1190 | "content-type": "~1.0.5", 1191 | "debug": "2.6.9", 1192 | "depd": "2.0.0", 1193 | "destroy": "1.2.0", 1194 | "http-errors": "2.0.0", 1195 | "iconv-lite": "0.4.24", 1196 | "on-finished": "2.4.1", 1197 | "qs": "6.13.0", 1198 | "raw-body": "2.5.2", 1199 | "type-is": "~1.6.18", 1200 | "unpipe": "1.0.0" 1201 | } 1202 | }, 1203 | "bowser": { 1204 | "version": "2.9.0", 1205 | "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", 1206 | "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" 1207 | }, 1208 | "brace-expansion": { 1209 | "version": "2.0.1", 1210 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1211 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1212 | "requires": { 1213 | "balanced-match": "^1.0.0" 1214 | } 1215 | }, 1216 | "buffer-from": { 1217 | "version": "1.1.2", 1218 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1219 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" 1220 | }, 1221 | "busboy": { 1222 | "version": "1.6.0", 1223 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 1224 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 1225 | "requires": { 1226 | "streamsearch": "^1.1.0" 1227 | } 1228 | }, 1229 | "bytes": { 1230 | "version": "3.1.2", 1231 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 1232 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" 1233 | }, 1234 | "cacache": { 1235 | "version": "18.0.4", 1236 | "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", 1237 | "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", 1238 | "requires": { 1239 | "@npmcli/fs": "^3.1.0", 1240 | "fs-minipass": "^3.0.0", 1241 | "glob": "^10.2.2", 1242 | "lru-cache": "^10.0.1", 1243 | "minipass": "^7.0.3", 1244 | "minipass-collect": "^2.0.1", 1245 | "minipass-flush": "^1.0.5", 1246 | "minipass-pipeline": "^1.2.4", 1247 | "p-map": "^4.0.0", 1248 | "ssri": "^10.0.0", 1249 | "tar": "^6.1.11", 1250 | "unique-filename": "^3.0.0" 1251 | } 1252 | }, 1253 | "call-bind": { 1254 | "version": "1.0.7", 1255 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 1256 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 1257 | "requires": { 1258 | "es-define-property": "^1.0.0", 1259 | "es-errors": "^1.3.0", 1260 | "function-bind": "^1.1.2", 1261 | "get-intrinsic": "^1.2.4", 1262 | "set-function-length": "^1.2.1" 1263 | } 1264 | }, 1265 | "camelize": { 1266 | "version": "1.0.0", 1267 | "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", 1268 | "integrity": "sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==" 1269 | }, 1270 | "chownr": { 1271 | "version": "2.0.0", 1272 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 1273 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" 1274 | }, 1275 | "clean-stack": { 1276 | "version": "2.2.0", 1277 | "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", 1278 | "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" 1279 | }, 1280 | "color": { 1281 | "version": "3.2.1", 1282 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 1283 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 1284 | "requires": { 1285 | "color-convert": "^1.9.3", 1286 | "color-string": "^1.6.0" 1287 | }, 1288 | "dependencies": { 1289 | "color-convert": { 1290 | "version": "1.9.3", 1291 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1292 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1293 | "requires": { 1294 | "color-name": "1.1.3" 1295 | } 1296 | }, 1297 | "color-name": { 1298 | "version": "1.1.3", 1299 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1300 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" 1301 | } 1302 | } 1303 | }, 1304 | "color-convert": { 1305 | "version": "2.0.1", 1306 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1307 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1308 | "requires": { 1309 | "color-name": "~1.1.4" 1310 | } 1311 | }, 1312 | "color-name": { 1313 | "version": "1.1.4", 1314 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1315 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1316 | }, 1317 | "color-string": { 1318 | "version": "1.9.1", 1319 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 1320 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 1321 | "requires": { 1322 | "color-name": "^1.0.0", 1323 | "simple-swizzle": "^0.2.2" 1324 | } 1325 | }, 1326 | "colors": { 1327 | "version": "1.0.3", 1328 | "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", 1329 | "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==" 1330 | }, 1331 | "colorspace": { 1332 | "version": "1.1.4", 1333 | "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", 1334 | "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", 1335 | "requires": { 1336 | "color": "^3.1.3", 1337 | "text-hex": "1.0.x" 1338 | } 1339 | }, 1340 | "concat-map": { 1341 | "version": "0.0.1", 1342 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1343 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1344 | }, 1345 | "concat-stream": { 1346 | "version": "1.6.2", 1347 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", 1348 | "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", 1349 | "requires": { 1350 | "buffer-from": "^1.0.0", 1351 | "inherits": "^2.0.3", 1352 | "readable-stream": "^2.2.2", 1353 | "typedarray": "^0.0.6" 1354 | } 1355 | }, 1356 | "content-disposition": { 1357 | "version": "0.5.4", 1358 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 1359 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 1360 | "requires": { 1361 | "safe-buffer": "5.2.1" 1362 | } 1363 | }, 1364 | "content-security-policy-builder": { 1365 | "version": "2.1.0", 1366 | "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", 1367 | "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" 1368 | }, 1369 | "content-type": { 1370 | "version": "1.0.5", 1371 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 1372 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" 1373 | }, 1374 | "cookie": { 1375 | "version": "0.6.0", 1376 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1377 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" 1378 | }, 1379 | "cookie-signature": { 1380 | "version": "1.0.6", 1381 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 1382 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 1383 | }, 1384 | "core-util-is": { 1385 | "version": "1.0.3", 1386 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 1387 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" 1388 | }, 1389 | "cron": { 1390 | "version": "1.8.2", 1391 | "resolved": "https://registry.npmjs.org/cron/-/cron-1.8.2.tgz", 1392 | "integrity": "sha512-Gk2c4y6xKEO8FSAUTklqtfSr7oTq0CiPQeLBG5Fl0qoXpZyMcj1SG59YL+hqq04bu6/IuEA7lMkYDAplQNKkyg==", 1393 | "requires": { 1394 | "moment-timezone": "^0.5.x" 1395 | } 1396 | }, 1397 | "cross-env": { 1398 | "version": "7.0.3", 1399 | "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", 1400 | "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", 1401 | "requires": { 1402 | "cross-spawn": "^7.0.1" 1403 | } 1404 | }, 1405 | "cross-spawn": { 1406 | "version": "7.0.3", 1407 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1408 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1409 | "requires": { 1410 | "path-key": "^3.1.0", 1411 | "shebang-command": "^2.0.0", 1412 | "which": "^2.0.1" 1413 | } 1414 | }, 1415 | "csv-writer": { 1416 | "version": "1.6.0", 1417 | "resolved": "https://registry.npmjs.org/csv-writer/-/csv-writer-1.6.0.tgz", 1418 | "integrity": "sha512-NOx7YDFWEsM/fTRAJjRpPp8t+MKRVvniAg9wQlUKx20MFrPs73WLJhFf5iteqrxNYnsy924K3Iroh3yNHeYd2g==" 1419 | }, 1420 | "cycle": { 1421 | "version": "1.0.3", 1422 | "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", 1423 | "integrity": "sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==" 1424 | }, 1425 | "dasherize": { 1426 | "version": "2.0.0", 1427 | "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", 1428 | "integrity": "sha512-APql/TZ6FdLEpf2z7/X2a2zyqK8juYtqaSVqxw9mYoQ64CXkfU15AeLh8pUszT8+fnYjgm6t0aIYpWKJbnLkuA==" 1429 | }, 1430 | "date-format": { 1431 | "version": "4.0.14", 1432 | "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", 1433 | "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==" 1434 | }, 1435 | "deasync": { 1436 | "version": "0.1.30", 1437 | "resolved": "https://registry.npmjs.org/deasync/-/deasync-0.1.30.tgz", 1438 | "integrity": "sha512-OaAjvEQuQ9tJsKG4oHO9nV1UHTwb2Qc2+fadB0VeVtD0Z9wiG1XPGLJ4W3aLhAoQSYTaLROFRbd5X20Dkzf7MQ==", 1439 | "requires": { 1440 | "bindings": "^1.5.0", 1441 | "node-addon-api": "^1.7.1" 1442 | } 1443 | }, 1444 | "debug": { 1445 | "version": "2.6.9", 1446 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1447 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1448 | "requires": { 1449 | "ms": "2.0.0" 1450 | } 1451 | }, 1452 | "define-data-property": { 1453 | "version": "1.1.4", 1454 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1455 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1456 | "requires": { 1457 | "es-define-property": "^1.0.0", 1458 | "es-errors": "^1.3.0", 1459 | "gopd": "^1.0.1" 1460 | } 1461 | }, 1462 | "depd": { 1463 | "version": "2.0.0", 1464 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 1465 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 1466 | }, 1467 | "destroy": { 1468 | "version": "1.2.0", 1469 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 1470 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" 1471 | }, 1472 | "dont-sniff-mimetype": { 1473 | "version": "1.1.0", 1474 | "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", 1475 | "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" 1476 | }, 1477 | "dotenv": { 1478 | "version": "8.6.0", 1479 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", 1480 | "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==" 1481 | }, 1482 | "eastasianwidth": { 1483 | "version": "0.2.0", 1484 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1485 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" 1486 | }, 1487 | "ee-first": { 1488 | "version": "1.1.1", 1489 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 1490 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 1491 | }, 1492 | "emoji-regex": { 1493 | "version": "9.2.2", 1494 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1495 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1496 | }, 1497 | "enabled": { 1498 | "version": "2.0.0", 1499 | "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", 1500 | "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" 1501 | }, 1502 | "encodeurl": { 1503 | "version": "2.0.0", 1504 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 1505 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" 1506 | }, 1507 | "encoding": { 1508 | "version": "0.1.13", 1509 | "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", 1510 | "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", 1511 | "optional": true, 1512 | "requires": { 1513 | "iconv-lite": "^0.6.2" 1514 | }, 1515 | "dependencies": { 1516 | "iconv-lite": { 1517 | "version": "0.6.3", 1518 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 1519 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 1520 | "optional": true, 1521 | "requires": { 1522 | "safer-buffer": ">= 2.1.2 < 3.0.0" 1523 | } 1524 | } 1525 | } 1526 | }, 1527 | "env-paths": { 1528 | "version": "2.2.1", 1529 | "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", 1530 | "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" 1531 | }, 1532 | "err-code": { 1533 | "version": "2.0.3", 1534 | "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", 1535 | "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" 1536 | }, 1537 | "es-define-property": { 1538 | "version": "1.0.0", 1539 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1540 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1541 | "requires": { 1542 | "get-intrinsic": "^1.2.4" 1543 | } 1544 | }, 1545 | "es-errors": { 1546 | "version": "1.3.0", 1547 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1548 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" 1549 | }, 1550 | "escape-html": { 1551 | "version": "1.0.3", 1552 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1553 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 1554 | }, 1555 | "etag": { 1556 | "version": "1.8.1", 1557 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1558 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" 1559 | }, 1560 | "exponential-backoff": { 1561 | "version": "3.1.1", 1562 | "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", 1563 | "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" 1564 | }, 1565 | "express": { 1566 | "version": "4.21.0", 1567 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", 1568 | "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", 1569 | "requires": { 1570 | "accepts": "~1.3.8", 1571 | "array-flatten": "1.1.1", 1572 | "body-parser": "1.20.3", 1573 | "content-disposition": "0.5.4", 1574 | "content-type": "~1.0.4", 1575 | "cookie": "0.6.0", 1576 | "cookie-signature": "1.0.6", 1577 | "debug": "2.6.9", 1578 | "depd": "2.0.0", 1579 | "encodeurl": "~2.0.0", 1580 | "escape-html": "~1.0.3", 1581 | "etag": "~1.8.1", 1582 | "finalhandler": "1.3.1", 1583 | "fresh": "0.5.2", 1584 | "http-errors": "2.0.0", 1585 | "merge-descriptors": "1.0.3", 1586 | "methods": "~1.1.2", 1587 | "on-finished": "2.4.1", 1588 | "parseurl": "~1.3.3", 1589 | "path-to-regexp": "0.1.10", 1590 | "proxy-addr": "~2.0.7", 1591 | "qs": "6.13.0", 1592 | "range-parser": "~1.2.1", 1593 | "safe-buffer": "5.2.1", 1594 | "send": "0.19.0", 1595 | "serve-static": "1.16.2", 1596 | "setprototypeof": "1.2.0", 1597 | "statuses": "2.0.1", 1598 | "type-is": "~1.6.18", 1599 | "utils-merge": "1.0.1", 1600 | "vary": "~1.1.2" 1601 | } 1602 | }, 1603 | "eyes": { 1604 | "version": "0.1.8", 1605 | "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", 1606 | "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==" 1607 | }, 1608 | "fast-xml-parser": { 1609 | "version": "4.4.1", 1610 | "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", 1611 | "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", 1612 | "requires": { 1613 | "strnum": "^1.0.5" 1614 | } 1615 | }, 1616 | "feature-policy": { 1617 | "version": "0.3.0", 1618 | "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", 1619 | "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" 1620 | }, 1621 | "fecha": { 1622 | "version": "4.2.3", 1623 | "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", 1624 | "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" 1625 | }, 1626 | "file-stream-rotator": { 1627 | "version": "0.6.1", 1628 | "resolved": "https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.6.1.tgz", 1629 | "integrity": "sha512-u+dBid4PvZw17PmDeRcNOtCP9CCK/9lRN2w+r1xIS7yOL9JFrIBKTvrYsxT4P0pGtThYTn++QS5ChHaUov3+zQ==", 1630 | "requires": { 1631 | "moment": "^2.29.1" 1632 | } 1633 | }, 1634 | "file-uri-to-path": { 1635 | "version": "1.0.0", 1636 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 1637 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" 1638 | }, 1639 | "finalhandler": { 1640 | "version": "1.3.1", 1641 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", 1642 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", 1643 | "requires": { 1644 | "debug": "2.6.9", 1645 | "encodeurl": "~2.0.0", 1646 | "escape-html": "~1.0.3", 1647 | "on-finished": "2.4.1", 1648 | "parseurl": "~1.3.3", 1649 | "statuses": "2.0.1", 1650 | "unpipe": "~1.0.0" 1651 | } 1652 | }, 1653 | "flatted": { 1654 | "version": "3.3.1", 1655 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 1656 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" 1657 | }, 1658 | "fn.name": { 1659 | "version": "1.1.0", 1660 | "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", 1661 | "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" 1662 | }, 1663 | "foreground-child": { 1664 | "version": "3.3.0", 1665 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 1666 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1667 | "requires": { 1668 | "cross-spawn": "^7.0.0", 1669 | "signal-exit": "^4.0.1" 1670 | } 1671 | }, 1672 | "forwarded": { 1673 | "version": "0.2.0", 1674 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 1675 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" 1676 | }, 1677 | "fresh": { 1678 | "version": "0.5.2", 1679 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1680 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" 1681 | }, 1682 | "fs": { 1683 | "version": "0.0.2", 1684 | "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.2.tgz", 1685 | "integrity": "sha512-YAiVokMCrSIFZiroB1oz51hPiPRVcUtSa4x2U5RYXyhS9VAPdiFigKbPTnOSq7XY8wd3FIVPYmXpo5lMzFmxgg==" 1686 | }, 1687 | "fs-extra": { 1688 | "version": "8.1.0", 1689 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", 1690 | "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", 1691 | "requires": { 1692 | "graceful-fs": "^4.2.0", 1693 | "jsonfile": "^4.0.0", 1694 | "universalify": "^0.1.0" 1695 | } 1696 | }, 1697 | "fs-minipass": { 1698 | "version": "3.0.3", 1699 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", 1700 | "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", 1701 | "requires": { 1702 | "minipass": "^7.0.3" 1703 | } 1704 | }, 1705 | "fs.realpath": { 1706 | "version": "1.0.0", 1707 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1708 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1709 | }, 1710 | "function-bind": { 1711 | "version": "1.1.2", 1712 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1713 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" 1714 | }, 1715 | "get-intrinsic": { 1716 | "version": "1.2.4", 1717 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1718 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1719 | "requires": { 1720 | "es-errors": "^1.3.0", 1721 | "function-bind": "^1.1.2", 1722 | "has-proto": "^1.0.1", 1723 | "has-symbols": "^1.0.3", 1724 | "hasown": "^2.0.0" 1725 | } 1726 | }, 1727 | "glob": { 1728 | "version": "10.4.5", 1729 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 1730 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1731 | "requires": { 1732 | "foreground-child": "^3.1.0", 1733 | "jackspeak": "^3.1.2", 1734 | "minimatch": "^9.0.4", 1735 | "minipass": "^7.1.2", 1736 | "package-json-from-dist": "^1.0.0", 1737 | "path-scurry": "^1.11.1" 1738 | } 1739 | }, 1740 | "gopd": { 1741 | "version": "1.0.1", 1742 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1743 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1744 | "requires": { 1745 | "get-intrinsic": "^1.1.3" 1746 | } 1747 | }, 1748 | "graceful-fs": { 1749 | "version": "4.2.11", 1750 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1751 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 1752 | }, 1753 | "has-property-descriptors": { 1754 | "version": "1.0.2", 1755 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1756 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1757 | "requires": { 1758 | "es-define-property": "^1.0.0" 1759 | } 1760 | }, 1761 | "has-proto": { 1762 | "version": "1.0.3", 1763 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 1764 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" 1765 | }, 1766 | "has-symbols": { 1767 | "version": "1.0.3", 1768 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1769 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" 1770 | }, 1771 | "hasown": { 1772 | "version": "2.0.2", 1773 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1774 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1775 | "requires": { 1776 | "function-bind": "^1.1.2" 1777 | } 1778 | }, 1779 | "helmet": { 1780 | "version": "3.23.3", 1781 | "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.23.3.tgz", 1782 | "integrity": "sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA==", 1783 | "requires": { 1784 | "depd": "2.0.0", 1785 | "dont-sniff-mimetype": "1.1.0", 1786 | "feature-policy": "0.3.0", 1787 | "helmet-crossdomain": "0.4.0", 1788 | "helmet-csp": "2.10.0", 1789 | "hide-powered-by": "1.1.0", 1790 | "hpkp": "2.0.0", 1791 | "hsts": "2.2.0", 1792 | "nocache": "2.1.0", 1793 | "referrer-policy": "1.2.0", 1794 | "x-xss-protection": "1.3.0" 1795 | } 1796 | }, 1797 | "helmet-crossdomain": { 1798 | "version": "0.4.0", 1799 | "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", 1800 | "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" 1801 | }, 1802 | "helmet-csp": { 1803 | "version": "2.10.0", 1804 | "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz", 1805 | "integrity": "sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==", 1806 | "requires": { 1807 | "bowser": "2.9.0", 1808 | "camelize": "1.0.0", 1809 | "content-security-policy-builder": "2.1.0", 1810 | "dasherize": "2.0.0" 1811 | } 1812 | }, 1813 | "hide-powered-by": { 1814 | "version": "1.1.0", 1815 | "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", 1816 | "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" 1817 | }, 1818 | "hpkp": { 1819 | "version": "2.0.0", 1820 | "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", 1821 | "integrity": "sha512-TaZpC6cO/k3DFsjfzz1LnOobbVSq+J+7WpJxrVtN4L+8+BPQj8iBDRB2Dx49613N+e7/+ZSQ9ra+xZm7Blf4wg==" 1822 | }, 1823 | "hsts": { 1824 | "version": "2.2.0", 1825 | "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", 1826 | "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", 1827 | "requires": { 1828 | "depd": "2.0.0" 1829 | } 1830 | }, 1831 | "http-cache-semantics": { 1832 | "version": "4.1.1", 1833 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", 1834 | "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" 1835 | }, 1836 | "http-errors": { 1837 | "version": "2.0.0", 1838 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 1839 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 1840 | "requires": { 1841 | "depd": "2.0.0", 1842 | "inherits": "2.0.4", 1843 | "setprototypeof": "1.2.0", 1844 | "statuses": "2.0.1", 1845 | "toidentifier": "1.0.1" 1846 | } 1847 | }, 1848 | "http-proxy-agent": { 1849 | "version": "7.0.2", 1850 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", 1851 | "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", 1852 | "requires": { 1853 | "agent-base": "^7.1.0", 1854 | "debug": "^4.3.4" 1855 | }, 1856 | "dependencies": { 1857 | "debug": { 1858 | "version": "4.3.7", 1859 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1860 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1861 | "requires": { 1862 | "ms": "^2.1.3" 1863 | } 1864 | }, 1865 | "ms": { 1866 | "version": "2.1.3", 1867 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1868 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1869 | } 1870 | } 1871 | }, 1872 | "https-proxy-agent": { 1873 | "version": "7.0.5", 1874 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", 1875 | "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", 1876 | "requires": { 1877 | "agent-base": "^7.0.2", 1878 | "debug": "4" 1879 | }, 1880 | "dependencies": { 1881 | "debug": { 1882 | "version": "4.3.7", 1883 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1884 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1885 | "requires": { 1886 | "ms": "^2.1.3" 1887 | } 1888 | }, 1889 | "ms": { 1890 | "version": "2.1.3", 1891 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1892 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1893 | } 1894 | } 1895 | }, 1896 | "iconv-lite": { 1897 | "version": "0.4.24", 1898 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1899 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1900 | "requires": { 1901 | "safer-buffer": ">= 2.1.2 < 3" 1902 | } 1903 | }, 1904 | "imurmurhash": { 1905 | "version": "0.1.4", 1906 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1907 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" 1908 | }, 1909 | "indent-string": { 1910 | "version": "4.0.0", 1911 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", 1912 | "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" 1913 | }, 1914 | "inflight": { 1915 | "version": "1.0.6", 1916 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1917 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1918 | "requires": { 1919 | "once": "^1.3.0", 1920 | "wrappy": "1" 1921 | } 1922 | }, 1923 | "inherits": { 1924 | "version": "2.0.4", 1925 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1926 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1927 | }, 1928 | "interpret": { 1929 | "version": "1.4.0", 1930 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", 1931 | "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" 1932 | }, 1933 | "ip-address": { 1934 | "version": "9.0.5", 1935 | "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", 1936 | "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", 1937 | "requires": { 1938 | "jsbn": "1.1.0", 1939 | "sprintf-js": "^1.1.3" 1940 | } 1941 | }, 1942 | "ipaddr.js": { 1943 | "version": "1.9.1", 1944 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 1945 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 1946 | }, 1947 | "is-arrayish": { 1948 | "version": "0.3.2", 1949 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1950 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 1951 | }, 1952 | "is-core-module": { 1953 | "version": "2.15.1", 1954 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 1955 | "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 1956 | "requires": { 1957 | "hasown": "^2.0.2" 1958 | } 1959 | }, 1960 | "is-fullwidth-code-point": { 1961 | "version": "3.0.0", 1962 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1963 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" 1964 | }, 1965 | "is-lambda": { 1966 | "version": "1.0.1", 1967 | "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", 1968 | "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" 1969 | }, 1970 | "is-stream": { 1971 | "version": "2.0.1", 1972 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 1973 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" 1974 | }, 1975 | "isarray": { 1976 | "version": "1.0.0", 1977 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1978 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" 1979 | }, 1980 | "isexe": { 1981 | "version": "2.0.0", 1982 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1983 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 1984 | }, 1985 | "isstream": { 1986 | "version": "0.1.2", 1987 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1988 | "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" 1989 | }, 1990 | "jackspeak": { 1991 | "version": "3.4.3", 1992 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 1993 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 1994 | "requires": { 1995 | "@isaacs/cliui": "^8.0.2", 1996 | "@pkgjs/parseargs": "^0.11.0" 1997 | } 1998 | }, 1999 | "jsbn": { 2000 | "version": "1.1.0", 2001 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", 2002 | "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" 2003 | }, 2004 | "jsonfile": { 2005 | "version": "4.0.0", 2006 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", 2007 | "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", 2008 | "requires": { 2009 | "graceful-fs": "^4.1.6" 2010 | } 2011 | }, 2012 | "kuler": { 2013 | "version": "2.0.0", 2014 | "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", 2015 | "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" 2016 | }, 2017 | "lodash": { 2018 | "version": "4.17.21", 2019 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2020 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2021 | }, 2022 | "log4js": { 2023 | "version": "6.9.1", 2024 | "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", 2025 | "integrity": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==", 2026 | "requires": { 2027 | "date-format": "^4.0.14", 2028 | "debug": "^4.3.4", 2029 | "flatted": "^3.2.7", 2030 | "rfdc": "^1.3.0", 2031 | "streamroller": "^3.1.5" 2032 | }, 2033 | "dependencies": { 2034 | "debug": { 2035 | "version": "4.3.7", 2036 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 2037 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 2038 | "requires": { 2039 | "ms": "^2.1.3" 2040 | } 2041 | }, 2042 | "ms": { 2043 | "version": "2.1.3", 2044 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2045 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2046 | } 2047 | } 2048 | }, 2049 | "logform": { 2050 | "version": "2.6.1", 2051 | "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.1.tgz", 2052 | "integrity": "sha512-CdaO738xRapbKIMVn2m4F6KTj4j7ooJ8POVnebSgKo3KBz5axNXRAL7ZdRjIV6NOr2Uf4vjtRkxrFETOioCqSA==", 2053 | "requires": { 2054 | "@colors/colors": "1.6.0", 2055 | "@types/triple-beam": "^1.3.2", 2056 | "fecha": "^4.2.0", 2057 | "ms": "^2.1.1", 2058 | "safe-stable-stringify": "^2.3.1", 2059 | "triple-beam": "^1.3.0" 2060 | }, 2061 | "dependencies": { 2062 | "@colors/colors": { 2063 | "version": "1.6.0", 2064 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", 2065 | "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" 2066 | }, 2067 | "ms": { 2068 | "version": "2.1.3", 2069 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2070 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2071 | } 2072 | } 2073 | }, 2074 | "lru-cache": { 2075 | "version": "10.4.3", 2076 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2077 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" 2078 | }, 2079 | "make-fetch-happen": { 2080 | "version": "13.0.1", 2081 | "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz", 2082 | "integrity": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==", 2083 | "requires": { 2084 | "@npmcli/agent": "^2.0.0", 2085 | "cacache": "^18.0.0", 2086 | "http-cache-semantics": "^4.1.1", 2087 | "is-lambda": "^1.0.1", 2088 | "minipass": "^7.0.2", 2089 | "minipass-fetch": "^3.0.0", 2090 | "minipass-flush": "^1.0.5", 2091 | "minipass-pipeline": "^1.2.4", 2092 | "negotiator": "^0.6.3", 2093 | "proc-log": "^4.2.0", 2094 | "promise-retry": "^2.0.1", 2095 | "ssri": "^10.0.0" 2096 | } 2097 | }, 2098 | "media-typer": { 2099 | "version": "0.3.0", 2100 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 2101 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" 2102 | }, 2103 | "merge-descriptors": { 2104 | "version": "1.0.3", 2105 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", 2106 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" 2107 | }, 2108 | "methods": { 2109 | "version": "1.1.2", 2110 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 2111 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" 2112 | }, 2113 | "mime": { 2114 | "version": "1.6.0", 2115 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 2116 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 2117 | }, 2118 | "mime-db": { 2119 | "version": "1.52.0", 2120 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2121 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" 2122 | }, 2123 | "mime-types": { 2124 | "version": "2.1.35", 2125 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2126 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2127 | "requires": { 2128 | "mime-db": "1.52.0" 2129 | } 2130 | }, 2131 | "minimatch": { 2132 | "version": "9.0.5", 2133 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2134 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2135 | "requires": { 2136 | "brace-expansion": "^2.0.1" 2137 | } 2138 | }, 2139 | "minimist": { 2140 | "version": "1.2.8", 2141 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2142 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" 2143 | }, 2144 | "minipass": { 2145 | "version": "7.1.2", 2146 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2147 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" 2148 | }, 2149 | "minipass-collect": { 2150 | "version": "2.0.1", 2151 | "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", 2152 | "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", 2153 | "requires": { 2154 | "minipass": "^7.0.3" 2155 | } 2156 | }, 2157 | "minipass-fetch": { 2158 | "version": "3.0.5", 2159 | "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", 2160 | "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", 2161 | "requires": { 2162 | "encoding": "^0.1.13", 2163 | "minipass": "^7.0.3", 2164 | "minipass-sized": "^1.0.3", 2165 | "minizlib": "^2.1.2" 2166 | } 2167 | }, 2168 | "minipass-flush": { 2169 | "version": "1.0.5", 2170 | "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", 2171 | "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", 2172 | "requires": { 2173 | "minipass": "^3.0.0" 2174 | }, 2175 | "dependencies": { 2176 | "minipass": { 2177 | "version": "3.3.6", 2178 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2179 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2180 | "requires": { 2181 | "yallist": "^4.0.0" 2182 | } 2183 | } 2184 | } 2185 | }, 2186 | "minipass-pipeline": { 2187 | "version": "1.2.4", 2188 | "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", 2189 | "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", 2190 | "requires": { 2191 | "minipass": "^3.0.0" 2192 | }, 2193 | "dependencies": { 2194 | "minipass": { 2195 | "version": "3.3.6", 2196 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2197 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2198 | "requires": { 2199 | "yallist": "^4.0.0" 2200 | } 2201 | } 2202 | } 2203 | }, 2204 | "minipass-sized": { 2205 | "version": "1.0.3", 2206 | "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", 2207 | "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", 2208 | "requires": { 2209 | "minipass": "^3.0.0" 2210 | }, 2211 | "dependencies": { 2212 | "minipass": { 2213 | "version": "3.3.6", 2214 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2215 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2216 | "requires": { 2217 | "yallist": "^4.0.0" 2218 | } 2219 | } 2220 | } 2221 | }, 2222 | "minizlib": { 2223 | "version": "2.1.2", 2224 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 2225 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 2226 | "requires": { 2227 | "minipass": "^3.0.0", 2228 | "yallist": "^4.0.0" 2229 | }, 2230 | "dependencies": { 2231 | "minipass": { 2232 | "version": "3.3.6", 2233 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2234 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2235 | "requires": { 2236 | "yallist": "^4.0.0" 2237 | } 2238 | } 2239 | } 2240 | }, 2241 | "mkdirp": { 2242 | "version": "0.5.6", 2243 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 2244 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 2245 | "requires": { 2246 | "minimist": "^1.2.6" 2247 | } 2248 | }, 2249 | "moment": { 2250 | "version": "2.30.1", 2251 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", 2252 | "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==" 2253 | }, 2254 | "moment-timezone": { 2255 | "version": "0.5.45", 2256 | "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.45.tgz", 2257 | "integrity": "sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==", 2258 | "requires": { 2259 | "moment": "^2.29.4" 2260 | } 2261 | }, 2262 | "ms": { 2263 | "version": "2.0.0", 2264 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2265 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 2266 | }, 2267 | "multer": { 2268 | "version": "1.4.5-lts.1", 2269 | "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", 2270 | "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", 2271 | "requires": { 2272 | "append-field": "^1.0.0", 2273 | "busboy": "^1.0.0", 2274 | "concat-stream": "^1.5.2", 2275 | "mkdirp": "^0.5.4", 2276 | "object-assign": "^4.1.1", 2277 | "type-is": "^1.6.4", 2278 | "xtend": "^4.0.0" 2279 | } 2280 | }, 2281 | "mute-stream": { 2282 | "version": "0.0.8", 2283 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", 2284 | "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" 2285 | }, 2286 | "nan": { 2287 | "version": "2.20.0", 2288 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", 2289 | "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==" 2290 | }, 2291 | "negotiator": { 2292 | "version": "0.6.3", 2293 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 2294 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" 2295 | }, 2296 | "nocache": { 2297 | "version": "2.1.0", 2298 | "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", 2299 | "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" 2300 | }, 2301 | "node-addon-api": { 2302 | "version": "1.7.2", 2303 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", 2304 | "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==" 2305 | }, 2306 | "node-gyp": { 2307 | "version": "10.2.0", 2308 | "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.2.0.tgz", 2309 | "integrity": "sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==", 2310 | "requires": { 2311 | "env-paths": "^2.2.0", 2312 | "exponential-backoff": "^3.1.1", 2313 | "glob": "^10.3.10", 2314 | "graceful-fs": "^4.2.6", 2315 | "make-fetch-happen": "^13.0.0", 2316 | "nopt": "^7.0.0", 2317 | "proc-log": "^4.1.0", 2318 | "semver": "^7.3.5", 2319 | "tar": "^6.2.1", 2320 | "which": "^4.0.0" 2321 | }, 2322 | "dependencies": { 2323 | "isexe": { 2324 | "version": "3.1.1", 2325 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", 2326 | "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" 2327 | }, 2328 | "which": { 2329 | "version": "4.0.0", 2330 | "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", 2331 | "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", 2332 | "requires": { 2333 | "isexe": "^3.1.1" 2334 | } 2335 | } 2336 | } 2337 | }, 2338 | "nopt": { 2339 | "version": "7.2.1", 2340 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", 2341 | "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", 2342 | "requires": { 2343 | "abbrev": "^2.0.0" 2344 | } 2345 | }, 2346 | "object-assign": { 2347 | "version": "4.1.1", 2348 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2349 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" 2350 | }, 2351 | "object-hash": { 2352 | "version": "2.2.0", 2353 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 2354 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==" 2355 | }, 2356 | "object-inspect": { 2357 | "version": "1.13.2", 2358 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", 2359 | "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" 2360 | }, 2361 | "on-finished": { 2362 | "version": "2.4.1", 2363 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 2364 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 2365 | "requires": { 2366 | "ee-first": "1.1.1" 2367 | } 2368 | }, 2369 | "once": { 2370 | "version": "1.4.0", 2371 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2372 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2373 | "requires": { 2374 | "wrappy": "1" 2375 | } 2376 | }, 2377 | "one-time": { 2378 | "version": "1.0.0", 2379 | "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", 2380 | "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", 2381 | "requires": { 2382 | "fn.name": "1.x.x" 2383 | } 2384 | }, 2385 | "p-map": { 2386 | "version": "4.0.0", 2387 | "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", 2388 | "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", 2389 | "requires": { 2390 | "aggregate-error": "^3.0.0" 2391 | } 2392 | }, 2393 | "package-json-from-dist": { 2394 | "version": "1.0.1", 2395 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2396 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" 2397 | }, 2398 | "parseurl": { 2399 | "version": "1.3.3", 2400 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2401 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 2402 | }, 2403 | "path-is-absolute": { 2404 | "version": "1.0.1", 2405 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2406 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" 2407 | }, 2408 | "path-key": { 2409 | "version": "3.1.1", 2410 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2411 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" 2412 | }, 2413 | "path-parse": { 2414 | "version": "1.0.7", 2415 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2416 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 2417 | }, 2418 | "path-scurry": { 2419 | "version": "1.11.1", 2420 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2421 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2422 | "requires": { 2423 | "lru-cache": "^10.2.0", 2424 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2425 | } 2426 | }, 2427 | "path-to-regexp": { 2428 | "version": "0.1.10", 2429 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", 2430 | "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" 2431 | }, 2432 | "proc-log": { 2433 | "version": "4.2.0", 2434 | "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", 2435 | "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==" 2436 | }, 2437 | "process-nextick-args": { 2438 | "version": "2.0.1", 2439 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2440 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 2441 | }, 2442 | "promise-retry": { 2443 | "version": "2.0.1", 2444 | "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", 2445 | "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", 2446 | "requires": { 2447 | "err-code": "^2.0.2", 2448 | "retry": "^0.12.0" 2449 | } 2450 | }, 2451 | "prompt": { 2452 | "version": "1.3.0", 2453 | "resolved": "https://registry.npmjs.org/prompt/-/prompt-1.3.0.tgz", 2454 | "integrity": "sha512-ZkaRWtaLBZl7KKAKndKYUL8WqNT+cQHKRZnT4RYYms48jQkFw3rrBL+/N5K/KtdEveHkxs982MX2BkDKub2ZMg==", 2455 | "requires": { 2456 | "@colors/colors": "1.5.0", 2457 | "async": "3.2.3", 2458 | "read": "1.0.x", 2459 | "revalidator": "0.1.x", 2460 | "winston": "2.x" 2461 | } 2462 | }, 2463 | "proxy-addr": { 2464 | "version": "2.0.7", 2465 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 2466 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 2467 | "requires": { 2468 | "forwarded": "0.2.0", 2469 | "ipaddr.js": "1.9.1" 2470 | } 2471 | }, 2472 | "qs": { 2473 | "version": "6.13.0", 2474 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", 2475 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 2476 | "requires": { 2477 | "side-channel": "^1.0.6" 2478 | } 2479 | }, 2480 | "range-parser": { 2481 | "version": "1.2.1", 2482 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2483 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 2484 | }, 2485 | "raw-body": { 2486 | "version": "2.5.2", 2487 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 2488 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 2489 | "requires": { 2490 | "bytes": "3.1.2", 2491 | "http-errors": "2.0.0", 2492 | "iconv-lite": "0.4.24", 2493 | "unpipe": "1.0.0" 2494 | } 2495 | }, 2496 | "read": { 2497 | "version": "1.0.7", 2498 | "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", 2499 | "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", 2500 | "requires": { 2501 | "mute-stream": "~0.0.4" 2502 | } 2503 | }, 2504 | "readable-stream": { 2505 | "version": "2.3.8", 2506 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 2507 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 2508 | "requires": { 2509 | "core-util-is": "~1.0.0", 2510 | "inherits": "~2.0.3", 2511 | "isarray": "~1.0.0", 2512 | "process-nextick-args": "~2.0.0", 2513 | "safe-buffer": "~5.1.1", 2514 | "string_decoder": "~1.1.1", 2515 | "util-deprecate": "~1.0.1" 2516 | }, 2517 | "dependencies": { 2518 | "safe-buffer": { 2519 | "version": "5.1.2", 2520 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2521 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2522 | } 2523 | } 2524 | }, 2525 | "rechoir": { 2526 | "version": "0.6.2", 2527 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", 2528 | "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", 2529 | "requires": { 2530 | "resolve": "^1.1.6" 2531 | } 2532 | }, 2533 | "referrer-policy": { 2534 | "version": "1.2.0", 2535 | "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", 2536 | "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" 2537 | }, 2538 | "resolve": { 2539 | "version": "1.22.8", 2540 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 2541 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 2542 | "requires": { 2543 | "is-core-module": "^2.13.0", 2544 | "path-parse": "^1.0.7", 2545 | "supports-preserve-symlinks-flag": "^1.0.0" 2546 | } 2547 | }, 2548 | "retry": { 2549 | "version": "0.12.0", 2550 | "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", 2551 | "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" 2552 | }, 2553 | "revalidator": { 2554 | "version": "0.1.8", 2555 | "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", 2556 | "integrity": "sha512-xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg==" 2557 | }, 2558 | "rfdc": { 2559 | "version": "1.4.1", 2560 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 2561 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" 2562 | }, 2563 | "safe-buffer": { 2564 | "version": "5.2.1", 2565 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2566 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 2567 | }, 2568 | "safe-stable-stringify": { 2569 | "version": "2.5.0", 2570 | "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", 2571 | "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==" 2572 | }, 2573 | "safer-buffer": { 2574 | "version": "2.1.2", 2575 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2576 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2577 | }, 2578 | "scmp": { 2579 | "version": "2.0.0", 2580 | "resolved": "https://registry.npmjs.org/scmp/-/scmp-2.0.0.tgz", 2581 | "integrity": "sha512-FaHoAk75AYhT+rnBmMpkvHSIcQma4OHzYXOhn1XXtgNomi0FTV8YEXYuh2EIdCg5IKMVyFbXeJT4Cn96+fzABg==" 2582 | }, 2583 | "semver": { 2584 | "version": "7.6.3", 2585 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2586 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" 2587 | }, 2588 | "send": { 2589 | "version": "0.19.0", 2590 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", 2591 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 2592 | "requires": { 2593 | "debug": "2.6.9", 2594 | "depd": "2.0.0", 2595 | "destroy": "1.2.0", 2596 | "encodeurl": "~1.0.2", 2597 | "escape-html": "~1.0.3", 2598 | "etag": "~1.8.1", 2599 | "fresh": "0.5.2", 2600 | "http-errors": "2.0.0", 2601 | "mime": "1.6.0", 2602 | "ms": "2.1.3", 2603 | "on-finished": "2.4.1", 2604 | "range-parser": "~1.2.1", 2605 | "statuses": "2.0.1" 2606 | }, 2607 | "dependencies": { 2608 | "encodeurl": { 2609 | "version": "1.0.2", 2610 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 2611 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" 2612 | }, 2613 | "ms": { 2614 | "version": "2.1.3", 2615 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2616 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2617 | } 2618 | } 2619 | }, 2620 | "serve-static": { 2621 | "version": "1.16.2", 2622 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", 2623 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 2624 | "requires": { 2625 | "encodeurl": "~2.0.0", 2626 | "escape-html": "~1.0.3", 2627 | "parseurl": "~1.3.3", 2628 | "send": "0.19.0" 2629 | } 2630 | }, 2631 | "set-function-length": { 2632 | "version": "1.2.2", 2633 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 2634 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 2635 | "requires": { 2636 | "define-data-property": "^1.1.4", 2637 | "es-errors": "^1.3.0", 2638 | "function-bind": "^1.1.2", 2639 | "get-intrinsic": "^1.2.4", 2640 | "gopd": "^1.0.1", 2641 | "has-property-descriptors": "^1.0.2" 2642 | } 2643 | }, 2644 | "setprototypeof": { 2645 | "version": "1.2.0", 2646 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 2647 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 2648 | }, 2649 | "shebang-command": { 2650 | "version": "2.0.0", 2651 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2652 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2653 | "requires": { 2654 | "shebang-regex": "^3.0.0" 2655 | } 2656 | }, 2657 | "shebang-regex": { 2658 | "version": "3.0.0", 2659 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2660 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" 2661 | }, 2662 | "shelljs": { 2663 | "version": "0.8.5", 2664 | "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", 2665 | "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", 2666 | "requires": { 2667 | "glob": "^7.0.0", 2668 | "interpret": "^1.0.0", 2669 | "rechoir": "^0.6.2" 2670 | }, 2671 | "dependencies": { 2672 | "brace-expansion": { 2673 | "version": "1.1.11", 2674 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2675 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2676 | "requires": { 2677 | "balanced-match": "^1.0.0", 2678 | "concat-map": "0.0.1" 2679 | } 2680 | }, 2681 | "glob": { 2682 | "version": "7.2.3", 2683 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2684 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2685 | "requires": { 2686 | "fs.realpath": "^1.0.0", 2687 | "inflight": "^1.0.4", 2688 | "inherits": "2", 2689 | "minimatch": "^3.1.1", 2690 | "once": "^1.3.0", 2691 | "path-is-absolute": "^1.0.0" 2692 | } 2693 | }, 2694 | "minimatch": { 2695 | "version": "3.1.2", 2696 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2697 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2698 | "requires": { 2699 | "brace-expansion": "^1.1.7" 2700 | } 2701 | } 2702 | } 2703 | }, 2704 | "side-channel": { 2705 | "version": "1.0.6", 2706 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 2707 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 2708 | "requires": { 2709 | "call-bind": "^1.0.7", 2710 | "es-errors": "^1.3.0", 2711 | "get-intrinsic": "^1.2.4", 2712 | "object-inspect": "^1.13.1" 2713 | } 2714 | }, 2715 | "signal-exit": { 2716 | "version": "4.1.0", 2717 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2718 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" 2719 | }, 2720 | "simple-encryptor": { 2721 | "version": "3.0.0", 2722 | "resolved": "https://registry.npmjs.org/simple-encryptor/-/simple-encryptor-3.0.0.tgz", 2723 | "integrity": "sha512-xRgj9pU3Gfkl+6iBYRoXM4BdEwY4bLdL1W0tp7AjGTA7Hytv5iwmB5tvJh6K2iVszvPPYimQjLFV8jRZz3fJ1g==", 2724 | "requires": { 2725 | "scmp": "2.0.0" 2726 | } 2727 | }, 2728 | "simple-swizzle": { 2729 | "version": "0.2.2", 2730 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2731 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 2732 | "requires": { 2733 | "is-arrayish": "^0.3.1" 2734 | } 2735 | }, 2736 | "smart-buffer": { 2737 | "version": "4.2.0", 2738 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", 2739 | "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" 2740 | }, 2741 | "socks": { 2742 | "version": "2.8.3", 2743 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", 2744 | "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", 2745 | "requires": { 2746 | "ip-address": "^9.0.5", 2747 | "smart-buffer": "^4.2.0" 2748 | } 2749 | }, 2750 | "socks-proxy-agent": { 2751 | "version": "8.0.4", 2752 | "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", 2753 | "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", 2754 | "requires": { 2755 | "agent-base": "^7.1.1", 2756 | "debug": "^4.3.4", 2757 | "socks": "^2.8.3" 2758 | }, 2759 | "dependencies": { 2760 | "debug": { 2761 | "version": "4.3.7", 2762 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 2763 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 2764 | "requires": { 2765 | "ms": "^2.1.3" 2766 | } 2767 | }, 2768 | "ms": { 2769 | "version": "2.1.3", 2770 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2771 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2772 | } 2773 | } 2774 | }, 2775 | "sprintf-js": { 2776 | "version": "1.1.3", 2777 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", 2778 | "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" 2779 | }, 2780 | "ssri": { 2781 | "version": "10.0.6", 2782 | "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", 2783 | "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", 2784 | "requires": { 2785 | "minipass": "^7.0.3" 2786 | } 2787 | }, 2788 | "stack-trace": { 2789 | "version": "0.0.10", 2790 | "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", 2791 | "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" 2792 | }, 2793 | "statuses": { 2794 | "version": "2.0.1", 2795 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 2796 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" 2797 | }, 2798 | "streamroller": { 2799 | "version": "3.1.5", 2800 | "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", 2801 | "integrity": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==", 2802 | "requires": { 2803 | "date-format": "^4.0.14", 2804 | "debug": "^4.3.4", 2805 | "fs-extra": "^8.1.0" 2806 | }, 2807 | "dependencies": { 2808 | "debug": { 2809 | "version": "4.3.7", 2810 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 2811 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 2812 | "requires": { 2813 | "ms": "^2.1.3" 2814 | } 2815 | }, 2816 | "ms": { 2817 | "version": "2.1.3", 2818 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2819 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2820 | } 2821 | } 2822 | }, 2823 | "streamsearch": { 2824 | "version": "1.1.0", 2825 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 2826 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" 2827 | }, 2828 | "string-width": { 2829 | "version": "5.1.2", 2830 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2831 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2832 | "requires": { 2833 | "eastasianwidth": "^0.2.0", 2834 | "emoji-regex": "^9.2.2", 2835 | "strip-ansi": "^7.0.1" 2836 | } 2837 | }, 2838 | "string-width-cjs": { 2839 | "version": "npm:string-width@4.2.3", 2840 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2841 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2842 | "requires": { 2843 | "emoji-regex": "^8.0.0", 2844 | "is-fullwidth-code-point": "^3.0.0", 2845 | "strip-ansi": "^6.0.1" 2846 | }, 2847 | "dependencies": { 2848 | "ansi-regex": { 2849 | "version": "5.0.1", 2850 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2851 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" 2852 | }, 2853 | "emoji-regex": { 2854 | "version": "8.0.0", 2855 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2856 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 2857 | }, 2858 | "strip-ansi": { 2859 | "version": "6.0.1", 2860 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2861 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2862 | "requires": { 2863 | "ansi-regex": "^5.0.1" 2864 | } 2865 | } 2866 | } 2867 | }, 2868 | "string_decoder": { 2869 | "version": "1.1.1", 2870 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2871 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2872 | "requires": { 2873 | "safe-buffer": "~5.1.0" 2874 | }, 2875 | "dependencies": { 2876 | "safe-buffer": { 2877 | "version": "5.1.2", 2878 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2879 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2880 | } 2881 | } 2882 | }, 2883 | "strip-ansi": { 2884 | "version": "7.1.0", 2885 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2886 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2887 | "requires": { 2888 | "ansi-regex": "^6.0.1" 2889 | } 2890 | }, 2891 | "strip-ansi-cjs": { 2892 | "version": "npm:strip-ansi@6.0.1", 2893 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2894 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2895 | "requires": { 2896 | "ansi-regex": "^5.0.1" 2897 | }, 2898 | "dependencies": { 2899 | "ansi-regex": { 2900 | "version": "5.0.1", 2901 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2902 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" 2903 | } 2904 | } 2905 | }, 2906 | "strnum": { 2907 | "version": "1.0.5", 2908 | "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", 2909 | "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" 2910 | }, 2911 | "supports-preserve-symlinks-flag": { 2912 | "version": "1.0.0", 2913 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2914 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" 2915 | }, 2916 | "tar": { 2917 | "version": "6.2.1", 2918 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 2919 | "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 2920 | "requires": { 2921 | "chownr": "^2.0.0", 2922 | "fs-minipass": "^2.0.0", 2923 | "minipass": "^5.0.0", 2924 | "minizlib": "^2.1.1", 2925 | "mkdirp": "^1.0.3", 2926 | "yallist": "^4.0.0" 2927 | }, 2928 | "dependencies": { 2929 | "fs-minipass": { 2930 | "version": "2.1.0", 2931 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 2932 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 2933 | "requires": { 2934 | "minipass": "^3.0.0" 2935 | }, 2936 | "dependencies": { 2937 | "minipass": { 2938 | "version": "3.3.6", 2939 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 2940 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 2941 | "requires": { 2942 | "yallist": "^4.0.0" 2943 | } 2944 | } 2945 | } 2946 | }, 2947 | "minipass": { 2948 | "version": "5.0.0", 2949 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 2950 | "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" 2951 | }, 2952 | "mkdirp": { 2953 | "version": "1.0.4", 2954 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 2955 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" 2956 | } 2957 | } 2958 | }, 2959 | "text-hex": { 2960 | "version": "1.0.0", 2961 | "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", 2962 | "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" 2963 | }, 2964 | "toidentifier": { 2965 | "version": "1.0.1", 2966 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 2967 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" 2968 | }, 2969 | "triple-beam": { 2970 | "version": "1.4.1", 2971 | "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", 2972 | "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==" 2973 | }, 2974 | "tslib": { 2975 | "version": "2.7.0", 2976 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", 2977 | "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" 2978 | }, 2979 | "type-is": { 2980 | "version": "1.6.18", 2981 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2982 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2983 | "requires": { 2984 | "media-typer": "0.3.0", 2985 | "mime-types": "~2.1.24" 2986 | } 2987 | }, 2988 | "typedarray": { 2989 | "version": "0.0.6", 2990 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", 2991 | "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" 2992 | }, 2993 | "unique-filename": { 2994 | "version": "3.0.0", 2995 | "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", 2996 | "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", 2997 | "requires": { 2998 | "unique-slug": "^4.0.0" 2999 | } 3000 | }, 3001 | "unique-slug": { 3002 | "version": "4.0.0", 3003 | "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", 3004 | "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", 3005 | "requires": { 3006 | "imurmurhash": "^0.1.4" 3007 | } 3008 | }, 3009 | "universalify": { 3010 | "version": "0.1.2", 3011 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", 3012 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" 3013 | }, 3014 | "unpipe": { 3015 | "version": "1.0.0", 3016 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 3017 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" 3018 | }, 3019 | "util-deprecate": { 3020 | "version": "1.0.2", 3021 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3022 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 3023 | }, 3024 | "utils-merge": { 3025 | "version": "1.0.1", 3026 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 3027 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" 3028 | }, 3029 | "uuid": { 3030 | "version": "9.0.1", 3031 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", 3032 | "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" 3033 | }, 3034 | "vary": { 3035 | "version": "1.1.2", 3036 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 3037 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" 3038 | }, 3039 | "which": { 3040 | "version": "2.0.2", 3041 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3042 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3043 | "requires": { 3044 | "isexe": "^2.0.0" 3045 | } 3046 | }, 3047 | "wickrio-bot-api": { 3048 | "version": "7.1.3", 3049 | "resolved": "https://registry.npmjs.org/wickrio-bot-api/-/wickrio-bot-api-7.1.3.tgz", 3050 | "integrity": "sha512-MWxU2NR/JmPLM1o5+1gB7M4L+rbxmKcU8fhOR17xO/PaIVenVvIz3mr+QRmRYOUE5QD5JO7+QZIV9+L1rTcGAQ==", 3051 | "requires": { 3052 | "dotenv": "^8.2.0", 3053 | "fs": "0.0.2", 3054 | "simple-encryptor": "^3.0.0", 3055 | "wickrio_addon": "7.1.x", 3056 | "winston": "^3.3.3", 3057 | "winston-daily-rotate-file": "^4.5.5" 3058 | }, 3059 | "dependencies": { 3060 | "@colors/colors": { 3061 | "version": "1.6.0", 3062 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", 3063 | "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==" 3064 | }, 3065 | "readable-stream": { 3066 | "version": "3.6.2", 3067 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3068 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3069 | "requires": { 3070 | "inherits": "^2.0.3", 3071 | "string_decoder": "^1.1.1", 3072 | "util-deprecate": "^1.0.1" 3073 | } 3074 | }, 3075 | "winston": { 3076 | "version": "3.14.2", 3077 | "resolved": "https://registry.npmjs.org/winston/-/winston-3.14.2.tgz", 3078 | "integrity": "sha512-CO8cdpBB2yqzEf8v895L+GNKYJiEq8eKlHU38af3snQBQ+sdAIUepjMSguOIJC7ICbzm0ZI+Af2If4vIJrtmOg==", 3079 | "requires": { 3080 | "@colors/colors": "^1.6.0", 3081 | "@dabh/diagnostics": "^2.0.2", 3082 | "async": "^3.2.3", 3083 | "is-stream": "^2.0.0", 3084 | "logform": "^2.6.0", 3085 | "one-time": "^1.0.0", 3086 | "readable-stream": "^3.4.0", 3087 | "safe-stable-stringify": "^2.3.1", 3088 | "stack-trace": "0.0.x", 3089 | "triple-beam": "^1.3.0", 3090 | "winston-transport": "^4.7.0" 3091 | } 3092 | } 3093 | } 3094 | }, 3095 | "wickrio_addon": { 3096 | "version": "7.1.2", 3097 | "resolved": "https://registry.npmjs.org/wickrio_addon/-/wickrio_addon-7.1.2.tgz", 3098 | "integrity": "sha512-N85wtkb17Ridz1T7RGyMLuh3tJuIajIlpHsx1/J2C0SlJ2QC/rnnudhqjLXEJfqQh0V3WKYtlWzOabsX6P5OFw==", 3099 | "requires": { 3100 | "@aws-sdk/client-sqs": "^3.272.0", 3101 | "async-mutex": "^0.5.0", 3102 | "deasync": "^0.1.29", 3103 | "nan": "^2.13.2", 3104 | "zeromq": "6.0.4" 3105 | } 3106 | }, 3107 | "winston": { 3108 | "version": "2.4.7", 3109 | "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz", 3110 | "integrity": "sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==", 3111 | "requires": { 3112 | "async": "^2.6.4", 3113 | "colors": "1.0.x", 3114 | "cycle": "1.0.x", 3115 | "eyes": "0.1.x", 3116 | "isstream": "0.1.x", 3117 | "stack-trace": "0.0.x" 3118 | }, 3119 | "dependencies": { 3120 | "async": { 3121 | "version": "2.6.4", 3122 | "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", 3123 | "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", 3124 | "requires": { 3125 | "lodash": "^4.17.14" 3126 | } 3127 | } 3128 | } 3129 | }, 3130 | "winston-daily-rotate-file": { 3131 | "version": "4.7.1", 3132 | "resolved": "https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.7.1.tgz", 3133 | "integrity": "sha512-7LGPiYGBPNyGHLn9z33i96zx/bd71pjBn9tqQzO3I4Tayv94WPmBNwKC7CO1wPHdP9uvu+Md/1nr6VSH9h0iaA==", 3134 | "requires": { 3135 | "file-stream-rotator": "^0.6.1", 3136 | "object-hash": "^2.0.1", 3137 | "triple-beam": "^1.3.0", 3138 | "winston-transport": "^4.4.0" 3139 | } 3140 | }, 3141 | "winston-transport": { 3142 | "version": "4.7.1", 3143 | "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.1.tgz", 3144 | "integrity": "sha512-wQCXXVgfv/wUPOfb2x0ruxzwkcZfxcktz6JIMUaPLmcNhO4bZTwA/WtDWK74xV3F2dKu8YadrFv0qhwYjVEwhA==", 3145 | "requires": { 3146 | "logform": "^2.6.1", 3147 | "readable-stream": "^3.6.2", 3148 | "triple-beam": "^1.3.0" 3149 | }, 3150 | "dependencies": { 3151 | "readable-stream": { 3152 | "version": "3.6.2", 3153 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3154 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3155 | "requires": { 3156 | "inherits": "^2.0.3", 3157 | "string_decoder": "^1.1.1", 3158 | "util-deprecate": "^1.0.1" 3159 | } 3160 | } 3161 | } 3162 | }, 3163 | "wrap-ansi": { 3164 | "version": "8.1.0", 3165 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3166 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3167 | "requires": { 3168 | "ansi-styles": "^6.1.0", 3169 | "string-width": "^5.0.1", 3170 | "strip-ansi": "^7.0.1" 3171 | } 3172 | }, 3173 | "wrap-ansi-cjs": { 3174 | "version": "npm:wrap-ansi@7.0.0", 3175 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3176 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3177 | "requires": { 3178 | "ansi-styles": "^4.0.0", 3179 | "string-width": "^4.1.0", 3180 | "strip-ansi": "^6.0.0" 3181 | }, 3182 | "dependencies": { 3183 | "ansi-regex": { 3184 | "version": "5.0.1", 3185 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3186 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" 3187 | }, 3188 | "ansi-styles": { 3189 | "version": "4.3.0", 3190 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3191 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3192 | "requires": { 3193 | "color-convert": "^2.0.1" 3194 | } 3195 | }, 3196 | "emoji-regex": { 3197 | "version": "8.0.0", 3198 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3199 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 3200 | }, 3201 | "string-width": { 3202 | "version": "4.2.3", 3203 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3204 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3205 | "requires": { 3206 | "emoji-regex": "^8.0.0", 3207 | "is-fullwidth-code-point": "^3.0.0", 3208 | "strip-ansi": "^6.0.1" 3209 | } 3210 | }, 3211 | "strip-ansi": { 3212 | "version": "6.0.1", 3213 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3214 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3215 | "requires": { 3216 | "ansi-regex": "^5.0.1" 3217 | } 3218 | } 3219 | } 3220 | }, 3221 | "wrappy": { 3222 | "version": "1.0.2", 3223 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3224 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3225 | }, 3226 | "x-xss-protection": { 3227 | "version": "1.3.0", 3228 | "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", 3229 | "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" 3230 | }, 3231 | "xtend": { 3232 | "version": "4.0.2", 3233 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 3234 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 3235 | }, 3236 | "yallist": { 3237 | "version": "4.0.0", 3238 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3239 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 3240 | }, 3241 | "zeromq": { 3242 | "version": "6.0.4", 3243 | "resolved": "https://registry.npmjs.org/zeromq/-/zeromq-6.0.4.tgz", 3244 | "integrity": "sha512-VEkrYixtqrFmkV2YTJDUmOR3qNJoG/9U+ETxw4LcUNqoJ22AdIo/Wv5asgP1oaV1PIziimaOitVqWz4+j9YJsQ==", 3245 | "requires": { 3246 | "@aminya/node-gyp-build": "4.8.1-aminya.1", 3247 | "cross-env": "^7.0.3", 3248 | "node-addon-api": "^7.1.0", 3249 | "node-gyp": "^10.2.0", 3250 | "shelljs": "^0.8.5" 3251 | }, 3252 | "dependencies": { 3253 | "node-addon-api": { 3254 | "version": "7.1.1", 3255 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", 3256 | "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" 3257 | } 3258 | } 3259 | } 3260 | } 3261 | } 3262 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wickrio_web_interface", 3 | "version": "6.48.3", 4 | "description": "WickrIO Node.JS API Web Interface", 5 | "main": "web_interface.js", 6 | "author": "Paul Cushman (pcushman@wickr.com)", 7 | "license": "ISC", 8 | "dependencies": { 9 | "body-parser": "^1.19.0", 10 | "cron": "^1.7.1", 11 | "csv-writer": "^1.5.0", 12 | "dotenv": "^8.2.0", 13 | "express": "^4.17.1", 14 | "fs": "0.0.2", 15 | "helmet": "^3.20.0", 16 | "log4js": "^6.6.1", 17 | "multer": "^1.4.5-lts.1", 18 | "prompt": "^1.0.0", 19 | "wickrio-bot-api": "7.1.x" 20 | }, 21 | "scripts": { 22 | "start": "nohup wpm2 start --no-metrics ./wpm.json >>wpm2.output 2>&1 & echo $! > $(cat pidLocation.json)", 23 | "stop": "kill $(cat $(cat pidLocation.json))", 24 | "restart": "kill $(cat $(cat pidLocation.json)) && nohup wpm2 start --no-metrics ./wpm.json >>wpm2.output 2>&1 & echo $! > $(cat pidLocation.json)" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "https://github.com/WickrInc/wickrio_web_interface" 29 | }, 30 | "keywords": [ 31 | "wickr", 32 | "wickrio", 33 | "wickrbot", 34 | "bot", 35 | "bots", 36 | "secure", 37 | "messaging", 38 | "api" 39 | ], 40 | "database": true 41 | } 42 | -------------------------------------------------------------------------------- /processes.json: -------------------------------------------------------------------------------- 1 | { 2 | "apps": [{ 3 | "name": "WickrIO-Web-Interface", 4 | "args": [], 5 | "script": "node web_interface.js", 6 | "exec_interpreter": "none", 7 | "autorestart": false, 8 | "watch": [ 9 | "package.json" 10 | ], 11 | "ignore_watch": [ 12 | ".git" 13 | ], 14 | "env": { 15 | "tokens": {} 16 | } 17 | }] 18 | } 19 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [ -f "/usr/local/nvm/nvm.sh" ]; then 3 | . /usr/local/nvm/nvm.sh 4 | fi 5 | npm start 6 | -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if [ -f "/usr/local/nvm/nvm.sh" ]; then 3 | . /usr/local/nvm/nvm.sh 4 | fi 5 | 6 | npm stop 7 | -------------------------------------------------------------------------------- /upgrade.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # This script copies the data from an older version of a bot to a newer installation, and copies to older one to a folder ending with '.old_Version' 5 | # 6 | # Usage: `./upgrade.sh OLD_BOT_LOCATION NEW_BOT_LOCATION` 7 | # 8 | # 9 | # NOTE: when doing an upgrade you have to use the same bot client for the integration since only the bot 10 | # that encrypted the config values and user database can decrypt them as well 11 | # 12 | 13 | if [ "$#" -ne 2 ] 14 | then 15 | echo "Usage: $0 " 16 | exit 1 17 | fi 18 | 19 | if ! [ -d "$1" ] || ! [ -d "$2" ] 20 | then 21 | echo "Both locations should be directories!" 22 | exit 1 23 | fi 24 | 25 | # 26 | # Save the input values: 27 | # Example: 28 | # old location: '/opt/WickrIO/clients//integration/wickrio_web_interface' 29 | # new location: '/opt/WickrIO/clients//integration/wickrio_web_interface.new' 30 | # 31 | export OLD_BOT_LOCATION=$1 32 | export NEW_BOT_LOCATION=$2 33 | cd $OLD_BOT_LOCATION 34 | 35 | # 36 | # Copy the json data files to the new software location 37 | # 38 | set +e 39 | cp -f client_bot_info.txt processes.json $NEW_BOT_LOCATION 40 | set -e 41 | 42 | # 43 | # Copy the log files to the new software location 44 | # 45 | set +e 46 | cp -rf logs $NEW_BOT_LOCATION 47 | set -e 48 | # 49 | # Move the OLD installation to a saved directory 50 | # Remove a previous one if necessary 51 | # 52 | cd .. 53 | echo $PWD 54 | ls 55 | rm -rf wickrio_web_interface.old_Version 56 | mv $OLD_BOT_LOCATION wickrio_web_interface.old_Version 57 | 58 | # 59 | # Move the NEW installation to the bot's integration directory 60 | # 61 | cd $NEW_BOT_LOCATION/.. 62 | mv $NEW_BOT_LOCATION $OLD_BOT_LOCATION 63 | 64 | -------------------------------------------------------------------------------- /web_interface.js: -------------------------------------------------------------------------------- 1 | const express = require("express") 2 | const https = require("https") 3 | const bodyParser = require("body-parser") 4 | const helmet = require("helmet") 5 | const WickrIOBotAPI = require("wickrio-bot-api") 6 | const fs = require("fs") 7 | const os = require("os") 8 | const app = express() 9 | const logger = require("./logger") 10 | app.use(helmet()) //security http headers 11 | const multer = require("multer") 12 | 13 | const bot = new WickrIOBotAPI.WickrIOBot() 14 | const WickrIOAPI = bot.apiService().WickrIOAPI; 15 | 16 | process.title = "wickrioWebApi" 17 | process.stdin.resume() //so the program will not close instantly 18 | process.setMaxListeners(0) 19 | 20 | async function exitHandler(options, err) { 21 | try { 22 | var closed = await bot.close() 23 | if (err || options.exit) { 24 | logger.info("Exit reason:", err) 25 | process.exit() 26 | } else if (options.pid) { 27 | process.kill(process.pid) 28 | } 29 | } catch (err) { 30 | logger.error(err) 31 | } 32 | } 33 | 34 | //catches ctrl+c and stop.sh events 35 | process.on("SIGINT", exitHandler.bind(null, { exit: true })) 36 | 37 | // catches "kill pid" (for example: nodemon restart) 38 | process.on("SIGUSR1", exitHandler.bind(null, { pid: true })) 39 | process.on("SIGUSR2", exitHandler.bind(null, { pid: true })) 40 | 41 | //catches uncaught exceptions 42 | process.on("uncaughtException", exitHandler.bind(null, { exit: true })) 43 | 44 | var bot_username, 45 | bot_port, 46 | bot_api_key, 47 | bot_api_auth_token, 48 | ssl_key_location, 49 | ssl_crt_location 50 | 51 | async function main() { 52 | bot.processesJsonToProcessEnv() 53 | try { 54 | var tokens = JSON.parse(process.env.tokens) 55 | var status = await bot.start(tokens.WICKRIO_BOT_NAME.value) 56 | if (!status) { 57 | exitHandler(null, { 58 | exit: true, 59 | reason: "Client not able to start" 60 | }) 61 | } 62 | } catch (err) { 63 | logger.error(err) 64 | } 65 | 66 | bot.setAdminOnly(false) 67 | 68 | bot_username = tokens.WICKRIO_BOT_NAME.value 69 | bot_port = tokens.BOT_PORT.value 70 | bot_api_key = tokens.BOT_API_KEY.value 71 | bot_api_auth_token = tokens.BOT_API_AUTH_TOKEN.value 72 | https_choice = tokens.HTTPS_CHOICE.value 73 | 74 | logger.info("bot_username=" + bot_username) 75 | logger.info("bot_port=" + bot_port) 76 | logger.info("https_choice=" + https_choice) 77 | 78 | logger.verbose(os.networkInterfaces()) 79 | 80 | if (https_choice === "yes" || https_choice === "y") { 81 | ssl_key_location = tokens.SSL_KEY_LOCATION.value 82 | ssl_crt_location = tokens.SSL_CRT_LOCATION.value 83 | 84 | try { 85 | if (!fs.existsSync(ssl_key_location)) { 86 | exitHandler(null, { 87 | exit: true, 88 | reason: "ERROR: Cannot access " + ssl_key_location 89 | }) 90 | } 91 | } catch (err) { 92 | console.error(err) 93 | } 94 | 95 | try { 96 | if (!fs.existsSync(ssl_crt_location)) { 97 | exitHandler(null, { 98 | exit: true, 99 | reason: "ERROR: Cannot access " + ssl_crt_location 100 | }) 101 | } 102 | } catch (err) { 103 | console.error(err) 104 | } 105 | 106 | const credentials = { 107 | key: fs.readFileSync(ssl_key_location, "utf8"), 108 | cert: fs.readFileSync(ssl_crt_location, "utf8") 109 | } 110 | 111 | https.createServer(credentials, app).listen(bot_port, () => { 112 | console.log("HTTPS Server running on port", bot_port) 113 | }) 114 | } else { 115 | app.listen(bot_port, () => { 116 | console.log("We are live on " + bot_port) 117 | }) 118 | } 119 | 120 | // parse application/x-www-form-urlencoded 121 | app.use(bodyParser.urlencoded({ extended: false })) 122 | // parse application/json 123 | app.use(bodyParser.json()) 124 | 125 | app.use(function (error, req, res, next) { 126 | if (error instanceof SyntaxError) { 127 | console.log("bodyParser:", error) 128 | res.statusCode = 400 129 | res.type("txt").send(error.toString()) 130 | } else { 131 | next() 132 | } 133 | }) 134 | 135 | app.all("*", function (req, res, next) { 136 | var authHeader = req.get("Authorization") 137 | var authToken 138 | if (authHeader) { 139 | if (authHeader.indexOf(" ") == -1) { 140 | authToken = authHeader 141 | } else { 142 | authHeader = authHeader.split(" ") 143 | authToken = authHeader[1] 144 | } 145 | } else { 146 | res.set("Authorization", "Basic base64_auth_token") 147 | return res 148 | .type("txt") 149 | .status(401) 150 | .send( 151 | 'Access denied: invalid Authorization Header format. Correct format: "Authorization: Basic base64_auth_token"' 152 | ) 153 | } 154 | if (!checkCreds(authToken)) { 155 | res.set("Authorization", "Basic base64_auth_token") 156 | return res 157 | .type("txt") 158 | .status(401) 159 | .send("Access denied: invalid basic-auth token.") 160 | } 161 | 162 | next() 163 | }) 164 | 165 | var endpoint = "/WickrIO/V1/Apps/" + bot_api_key 166 | const xapiEndpoint = "/WickrIO/V2/Apps" 167 | 168 | app.use(xapiEndpoint, function(req, res, next) { 169 | const xapi = req.get("x-api-key"); 170 | if(xapi != bot_api_key) { 171 | return res 172 | .type("txt") 173 | .status(401) 174 | .send("Access denied: invalid api-key.") 175 | } 176 | next() 177 | }) 178 | 179 | var upload = multer({ dest: "attachments/" }) 180 | 181 | app.route([xapiEndpoint + "/Messages", endpoint + "/Messages"]).post(async function (req, res) { 182 | res.set("Content-Type", "text/plain") 183 | res.set("Authorization", "Basic base64_auth_token") 184 | 185 | if (!req.body.users && !req.body.vgroupid) { 186 | return res.send("Need a list of users OR a vGroupID to send a message.") 187 | } else if (!req.body.message && !req.body.attachment) { 188 | return res.send("Need a message OR an attachment to send a message.") 189 | } 190 | var ttl = "", 191 | bor = "" 192 | let messagemeta = {} 193 | if (req.body.ttl) ttl = req.body.ttl.toString() 194 | if (req.body.bor) bor = req.body.bor.toString() 195 | 196 | if (req.body.messagemeta) 197 | messagemeta = JSON.stringify(req.body.messagemeta) 198 | else 199 | messagemeta = "" 200 | if (req.body.users) { 201 | var users = [] 202 | for (var i in req.body.users) { 203 | users.push(req.body.users[i].name) 204 | } 205 | if (req.body.attachment) { 206 | var attachment 207 | var displayName = "" 208 | if (req.body.attachment.url) { 209 | if (!req.body.attachment.displayname) { 210 | res.statusCode = 400 211 | return res.send("Attachment displayname must be set") 212 | } 213 | displayName = req.body.attachment.displayname 214 | attachment = req.body.attachment.url 215 | } else { 216 | if (req.body.attachment.displayname) 217 | displayName = req.body.attachment.displayname 218 | attachment = req.body.attachment.filename 219 | } 220 | console.log("displayName:", displayName) 221 | try { 222 | var s1t1a = await WickrIOAPI.cmdSend1to1Attachment( 223 | users, 224 | attachment, 225 | displayName, 226 | ttl, 227 | bor 228 | ) 229 | res.send(s1t1a) 230 | } catch (err) { 231 | console.log(err) 232 | res.statusCode = 400 233 | res.send(err.toString()) 234 | } 235 | } else { 236 | var message = req.body.message 237 | try { 238 | var csm = await WickrIOAPI.cmdSend1to1Message(users, message, ttl, bor, '', [], messagemeta) 239 | console.log(csm) 240 | res.send(csm) 241 | } catch (err) { 242 | console.log(err) 243 | res.statusCode = 400 244 | res.send(err.toString()) 245 | } 246 | } 247 | } else if (req.body.vgroupid) { 248 | var vGroupID = req.body.vgroupid 249 | if (req.body.attachment) { 250 | var attachment 251 | var displayName = "" 252 | if (req.body.attachment.url) { 253 | if (!req.body.attachment.displayname) { 254 | res.statusCode = 400 255 | return res.send("Attachment displayname must be set.") 256 | } 257 | displayName = req.body.attachment.displayname 258 | attachment = req.body.attachment.url 259 | } else { 260 | if (req.body.attachment.displayname) 261 | displayName = req.body.attachment.displayname 262 | attachment = req.body.attachment.filename 263 | } 264 | console.log("attachment:", attachment) 265 | console.log("displayName:", displayName) 266 | try { 267 | var csra = await WickrIOAPI.cmdSendRoomAttachment( 268 | vGroupID, 269 | attachment, 270 | displayName, 271 | ttl, 272 | bor 273 | ) 274 | console.log(csra) 275 | res.send(csra) 276 | } catch (err) { 277 | console.log(err) 278 | res.statusCode = 400 279 | res.send(err.toString()) 280 | } 281 | } else { 282 | var message = req.body.message 283 | try { 284 | var csrm = await WickrIOAPI.cmdSendRoomMessage( 285 | vGroupID, 286 | message, 287 | ttl, 288 | bor, 289 | '', 290 | [], 291 | messagemeta 292 | ) 293 | console.log(csrm) 294 | res.send(csrm) 295 | } catch (err) { 296 | console.log(err) 297 | res.statusCode = 400 298 | res.send(err.toString()) 299 | } 300 | } 301 | } 302 | }) 303 | 304 | app.route([xapiEndpoint + "/File", endpoint + "/File"]).post(upload.single("attachment"), async function (req, res) { 305 | res.set("Content-Type", "text/plain") 306 | res.set("Authorization", "Basic base64_auth_token") 307 | 308 | if (!req.body.users && !req.body.vgroupid) { 309 | return res.send("Need a list of users OR a vGroupID to send a message.") 310 | } else { 311 | var userAttachments 312 | var userNewFile 313 | var inFile 314 | let { ttl = "", bor = "" } = req.body 315 | if (req.file === undefined) { 316 | console.log("attachment is not defined!") 317 | return 318 | } else { 319 | userAttachments = process.cwd() + "/attachments" 320 | userNewFile = userAttachments + "/" + req.file.originalname 321 | 322 | inFile = process.cwd() + "/attachments/" + req.file.filename 323 | 324 | fs.mkdirSync(userAttachments, { recursive: true }) 325 | if (fs.existsSync(userNewFile)) fs.unlinkSync(userNewFile) 326 | // userAttachments = process.cwd() + '/attachments/' + req.user.email; 327 | fs.renameSync(inFile, userNewFile) 328 | console.log({ inFile, userNewFile }) 329 | 330 | if (req.body.vgroupid) { 331 | try { 332 | var csra = await WickrIOAPI.cmdSendRoomAttachment( 333 | req.body.vgroupid, 334 | userNewFile, 335 | req.file.originalname, 336 | ttl, 337 | bor 338 | ) 339 | res.send(csra) 340 | } catch (err) { 341 | console.log(err) 342 | res.statusCode = 400 343 | res.send(err.toString()) 344 | } 345 | } else if (req.body.users) { 346 | // userAttachments = process.cwd() + '/attachments/' + req.user.email; 347 | console.log({ bodyusers: req.body.users }) 348 | var users = [] 349 | try { 350 | for (let user of JSON.parse(req.body.users)) { 351 | users.push(user) 352 | } 353 | } catch (err) { 354 | console.log(err) 355 | res.statusCode = 400 356 | res.send('error processing users JSON data') 357 | return 358 | } 359 | 360 | try { 361 | let reply = await WickrIOAPI.cmdSend1to1Attachment( 362 | users, 363 | userNewFile, 364 | req.file.originalname, 365 | ttl, 366 | bor 367 | ) 368 | res.send(reply) 369 | } catch (err) { 370 | console.log(err) 371 | res.statusCode = 400 372 | res.send('error sending attachment!') 373 | } 374 | } 375 | } 376 | } 377 | }) 378 | 379 | app.route([xapiEndpoint + "/Statistics", endpoint + "/Statistics"]).get(async function (req, res) { 380 | try { 381 | var statistics = await WickrIOAPI.cmdGetStatistics() 382 | var response = isJson(statistics) 383 | if (response !== false) { 384 | statistics = response 385 | } 386 | if (statistics.statistics) { 387 | res.set("Content-Type", "application/json") 388 | res.send(statistics) 389 | } 390 | console.log(statistics) 391 | } catch (err) { 392 | console.log(err) 393 | res.statusCode = 400 394 | res.type("txt").send(err.toString()) 395 | } 396 | }) 397 | 398 | app.route([xapiEndpoint + "/Statistics", endpoint + "/Statistics"]).delete(async function (req, res) { 399 | res.set("Content-Type", "text/plain") 400 | try { 401 | var cleared = await WickrIOAPI.cmdClearStatistics() 402 | console.log(cleared) 403 | res.send("statistics cleared successfully") 404 | } catch (err) { 405 | console.log(err) 406 | res.statusCode = 400 407 | res.type("txt").send(err.toString()) 408 | } 409 | }) 410 | 411 | app.route([xapiEndpoint + "/Rooms", endpoint + "/Rooms"]).post(async function (req, res) { 412 | if (!req.body.room) { 413 | return res 414 | .type("txt") 415 | .status(400) 416 | .send("Cannot process request without a room object") 417 | } 418 | var room = req.body.room 419 | if (!room.title || !room.description || !room.members || !room.masters) { 420 | return res 421 | .type("txt") 422 | .status(400) 423 | .send( 424 | "To Create a secure room you must at least send the following Arguments: Title, description, members and masters." 425 | ) 426 | } 427 | var title = room.title 428 | var description = room.description 429 | var ttl = "", 430 | bor = "" 431 | if (room.ttl) ttl = room.ttl.toString() 432 | if (room.bor) bor = room.bor.toString() 433 | var members = [], 434 | masters = [] 435 | for (var i in room.members) { 436 | members.push(room.members[i].name) 437 | } 438 | 439 | for (var i in room.masters) { 440 | masters.push(room.masters[i].name) 441 | } 442 | try { 443 | var car = await WickrIOAPI.cmdAddRoom( 444 | members, 445 | masters, 446 | title, 447 | description, 448 | ttl, 449 | bor 450 | ) 451 | res.type("json").send(car) 452 | } catch (err) { 453 | console.log(err) 454 | res.statusCode = 400 455 | res.type("txt").send(err.toString()) 456 | } 457 | }) 458 | 459 | app.route([xapiEndpoint + "/Rooms", endpoint + "/Rooms"]).get(async function (req, res) { 460 | res.set("Content-Type", "application/json") 461 | var vGroupID = req.params.vGroupID 462 | if (vGroupID === undefined) { 463 | try { 464 | var cgr = await WickrIOAPI.cmdGetRooms() 465 | res.type("json").send(cgr) 466 | } catch (err) { 467 | console.log(err) 468 | res.statusCode = 400 469 | res.type("txt").send(err.toString()) 470 | } 471 | } else { 472 | try { 473 | var cgr = await WickrIOAPI.cmdGetRoom(vGroupID) 474 | res.send(cgr) 475 | } catch (err) { 476 | console.log(err) 477 | res.statusCode = 400 478 | res.type("txt").send(err.toString()) 479 | } 480 | } 481 | }) 482 | 483 | app.route([xapiEndpoint + "/Rooms/:vGroupID", endpoint + "/Rooms/:vGroupID"]).get(async function (req, res) { 484 | res.set("Content-Type", "application/json") 485 | var vGroupID = req.params.vGroupID 486 | try { 487 | var cgr = await WickrIOAPI.cmdGetRoom(vGroupID) 488 | res.send(cgr) 489 | } catch (err) { 490 | console.log(err) 491 | res.statusCode = 400 492 | res.type("txt").send(err.toString()) 493 | } 494 | }) 495 | 496 | app.route([xapiEndpoint + "/Rooms/:vGroupID", endpoint + "/Rooms/:vGroupID"]).delete(async function (req, res) { 497 | var vGroupID = req.params.vGroupID 498 | var reason = req.query.reason 499 | if (reason === "leave") { 500 | try { 501 | var clr = await WickrIOAPI.cmdLeaveRoom(vGroupID) 502 | console.log("cmdLeaveRoom:", clr) 503 | res.send(bot_username + " left room successfully") 504 | } catch (err) { 505 | console.log(err) 506 | res.statusCode = 400 507 | res.type("txt").send(err.toString()) 508 | } 509 | } else { 510 | try { 511 | var cdr = await WickrIOAPI.cmdDeleteRoom(vGroupID) 512 | console.log("cmdDeleteRoom:", cdr) 513 | res.send("Room deleted successfully") 514 | } catch (err) { 515 | console.log(err) 516 | res.statusCode = 400 517 | res.type("txt").send(err.toString()) 518 | } 519 | } 520 | res.end() 521 | }) 522 | 523 | //ModifyRoom 524 | app.route([xapiEndpoint + "/Rooms/:vGroupID", endpoint + "/Rooms/:vGroupID"]).post(async function (req, res) { 525 | var vGroupID = req.params.vGroupID 526 | if (typeof vGroupID !== "string") 527 | return res.send("vGroupID must be a string.") 528 | var ttl = "", 529 | bor = "", 530 | title = "", 531 | description = "" 532 | if (req.body.ttl) ttl = req.body.ttl.toString() 533 | if (req.body.bor) bor = req.body.bor.toString() 534 | if (req.body.title) title = req.body.title 535 | if (req.body.description) description = req.body.description 536 | var members = [], 537 | masters = [] 538 | if (req.body.members) { 539 | for (var i in req.body.members) { 540 | members.push(req.body.members[i].name) 541 | } 542 | } 543 | if (req.body.masters) { 544 | for (var i in req.body.masters) { 545 | masters.push(req.body.masters[i].name) 546 | } 547 | } 548 | try { 549 | var cmr = await WickrIOAPI.cmdModifyRoom( 550 | vGroupID, 551 | members, 552 | masters, 553 | title, 554 | description, 555 | ttl, 556 | bor 557 | ) 558 | console.log(cmr) 559 | res.send("Room modified successfully") 560 | } catch (err) { 561 | console.log(err) 562 | res.statusCode = 400 563 | res.type("txt").send(err.toString()) 564 | } 565 | }) 566 | 567 | app.route([xapiEndpoint + "/GroupConvo", endpoint + "/GroupConvo"]).post(async function (req, res) { 568 | var groupconvo = req.body.groupconvo 569 | if (!groupconvo.members) 570 | return res.send("An array of GroupConvo members is required") 571 | var ttl = "", 572 | bor = "" 573 | if (groupconvo.ttl) ttl = groupconvo.ttl.toString() 574 | if (groupconvo.bor) bor = groupconvo.bor.toString() 575 | var members = [] 576 | for (var i in groupconvo.members) { 577 | members.push(groupconvo.members[i].name) 578 | } 579 | try { 580 | var cagc = await WickrIOAPI.cmdAddGroupConvo(members, ttl, bor) 581 | console.log(cagc) 582 | res.type("json").send(cagc) 583 | } catch (err) { 584 | console.log(err) 585 | res.statusCode = 400 586 | res.type("txt").send(err.toString()) 587 | } 588 | }) 589 | 590 | app.route([xapiEndpoint + "/GroupConvo", endpoint + "/GroupConvo"]).get(async function (req, res) { 591 | try { 592 | var cggc = await WickrIOAPI.cmdGetGroupConvos() 593 | res.type("json").send(cggc) 594 | } catch (err) { 595 | console.log(err) 596 | res.statusCode = 400 597 | res.type("txt").send(err.toString()) 598 | } 599 | }) 600 | 601 | app.route([xapiEndpoint + "/GroupConvo/:vGroupID", endpoint + "/GroupConvo/:vGroupID"]).get(async function (req, res) { 602 | var vGroupID = req.params.vGroupID 603 | try { 604 | var cggc = await WickrIOAPI.cmdGetGroupConvo(vGroupID) 605 | res.type("json").send(cggc) 606 | } catch (err) { 607 | console.log(err) 608 | res.statusCode = 400 609 | res.type("txt").send(err.toString()) 610 | } 611 | }) 612 | 613 | app.route([xapiEndpoint + "/GroupConvo/:vGroupID", endpoint + "/GroupConvo/:vGroupID"]).delete(async function (req, res) { 614 | var vGroupID = req.params.vGroupID 615 | try { 616 | var cdgc = WickrIOAPI.cmdDeleteGroupConvo(vGroupID) 617 | console.log(cdgc) 618 | res.type("txt").send(bot_username + " has left the GroupConvo.") 619 | } catch (err) { 620 | console.log(err) 621 | res.statusCode = 400 622 | res.type("txt").send(err.toString()) 623 | } 624 | }) 625 | 626 | app.route([xapiEndpoint + "/Messages", endpoint + "/Messages"]).get(async function (req, res) { 627 | var count = 1 628 | var index = 0 629 | if (req.query.count) count = req.query.count 630 | var msgArray = [] 631 | for (var i = 0; i < count; i++) { 632 | try { 633 | var message = await WickrIOAPI.cmdGetReceivedMessage() 634 | } catch (err) { 635 | console.log(err) 636 | res.statusCode = 400 637 | return res.type("txt").send(err.toString()) 638 | } 639 | if (message === "{ }" || message === "" || !message) { 640 | continue 641 | } else { 642 | msgArray.push(JSON.parse(message)) 643 | console.log(message) 644 | } 645 | } 646 | if (msgArray === "[]") res.set("Content-Type", "text/plain") 647 | else res.set("Content-Type", "application/json") 648 | res.send(msgArray) 649 | res.end() 650 | }) 651 | 652 | app.route([xapiEndpoint + "/Messages/:vGroupID/:messageID", endpoint + "/Messages/:vGroupID/:messageID"]).delete(async function (req, res) { 653 | var vGroupID = req.params.vGroupID 654 | var msgID = req.params.messageID 655 | 656 | var doRecall = req.query.dorecall ? req.query.dorecall : "false" 657 | if (doRecall === "true") { 658 | try { 659 | var cdr = await WickrIOAPI.cmdSendRecallMessage(vGroupID, msgID) 660 | console.log("cmdSendRecallMessage:", cdr) 661 | res.send("Recall message sent") 662 | } catch (err) { 663 | console.log(err) 664 | res.statusCode = 400 665 | res.type("txt").send(err.toString()) 666 | } 667 | } else { 668 | try { 669 | var clr = await WickrIOAPI.cmdSendDeleteMessage(vGroupID, msgID) 670 | console.log("cmdSendDeleteMessage:", clr) 671 | res.send("Delete message sent") 672 | } catch (err) { 673 | console.log(err) 674 | res.statusCode = 400 675 | res.type("txt").send(err.toString()) 676 | } 677 | } 678 | res.end() 679 | }) 680 | 681 | app.route([xapiEndpoint + "/MsgRecvCallback", endpoint + "/MsgRecvCallback"]).post(async function (req, res) { 682 | var callbackUrl = req.query.callbackurl 683 | console.log("callbackUrl:", callbackUrl) 684 | try { 685 | var csmc = await WickrIOAPI.cmdSetMsgCallback(callbackUrl) 686 | console.log(csmc) 687 | res.type("txt").send(csmc) 688 | } catch (err) { 689 | console.log(err) 690 | res.statusCode = 400 691 | res.type("txt").send(err.toString()) 692 | } 693 | }) 694 | 695 | app.route([xapiEndpoint + "/MsgRecvCallback", endpoint + "/MsgRecvCallback"]).get(async function (req, res) { 696 | try { 697 | var cgmc = await WickrIOAPI.cmdGetMsgCallback() // callbabck 698 | res.type("txt").send(cgmc) 699 | } catch (err) { 700 | console.log(err) 701 | res.statusCode = 400 702 | res.type("txt").send(err.toString()) 703 | } 704 | }) 705 | 706 | app.route([xapiEndpoint + "/MsgRecvCallback", endpoint + "/MsgRecvCallback"]).delete(async function (req, res) { 707 | try { 708 | var cdmc = await WickrIOAPI.cmdDeleteMsgCallback() 709 | console.log(cdmc) 710 | res.type("txt").send(cdmc) 711 | } catch (err) { 712 | console.log(err) 713 | res.statusCode = 400 714 | res.type("txt").send(err.toString()) 715 | } 716 | }) 717 | 718 | app.route([xapiEndpoint + "/Directory", endpoint + "/Directory"]).get(async function (req, res) { 719 | try { 720 | var cgd = await WickrIOAPI.cmdGetDirectory() 721 | res.type("json").send(cgd) 722 | } catch (err) { 723 | console.log(err) 724 | res.statusCode = 400 725 | res.type("txt").send(err.toString()) 726 | } 727 | }) 728 | 729 | // What to do for ALL requests for ALL Paths 730 | // that are not handled above 731 | app.all("*", function (req, res) { 732 | console.log("*** 404 ***") 733 | console.log("404 for url: " + req.url) 734 | console.log("***********") 735 | return res 736 | .type("txt") 737 | .status(404) 738 | .send("Endpoint " + req.url + " not found") 739 | }) 740 | 741 | } 742 | 743 | //Basic function to validate credentials for example 744 | function checkCreds(authToken) { 745 | try { 746 | var valid = true 747 | const authStr = Buffer.from(authToken, "base64").toString() 748 | //implement authToken verification in here 749 | if (authStr !== bot_api_auth_token) valid = false 750 | return valid 751 | } catch (err) { 752 | console.log(err) 753 | } 754 | } 755 | 756 | function isJson(str) { 757 | try { 758 | str = JSON.parse(str) 759 | } catch (e) { 760 | return false 761 | } 762 | return str 763 | } 764 | 765 | main() 766 | 767 | -------------------------------------------------------------------------------- /wpm.json: -------------------------------------------------------------------------------- 1 | { 2 | "apps" : [{ 3 | "name": "WickrIO-Web-Interface-Bot", 4 | "script": "./web_interface.js", 5 | "instances": 1, 6 | "max_memory_restart": "128M", 7 | "node_args": ["--nouse-idle-notification"], 8 | "env": { 9 | "NODE_ENV": "production" 10 | }, 11 | "args": [] 12 | }] 13 | } 14 | --------------------------------------------------------------------------------