├── .env.example ├── .gitignore ├── README.md ├── demo-img.png ├── package-lock.json ├── package.json └── server.js /.env.example: -------------------------------------------------------------------------------- 1 | TELEGRAM_BOT_TOKEN=xxx 2 | ADMIN_CHAT_ID=xxx 3 | # 0 = Disabled, 1 = Enabled - If you want to disable Telegram messages (eg. for testing) 4 | DISABLE_TELEGRAM_MESSAGES=0 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🎯 Solana DEX Transaction Tracker 2 | 3 | This project is a simplified version inspired by [HandiCat](https://github.com/DracoR22/handi-cat_wallet-tracker) by DracoR22. Thank you for the inspiration and the great work. 4 | 5 | This project was made during a coding session for my Youtube Channel AsmrCoding, here it is the [link of the video](https://www.youtube.com/watch?v=X0KbRvkvmtc&t), subscribe, leave a like and a comment for support the channel! Thanks 🙏 6 | 7 | ## 📸 Demo 8 | 9 | ![Telegram Bot Demo](demo-img.png) 10 | 11 | ## ✨ Features 12 | 13 | - Real-time monitoring of specified wallet addresses 14 | - Transaction detection for Jupiter, Raydium, and Pump.fun DEXs 15 | - Detailed transaction parsing including: 16 | - Transaction type (buy/sell/mint) 17 | - Token amounts and addresses 18 | - Operation details 19 | - Transaction signatures 20 | - Telegram bot integration for instant notifications 21 | 22 | ## 🔧 Technical Details 23 | 24 | - Uses Solana Web3.js for blockchain interaction 25 | - Implements real-time transaction monitoring via Solana's onLogs subscription 26 | - Parses transaction data to extract relevant swap/mint information 27 | - Formats and sends notifications through Telegram bot API 28 | 29 | ## ⚡ Requirements 30 | - Node.js 31 | - Telegram Bot API Token 32 | 33 | ## 🛠️ Setup 34 | 35 | 1. Clone repo 36 | 37 | ``` git clone https://github.com/Simoblaster/solana-tracker.git ``` 38 | 39 | 2. Install dependencies 40 | 41 | ``` npm install ``` 42 | 43 | 3. Configure environment variables: 44 | 45 | Copy ``` .env.example ``` to ``` .env ``` 46 | Update the values in .env according to your setup 47 | ``` 48 | TELEGRAM_BOT_TOKEN=xxx # Your Telegram bot token from BotFather 49 | ADMIN_CHAT_ID=xxx # Your Telegram chat ID to receive notifications 50 | DISABLE_TELEGRAM_MESSAGES=0 # Set to 1 to disable Telegram notifications 51 | ``` 52 | 53 | 4. Change wallets to track (optional) 54 | Go to ``` server.js ``` and add/remove the wallets you want to track in the ``` TRACKING_WALLETS ``` array 55 | 56 | 5. Run the project 57 | 58 | ``` npm start ``` 59 | 60 | ## 📫 Contact 61 | 62 | - X: [@Simoblaster](https://x.com/simoblaster) 63 | - Email: saturno.simone@gmail.com 64 | 65 | If you find this project useful, feel free to support: 66 | `Solana wallet` 67 | `AQpMiPhc8eBoU6jy9FKqUb5QK4VfwVt69yiFuZLTCozq` 68 | -------------------------------------------------------------------------------- /demo-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simoblaster/solana-tracker/d3dcbf800a8c45c4b04945feb5702059019ee012/demo-img.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solana-tracker", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "solana-tracker", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@solana/web3.js": "^1.95.4", 13 | "dotenv": "^16.4.5", 14 | "node-telegram-bot-api": "^0.66.0" 15 | }, 16 | "devDependencies": { 17 | "@eslint/js": "^9.15.0", 18 | "eslint": "^9.15.0", 19 | "eslint-config-prettier": "^9.1.0", 20 | "eslint-plugin-prettier": "^5.2.1", 21 | "globals": "^15.12.0", 22 | "nodemon": "^3.1.7", 23 | "prettier": "^3.3.3" 24 | } 25 | }, 26 | "node_modules/@babel/runtime": { 27 | "version": "7.26.0", 28 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", 29 | "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", 30 | "license": "MIT", 31 | "dependencies": { 32 | "regenerator-runtime": "^0.14.0" 33 | }, 34 | "engines": { 35 | "node": ">=6.9.0" 36 | } 37 | }, 38 | "node_modules/@cypress/request": { 39 | "version": "3.0.6", 40 | "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.6.tgz", 41 | "integrity": "sha512-fi0eVdCOtKu5Ed6+E8mYxUF6ZTFJDZvHogCBelM0xVXmrDEkyM22gRArQzq1YcHPm1V47Vf/iAD+WgVdUlJCGg==", 42 | "license": "Apache-2.0", 43 | "dependencies": { 44 | "aws-sign2": "~0.7.0", 45 | "aws4": "^1.8.0", 46 | "caseless": "~0.12.0", 47 | "combined-stream": "~1.0.6", 48 | "extend": "~3.0.2", 49 | "forever-agent": "~0.6.1", 50 | "form-data": "~4.0.0", 51 | "http-signature": "~1.4.0", 52 | "is-typedarray": "~1.0.0", 53 | "isstream": "~0.1.2", 54 | "json-stringify-safe": "~5.0.1", 55 | "mime-types": "~2.1.19", 56 | "performance-now": "^2.1.0", 57 | "qs": "6.13.0", 58 | "safe-buffer": "^5.1.2", 59 | "tough-cookie": "^5.0.0", 60 | "tunnel-agent": "^0.6.0", 61 | "uuid": "^8.3.2" 62 | }, 63 | "engines": { 64 | "node": ">= 6" 65 | } 66 | }, 67 | "node_modules/@cypress/request-promise": { 68 | "version": "5.0.0", 69 | "resolved": "https://registry.npmjs.org/@cypress/request-promise/-/request-promise-5.0.0.tgz", 70 | "integrity": "sha512-eKdYVpa9cBEw2kTBlHeu1PP16Blwtum6QHg/u9s/MoHkZfuo1pRGka1VlUHXF5kdew82BvOJVVGk0x8X0nbp+w==", 71 | "license": "ISC", 72 | "dependencies": { 73 | "bluebird": "^3.5.0", 74 | "request-promise-core": "1.1.3", 75 | "stealthy-require": "^1.1.1", 76 | "tough-cookie": "^4.1.3" 77 | }, 78 | "engines": { 79 | "node": ">=0.10.0" 80 | }, 81 | "peerDependencies": { 82 | "@cypress/request": "^3.0.0" 83 | } 84 | }, 85 | "node_modules/@cypress/request-promise/node_modules/tough-cookie": { 86 | "version": "4.1.4", 87 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", 88 | "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", 89 | "license": "BSD-3-Clause", 90 | "dependencies": { 91 | "psl": "^1.1.33", 92 | "punycode": "^2.1.1", 93 | "universalify": "^0.2.0", 94 | "url-parse": "^1.5.3" 95 | }, 96 | "engines": { 97 | "node": ">=6" 98 | } 99 | }, 100 | "node_modules/@eslint-community/eslint-utils": { 101 | "version": "4.4.1", 102 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 103 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 104 | "dev": true, 105 | "license": "MIT", 106 | "dependencies": { 107 | "eslint-visitor-keys": "^3.4.3" 108 | }, 109 | "engines": { 110 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 111 | }, 112 | "funding": { 113 | "url": "https://opencollective.com/eslint" 114 | }, 115 | "peerDependencies": { 116 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 117 | } 118 | }, 119 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 120 | "version": "3.4.3", 121 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 122 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 123 | "dev": true, 124 | "license": "Apache-2.0", 125 | "engines": { 126 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 127 | }, 128 | "funding": { 129 | "url": "https://opencollective.com/eslint" 130 | } 131 | }, 132 | "node_modules/@eslint-community/regexpp": { 133 | "version": "4.12.1", 134 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 135 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 136 | "dev": true, 137 | "license": "MIT", 138 | "engines": { 139 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 140 | } 141 | }, 142 | "node_modules/@eslint/config-array": { 143 | "version": "0.19.0", 144 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", 145 | "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", 146 | "dev": true, 147 | "license": "Apache-2.0", 148 | "dependencies": { 149 | "@eslint/object-schema": "^2.1.4", 150 | "debug": "^4.3.1", 151 | "minimatch": "^3.1.2" 152 | }, 153 | "engines": { 154 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 155 | } 156 | }, 157 | "node_modules/@eslint/core": { 158 | "version": "0.9.0", 159 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", 160 | "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", 161 | "dev": true, 162 | "license": "Apache-2.0", 163 | "engines": { 164 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 165 | } 166 | }, 167 | "node_modules/@eslint/eslintrc": { 168 | "version": "3.2.0", 169 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 170 | "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 171 | "dev": true, 172 | "license": "MIT", 173 | "dependencies": { 174 | "ajv": "^6.12.4", 175 | "debug": "^4.3.2", 176 | "espree": "^10.0.1", 177 | "globals": "^14.0.0", 178 | "ignore": "^5.2.0", 179 | "import-fresh": "^3.2.1", 180 | "js-yaml": "^4.1.0", 181 | "minimatch": "^3.1.2", 182 | "strip-json-comments": "^3.1.1" 183 | }, 184 | "engines": { 185 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 186 | }, 187 | "funding": { 188 | "url": "https://opencollective.com/eslint" 189 | } 190 | }, 191 | "node_modules/@eslint/eslintrc/node_modules/globals": { 192 | "version": "14.0.0", 193 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 194 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 195 | "dev": true, 196 | "license": "MIT", 197 | "engines": { 198 | "node": ">=18" 199 | }, 200 | "funding": { 201 | "url": "https://github.com/sponsors/sindresorhus" 202 | } 203 | }, 204 | "node_modules/@eslint/js": { 205 | "version": "9.15.0", 206 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.15.0.tgz", 207 | "integrity": "sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==", 208 | "dev": true, 209 | "license": "MIT", 210 | "engines": { 211 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 212 | } 213 | }, 214 | "node_modules/@eslint/object-schema": { 215 | "version": "2.1.4", 216 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", 217 | "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", 218 | "dev": true, 219 | "license": "Apache-2.0", 220 | "engines": { 221 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 222 | } 223 | }, 224 | "node_modules/@eslint/plugin-kit": { 225 | "version": "0.2.3", 226 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", 227 | "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", 228 | "dev": true, 229 | "license": "Apache-2.0", 230 | "dependencies": { 231 | "levn": "^0.4.1" 232 | }, 233 | "engines": { 234 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 235 | } 236 | }, 237 | "node_modules/@humanfs/core": { 238 | "version": "0.19.1", 239 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 240 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 241 | "dev": true, 242 | "license": "Apache-2.0", 243 | "engines": { 244 | "node": ">=18.18.0" 245 | } 246 | }, 247 | "node_modules/@humanfs/node": { 248 | "version": "0.16.6", 249 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 250 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 251 | "dev": true, 252 | "license": "Apache-2.0", 253 | "dependencies": { 254 | "@humanfs/core": "^0.19.1", 255 | "@humanwhocodes/retry": "^0.3.0" 256 | }, 257 | "engines": { 258 | "node": ">=18.18.0" 259 | } 260 | }, 261 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 262 | "version": "0.3.1", 263 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 264 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 265 | "dev": true, 266 | "license": "Apache-2.0", 267 | "engines": { 268 | "node": ">=18.18" 269 | }, 270 | "funding": { 271 | "type": "github", 272 | "url": "https://github.com/sponsors/nzakas" 273 | } 274 | }, 275 | "node_modules/@humanwhocodes/module-importer": { 276 | "version": "1.0.1", 277 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 278 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 279 | "dev": true, 280 | "license": "Apache-2.0", 281 | "engines": { 282 | "node": ">=12.22" 283 | }, 284 | "funding": { 285 | "type": "github", 286 | "url": "https://github.com/sponsors/nzakas" 287 | } 288 | }, 289 | "node_modules/@humanwhocodes/retry": { 290 | "version": "0.4.1", 291 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 292 | "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 293 | "dev": true, 294 | "license": "Apache-2.0", 295 | "engines": { 296 | "node": ">=18.18" 297 | }, 298 | "funding": { 299 | "type": "github", 300 | "url": "https://github.com/sponsors/nzakas" 301 | } 302 | }, 303 | "node_modules/@noble/curves": { 304 | "version": "1.7.0", 305 | "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.7.0.tgz", 306 | "integrity": "sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==", 307 | "license": "MIT", 308 | "dependencies": { 309 | "@noble/hashes": "1.6.0" 310 | }, 311 | "engines": { 312 | "node": "^14.21.3 || >=16" 313 | }, 314 | "funding": { 315 | "url": "https://paulmillr.com/funding/" 316 | } 317 | }, 318 | "node_modules/@noble/curves/node_modules/@noble/hashes": { 319 | "version": "1.6.0", 320 | "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.6.0.tgz", 321 | "integrity": "sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==", 322 | "license": "MIT", 323 | "engines": { 324 | "node": "^14.21.3 || >=16" 325 | }, 326 | "funding": { 327 | "url": "https://paulmillr.com/funding/" 328 | } 329 | }, 330 | "node_modules/@noble/hashes": { 331 | "version": "1.6.1", 332 | "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.6.1.tgz", 333 | "integrity": "sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==", 334 | "license": "MIT", 335 | "engines": { 336 | "node": "^14.21.3 || >=16" 337 | }, 338 | "funding": { 339 | "url": "https://paulmillr.com/funding/" 340 | } 341 | }, 342 | "node_modules/@pkgr/core": { 343 | "version": "0.1.1", 344 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", 345 | "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", 346 | "dev": true, 347 | "license": "MIT", 348 | "engines": { 349 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 350 | }, 351 | "funding": { 352 | "url": "https://opencollective.com/unts" 353 | } 354 | }, 355 | "node_modules/@solana/buffer-layout": { 356 | "version": "4.0.1", 357 | "resolved": "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz", 358 | "integrity": "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==", 359 | "license": "MIT", 360 | "dependencies": { 361 | "buffer": "~6.0.3" 362 | }, 363 | "engines": { 364 | "node": ">=5.10" 365 | } 366 | }, 367 | "node_modules/@solana/web3.js": { 368 | "version": "1.95.5", 369 | "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.95.5.tgz", 370 | "integrity": "sha512-hU9cBrbg1z6gEjLH9vwIckGBVB78Ijm0iZFNk4ocm5OD82piPwuk3MeQ1rfiKD9YQtr95krrcaopb49EmQJlRg==", 371 | "license": "MIT", 372 | "dependencies": { 373 | "@babel/runtime": "^7.25.0", 374 | "@noble/curves": "^1.4.2", 375 | "@noble/hashes": "^1.4.0", 376 | "@solana/buffer-layout": "^4.0.1", 377 | "agentkeepalive": "^4.5.0", 378 | "bigint-buffer": "^1.1.5", 379 | "bn.js": "^5.2.1", 380 | "borsh": "^0.7.0", 381 | "bs58": "^4.0.1", 382 | "buffer": "6.0.3", 383 | "fast-stable-stringify": "^1.0.0", 384 | "jayson": "^4.1.1", 385 | "node-fetch": "^2.7.0", 386 | "rpc-websockets": "^9.0.2", 387 | "superstruct": "^2.0.2" 388 | } 389 | }, 390 | "node_modules/@swc/helpers": { 391 | "version": "0.5.15", 392 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", 393 | "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", 394 | "license": "Apache-2.0", 395 | "dependencies": { 396 | "tslib": "^2.8.0" 397 | } 398 | }, 399 | "node_modules/@types/connect": { 400 | "version": "3.4.38", 401 | "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", 402 | "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", 403 | "license": "MIT", 404 | "dependencies": { 405 | "@types/node": "*" 406 | } 407 | }, 408 | "node_modules/@types/estree": { 409 | "version": "1.0.6", 410 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 411 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 412 | "dev": true, 413 | "license": "MIT" 414 | }, 415 | "node_modules/@types/json-schema": { 416 | "version": "7.0.15", 417 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 418 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 419 | "dev": true, 420 | "license": "MIT" 421 | }, 422 | "node_modules/@types/node": { 423 | "version": "12.20.55", 424 | "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", 425 | "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", 426 | "license": "MIT" 427 | }, 428 | "node_modules/@types/uuid": { 429 | "version": "8.3.4", 430 | "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz", 431 | "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==", 432 | "license": "MIT" 433 | }, 434 | "node_modules/@types/ws": { 435 | "version": "7.4.7", 436 | "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz", 437 | "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", 438 | "license": "MIT", 439 | "dependencies": { 440 | "@types/node": "*" 441 | } 442 | }, 443 | "node_modules/acorn": { 444 | "version": "8.14.0", 445 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 446 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 447 | "dev": true, 448 | "license": "MIT", 449 | "bin": { 450 | "acorn": "bin/acorn" 451 | }, 452 | "engines": { 453 | "node": ">=0.4.0" 454 | } 455 | }, 456 | "node_modules/acorn-jsx": { 457 | "version": "5.3.2", 458 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 459 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 460 | "dev": true, 461 | "license": "MIT", 462 | "peerDependencies": { 463 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 464 | } 465 | }, 466 | "node_modules/agentkeepalive": { 467 | "version": "4.5.0", 468 | "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", 469 | "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", 470 | "license": "MIT", 471 | "dependencies": { 472 | "humanize-ms": "^1.2.1" 473 | }, 474 | "engines": { 475 | "node": ">= 8.0.0" 476 | } 477 | }, 478 | "node_modules/ajv": { 479 | "version": "6.12.6", 480 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 481 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 482 | "license": "MIT", 483 | "dependencies": { 484 | "fast-deep-equal": "^3.1.1", 485 | "fast-json-stable-stringify": "^2.0.0", 486 | "json-schema-traverse": "^0.4.1", 487 | "uri-js": "^4.2.2" 488 | }, 489 | "funding": { 490 | "type": "github", 491 | "url": "https://github.com/sponsors/epoberezkin" 492 | } 493 | }, 494 | "node_modules/ansi-styles": { 495 | "version": "4.3.0", 496 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 497 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 498 | "dev": true, 499 | "license": "MIT", 500 | "dependencies": { 501 | "color-convert": "^2.0.1" 502 | }, 503 | "engines": { 504 | "node": ">=8" 505 | }, 506 | "funding": { 507 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 508 | } 509 | }, 510 | "node_modules/anymatch": { 511 | "version": "3.1.3", 512 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 513 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 514 | "dev": true, 515 | "license": "ISC", 516 | "dependencies": { 517 | "normalize-path": "^3.0.0", 518 | "picomatch": "^2.0.4" 519 | }, 520 | "engines": { 521 | "node": ">= 8" 522 | } 523 | }, 524 | "node_modules/argparse": { 525 | "version": "2.0.1", 526 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 527 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 528 | "dev": true, 529 | "license": "Python-2.0" 530 | }, 531 | "node_modules/array-buffer-byte-length": { 532 | "version": "1.0.1", 533 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", 534 | "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", 535 | "license": "MIT", 536 | "dependencies": { 537 | "call-bind": "^1.0.5", 538 | "is-array-buffer": "^3.0.4" 539 | }, 540 | "engines": { 541 | "node": ">= 0.4" 542 | }, 543 | "funding": { 544 | "url": "https://github.com/sponsors/ljharb" 545 | } 546 | }, 547 | "node_modules/array.prototype.findindex": { 548 | "version": "2.2.3", 549 | "resolved": "https://registry.npmjs.org/array.prototype.findindex/-/array.prototype.findindex-2.2.3.tgz", 550 | "integrity": "sha512-Saz3pStJ2X5bg27GTWWLyhJrcwbMVLsnbho2zUVQFW2Pgrh0mSKKvAeZr6BPww7E1AygK33cX7w0W1YERC1RHA==", 551 | "license": "MIT", 552 | "dependencies": { 553 | "call-bind": "^1.0.7", 554 | "define-properties": "^1.2.1", 555 | "es-abstract": "^1.23.0", 556 | "es-object-atoms": "^1.0.0", 557 | "es-shim-unscopables": "^1.0.2" 558 | } 559 | }, 560 | "node_modules/arraybuffer.prototype.slice": { 561 | "version": "1.0.3", 562 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", 563 | "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", 564 | "license": "MIT", 565 | "dependencies": { 566 | "array-buffer-byte-length": "^1.0.1", 567 | "call-bind": "^1.0.5", 568 | "define-properties": "^1.2.1", 569 | "es-abstract": "^1.22.3", 570 | "es-errors": "^1.2.1", 571 | "get-intrinsic": "^1.2.3", 572 | "is-array-buffer": "^3.0.4", 573 | "is-shared-array-buffer": "^1.0.2" 574 | }, 575 | "engines": { 576 | "node": ">= 0.4" 577 | }, 578 | "funding": { 579 | "url": "https://github.com/sponsors/ljharb" 580 | } 581 | }, 582 | "node_modules/asn1": { 583 | "version": "0.2.6", 584 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", 585 | "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", 586 | "license": "MIT", 587 | "dependencies": { 588 | "safer-buffer": "~2.1.0" 589 | } 590 | }, 591 | "node_modules/assert-plus": { 592 | "version": "1.0.0", 593 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 594 | "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", 595 | "license": "MIT", 596 | "engines": { 597 | "node": ">=0.8" 598 | } 599 | }, 600 | "node_modules/asynckit": { 601 | "version": "0.4.0", 602 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 603 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 604 | "license": "MIT" 605 | }, 606 | "node_modules/available-typed-arrays": { 607 | "version": "1.0.7", 608 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 609 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 610 | "license": "MIT", 611 | "dependencies": { 612 | "possible-typed-array-names": "^1.0.0" 613 | }, 614 | "engines": { 615 | "node": ">= 0.4" 616 | }, 617 | "funding": { 618 | "url": "https://github.com/sponsors/ljharb" 619 | } 620 | }, 621 | "node_modules/aws-sign2": { 622 | "version": "0.7.0", 623 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 624 | "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", 625 | "license": "Apache-2.0", 626 | "engines": { 627 | "node": "*" 628 | } 629 | }, 630 | "node_modules/aws4": { 631 | "version": "1.13.2", 632 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", 633 | "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", 634 | "license": "MIT" 635 | }, 636 | "node_modules/balanced-match": { 637 | "version": "1.0.2", 638 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 639 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 640 | "dev": true, 641 | "license": "MIT" 642 | }, 643 | "node_modules/base-x": { 644 | "version": "3.0.10", 645 | "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz", 646 | "integrity": "sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==", 647 | "license": "MIT", 648 | "dependencies": { 649 | "safe-buffer": "^5.0.1" 650 | } 651 | }, 652 | "node_modules/base64-js": { 653 | "version": "1.5.1", 654 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 655 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 656 | "funding": [ 657 | { 658 | "type": "github", 659 | "url": "https://github.com/sponsors/feross" 660 | }, 661 | { 662 | "type": "patreon", 663 | "url": "https://www.patreon.com/feross" 664 | }, 665 | { 666 | "type": "consulting", 667 | "url": "https://feross.org/support" 668 | } 669 | ], 670 | "license": "MIT" 671 | }, 672 | "node_modules/bcrypt-pbkdf": { 673 | "version": "1.0.2", 674 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 675 | "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", 676 | "license": "BSD-3-Clause", 677 | "dependencies": { 678 | "tweetnacl": "^0.14.3" 679 | } 680 | }, 681 | "node_modules/bigint-buffer": { 682 | "version": "1.1.5", 683 | "resolved": "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz", 684 | "integrity": "sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==", 685 | "hasInstallScript": true, 686 | "license": "Apache-2.0", 687 | "dependencies": { 688 | "bindings": "^1.3.0" 689 | }, 690 | "engines": { 691 | "node": ">= 10.0.0" 692 | } 693 | }, 694 | "node_modules/binary-extensions": { 695 | "version": "2.3.0", 696 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 697 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 698 | "dev": true, 699 | "license": "MIT", 700 | "engines": { 701 | "node": ">=8" 702 | }, 703 | "funding": { 704 | "url": "https://github.com/sponsors/sindresorhus" 705 | } 706 | }, 707 | "node_modules/bindings": { 708 | "version": "1.5.0", 709 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 710 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 711 | "license": "MIT", 712 | "dependencies": { 713 | "file-uri-to-path": "1.0.0" 714 | } 715 | }, 716 | "node_modules/bl": { 717 | "version": "1.2.3", 718 | "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", 719 | "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", 720 | "license": "MIT", 721 | "dependencies": { 722 | "readable-stream": "^2.3.5", 723 | "safe-buffer": "^5.1.1" 724 | } 725 | }, 726 | "node_modules/bluebird": { 727 | "version": "3.7.2", 728 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 729 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", 730 | "license": "MIT" 731 | }, 732 | "node_modules/bn.js": { 733 | "version": "5.2.1", 734 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", 735 | "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", 736 | "license": "MIT" 737 | }, 738 | "node_modules/borsh": { 739 | "version": "0.7.0", 740 | "resolved": "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz", 741 | "integrity": "sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==", 742 | "license": "Apache-2.0", 743 | "dependencies": { 744 | "bn.js": "^5.2.0", 745 | "bs58": "^4.0.0", 746 | "text-encoding-utf-8": "^1.0.2" 747 | } 748 | }, 749 | "node_modules/brace-expansion": { 750 | "version": "1.1.11", 751 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 752 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 753 | "dev": true, 754 | "license": "MIT", 755 | "dependencies": { 756 | "balanced-match": "^1.0.0", 757 | "concat-map": "0.0.1" 758 | } 759 | }, 760 | "node_modules/braces": { 761 | "version": "3.0.3", 762 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 763 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 764 | "dev": true, 765 | "license": "MIT", 766 | "dependencies": { 767 | "fill-range": "^7.1.1" 768 | }, 769 | "engines": { 770 | "node": ">=8" 771 | } 772 | }, 773 | "node_modules/bs58": { 774 | "version": "4.0.1", 775 | "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", 776 | "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", 777 | "license": "MIT", 778 | "dependencies": { 779 | "base-x": "^3.0.2" 780 | } 781 | }, 782 | "node_modules/buffer": { 783 | "version": "6.0.3", 784 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 785 | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 786 | "funding": [ 787 | { 788 | "type": "github", 789 | "url": "https://github.com/sponsors/feross" 790 | }, 791 | { 792 | "type": "patreon", 793 | "url": "https://www.patreon.com/feross" 794 | }, 795 | { 796 | "type": "consulting", 797 | "url": "https://feross.org/support" 798 | } 799 | ], 800 | "license": "MIT", 801 | "dependencies": { 802 | "base64-js": "^1.3.1", 803 | "ieee754": "^1.2.1" 804 | } 805 | }, 806 | "node_modules/bufferutil": { 807 | "version": "4.0.8", 808 | "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz", 809 | "integrity": "sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==", 810 | "hasInstallScript": true, 811 | "license": "MIT", 812 | "optional": true, 813 | "dependencies": { 814 | "node-gyp-build": "^4.3.0" 815 | }, 816 | "engines": { 817 | "node": ">=6.14.2" 818 | } 819 | }, 820 | "node_modules/call-bind": { 821 | "version": "1.0.7", 822 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 823 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 824 | "license": "MIT", 825 | "dependencies": { 826 | "es-define-property": "^1.0.0", 827 | "es-errors": "^1.3.0", 828 | "function-bind": "^1.1.2", 829 | "get-intrinsic": "^1.2.4", 830 | "set-function-length": "^1.2.1" 831 | }, 832 | "engines": { 833 | "node": ">= 0.4" 834 | }, 835 | "funding": { 836 | "url": "https://github.com/sponsors/ljharb" 837 | } 838 | }, 839 | "node_modules/callsites": { 840 | "version": "3.1.0", 841 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 842 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 843 | "dev": true, 844 | "license": "MIT", 845 | "engines": { 846 | "node": ">=6" 847 | } 848 | }, 849 | "node_modules/caseless": { 850 | "version": "0.12.0", 851 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 852 | "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", 853 | "license": "Apache-2.0" 854 | }, 855 | "node_modules/chalk": { 856 | "version": "4.1.2", 857 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 858 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 859 | "dev": true, 860 | "license": "MIT", 861 | "dependencies": { 862 | "ansi-styles": "^4.1.0", 863 | "supports-color": "^7.1.0" 864 | }, 865 | "engines": { 866 | "node": ">=10" 867 | }, 868 | "funding": { 869 | "url": "https://github.com/chalk/chalk?sponsor=1" 870 | } 871 | }, 872 | "node_modules/chokidar": { 873 | "version": "3.6.0", 874 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 875 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 876 | "dev": true, 877 | "license": "MIT", 878 | "dependencies": { 879 | "anymatch": "~3.1.2", 880 | "braces": "~3.0.2", 881 | "glob-parent": "~5.1.2", 882 | "is-binary-path": "~2.1.0", 883 | "is-glob": "~4.0.1", 884 | "normalize-path": "~3.0.0", 885 | "readdirp": "~3.6.0" 886 | }, 887 | "engines": { 888 | "node": ">= 8.10.0" 889 | }, 890 | "funding": { 891 | "url": "https://paulmillr.com/funding/" 892 | }, 893 | "optionalDependencies": { 894 | "fsevents": "~2.3.2" 895 | } 896 | }, 897 | "node_modules/chokidar/node_modules/glob-parent": { 898 | "version": "5.1.2", 899 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 900 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 901 | "dev": true, 902 | "license": "ISC", 903 | "dependencies": { 904 | "is-glob": "^4.0.1" 905 | }, 906 | "engines": { 907 | "node": ">= 6" 908 | } 909 | }, 910 | "node_modules/color-convert": { 911 | "version": "2.0.1", 912 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 913 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 914 | "dev": true, 915 | "license": "MIT", 916 | "dependencies": { 917 | "color-name": "~1.1.4" 918 | }, 919 | "engines": { 920 | "node": ">=7.0.0" 921 | } 922 | }, 923 | "node_modules/color-name": { 924 | "version": "1.1.4", 925 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 926 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 927 | "dev": true, 928 | "license": "MIT" 929 | }, 930 | "node_modules/combined-stream": { 931 | "version": "1.0.8", 932 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 933 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 934 | "license": "MIT", 935 | "dependencies": { 936 | "delayed-stream": "~1.0.0" 937 | }, 938 | "engines": { 939 | "node": ">= 0.8" 940 | } 941 | }, 942 | "node_modules/commander": { 943 | "version": "2.20.3", 944 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 945 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 946 | "license": "MIT" 947 | }, 948 | "node_modules/concat-map": { 949 | "version": "0.0.1", 950 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 951 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 952 | "dev": true, 953 | "license": "MIT" 954 | }, 955 | "node_modules/core-util-is": { 956 | "version": "1.0.3", 957 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 958 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 959 | "license": "MIT" 960 | }, 961 | "node_modules/cross-spawn": { 962 | "version": "7.0.6", 963 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 964 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 965 | "dev": true, 966 | "license": "MIT", 967 | "dependencies": { 968 | "path-key": "^3.1.0", 969 | "shebang-command": "^2.0.0", 970 | "which": "^2.0.1" 971 | }, 972 | "engines": { 973 | "node": ">= 8" 974 | } 975 | }, 976 | "node_modules/dashdash": { 977 | "version": "1.14.1", 978 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 979 | "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", 980 | "license": "MIT", 981 | "dependencies": { 982 | "assert-plus": "^1.0.0" 983 | }, 984 | "engines": { 985 | "node": ">=0.10" 986 | } 987 | }, 988 | "node_modules/data-view-buffer": { 989 | "version": "1.0.1", 990 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", 991 | "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", 992 | "license": "MIT", 993 | "dependencies": { 994 | "call-bind": "^1.0.6", 995 | "es-errors": "^1.3.0", 996 | "is-data-view": "^1.0.1" 997 | }, 998 | "engines": { 999 | "node": ">= 0.4" 1000 | }, 1001 | "funding": { 1002 | "url": "https://github.com/sponsors/ljharb" 1003 | } 1004 | }, 1005 | "node_modules/data-view-byte-length": { 1006 | "version": "1.0.1", 1007 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", 1008 | "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", 1009 | "license": "MIT", 1010 | "dependencies": { 1011 | "call-bind": "^1.0.7", 1012 | "es-errors": "^1.3.0", 1013 | "is-data-view": "^1.0.1" 1014 | }, 1015 | "engines": { 1016 | "node": ">= 0.4" 1017 | }, 1018 | "funding": { 1019 | "url": "https://github.com/sponsors/ljharb" 1020 | } 1021 | }, 1022 | "node_modules/data-view-byte-offset": { 1023 | "version": "1.0.0", 1024 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", 1025 | "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", 1026 | "license": "MIT", 1027 | "dependencies": { 1028 | "call-bind": "^1.0.6", 1029 | "es-errors": "^1.3.0", 1030 | "is-data-view": "^1.0.1" 1031 | }, 1032 | "engines": { 1033 | "node": ">= 0.4" 1034 | }, 1035 | "funding": { 1036 | "url": "https://github.com/sponsors/ljharb" 1037 | } 1038 | }, 1039 | "node_modules/debug": { 1040 | "version": "4.3.7", 1041 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1042 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1043 | "dev": true, 1044 | "license": "MIT", 1045 | "dependencies": { 1046 | "ms": "^2.1.3" 1047 | }, 1048 | "engines": { 1049 | "node": ">=6.0" 1050 | }, 1051 | "peerDependenciesMeta": { 1052 | "supports-color": { 1053 | "optional": true 1054 | } 1055 | } 1056 | }, 1057 | "node_modules/deep-is": { 1058 | "version": "0.1.4", 1059 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1060 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1061 | "dev": true, 1062 | "license": "MIT" 1063 | }, 1064 | "node_modules/define-data-property": { 1065 | "version": "1.1.4", 1066 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1067 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1068 | "license": "MIT", 1069 | "dependencies": { 1070 | "es-define-property": "^1.0.0", 1071 | "es-errors": "^1.3.0", 1072 | "gopd": "^1.0.1" 1073 | }, 1074 | "engines": { 1075 | "node": ">= 0.4" 1076 | }, 1077 | "funding": { 1078 | "url": "https://github.com/sponsors/ljharb" 1079 | } 1080 | }, 1081 | "node_modules/define-properties": { 1082 | "version": "1.2.1", 1083 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1084 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1085 | "license": "MIT", 1086 | "dependencies": { 1087 | "define-data-property": "^1.0.1", 1088 | "has-property-descriptors": "^1.0.0", 1089 | "object-keys": "^1.1.1" 1090 | }, 1091 | "engines": { 1092 | "node": ">= 0.4" 1093 | }, 1094 | "funding": { 1095 | "url": "https://github.com/sponsors/ljharb" 1096 | } 1097 | }, 1098 | "node_modules/delay": { 1099 | "version": "5.0.0", 1100 | "resolved": "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz", 1101 | "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==", 1102 | "license": "MIT", 1103 | "engines": { 1104 | "node": ">=10" 1105 | }, 1106 | "funding": { 1107 | "url": "https://github.com/sponsors/sindresorhus" 1108 | } 1109 | }, 1110 | "node_modules/delayed-stream": { 1111 | "version": "1.0.0", 1112 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1113 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1114 | "license": "MIT", 1115 | "engines": { 1116 | "node": ">=0.4.0" 1117 | } 1118 | }, 1119 | "node_modules/dotenv": { 1120 | "version": "16.4.5", 1121 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 1122 | "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 1123 | "license": "BSD-2-Clause", 1124 | "engines": { 1125 | "node": ">=12" 1126 | }, 1127 | "funding": { 1128 | "url": "https://dotenvx.com" 1129 | } 1130 | }, 1131 | "node_modules/ecc-jsbn": { 1132 | "version": "0.1.2", 1133 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 1134 | "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", 1135 | "license": "MIT", 1136 | "dependencies": { 1137 | "jsbn": "~0.1.0", 1138 | "safer-buffer": "^2.1.0" 1139 | } 1140 | }, 1141 | "node_modules/end-of-stream": { 1142 | "version": "1.4.4", 1143 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 1144 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 1145 | "license": "MIT", 1146 | "dependencies": { 1147 | "once": "^1.4.0" 1148 | } 1149 | }, 1150 | "node_modules/es-abstract": { 1151 | "version": "1.23.5", 1152 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.5.tgz", 1153 | "integrity": "sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==", 1154 | "license": "MIT", 1155 | "dependencies": { 1156 | "array-buffer-byte-length": "^1.0.1", 1157 | "arraybuffer.prototype.slice": "^1.0.3", 1158 | "available-typed-arrays": "^1.0.7", 1159 | "call-bind": "^1.0.7", 1160 | "data-view-buffer": "^1.0.1", 1161 | "data-view-byte-length": "^1.0.1", 1162 | "data-view-byte-offset": "^1.0.0", 1163 | "es-define-property": "^1.0.0", 1164 | "es-errors": "^1.3.0", 1165 | "es-object-atoms": "^1.0.0", 1166 | "es-set-tostringtag": "^2.0.3", 1167 | "es-to-primitive": "^1.2.1", 1168 | "function.prototype.name": "^1.1.6", 1169 | "get-intrinsic": "^1.2.4", 1170 | "get-symbol-description": "^1.0.2", 1171 | "globalthis": "^1.0.4", 1172 | "gopd": "^1.0.1", 1173 | "has-property-descriptors": "^1.0.2", 1174 | "has-proto": "^1.0.3", 1175 | "has-symbols": "^1.0.3", 1176 | "hasown": "^2.0.2", 1177 | "internal-slot": "^1.0.7", 1178 | "is-array-buffer": "^3.0.4", 1179 | "is-callable": "^1.2.7", 1180 | "is-data-view": "^1.0.1", 1181 | "is-negative-zero": "^2.0.3", 1182 | "is-regex": "^1.1.4", 1183 | "is-shared-array-buffer": "^1.0.3", 1184 | "is-string": "^1.0.7", 1185 | "is-typed-array": "^1.1.13", 1186 | "is-weakref": "^1.0.2", 1187 | "object-inspect": "^1.13.3", 1188 | "object-keys": "^1.1.1", 1189 | "object.assign": "^4.1.5", 1190 | "regexp.prototype.flags": "^1.5.3", 1191 | "safe-array-concat": "^1.1.2", 1192 | "safe-regex-test": "^1.0.3", 1193 | "string.prototype.trim": "^1.2.9", 1194 | "string.prototype.trimend": "^1.0.8", 1195 | "string.prototype.trimstart": "^1.0.8", 1196 | "typed-array-buffer": "^1.0.2", 1197 | "typed-array-byte-length": "^1.0.1", 1198 | "typed-array-byte-offset": "^1.0.2", 1199 | "typed-array-length": "^1.0.6", 1200 | "unbox-primitive": "^1.0.2", 1201 | "which-typed-array": "^1.1.15" 1202 | }, 1203 | "engines": { 1204 | "node": ">= 0.4" 1205 | }, 1206 | "funding": { 1207 | "url": "https://github.com/sponsors/ljharb" 1208 | } 1209 | }, 1210 | "node_modules/es-define-property": { 1211 | "version": "1.0.0", 1212 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1213 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1214 | "license": "MIT", 1215 | "dependencies": { 1216 | "get-intrinsic": "^1.2.4" 1217 | }, 1218 | "engines": { 1219 | "node": ">= 0.4" 1220 | } 1221 | }, 1222 | "node_modules/es-errors": { 1223 | "version": "1.3.0", 1224 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1225 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1226 | "license": "MIT", 1227 | "engines": { 1228 | "node": ">= 0.4" 1229 | } 1230 | }, 1231 | "node_modules/es-object-atoms": { 1232 | "version": "1.0.0", 1233 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", 1234 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", 1235 | "license": "MIT", 1236 | "dependencies": { 1237 | "es-errors": "^1.3.0" 1238 | }, 1239 | "engines": { 1240 | "node": ">= 0.4" 1241 | } 1242 | }, 1243 | "node_modules/es-set-tostringtag": { 1244 | "version": "2.0.3", 1245 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", 1246 | "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", 1247 | "license": "MIT", 1248 | "dependencies": { 1249 | "get-intrinsic": "^1.2.4", 1250 | "has-tostringtag": "^1.0.2", 1251 | "hasown": "^2.0.1" 1252 | }, 1253 | "engines": { 1254 | "node": ">= 0.4" 1255 | } 1256 | }, 1257 | "node_modules/es-shim-unscopables": { 1258 | "version": "1.0.2", 1259 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", 1260 | "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", 1261 | "license": "MIT", 1262 | "dependencies": { 1263 | "hasown": "^2.0.0" 1264 | } 1265 | }, 1266 | "node_modules/es-to-primitive": { 1267 | "version": "1.2.1", 1268 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1269 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1270 | "license": "MIT", 1271 | "dependencies": { 1272 | "is-callable": "^1.1.4", 1273 | "is-date-object": "^1.0.1", 1274 | "is-symbol": "^1.0.2" 1275 | }, 1276 | "engines": { 1277 | "node": ">= 0.4" 1278 | }, 1279 | "funding": { 1280 | "url": "https://github.com/sponsors/ljharb" 1281 | } 1282 | }, 1283 | "node_modules/es6-promise": { 1284 | "version": "4.2.8", 1285 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", 1286 | "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", 1287 | "license": "MIT" 1288 | }, 1289 | "node_modules/es6-promisify": { 1290 | "version": "5.0.0", 1291 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", 1292 | "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", 1293 | "license": "MIT", 1294 | "dependencies": { 1295 | "es6-promise": "^4.0.3" 1296 | } 1297 | }, 1298 | "node_modules/escape-string-regexp": { 1299 | "version": "4.0.0", 1300 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1301 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1302 | "dev": true, 1303 | "license": "MIT", 1304 | "engines": { 1305 | "node": ">=10" 1306 | }, 1307 | "funding": { 1308 | "url": "https://github.com/sponsors/sindresorhus" 1309 | } 1310 | }, 1311 | "node_modules/eslint": { 1312 | "version": "9.15.0", 1313 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.15.0.tgz", 1314 | "integrity": "sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==", 1315 | "dev": true, 1316 | "license": "MIT", 1317 | "dependencies": { 1318 | "@eslint-community/eslint-utils": "^4.2.0", 1319 | "@eslint-community/regexpp": "^4.12.1", 1320 | "@eslint/config-array": "^0.19.0", 1321 | "@eslint/core": "^0.9.0", 1322 | "@eslint/eslintrc": "^3.2.0", 1323 | "@eslint/js": "9.15.0", 1324 | "@eslint/plugin-kit": "^0.2.3", 1325 | "@humanfs/node": "^0.16.6", 1326 | "@humanwhocodes/module-importer": "^1.0.1", 1327 | "@humanwhocodes/retry": "^0.4.1", 1328 | "@types/estree": "^1.0.6", 1329 | "@types/json-schema": "^7.0.15", 1330 | "ajv": "^6.12.4", 1331 | "chalk": "^4.0.0", 1332 | "cross-spawn": "^7.0.5", 1333 | "debug": "^4.3.2", 1334 | "escape-string-regexp": "^4.0.0", 1335 | "eslint-scope": "^8.2.0", 1336 | "eslint-visitor-keys": "^4.2.0", 1337 | "espree": "^10.3.0", 1338 | "esquery": "^1.5.0", 1339 | "esutils": "^2.0.2", 1340 | "fast-deep-equal": "^3.1.3", 1341 | "file-entry-cache": "^8.0.0", 1342 | "find-up": "^5.0.0", 1343 | "glob-parent": "^6.0.2", 1344 | "ignore": "^5.2.0", 1345 | "imurmurhash": "^0.1.4", 1346 | "is-glob": "^4.0.0", 1347 | "json-stable-stringify-without-jsonify": "^1.0.1", 1348 | "lodash.merge": "^4.6.2", 1349 | "minimatch": "^3.1.2", 1350 | "natural-compare": "^1.4.0", 1351 | "optionator": "^0.9.3" 1352 | }, 1353 | "bin": { 1354 | "eslint": "bin/eslint.js" 1355 | }, 1356 | "engines": { 1357 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1358 | }, 1359 | "funding": { 1360 | "url": "https://eslint.org/donate" 1361 | }, 1362 | "peerDependencies": { 1363 | "jiti": "*" 1364 | }, 1365 | "peerDependenciesMeta": { 1366 | "jiti": { 1367 | "optional": true 1368 | } 1369 | } 1370 | }, 1371 | "node_modules/eslint-config-prettier": { 1372 | "version": "9.1.0", 1373 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 1374 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 1375 | "dev": true, 1376 | "license": "MIT", 1377 | "bin": { 1378 | "eslint-config-prettier": "bin/cli.js" 1379 | }, 1380 | "peerDependencies": { 1381 | "eslint": ">=7.0.0" 1382 | } 1383 | }, 1384 | "node_modules/eslint-plugin-prettier": { 1385 | "version": "5.2.1", 1386 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", 1387 | "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", 1388 | "dev": true, 1389 | "license": "MIT", 1390 | "dependencies": { 1391 | "prettier-linter-helpers": "^1.0.0", 1392 | "synckit": "^0.9.1" 1393 | }, 1394 | "engines": { 1395 | "node": "^14.18.0 || >=16.0.0" 1396 | }, 1397 | "funding": { 1398 | "url": "https://opencollective.com/eslint-plugin-prettier" 1399 | }, 1400 | "peerDependencies": { 1401 | "@types/eslint": ">=8.0.0", 1402 | "eslint": ">=8.0.0", 1403 | "eslint-config-prettier": "*", 1404 | "prettier": ">=3.0.0" 1405 | }, 1406 | "peerDependenciesMeta": { 1407 | "@types/eslint": { 1408 | "optional": true 1409 | }, 1410 | "eslint-config-prettier": { 1411 | "optional": true 1412 | } 1413 | } 1414 | }, 1415 | "node_modules/eslint-scope": { 1416 | "version": "8.2.0", 1417 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1418 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1419 | "dev": true, 1420 | "license": "BSD-2-Clause", 1421 | "dependencies": { 1422 | "esrecurse": "^4.3.0", 1423 | "estraverse": "^5.2.0" 1424 | }, 1425 | "engines": { 1426 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1427 | }, 1428 | "funding": { 1429 | "url": "https://opencollective.com/eslint" 1430 | } 1431 | }, 1432 | "node_modules/eslint-visitor-keys": { 1433 | "version": "4.2.0", 1434 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1435 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1436 | "dev": true, 1437 | "license": "Apache-2.0", 1438 | "engines": { 1439 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1440 | }, 1441 | "funding": { 1442 | "url": "https://opencollective.com/eslint" 1443 | } 1444 | }, 1445 | "node_modules/espree": { 1446 | "version": "10.3.0", 1447 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1448 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1449 | "dev": true, 1450 | "license": "BSD-2-Clause", 1451 | "dependencies": { 1452 | "acorn": "^8.14.0", 1453 | "acorn-jsx": "^5.3.2", 1454 | "eslint-visitor-keys": "^4.2.0" 1455 | }, 1456 | "engines": { 1457 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1458 | }, 1459 | "funding": { 1460 | "url": "https://opencollective.com/eslint" 1461 | } 1462 | }, 1463 | "node_modules/esquery": { 1464 | "version": "1.6.0", 1465 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1466 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1467 | "dev": true, 1468 | "license": "BSD-3-Clause", 1469 | "dependencies": { 1470 | "estraverse": "^5.1.0" 1471 | }, 1472 | "engines": { 1473 | "node": ">=0.10" 1474 | } 1475 | }, 1476 | "node_modules/esrecurse": { 1477 | "version": "4.3.0", 1478 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1479 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1480 | "dev": true, 1481 | "license": "BSD-2-Clause", 1482 | "dependencies": { 1483 | "estraverse": "^5.2.0" 1484 | }, 1485 | "engines": { 1486 | "node": ">=4.0" 1487 | } 1488 | }, 1489 | "node_modules/estraverse": { 1490 | "version": "5.3.0", 1491 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1492 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1493 | "dev": true, 1494 | "license": "BSD-2-Clause", 1495 | "engines": { 1496 | "node": ">=4.0" 1497 | } 1498 | }, 1499 | "node_modules/esutils": { 1500 | "version": "2.0.3", 1501 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1502 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1503 | "dev": true, 1504 | "license": "BSD-2-Clause", 1505 | "engines": { 1506 | "node": ">=0.10.0" 1507 | } 1508 | }, 1509 | "node_modules/eventemitter3": { 1510 | "version": "3.1.2", 1511 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", 1512 | "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", 1513 | "license": "MIT" 1514 | }, 1515 | "node_modules/extend": { 1516 | "version": "3.0.2", 1517 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1518 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 1519 | "license": "MIT" 1520 | }, 1521 | "node_modules/extsprintf": { 1522 | "version": "1.3.0", 1523 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 1524 | "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", 1525 | "engines": [ 1526 | "node >=0.6.0" 1527 | ], 1528 | "license": "MIT" 1529 | }, 1530 | "node_modules/eyes": { 1531 | "version": "0.1.8", 1532 | "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", 1533 | "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==", 1534 | "engines": { 1535 | "node": "> 0.1.90" 1536 | } 1537 | }, 1538 | "node_modules/fast-deep-equal": { 1539 | "version": "3.1.3", 1540 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1541 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1542 | "license": "MIT" 1543 | }, 1544 | "node_modules/fast-diff": { 1545 | "version": "1.3.0", 1546 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1547 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1548 | "dev": true, 1549 | "license": "Apache-2.0" 1550 | }, 1551 | "node_modules/fast-json-stable-stringify": { 1552 | "version": "2.1.0", 1553 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1554 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1555 | "license": "MIT" 1556 | }, 1557 | "node_modules/fast-levenshtein": { 1558 | "version": "2.0.6", 1559 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1560 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1561 | "dev": true, 1562 | "license": "MIT" 1563 | }, 1564 | "node_modules/fast-stable-stringify": { 1565 | "version": "1.0.0", 1566 | "resolved": "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz", 1567 | "integrity": "sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==", 1568 | "license": "MIT" 1569 | }, 1570 | "node_modules/file-entry-cache": { 1571 | "version": "8.0.0", 1572 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1573 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1574 | "dev": true, 1575 | "license": "MIT", 1576 | "dependencies": { 1577 | "flat-cache": "^4.0.0" 1578 | }, 1579 | "engines": { 1580 | "node": ">=16.0.0" 1581 | } 1582 | }, 1583 | "node_modules/file-type": { 1584 | "version": "3.9.0", 1585 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", 1586 | "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", 1587 | "license": "MIT", 1588 | "engines": { 1589 | "node": ">=0.10.0" 1590 | } 1591 | }, 1592 | "node_modules/file-uri-to-path": { 1593 | "version": "1.0.0", 1594 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 1595 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 1596 | "license": "MIT" 1597 | }, 1598 | "node_modules/fill-range": { 1599 | "version": "7.1.1", 1600 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1601 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1602 | "dev": true, 1603 | "license": "MIT", 1604 | "dependencies": { 1605 | "to-regex-range": "^5.0.1" 1606 | }, 1607 | "engines": { 1608 | "node": ">=8" 1609 | } 1610 | }, 1611 | "node_modules/find-up": { 1612 | "version": "5.0.0", 1613 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1614 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1615 | "dev": true, 1616 | "license": "MIT", 1617 | "dependencies": { 1618 | "locate-path": "^6.0.0", 1619 | "path-exists": "^4.0.0" 1620 | }, 1621 | "engines": { 1622 | "node": ">=10" 1623 | }, 1624 | "funding": { 1625 | "url": "https://github.com/sponsors/sindresorhus" 1626 | } 1627 | }, 1628 | "node_modules/flat-cache": { 1629 | "version": "4.0.1", 1630 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1631 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1632 | "dev": true, 1633 | "license": "MIT", 1634 | "dependencies": { 1635 | "flatted": "^3.2.9", 1636 | "keyv": "^4.5.4" 1637 | }, 1638 | "engines": { 1639 | "node": ">=16" 1640 | } 1641 | }, 1642 | "node_modules/flatted": { 1643 | "version": "3.3.2", 1644 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1645 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1646 | "dev": true, 1647 | "license": "ISC" 1648 | }, 1649 | "node_modules/for-each": { 1650 | "version": "0.3.3", 1651 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1652 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1653 | "license": "MIT", 1654 | "dependencies": { 1655 | "is-callable": "^1.1.3" 1656 | } 1657 | }, 1658 | "node_modules/forever-agent": { 1659 | "version": "0.6.1", 1660 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 1661 | "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", 1662 | "license": "Apache-2.0", 1663 | "engines": { 1664 | "node": "*" 1665 | } 1666 | }, 1667 | "node_modules/form-data": { 1668 | "version": "4.0.1", 1669 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 1670 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 1671 | "license": "MIT", 1672 | "dependencies": { 1673 | "asynckit": "^0.4.0", 1674 | "combined-stream": "^1.0.8", 1675 | "mime-types": "^2.1.12" 1676 | }, 1677 | "engines": { 1678 | "node": ">= 6" 1679 | } 1680 | }, 1681 | "node_modules/fsevents": { 1682 | "version": "2.3.3", 1683 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1684 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1685 | "dev": true, 1686 | "hasInstallScript": true, 1687 | "license": "MIT", 1688 | "optional": true, 1689 | "os": [ 1690 | "darwin" 1691 | ], 1692 | "engines": { 1693 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1694 | } 1695 | }, 1696 | "node_modules/function-bind": { 1697 | "version": "1.1.2", 1698 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1699 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1700 | "license": "MIT", 1701 | "funding": { 1702 | "url": "https://github.com/sponsors/ljharb" 1703 | } 1704 | }, 1705 | "node_modules/function.prototype.name": { 1706 | "version": "1.1.6", 1707 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 1708 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 1709 | "license": "MIT", 1710 | "dependencies": { 1711 | "call-bind": "^1.0.2", 1712 | "define-properties": "^1.2.0", 1713 | "es-abstract": "^1.22.1", 1714 | "functions-have-names": "^1.2.3" 1715 | }, 1716 | "engines": { 1717 | "node": ">= 0.4" 1718 | }, 1719 | "funding": { 1720 | "url": "https://github.com/sponsors/ljharb" 1721 | } 1722 | }, 1723 | "node_modules/functions-have-names": { 1724 | "version": "1.2.3", 1725 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1726 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1727 | "license": "MIT", 1728 | "funding": { 1729 | "url": "https://github.com/sponsors/ljharb" 1730 | } 1731 | }, 1732 | "node_modules/get-intrinsic": { 1733 | "version": "1.2.4", 1734 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1735 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1736 | "license": "MIT", 1737 | "dependencies": { 1738 | "es-errors": "^1.3.0", 1739 | "function-bind": "^1.1.2", 1740 | "has-proto": "^1.0.1", 1741 | "has-symbols": "^1.0.3", 1742 | "hasown": "^2.0.0" 1743 | }, 1744 | "engines": { 1745 | "node": ">= 0.4" 1746 | }, 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/ljharb" 1749 | } 1750 | }, 1751 | "node_modules/get-symbol-description": { 1752 | "version": "1.0.2", 1753 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", 1754 | "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", 1755 | "license": "MIT", 1756 | "dependencies": { 1757 | "call-bind": "^1.0.5", 1758 | "es-errors": "^1.3.0", 1759 | "get-intrinsic": "^1.2.4" 1760 | }, 1761 | "engines": { 1762 | "node": ">= 0.4" 1763 | }, 1764 | "funding": { 1765 | "url": "https://github.com/sponsors/ljharb" 1766 | } 1767 | }, 1768 | "node_modules/getpass": { 1769 | "version": "0.1.7", 1770 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 1771 | "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", 1772 | "license": "MIT", 1773 | "dependencies": { 1774 | "assert-plus": "^1.0.0" 1775 | } 1776 | }, 1777 | "node_modules/glob-parent": { 1778 | "version": "6.0.2", 1779 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1780 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1781 | "dev": true, 1782 | "license": "ISC", 1783 | "dependencies": { 1784 | "is-glob": "^4.0.3" 1785 | }, 1786 | "engines": { 1787 | "node": ">=10.13.0" 1788 | } 1789 | }, 1790 | "node_modules/globals": { 1791 | "version": "15.12.0", 1792 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.12.0.tgz", 1793 | "integrity": "sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==", 1794 | "dev": true, 1795 | "license": "MIT", 1796 | "engines": { 1797 | "node": ">=18" 1798 | }, 1799 | "funding": { 1800 | "url": "https://github.com/sponsors/sindresorhus" 1801 | } 1802 | }, 1803 | "node_modules/globalthis": { 1804 | "version": "1.0.4", 1805 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 1806 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 1807 | "license": "MIT", 1808 | "dependencies": { 1809 | "define-properties": "^1.2.1", 1810 | "gopd": "^1.0.1" 1811 | }, 1812 | "engines": { 1813 | "node": ">= 0.4" 1814 | }, 1815 | "funding": { 1816 | "url": "https://github.com/sponsors/ljharb" 1817 | } 1818 | }, 1819 | "node_modules/gopd": { 1820 | "version": "1.0.1", 1821 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1822 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1823 | "license": "MIT", 1824 | "dependencies": { 1825 | "get-intrinsic": "^1.1.3" 1826 | }, 1827 | "funding": { 1828 | "url": "https://github.com/sponsors/ljharb" 1829 | } 1830 | }, 1831 | "node_modules/har-schema": { 1832 | "version": "2.0.0", 1833 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 1834 | "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", 1835 | "license": "ISC", 1836 | "peer": true, 1837 | "engines": { 1838 | "node": ">=4" 1839 | } 1840 | }, 1841 | "node_modules/har-validator": { 1842 | "version": "5.1.5", 1843 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 1844 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 1845 | "deprecated": "this library is no longer supported", 1846 | "license": "MIT", 1847 | "peer": true, 1848 | "dependencies": { 1849 | "ajv": "^6.12.3", 1850 | "har-schema": "^2.0.0" 1851 | }, 1852 | "engines": { 1853 | "node": ">=6" 1854 | } 1855 | }, 1856 | "node_modules/has-bigints": { 1857 | "version": "1.0.2", 1858 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1859 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1860 | "license": "MIT", 1861 | "funding": { 1862 | "url": "https://github.com/sponsors/ljharb" 1863 | } 1864 | }, 1865 | "node_modules/has-flag": { 1866 | "version": "4.0.0", 1867 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1868 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1869 | "dev": true, 1870 | "license": "MIT", 1871 | "engines": { 1872 | "node": ">=8" 1873 | } 1874 | }, 1875 | "node_modules/has-property-descriptors": { 1876 | "version": "1.0.2", 1877 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1878 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1879 | "license": "MIT", 1880 | "dependencies": { 1881 | "es-define-property": "^1.0.0" 1882 | }, 1883 | "funding": { 1884 | "url": "https://github.com/sponsors/ljharb" 1885 | } 1886 | }, 1887 | "node_modules/has-proto": { 1888 | "version": "1.0.3", 1889 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 1890 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 1891 | "license": "MIT", 1892 | "engines": { 1893 | "node": ">= 0.4" 1894 | }, 1895 | "funding": { 1896 | "url": "https://github.com/sponsors/ljharb" 1897 | } 1898 | }, 1899 | "node_modules/has-symbols": { 1900 | "version": "1.0.3", 1901 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1902 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1903 | "license": "MIT", 1904 | "engines": { 1905 | "node": ">= 0.4" 1906 | }, 1907 | "funding": { 1908 | "url": "https://github.com/sponsors/ljharb" 1909 | } 1910 | }, 1911 | "node_modules/has-tostringtag": { 1912 | "version": "1.0.2", 1913 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1914 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1915 | "license": "MIT", 1916 | "dependencies": { 1917 | "has-symbols": "^1.0.3" 1918 | }, 1919 | "engines": { 1920 | "node": ">= 0.4" 1921 | }, 1922 | "funding": { 1923 | "url": "https://github.com/sponsors/ljharb" 1924 | } 1925 | }, 1926 | "node_modules/hasown": { 1927 | "version": "2.0.2", 1928 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1929 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1930 | "license": "MIT", 1931 | "dependencies": { 1932 | "function-bind": "^1.1.2" 1933 | }, 1934 | "engines": { 1935 | "node": ">= 0.4" 1936 | } 1937 | }, 1938 | "node_modules/http-signature": { 1939 | "version": "1.4.0", 1940 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.4.0.tgz", 1941 | "integrity": "sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==", 1942 | "license": "MIT", 1943 | "dependencies": { 1944 | "assert-plus": "^1.0.0", 1945 | "jsprim": "^2.0.2", 1946 | "sshpk": "^1.18.0" 1947 | }, 1948 | "engines": { 1949 | "node": ">=0.10" 1950 | } 1951 | }, 1952 | "node_modules/humanize-ms": { 1953 | "version": "1.2.1", 1954 | "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", 1955 | "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", 1956 | "license": "MIT", 1957 | "dependencies": { 1958 | "ms": "^2.0.0" 1959 | } 1960 | }, 1961 | "node_modules/ieee754": { 1962 | "version": "1.2.1", 1963 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1964 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1965 | "funding": [ 1966 | { 1967 | "type": "github", 1968 | "url": "https://github.com/sponsors/feross" 1969 | }, 1970 | { 1971 | "type": "patreon", 1972 | "url": "https://www.patreon.com/feross" 1973 | }, 1974 | { 1975 | "type": "consulting", 1976 | "url": "https://feross.org/support" 1977 | } 1978 | ], 1979 | "license": "BSD-3-Clause" 1980 | }, 1981 | "node_modules/ignore": { 1982 | "version": "5.3.2", 1983 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1984 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1985 | "dev": true, 1986 | "license": "MIT", 1987 | "engines": { 1988 | "node": ">= 4" 1989 | } 1990 | }, 1991 | "node_modules/ignore-by-default": { 1992 | "version": "1.0.1", 1993 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1994 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 1995 | "dev": true, 1996 | "license": "ISC" 1997 | }, 1998 | "node_modules/import-fresh": { 1999 | "version": "3.3.0", 2000 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2001 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2002 | "dev": true, 2003 | "license": "MIT", 2004 | "dependencies": { 2005 | "parent-module": "^1.0.0", 2006 | "resolve-from": "^4.0.0" 2007 | }, 2008 | "engines": { 2009 | "node": ">=6" 2010 | }, 2011 | "funding": { 2012 | "url": "https://github.com/sponsors/sindresorhus" 2013 | } 2014 | }, 2015 | "node_modules/imurmurhash": { 2016 | "version": "0.1.4", 2017 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2018 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2019 | "dev": true, 2020 | "license": "MIT", 2021 | "engines": { 2022 | "node": ">=0.8.19" 2023 | } 2024 | }, 2025 | "node_modules/inherits": { 2026 | "version": "2.0.4", 2027 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2028 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2029 | "license": "ISC" 2030 | }, 2031 | "node_modules/internal-slot": { 2032 | "version": "1.0.7", 2033 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", 2034 | "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", 2035 | "license": "MIT", 2036 | "dependencies": { 2037 | "es-errors": "^1.3.0", 2038 | "hasown": "^2.0.0", 2039 | "side-channel": "^1.0.4" 2040 | }, 2041 | "engines": { 2042 | "node": ">= 0.4" 2043 | } 2044 | }, 2045 | "node_modules/is-array-buffer": { 2046 | "version": "3.0.4", 2047 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", 2048 | "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", 2049 | "license": "MIT", 2050 | "dependencies": { 2051 | "call-bind": "^1.0.2", 2052 | "get-intrinsic": "^1.2.1" 2053 | }, 2054 | "engines": { 2055 | "node": ">= 0.4" 2056 | }, 2057 | "funding": { 2058 | "url": "https://github.com/sponsors/ljharb" 2059 | } 2060 | }, 2061 | "node_modules/is-async-function": { 2062 | "version": "2.0.0", 2063 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", 2064 | "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", 2065 | "license": "MIT", 2066 | "dependencies": { 2067 | "has-tostringtag": "^1.0.0" 2068 | }, 2069 | "engines": { 2070 | "node": ">= 0.4" 2071 | }, 2072 | "funding": { 2073 | "url": "https://github.com/sponsors/ljharb" 2074 | } 2075 | }, 2076 | "node_modules/is-bigint": { 2077 | "version": "1.0.4", 2078 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2079 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2080 | "license": "MIT", 2081 | "dependencies": { 2082 | "has-bigints": "^1.0.1" 2083 | }, 2084 | "funding": { 2085 | "url": "https://github.com/sponsors/ljharb" 2086 | } 2087 | }, 2088 | "node_modules/is-binary-path": { 2089 | "version": "2.1.0", 2090 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2091 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2092 | "dev": true, 2093 | "license": "MIT", 2094 | "dependencies": { 2095 | "binary-extensions": "^2.0.0" 2096 | }, 2097 | "engines": { 2098 | "node": ">=8" 2099 | } 2100 | }, 2101 | "node_modules/is-boolean-object": { 2102 | "version": "1.1.2", 2103 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2104 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2105 | "license": "MIT", 2106 | "dependencies": { 2107 | "call-bind": "^1.0.2", 2108 | "has-tostringtag": "^1.0.0" 2109 | }, 2110 | "engines": { 2111 | "node": ">= 0.4" 2112 | }, 2113 | "funding": { 2114 | "url": "https://github.com/sponsors/ljharb" 2115 | } 2116 | }, 2117 | "node_modules/is-callable": { 2118 | "version": "1.2.7", 2119 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2120 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2121 | "license": "MIT", 2122 | "engines": { 2123 | "node": ">= 0.4" 2124 | }, 2125 | "funding": { 2126 | "url": "https://github.com/sponsors/ljharb" 2127 | } 2128 | }, 2129 | "node_modules/is-data-view": { 2130 | "version": "1.0.1", 2131 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", 2132 | "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", 2133 | "license": "MIT", 2134 | "dependencies": { 2135 | "is-typed-array": "^1.1.13" 2136 | }, 2137 | "engines": { 2138 | "node": ">= 0.4" 2139 | }, 2140 | "funding": { 2141 | "url": "https://github.com/sponsors/ljharb" 2142 | } 2143 | }, 2144 | "node_modules/is-date-object": { 2145 | "version": "1.0.5", 2146 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2147 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2148 | "license": "MIT", 2149 | "dependencies": { 2150 | "has-tostringtag": "^1.0.0" 2151 | }, 2152 | "engines": { 2153 | "node": ">= 0.4" 2154 | }, 2155 | "funding": { 2156 | "url": "https://github.com/sponsors/ljharb" 2157 | } 2158 | }, 2159 | "node_modules/is-extglob": { 2160 | "version": "2.1.1", 2161 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2162 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2163 | "dev": true, 2164 | "license": "MIT", 2165 | "engines": { 2166 | "node": ">=0.10.0" 2167 | } 2168 | }, 2169 | "node_modules/is-finalizationregistry": { 2170 | "version": "1.1.0", 2171 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz", 2172 | "integrity": "sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==", 2173 | "license": "MIT", 2174 | "dependencies": { 2175 | "call-bind": "^1.0.7" 2176 | }, 2177 | "engines": { 2178 | "node": ">= 0.4" 2179 | }, 2180 | "funding": { 2181 | "url": "https://github.com/sponsors/ljharb" 2182 | } 2183 | }, 2184 | "node_modules/is-generator-function": { 2185 | "version": "1.0.10", 2186 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 2187 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 2188 | "license": "MIT", 2189 | "dependencies": { 2190 | "has-tostringtag": "^1.0.0" 2191 | }, 2192 | "engines": { 2193 | "node": ">= 0.4" 2194 | }, 2195 | "funding": { 2196 | "url": "https://github.com/sponsors/ljharb" 2197 | } 2198 | }, 2199 | "node_modules/is-glob": { 2200 | "version": "4.0.3", 2201 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2202 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2203 | "dev": true, 2204 | "license": "MIT", 2205 | "dependencies": { 2206 | "is-extglob": "^2.1.1" 2207 | }, 2208 | "engines": { 2209 | "node": ">=0.10.0" 2210 | } 2211 | }, 2212 | "node_modules/is-map": { 2213 | "version": "2.0.3", 2214 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", 2215 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", 2216 | "license": "MIT", 2217 | "engines": { 2218 | "node": ">= 0.4" 2219 | }, 2220 | "funding": { 2221 | "url": "https://github.com/sponsors/ljharb" 2222 | } 2223 | }, 2224 | "node_modules/is-negative-zero": { 2225 | "version": "2.0.3", 2226 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", 2227 | "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", 2228 | "license": "MIT", 2229 | "engines": { 2230 | "node": ">= 0.4" 2231 | }, 2232 | "funding": { 2233 | "url": "https://github.com/sponsors/ljharb" 2234 | } 2235 | }, 2236 | "node_modules/is-number": { 2237 | "version": "7.0.0", 2238 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2239 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2240 | "dev": true, 2241 | "license": "MIT", 2242 | "engines": { 2243 | "node": ">=0.12.0" 2244 | } 2245 | }, 2246 | "node_modules/is-number-object": { 2247 | "version": "1.0.7", 2248 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2249 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2250 | "license": "MIT", 2251 | "dependencies": { 2252 | "has-tostringtag": "^1.0.0" 2253 | }, 2254 | "engines": { 2255 | "node": ">= 0.4" 2256 | }, 2257 | "funding": { 2258 | "url": "https://github.com/sponsors/ljharb" 2259 | } 2260 | }, 2261 | "node_modules/is-regex": { 2262 | "version": "1.1.4", 2263 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2264 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2265 | "license": "MIT", 2266 | "dependencies": { 2267 | "call-bind": "^1.0.2", 2268 | "has-tostringtag": "^1.0.0" 2269 | }, 2270 | "engines": { 2271 | "node": ">= 0.4" 2272 | }, 2273 | "funding": { 2274 | "url": "https://github.com/sponsors/ljharb" 2275 | } 2276 | }, 2277 | "node_modules/is-set": { 2278 | "version": "2.0.3", 2279 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", 2280 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", 2281 | "license": "MIT", 2282 | "engines": { 2283 | "node": ">= 0.4" 2284 | }, 2285 | "funding": { 2286 | "url": "https://github.com/sponsors/ljharb" 2287 | } 2288 | }, 2289 | "node_modules/is-shared-array-buffer": { 2290 | "version": "1.0.3", 2291 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", 2292 | "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", 2293 | "license": "MIT", 2294 | "dependencies": { 2295 | "call-bind": "^1.0.7" 2296 | }, 2297 | "engines": { 2298 | "node": ">= 0.4" 2299 | }, 2300 | "funding": { 2301 | "url": "https://github.com/sponsors/ljharb" 2302 | } 2303 | }, 2304 | "node_modules/is-string": { 2305 | "version": "1.0.7", 2306 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2307 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2308 | "license": "MIT", 2309 | "dependencies": { 2310 | "has-tostringtag": "^1.0.0" 2311 | }, 2312 | "engines": { 2313 | "node": ">= 0.4" 2314 | }, 2315 | "funding": { 2316 | "url": "https://github.com/sponsors/ljharb" 2317 | } 2318 | }, 2319 | "node_modules/is-symbol": { 2320 | "version": "1.0.4", 2321 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2322 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2323 | "license": "MIT", 2324 | "dependencies": { 2325 | "has-symbols": "^1.0.2" 2326 | }, 2327 | "engines": { 2328 | "node": ">= 0.4" 2329 | }, 2330 | "funding": { 2331 | "url": "https://github.com/sponsors/ljharb" 2332 | } 2333 | }, 2334 | "node_modules/is-typed-array": { 2335 | "version": "1.1.13", 2336 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", 2337 | "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "which-typed-array": "^1.1.14" 2341 | }, 2342 | "engines": { 2343 | "node": ">= 0.4" 2344 | }, 2345 | "funding": { 2346 | "url": "https://github.com/sponsors/ljharb" 2347 | } 2348 | }, 2349 | "node_modules/is-typedarray": { 2350 | "version": "1.0.0", 2351 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 2352 | "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", 2353 | "license": "MIT" 2354 | }, 2355 | "node_modules/is-weakmap": { 2356 | "version": "2.0.2", 2357 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", 2358 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", 2359 | "license": "MIT", 2360 | "engines": { 2361 | "node": ">= 0.4" 2362 | }, 2363 | "funding": { 2364 | "url": "https://github.com/sponsors/ljharb" 2365 | } 2366 | }, 2367 | "node_modules/is-weakref": { 2368 | "version": "1.0.2", 2369 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2370 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2371 | "license": "MIT", 2372 | "dependencies": { 2373 | "call-bind": "^1.0.2" 2374 | }, 2375 | "funding": { 2376 | "url": "https://github.com/sponsors/ljharb" 2377 | } 2378 | }, 2379 | "node_modules/is-weakset": { 2380 | "version": "2.0.3", 2381 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", 2382 | "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", 2383 | "license": "MIT", 2384 | "dependencies": { 2385 | "call-bind": "^1.0.7", 2386 | "get-intrinsic": "^1.2.4" 2387 | }, 2388 | "engines": { 2389 | "node": ">= 0.4" 2390 | }, 2391 | "funding": { 2392 | "url": "https://github.com/sponsors/ljharb" 2393 | } 2394 | }, 2395 | "node_modules/isarray": { 2396 | "version": "1.0.0", 2397 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 2398 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 2399 | "license": "MIT" 2400 | }, 2401 | "node_modules/isexe": { 2402 | "version": "2.0.0", 2403 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2404 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2405 | "dev": true, 2406 | "license": "ISC" 2407 | }, 2408 | "node_modules/isomorphic-ws": { 2409 | "version": "4.0.1", 2410 | "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", 2411 | "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", 2412 | "license": "MIT", 2413 | "peerDependencies": { 2414 | "ws": "*" 2415 | } 2416 | }, 2417 | "node_modules/isstream": { 2418 | "version": "0.1.2", 2419 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 2420 | "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", 2421 | "license": "MIT" 2422 | }, 2423 | "node_modules/jayson": { 2424 | "version": "4.1.2", 2425 | "resolved": "https://registry.npmjs.org/jayson/-/jayson-4.1.2.tgz", 2426 | "integrity": "sha512-5nzMWDHy6f+koZOuYsArh2AXs73NfWYVlFyJJuCedr93GpY+Ku8qq10ropSXVfHK+H0T6paA88ww+/dV+1fBNA==", 2427 | "license": "MIT", 2428 | "dependencies": { 2429 | "@types/connect": "^3.4.33", 2430 | "@types/node": "^12.12.54", 2431 | "@types/ws": "^7.4.4", 2432 | "commander": "^2.20.3", 2433 | "delay": "^5.0.0", 2434 | "es6-promisify": "^5.0.0", 2435 | "eyes": "^0.1.8", 2436 | "isomorphic-ws": "^4.0.1", 2437 | "json-stringify-safe": "^5.0.1", 2438 | "JSONStream": "^1.3.5", 2439 | "uuid": "^8.3.2", 2440 | "ws": "^7.5.10" 2441 | }, 2442 | "bin": { 2443 | "jayson": "bin/jayson.js" 2444 | }, 2445 | "engines": { 2446 | "node": ">=8" 2447 | } 2448 | }, 2449 | "node_modules/js-yaml": { 2450 | "version": "4.1.0", 2451 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2452 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2453 | "dev": true, 2454 | "license": "MIT", 2455 | "dependencies": { 2456 | "argparse": "^2.0.1" 2457 | }, 2458 | "bin": { 2459 | "js-yaml": "bin/js-yaml.js" 2460 | } 2461 | }, 2462 | "node_modules/jsbn": { 2463 | "version": "0.1.1", 2464 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 2465 | "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", 2466 | "license": "MIT" 2467 | }, 2468 | "node_modules/json-buffer": { 2469 | "version": "3.0.1", 2470 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2471 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2472 | "dev": true, 2473 | "license": "MIT" 2474 | }, 2475 | "node_modules/json-schema": { 2476 | "version": "0.4.0", 2477 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", 2478 | "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", 2479 | "license": "(AFL-2.1 OR BSD-3-Clause)" 2480 | }, 2481 | "node_modules/json-schema-traverse": { 2482 | "version": "0.4.1", 2483 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2484 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2485 | "license": "MIT" 2486 | }, 2487 | "node_modules/json-stable-stringify-without-jsonify": { 2488 | "version": "1.0.1", 2489 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2490 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2491 | "dev": true, 2492 | "license": "MIT" 2493 | }, 2494 | "node_modules/json-stringify-safe": { 2495 | "version": "5.0.1", 2496 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 2497 | "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", 2498 | "license": "ISC" 2499 | }, 2500 | "node_modules/jsonparse": { 2501 | "version": "1.3.1", 2502 | "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", 2503 | "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", 2504 | "engines": [ 2505 | "node >= 0.2.0" 2506 | ], 2507 | "license": "MIT" 2508 | }, 2509 | "node_modules/JSONStream": { 2510 | "version": "1.3.5", 2511 | "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", 2512 | "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", 2513 | "license": "(MIT OR Apache-2.0)", 2514 | "dependencies": { 2515 | "jsonparse": "^1.2.0", 2516 | "through": ">=2.2.7 <3" 2517 | }, 2518 | "bin": { 2519 | "JSONStream": "bin.js" 2520 | }, 2521 | "engines": { 2522 | "node": "*" 2523 | } 2524 | }, 2525 | "node_modules/jsprim": { 2526 | "version": "2.0.2", 2527 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", 2528 | "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", 2529 | "engines": [ 2530 | "node >=0.6.0" 2531 | ], 2532 | "license": "MIT", 2533 | "dependencies": { 2534 | "assert-plus": "1.0.0", 2535 | "extsprintf": "1.3.0", 2536 | "json-schema": "0.4.0", 2537 | "verror": "1.10.0" 2538 | } 2539 | }, 2540 | "node_modules/keyv": { 2541 | "version": "4.5.4", 2542 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2543 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2544 | "dev": true, 2545 | "license": "MIT", 2546 | "dependencies": { 2547 | "json-buffer": "3.0.1" 2548 | } 2549 | }, 2550 | "node_modules/levn": { 2551 | "version": "0.4.1", 2552 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2553 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2554 | "dev": true, 2555 | "license": "MIT", 2556 | "dependencies": { 2557 | "prelude-ls": "^1.2.1", 2558 | "type-check": "~0.4.0" 2559 | }, 2560 | "engines": { 2561 | "node": ">= 0.8.0" 2562 | } 2563 | }, 2564 | "node_modules/locate-path": { 2565 | "version": "6.0.0", 2566 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2567 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2568 | "dev": true, 2569 | "license": "MIT", 2570 | "dependencies": { 2571 | "p-locate": "^5.0.0" 2572 | }, 2573 | "engines": { 2574 | "node": ">=10" 2575 | }, 2576 | "funding": { 2577 | "url": "https://github.com/sponsors/sindresorhus" 2578 | } 2579 | }, 2580 | "node_modules/lodash": { 2581 | "version": "4.17.21", 2582 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2583 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2584 | "license": "MIT" 2585 | }, 2586 | "node_modules/lodash.merge": { 2587 | "version": "4.6.2", 2588 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2589 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2590 | "dev": true, 2591 | "license": "MIT" 2592 | }, 2593 | "node_modules/mime": { 2594 | "version": "1.6.0", 2595 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 2596 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 2597 | "license": "MIT", 2598 | "bin": { 2599 | "mime": "cli.js" 2600 | }, 2601 | "engines": { 2602 | "node": ">=4" 2603 | } 2604 | }, 2605 | "node_modules/mime-db": { 2606 | "version": "1.52.0", 2607 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2608 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2609 | "license": "MIT", 2610 | "engines": { 2611 | "node": ">= 0.6" 2612 | } 2613 | }, 2614 | "node_modules/mime-types": { 2615 | "version": "2.1.35", 2616 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2617 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2618 | "license": "MIT", 2619 | "dependencies": { 2620 | "mime-db": "1.52.0" 2621 | }, 2622 | "engines": { 2623 | "node": ">= 0.6" 2624 | } 2625 | }, 2626 | "node_modules/minimatch": { 2627 | "version": "3.1.2", 2628 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2629 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2630 | "dev": true, 2631 | "license": "ISC", 2632 | "dependencies": { 2633 | "brace-expansion": "^1.1.7" 2634 | }, 2635 | "engines": { 2636 | "node": "*" 2637 | } 2638 | }, 2639 | "node_modules/ms": { 2640 | "version": "2.1.3", 2641 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2642 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2643 | "license": "MIT" 2644 | }, 2645 | "node_modules/natural-compare": { 2646 | "version": "1.4.0", 2647 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2648 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2649 | "dev": true, 2650 | "license": "MIT" 2651 | }, 2652 | "node_modules/node-fetch": { 2653 | "version": "2.7.0", 2654 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2655 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2656 | "license": "MIT", 2657 | "dependencies": { 2658 | "whatwg-url": "^5.0.0" 2659 | }, 2660 | "engines": { 2661 | "node": "4.x || >=6.0.0" 2662 | }, 2663 | "peerDependencies": { 2664 | "encoding": "^0.1.0" 2665 | }, 2666 | "peerDependenciesMeta": { 2667 | "encoding": { 2668 | "optional": true 2669 | } 2670 | } 2671 | }, 2672 | "node_modules/node-gyp-build": { 2673 | "version": "4.8.4", 2674 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", 2675 | "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", 2676 | "license": "MIT", 2677 | "optional": true, 2678 | "bin": { 2679 | "node-gyp-build": "bin.js", 2680 | "node-gyp-build-optional": "optional.js", 2681 | "node-gyp-build-test": "build-test.js" 2682 | } 2683 | }, 2684 | "node_modules/node-telegram-bot-api": { 2685 | "version": "0.66.0", 2686 | "resolved": "https://registry.npmjs.org/node-telegram-bot-api/-/node-telegram-bot-api-0.66.0.tgz", 2687 | "integrity": "sha512-s4Hrg5q+VPl4/tJVG++pImxF6eb8tNJNj4KnDqAOKL6zGU34lo9RXmyAN158njwGN+v8hdNf8s9fWIYW9hPb5A==", 2688 | "license": "MIT", 2689 | "dependencies": { 2690 | "@cypress/request": "^3.0.1", 2691 | "@cypress/request-promise": "^5.0.0", 2692 | "array.prototype.findindex": "^2.0.2", 2693 | "bl": "^1.2.3", 2694 | "debug": "^3.2.7", 2695 | "eventemitter3": "^3.0.0", 2696 | "file-type": "^3.9.0", 2697 | "mime": "^1.6.0", 2698 | "pump": "^2.0.0" 2699 | }, 2700 | "engines": { 2701 | "node": ">=0.12" 2702 | } 2703 | }, 2704 | "node_modules/node-telegram-bot-api/node_modules/debug": { 2705 | "version": "3.2.7", 2706 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 2707 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 2708 | "license": "MIT", 2709 | "dependencies": { 2710 | "ms": "^2.1.1" 2711 | } 2712 | }, 2713 | "node_modules/nodemon": { 2714 | "version": "3.1.7", 2715 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", 2716 | "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", 2717 | "dev": true, 2718 | "license": "MIT", 2719 | "dependencies": { 2720 | "chokidar": "^3.5.2", 2721 | "debug": "^4", 2722 | "ignore-by-default": "^1.0.1", 2723 | "minimatch": "^3.1.2", 2724 | "pstree.remy": "^1.1.8", 2725 | "semver": "^7.5.3", 2726 | "simple-update-notifier": "^2.0.0", 2727 | "supports-color": "^5.5.0", 2728 | "touch": "^3.1.0", 2729 | "undefsafe": "^2.0.5" 2730 | }, 2731 | "bin": { 2732 | "nodemon": "bin/nodemon.js" 2733 | }, 2734 | "engines": { 2735 | "node": ">=10" 2736 | }, 2737 | "funding": { 2738 | "type": "opencollective", 2739 | "url": "https://opencollective.com/nodemon" 2740 | } 2741 | }, 2742 | "node_modules/nodemon/node_modules/has-flag": { 2743 | "version": "3.0.0", 2744 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2745 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2746 | "dev": true, 2747 | "license": "MIT", 2748 | "engines": { 2749 | "node": ">=4" 2750 | } 2751 | }, 2752 | "node_modules/nodemon/node_modules/supports-color": { 2753 | "version": "5.5.0", 2754 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2755 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2756 | "dev": true, 2757 | "license": "MIT", 2758 | "dependencies": { 2759 | "has-flag": "^3.0.0" 2760 | }, 2761 | "engines": { 2762 | "node": ">=4" 2763 | } 2764 | }, 2765 | "node_modules/normalize-path": { 2766 | "version": "3.0.0", 2767 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2768 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2769 | "dev": true, 2770 | "license": "MIT", 2771 | "engines": { 2772 | "node": ">=0.10.0" 2773 | } 2774 | }, 2775 | "node_modules/oauth-sign": { 2776 | "version": "0.9.0", 2777 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 2778 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 2779 | "license": "Apache-2.0", 2780 | "peer": true, 2781 | "engines": { 2782 | "node": "*" 2783 | } 2784 | }, 2785 | "node_modules/object-inspect": { 2786 | "version": "1.13.3", 2787 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", 2788 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", 2789 | "license": "MIT", 2790 | "engines": { 2791 | "node": ">= 0.4" 2792 | }, 2793 | "funding": { 2794 | "url": "https://github.com/sponsors/ljharb" 2795 | } 2796 | }, 2797 | "node_modules/object-keys": { 2798 | "version": "1.1.1", 2799 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2800 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2801 | "license": "MIT", 2802 | "engines": { 2803 | "node": ">= 0.4" 2804 | } 2805 | }, 2806 | "node_modules/object.assign": { 2807 | "version": "4.1.5", 2808 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", 2809 | "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", 2810 | "license": "MIT", 2811 | "dependencies": { 2812 | "call-bind": "^1.0.5", 2813 | "define-properties": "^1.2.1", 2814 | "has-symbols": "^1.0.3", 2815 | "object-keys": "^1.1.1" 2816 | }, 2817 | "engines": { 2818 | "node": ">= 0.4" 2819 | }, 2820 | "funding": { 2821 | "url": "https://github.com/sponsors/ljharb" 2822 | } 2823 | }, 2824 | "node_modules/once": { 2825 | "version": "1.4.0", 2826 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2827 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2828 | "license": "ISC", 2829 | "dependencies": { 2830 | "wrappy": "1" 2831 | } 2832 | }, 2833 | "node_modules/optionator": { 2834 | "version": "0.9.4", 2835 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2836 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2837 | "dev": true, 2838 | "license": "MIT", 2839 | "dependencies": { 2840 | "deep-is": "^0.1.3", 2841 | "fast-levenshtein": "^2.0.6", 2842 | "levn": "^0.4.1", 2843 | "prelude-ls": "^1.2.1", 2844 | "type-check": "^0.4.0", 2845 | "word-wrap": "^1.2.5" 2846 | }, 2847 | "engines": { 2848 | "node": ">= 0.8.0" 2849 | } 2850 | }, 2851 | "node_modules/p-limit": { 2852 | "version": "3.1.0", 2853 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2854 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2855 | "dev": true, 2856 | "license": "MIT", 2857 | "dependencies": { 2858 | "yocto-queue": "^0.1.0" 2859 | }, 2860 | "engines": { 2861 | "node": ">=10" 2862 | }, 2863 | "funding": { 2864 | "url": "https://github.com/sponsors/sindresorhus" 2865 | } 2866 | }, 2867 | "node_modules/p-locate": { 2868 | "version": "5.0.0", 2869 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2870 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2871 | "dev": true, 2872 | "license": "MIT", 2873 | "dependencies": { 2874 | "p-limit": "^3.0.2" 2875 | }, 2876 | "engines": { 2877 | "node": ">=10" 2878 | }, 2879 | "funding": { 2880 | "url": "https://github.com/sponsors/sindresorhus" 2881 | } 2882 | }, 2883 | "node_modules/parent-module": { 2884 | "version": "1.0.1", 2885 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2886 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2887 | "dev": true, 2888 | "license": "MIT", 2889 | "dependencies": { 2890 | "callsites": "^3.0.0" 2891 | }, 2892 | "engines": { 2893 | "node": ">=6" 2894 | } 2895 | }, 2896 | "node_modules/path-exists": { 2897 | "version": "4.0.0", 2898 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2899 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2900 | "dev": true, 2901 | "license": "MIT", 2902 | "engines": { 2903 | "node": ">=8" 2904 | } 2905 | }, 2906 | "node_modules/path-key": { 2907 | "version": "3.1.1", 2908 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2909 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2910 | "dev": true, 2911 | "license": "MIT", 2912 | "engines": { 2913 | "node": ">=8" 2914 | } 2915 | }, 2916 | "node_modules/performance-now": { 2917 | "version": "2.1.0", 2918 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 2919 | "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", 2920 | "license": "MIT" 2921 | }, 2922 | "node_modules/picomatch": { 2923 | "version": "2.3.1", 2924 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2925 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2926 | "dev": true, 2927 | "license": "MIT", 2928 | "engines": { 2929 | "node": ">=8.6" 2930 | }, 2931 | "funding": { 2932 | "url": "https://github.com/sponsors/jonschlinkert" 2933 | } 2934 | }, 2935 | "node_modules/possible-typed-array-names": { 2936 | "version": "1.0.0", 2937 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", 2938 | "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", 2939 | "license": "MIT", 2940 | "engines": { 2941 | "node": ">= 0.4" 2942 | } 2943 | }, 2944 | "node_modules/prelude-ls": { 2945 | "version": "1.2.1", 2946 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2947 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2948 | "dev": true, 2949 | "license": "MIT", 2950 | "engines": { 2951 | "node": ">= 0.8.0" 2952 | } 2953 | }, 2954 | "node_modules/prettier": { 2955 | "version": "3.3.3", 2956 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", 2957 | "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", 2958 | "dev": true, 2959 | "license": "MIT", 2960 | "bin": { 2961 | "prettier": "bin/prettier.cjs" 2962 | }, 2963 | "engines": { 2964 | "node": ">=14" 2965 | }, 2966 | "funding": { 2967 | "url": "https://github.com/prettier/prettier?sponsor=1" 2968 | } 2969 | }, 2970 | "node_modules/prettier-linter-helpers": { 2971 | "version": "1.0.0", 2972 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 2973 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 2974 | "dev": true, 2975 | "license": "MIT", 2976 | "dependencies": { 2977 | "fast-diff": "^1.1.2" 2978 | }, 2979 | "engines": { 2980 | "node": ">=6.0.0" 2981 | } 2982 | }, 2983 | "node_modules/process-nextick-args": { 2984 | "version": "2.0.1", 2985 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2986 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2987 | "license": "MIT" 2988 | }, 2989 | "node_modules/psl": { 2990 | "version": "1.13.0", 2991 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.13.0.tgz", 2992 | "integrity": "sha512-BFwmFXiJoFqlUpZ5Qssolv15DMyc84gTBds1BjsV1BfXEo1UyyD7GsmN67n7J77uRhoSNW1AXtXKPLcBFQn9Aw==", 2993 | "license": "MIT", 2994 | "dependencies": { 2995 | "punycode": "^2.3.1" 2996 | } 2997 | }, 2998 | "node_modules/pstree.remy": { 2999 | "version": "1.1.8", 3000 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 3001 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 3002 | "dev": true, 3003 | "license": "MIT" 3004 | }, 3005 | "node_modules/pump": { 3006 | "version": "2.0.1", 3007 | "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", 3008 | "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", 3009 | "license": "MIT", 3010 | "dependencies": { 3011 | "end-of-stream": "^1.1.0", 3012 | "once": "^1.3.1" 3013 | } 3014 | }, 3015 | "node_modules/punycode": { 3016 | "version": "2.3.1", 3017 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3018 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3019 | "license": "MIT", 3020 | "engines": { 3021 | "node": ">=6" 3022 | } 3023 | }, 3024 | "node_modules/qs": { 3025 | "version": "6.13.0", 3026 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", 3027 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 3028 | "license": "BSD-3-Clause", 3029 | "dependencies": { 3030 | "side-channel": "^1.0.6" 3031 | }, 3032 | "engines": { 3033 | "node": ">=0.6" 3034 | }, 3035 | "funding": { 3036 | "url": "https://github.com/sponsors/ljharb" 3037 | } 3038 | }, 3039 | "node_modules/querystringify": { 3040 | "version": "2.2.0", 3041 | "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", 3042 | "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", 3043 | "license": "MIT" 3044 | }, 3045 | "node_modules/readable-stream": { 3046 | "version": "2.3.8", 3047 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 3048 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 3049 | "license": "MIT", 3050 | "dependencies": { 3051 | "core-util-is": "~1.0.0", 3052 | "inherits": "~2.0.3", 3053 | "isarray": "~1.0.0", 3054 | "process-nextick-args": "~2.0.0", 3055 | "safe-buffer": "~5.1.1", 3056 | "string_decoder": "~1.1.1", 3057 | "util-deprecate": "~1.0.1" 3058 | } 3059 | }, 3060 | "node_modules/readable-stream/node_modules/safe-buffer": { 3061 | "version": "5.1.2", 3062 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 3063 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 3064 | "license": "MIT" 3065 | }, 3066 | "node_modules/readdirp": { 3067 | "version": "3.6.0", 3068 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3069 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3070 | "dev": true, 3071 | "license": "MIT", 3072 | "dependencies": { 3073 | "picomatch": "^2.2.1" 3074 | }, 3075 | "engines": { 3076 | "node": ">=8.10.0" 3077 | } 3078 | }, 3079 | "node_modules/reflect.getprototypeof": { 3080 | "version": "1.0.7", 3081 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz", 3082 | "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==", 3083 | "license": "MIT", 3084 | "dependencies": { 3085 | "call-bind": "^1.0.7", 3086 | "define-properties": "^1.2.1", 3087 | "es-abstract": "^1.23.5", 3088 | "es-errors": "^1.3.0", 3089 | "get-intrinsic": "^1.2.4", 3090 | "gopd": "^1.0.1", 3091 | "which-builtin-type": "^1.1.4" 3092 | }, 3093 | "engines": { 3094 | "node": ">= 0.4" 3095 | }, 3096 | "funding": { 3097 | "url": "https://github.com/sponsors/ljharb" 3098 | } 3099 | }, 3100 | "node_modules/regenerator-runtime": { 3101 | "version": "0.14.1", 3102 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 3103 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", 3104 | "license": "MIT" 3105 | }, 3106 | "node_modules/regexp.prototype.flags": { 3107 | "version": "1.5.3", 3108 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", 3109 | "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", 3110 | "license": "MIT", 3111 | "dependencies": { 3112 | "call-bind": "^1.0.7", 3113 | "define-properties": "^1.2.1", 3114 | "es-errors": "^1.3.0", 3115 | "set-function-name": "^2.0.2" 3116 | }, 3117 | "engines": { 3118 | "node": ">= 0.4" 3119 | }, 3120 | "funding": { 3121 | "url": "https://github.com/sponsors/ljharb" 3122 | } 3123 | }, 3124 | "node_modules/request": { 3125 | "version": "2.88.2", 3126 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 3127 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 3128 | "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", 3129 | "license": "Apache-2.0", 3130 | "peer": true, 3131 | "dependencies": { 3132 | "aws-sign2": "~0.7.0", 3133 | "aws4": "^1.8.0", 3134 | "caseless": "~0.12.0", 3135 | "combined-stream": "~1.0.6", 3136 | "extend": "~3.0.2", 3137 | "forever-agent": "~0.6.1", 3138 | "form-data": "~2.3.2", 3139 | "har-validator": "~5.1.3", 3140 | "http-signature": "~1.2.0", 3141 | "is-typedarray": "~1.0.0", 3142 | "isstream": "~0.1.2", 3143 | "json-stringify-safe": "~5.0.1", 3144 | "mime-types": "~2.1.19", 3145 | "oauth-sign": "~0.9.0", 3146 | "performance-now": "^2.1.0", 3147 | "qs": "~6.5.2", 3148 | "safe-buffer": "^5.1.2", 3149 | "tough-cookie": "~2.5.0", 3150 | "tunnel-agent": "^0.6.0", 3151 | "uuid": "^3.3.2" 3152 | }, 3153 | "engines": { 3154 | "node": ">= 6" 3155 | } 3156 | }, 3157 | "node_modules/request-promise-core": { 3158 | "version": "1.1.3", 3159 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.3.tgz", 3160 | "integrity": "sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==", 3161 | "license": "ISC", 3162 | "dependencies": { 3163 | "lodash": "^4.17.15" 3164 | }, 3165 | "engines": { 3166 | "node": ">=0.10.0" 3167 | }, 3168 | "peerDependencies": { 3169 | "request": "^2.34" 3170 | } 3171 | }, 3172 | "node_modules/request/node_modules/form-data": { 3173 | "version": "2.3.3", 3174 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 3175 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 3176 | "license": "MIT", 3177 | "peer": true, 3178 | "dependencies": { 3179 | "asynckit": "^0.4.0", 3180 | "combined-stream": "^1.0.6", 3181 | "mime-types": "^2.1.12" 3182 | }, 3183 | "engines": { 3184 | "node": ">= 0.12" 3185 | } 3186 | }, 3187 | "node_modules/request/node_modules/http-signature": { 3188 | "version": "1.2.0", 3189 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 3190 | "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", 3191 | "license": "MIT", 3192 | "peer": true, 3193 | "dependencies": { 3194 | "assert-plus": "^1.0.0", 3195 | "jsprim": "^1.2.2", 3196 | "sshpk": "^1.7.0" 3197 | }, 3198 | "engines": { 3199 | "node": ">=0.8", 3200 | "npm": ">=1.3.7" 3201 | } 3202 | }, 3203 | "node_modules/request/node_modules/jsprim": { 3204 | "version": "1.4.2", 3205 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", 3206 | "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", 3207 | "license": "MIT", 3208 | "peer": true, 3209 | "dependencies": { 3210 | "assert-plus": "1.0.0", 3211 | "extsprintf": "1.3.0", 3212 | "json-schema": "0.4.0", 3213 | "verror": "1.10.0" 3214 | }, 3215 | "engines": { 3216 | "node": ">=0.6.0" 3217 | } 3218 | }, 3219 | "node_modules/request/node_modules/qs": { 3220 | "version": "6.5.3", 3221 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", 3222 | "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", 3223 | "license": "BSD-3-Clause", 3224 | "peer": true, 3225 | "engines": { 3226 | "node": ">=0.6" 3227 | } 3228 | }, 3229 | "node_modules/request/node_modules/tough-cookie": { 3230 | "version": "2.5.0", 3231 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 3232 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 3233 | "license": "BSD-3-Clause", 3234 | "peer": true, 3235 | "dependencies": { 3236 | "psl": "^1.1.28", 3237 | "punycode": "^2.1.1" 3238 | }, 3239 | "engines": { 3240 | "node": ">=0.8" 3241 | } 3242 | }, 3243 | "node_modules/request/node_modules/uuid": { 3244 | "version": "3.4.0", 3245 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 3246 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 3247 | "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", 3248 | "license": "MIT", 3249 | "peer": true, 3250 | "bin": { 3251 | "uuid": "bin/uuid" 3252 | } 3253 | }, 3254 | "node_modules/requires-port": { 3255 | "version": "1.0.0", 3256 | "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", 3257 | "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", 3258 | "license": "MIT" 3259 | }, 3260 | "node_modules/resolve-from": { 3261 | "version": "4.0.0", 3262 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3263 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3264 | "dev": true, 3265 | "license": "MIT", 3266 | "engines": { 3267 | "node": ">=4" 3268 | } 3269 | }, 3270 | "node_modules/rpc-websockets": { 3271 | "version": "9.0.4", 3272 | "resolved": "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-9.0.4.tgz", 3273 | "integrity": "sha512-yWZWN0M+bivtoNLnaDbtny4XchdAIF5Q4g/ZsC5UC61Ckbp0QczwO8fg44rV3uYmY4WHd+EZQbn90W1d8ojzqQ==", 3274 | "license": "LGPL-3.0-only", 3275 | "dependencies": { 3276 | "@swc/helpers": "^0.5.11", 3277 | "@types/uuid": "^8.3.4", 3278 | "@types/ws": "^8.2.2", 3279 | "buffer": "^6.0.3", 3280 | "eventemitter3": "^5.0.1", 3281 | "uuid": "^8.3.2", 3282 | "ws": "^8.5.0" 3283 | }, 3284 | "funding": { 3285 | "type": "paypal", 3286 | "url": "https://paypal.me/kozjak" 3287 | }, 3288 | "optionalDependencies": { 3289 | "bufferutil": "^4.0.1", 3290 | "utf-8-validate": "^5.0.2" 3291 | } 3292 | }, 3293 | "node_modules/rpc-websockets/node_modules/@types/ws": { 3294 | "version": "8.5.13", 3295 | "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", 3296 | "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", 3297 | "license": "MIT", 3298 | "dependencies": { 3299 | "@types/node": "*" 3300 | } 3301 | }, 3302 | "node_modules/rpc-websockets/node_modules/eventemitter3": { 3303 | "version": "5.0.1", 3304 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", 3305 | "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", 3306 | "license": "MIT" 3307 | }, 3308 | "node_modules/rpc-websockets/node_modules/ws": { 3309 | "version": "8.18.0", 3310 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", 3311 | "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", 3312 | "license": "MIT", 3313 | "engines": { 3314 | "node": ">=10.0.0" 3315 | }, 3316 | "peerDependencies": { 3317 | "bufferutil": "^4.0.1", 3318 | "utf-8-validate": ">=5.0.2" 3319 | }, 3320 | "peerDependenciesMeta": { 3321 | "bufferutil": { 3322 | "optional": true 3323 | }, 3324 | "utf-8-validate": { 3325 | "optional": true 3326 | } 3327 | } 3328 | }, 3329 | "node_modules/safe-array-concat": { 3330 | "version": "1.1.2", 3331 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", 3332 | "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", 3333 | "license": "MIT", 3334 | "dependencies": { 3335 | "call-bind": "^1.0.7", 3336 | "get-intrinsic": "^1.2.4", 3337 | "has-symbols": "^1.0.3", 3338 | "isarray": "^2.0.5" 3339 | }, 3340 | "engines": { 3341 | "node": ">=0.4" 3342 | }, 3343 | "funding": { 3344 | "url": "https://github.com/sponsors/ljharb" 3345 | } 3346 | }, 3347 | "node_modules/safe-array-concat/node_modules/isarray": { 3348 | "version": "2.0.5", 3349 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 3350 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 3351 | "license": "MIT" 3352 | }, 3353 | "node_modules/safe-buffer": { 3354 | "version": "5.2.1", 3355 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3356 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3357 | "funding": [ 3358 | { 3359 | "type": "github", 3360 | "url": "https://github.com/sponsors/feross" 3361 | }, 3362 | { 3363 | "type": "patreon", 3364 | "url": "https://www.patreon.com/feross" 3365 | }, 3366 | { 3367 | "type": "consulting", 3368 | "url": "https://feross.org/support" 3369 | } 3370 | ], 3371 | "license": "MIT" 3372 | }, 3373 | "node_modules/safe-regex-test": { 3374 | "version": "1.0.3", 3375 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", 3376 | "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", 3377 | "license": "MIT", 3378 | "dependencies": { 3379 | "call-bind": "^1.0.6", 3380 | "es-errors": "^1.3.0", 3381 | "is-regex": "^1.1.4" 3382 | }, 3383 | "engines": { 3384 | "node": ">= 0.4" 3385 | }, 3386 | "funding": { 3387 | "url": "https://github.com/sponsors/ljharb" 3388 | } 3389 | }, 3390 | "node_modules/safer-buffer": { 3391 | "version": "2.1.2", 3392 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3393 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 3394 | "license": "MIT" 3395 | }, 3396 | "node_modules/semver": { 3397 | "version": "7.6.3", 3398 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3399 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3400 | "dev": true, 3401 | "license": "ISC", 3402 | "bin": { 3403 | "semver": "bin/semver.js" 3404 | }, 3405 | "engines": { 3406 | "node": ">=10" 3407 | } 3408 | }, 3409 | "node_modules/set-function-length": { 3410 | "version": "1.2.2", 3411 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 3412 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 3413 | "license": "MIT", 3414 | "dependencies": { 3415 | "define-data-property": "^1.1.4", 3416 | "es-errors": "^1.3.0", 3417 | "function-bind": "^1.1.2", 3418 | "get-intrinsic": "^1.2.4", 3419 | "gopd": "^1.0.1", 3420 | "has-property-descriptors": "^1.0.2" 3421 | }, 3422 | "engines": { 3423 | "node": ">= 0.4" 3424 | } 3425 | }, 3426 | "node_modules/set-function-name": { 3427 | "version": "2.0.2", 3428 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 3429 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 3430 | "license": "MIT", 3431 | "dependencies": { 3432 | "define-data-property": "^1.1.4", 3433 | "es-errors": "^1.3.0", 3434 | "functions-have-names": "^1.2.3", 3435 | "has-property-descriptors": "^1.0.2" 3436 | }, 3437 | "engines": { 3438 | "node": ">= 0.4" 3439 | } 3440 | }, 3441 | "node_modules/shebang-command": { 3442 | "version": "2.0.0", 3443 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3444 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3445 | "dev": true, 3446 | "license": "MIT", 3447 | "dependencies": { 3448 | "shebang-regex": "^3.0.0" 3449 | }, 3450 | "engines": { 3451 | "node": ">=8" 3452 | } 3453 | }, 3454 | "node_modules/shebang-regex": { 3455 | "version": "3.0.0", 3456 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3457 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3458 | "dev": true, 3459 | "license": "MIT", 3460 | "engines": { 3461 | "node": ">=8" 3462 | } 3463 | }, 3464 | "node_modules/side-channel": { 3465 | "version": "1.0.6", 3466 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 3467 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 3468 | "license": "MIT", 3469 | "dependencies": { 3470 | "call-bind": "^1.0.7", 3471 | "es-errors": "^1.3.0", 3472 | "get-intrinsic": "^1.2.4", 3473 | "object-inspect": "^1.13.1" 3474 | }, 3475 | "engines": { 3476 | "node": ">= 0.4" 3477 | }, 3478 | "funding": { 3479 | "url": "https://github.com/sponsors/ljharb" 3480 | } 3481 | }, 3482 | "node_modules/simple-update-notifier": { 3483 | "version": "2.0.0", 3484 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 3485 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 3486 | "dev": true, 3487 | "license": "MIT", 3488 | "dependencies": { 3489 | "semver": "^7.5.3" 3490 | }, 3491 | "engines": { 3492 | "node": ">=10" 3493 | } 3494 | }, 3495 | "node_modules/sshpk": { 3496 | "version": "1.18.0", 3497 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", 3498 | "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", 3499 | "license": "MIT", 3500 | "dependencies": { 3501 | "asn1": "~0.2.3", 3502 | "assert-plus": "^1.0.0", 3503 | "bcrypt-pbkdf": "^1.0.0", 3504 | "dashdash": "^1.12.0", 3505 | "ecc-jsbn": "~0.1.1", 3506 | "getpass": "^0.1.1", 3507 | "jsbn": "~0.1.0", 3508 | "safer-buffer": "^2.0.2", 3509 | "tweetnacl": "~0.14.0" 3510 | }, 3511 | "bin": { 3512 | "sshpk-conv": "bin/sshpk-conv", 3513 | "sshpk-sign": "bin/sshpk-sign", 3514 | "sshpk-verify": "bin/sshpk-verify" 3515 | }, 3516 | "engines": { 3517 | "node": ">=0.10.0" 3518 | } 3519 | }, 3520 | "node_modules/stealthy-require": { 3521 | "version": "1.1.1", 3522 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", 3523 | "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", 3524 | "license": "ISC", 3525 | "engines": { 3526 | "node": ">=0.10.0" 3527 | } 3528 | }, 3529 | "node_modules/string_decoder": { 3530 | "version": "1.1.1", 3531 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 3532 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 3533 | "license": "MIT", 3534 | "dependencies": { 3535 | "safe-buffer": "~5.1.0" 3536 | } 3537 | }, 3538 | "node_modules/string_decoder/node_modules/safe-buffer": { 3539 | "version": "5.1.2", 3540 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 3541 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 3542 | "license": "MIT" 3543 | }, 3544 | "node_modules/string.prototype.trim": { 3545 | "version": "1.2.9", 3546 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", 3547 | "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", 3548 | "license": "MIT", 3549 | "dependencies": { 3550 | "call-bind": "^1.0.7", 3551 | "define-properties": "^1.2.1", 3552 | "es-abstract": "^1.23.0", 3553 | "es-object-atoms": "^1.0.0" 3554 | }, 3555 | "engines": { 3556 | "node": ">= 0.4" 3557 | }, 3558 | "funding": { 3559 | "url": "https://github.com/sponsors/ljharb" 3560 | } 3561 | }, 3562 | "node_modules/string.prototype.trimend": { 3563 | "version": "1.0.8", 3564 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", 3565 | "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", 3566 | "license": "MIT", 3567 | "dependencies": { 3568 | "call-bind": "^1.0.7", 3569 | "define-properties": "^1.2.1", 3570 | "es-object-atoms": "^1.0.0" 3571 | }, 3572 | "funding": { 3573 | "url": "https://github.com/sponsors/ljharb" 3574 | } 3575 | }, 3576 | "node_modules/string.prototype.trimstart": { 3577 | "version": "1.0.8", 3578 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", 3579 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", 3580 | "license": "MIT", 3581 | "dependencies": { 3582 | "call-bind": "^1.0.7", 3583 | "define-properties": "^1.2.1", 3584 | "es-object-atoms": "^1.0.0" 3585 | }, 3586 | "engines": { 3587 | "node": ">= 0.4" 3588 | }, 3589 | "funding": { 3590 | "url": "https://github.com/sponsors/ljharb" 3591 | } 3592 | }, 3593 | "node_modules/strip-json-comments": { 3594 | "version": "3.1.1", 3595 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3596 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3597 | "dev": true, 3598 | "license": "MIT", 3599 | "engines": { 3600 | "node": ">=8" 3601 | }, 3602 | "funding": { 3603 | "url": "https://github.com/sponsors/sindresorhus" 3604 | } 3605 | }, 3606 | "node_modules/superstruct": { 3607 | "version": "2.0.2", 3608 | "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-2.0.2.tgz", 3609 | "integrity": "sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==", 3610 | "license": "MIT", 3611 | "engines": { 3612 | "node": ">=14.0.0" 3613 | } 3614 | }, 3615 | "node_modules/supports-color": { 3616 | "version": "7.2.0", 3617 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3618 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3619 | "dev": true, 3620 | "license": "MIT", 3621 | "dependencies": { 3622 | "has-flag": "^4.0.0" 3623 | }, 3624 | "engines": { 3625 | "node": ">=8" 3626 | } 3627 | }, 3628 | "node_modules/synckit": { 3629 | "version": "0.9.2", 3630 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", 3631 | "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", 3632 | "dev": true, 3633 | "license": "MIT", 3634 | "dependencies": { 3635 | "@pkgr/core": "^0.1.0", 3636 | "tslib": "^2.6.2" 3637 | }, 3638 | "engines": { 3639 | "node": "^14.18.0 || >=16.0.0" 3640 | }, 3641 | "funding": { 3642 | "url": "https://opencollective.com/unts" 3643 | } 3644 | }, 3645 | "node_modules/text-encoding-utf-8": { 3646 | "version": "1.0.2", 3647 | "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz", 3648 | "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==" 3649 | }, 3650 | "node_modules/through": { 3651 | "version": "2.3.8", 3652 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 3653 | "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", 3654 | "license": "MIT" 3655 | }, 3656 | "node_modules/tldts": { 3657 | "version": "6.1.64", 3658 | "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.64.tgz", 3659 | "integrity": "sha512-ph4AE5BXWIOsSy9stpoeo7bYe/Cy7VfpciIH4RhVZUPItCJmhqWCN0EVzxd8BOHiyNb42vuJc6NWTjJkg91Tuw==", 3660 | "license": "MIT", 3661 | "dependencies": { 3662 | "tldts-core": "^6.1.64" 3663 | }, 3664 | "bin": { 3665 | "tldts": "bin/cli.js" 3666 | } 3667 | }, 3668 | "node_modules/tldts-core": { 3669 | "version": "6.1.64", 3670 | "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.64.tgz", 3671 | "integrity": "sha512-uqnl8vGV16KsyflHOzqrYjjArjfXaU6rMPXYy2/ZWoRKCkXtghgB4VwTDXUG+t0OTGeSewNAG31/x1gCTfLt+Q==", 3672 | "license": "MIT" 3673 | }, 3674 | "node_modules/to-regex-range": { 3675 | "version": "5.0.1", 3676 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3677 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3678 | "dev": true, 3679 | "license": "MIT", 3680 | "dependencies": { 3681 | "is-number": "^7.0.0" 3682 | }, 3683 | "engines": { 3684 | "node": ">=8.0" 3685 | } 3686 | }, 3687 | "node_modules/touch": { 3688 | "version": "3.1.1", 3689 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 3690 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 3691 | "dev": true, 3692 | "license": "ISC", 3693 | "bin": { 3694 | "nodetouch": "bin/nodetouch.js" 3695 | } 3696 | }, 3697 | "node_modules/tough-cookie": { 3698 | "version": "5.0.0", 3699 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.0.0.tgz", 3700 | "integrity": "sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==", 3701 | "license": "BSD-3-Clause", 3702 | "dependencies": { 3703 | "tldts": "^6.1.32" 3704 | }, 3705 | "engines": { 3706 | "node": ">=16" 3707 | } 3708 | }, 3709 | "node_modules/tr46": { 3710 | "version": "0.0.3", 3711 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3712 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 3713 | "license": "MIT" 3714 | }, 3715 | "node_modules/tslib": { 3716 | "version": "2.8.1", 3717 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3718 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3719 | "license": "0BSD" 3720 | }, 3721 | "node_modules/tunnel-agent": { 3722 | "version": "0.6.0", 3723 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 3724 | "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", 3725 | "license": "Apache-2.0", 3726 | "dependencies": { 3727 | "safe-buffer": "^5.0.1" 3728 | }, 3729 | "engines": { 3730 | "node": "*" 3731 | } 3732 | }, 3733 | "node_modules/tweetnacl": { 3734 | "version": "0.14.5", 3735 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 3736 | "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", 3737 | "license": "Unlicense" 3738 | }, 3739 | "node_modules/type-check": { 3740 | "version": "0.4.0", 3741 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3742 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3743 | "dev": true, 3744 | "license": "MIT", 3745 | "dependencies": { 3746 | "prelude-ls": "^1.2.1" 3747 | }, 3748 | "engines": { 3749 | "node": ">= 0.8.0" 3750 | } 3751 | }, 3752 | "node_modules/typed-array-buffer": { 3753 | "version": "1.0.2", 3754 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", 3755 | "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", 3756 | "license": "MIT", 3757 | "dependencies": { 3758 | "call-bind": "^1.0.7", 3759 | "es-errors": "^1.3.0", 3760 | "is-typed-array": "^1.1.13" 3761 | }, 3762 | "engines": { 3763 | "node": ">= 0.4" 3764 | } 3765 | }, 3766 | "node_modules/typed-array-byte-length": { 3767 | "version": "1.0.1", 3768 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", 3769 | "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", 3770 | "license": "MIT", 3771 | "dependencies": { 3772 | "call-bind": "^1.0.7", 3773 | "for-each": "^0.3.3", 3774 | "gopd": "^1.0.1", 3775 | "has-proto": "^1.0.3", 3776 | "is-typed-array": "^1.1.13" 3777 | }, 3778 | "engines": { 3779 | "node": ">= 0.4" 3780 | }, 3781 | "funding": { 3782 | "url": "https://github.com/sponsors/ljharb" 3783 | } 3784 | }, 3785 | "node_modules/typed-array-byte-offset": { 3786 | "version": "1.0.3", 3787 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", 3788 | "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", 3789 | "license": "MIT", 3790 | "dependencies": { 3791 | "available-typed-arrays": "^1.0.7", 3792 | "call-bind": "^1.0.7", 3793 | "for-each": "^0.3.3", 3794 | "gopd": "^1.0.1", 3795 | "has-proto": "^1.0.3", 3796 | "is-typed-array": "^1.1.13", 3797 | "reflect.getprototypeof": "^1.0.6" 3798 | }, 3799 | "engines": { 3800 | "node": ">= 0.4" 3801 | }, 3802 | "funding": { 3803 | "url": "https://github.com/sponsors/ljharb" 3804 | } 3805 | }, 3806 | "node_modules/typed-array-length": { 3807 | "version": "1.0.7", 3808 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", 3809 | "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", 3810 | "license": "MIT", 3811 | "dependencies": { 3812 | "call-bind": "^1.0.7", 3813 | "for-each": "^0.3.3", 3814 | "gopd": "^1.0.1", 3815 | "is-typed-array": "^1.1.13", 3816 | "possible-typed-array-names": "^1.0.0", 3817 | "reflect.getprototypeof": "^1.0.6" 3818 | }, 3819 | "engines": { 3820 | "node": ">= 0.4" 3821 | }, 3822 | "funding": { 3823 | "url": "https://github.com/sponsors/ljharb" 3824 | } 3825 | }, 3826 | "node_modules/unbox-primitive": { 3827 | "version": "1.0.2", 3828 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3829 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3830 | "license": "MIT", 3831 | "dependencies": { 3832 | "call-bind": "^1.0.2", 3833 | "has-bigints": "^1.0.2", 3834 | "has-symbols": "^1.0.3", 3835 | "which-boxed-primitive": "^1.0.2" 3836 | }, 3837 | "funding": { 3838 | "url": "https://github.com/sponsors/ljharb" 3839 | } 3840 | }, 3841 | "node_modules/undefsafe": { 3842 | "version": "2.0.5", 3843 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 3844 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 3845 | "dev": true, 3846 | "license": "MIT" 3847 | }, 3848 | "node_modules/universalify": { 3849 | "version": "0.2.0", 3850 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", 3851 | "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", 3852 | "license": "MIT", 3853 | "engines": { 3854 | "node": ">= 4.0.0" 3855 | } 3856 | }, 3857 | "node_modules/uri-js": { 3858 | "version": "4.4.1", 3859 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3860 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3861 | "license": "BSD-2-Clause", 3862 | "dependencies": { 3863 | "punycode": "^2.1.0" 3864 | } 3865 | }, 3866 | "node_modules/url-parse": { 3867 | "version": "1.5.10", 3868 | "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", 3869 | "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", 3870 | "license": "MIT", 3871 | "dependencies": { 3872 | "querystringify": "^2.1.1", 3873 | "requires-port": "^1.0.0" 3874 | } 3875 | }, 3876 | "node_modules/utf-8-validate": { 3877 | "version": "5.0.10", 3878 | "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz", 3879 | "integrity": "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==", 3880 | "hasInstallScript": true, 3881 | "license": "MIT", 3882 | "optional": true, 3883 | "dependencies": { 3884 | "node-gyp-build": "^4.3.0" 3885 | }, 3886 | "engines": { 3887 | "node": ">=6.14.2" 3888 | } 3889 | }, 3890 | "node_modules/util-deprecate": { 3891 | "version": "1.0.2", 3892 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3893 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3894 | "license": "MIT" 3895 | }, 3896 | "node_modules/uuid": { 3897 | "version": "8.3.2", 3898 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 3899 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", 3900 | "license": "MIT", 3901 | "bin": { 3902 | "uuid": "dist/bin/uuid" 3903 | } 3904 | }, 3905 | "node_modules/verror": { 3906 | "version": "1.10.0", 3907 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 3908 | "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", 3909 | "engines": [ 3910 | "node >=0.6.0" 3911 | ], 3912 | "license": "MIT", 3913 | "dependencies": { 3914 | "assert-plus": "^1.0.0", 3915 | "core-util-is": "1.0.2", 3916 | "extsprintf": "^1.2.0" 3917 | } 3918 | }, 3919 | "node_modules/verror/node_modules/core-util-is": { 3920 | "version": "1.0.2", 3921 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 3922 | "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", 3923 | "license": "MIT" 3924 | }, 3925 | "node_modules/webidl-conversions": { 3926 | "version": "3.0.1", 3927 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3928 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3929 | "license": "BSD-2-Clause" 3930 | }, 3931 | "node_modules/whatwg-url": { 3932 | "version": "5.0.0", 3933 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3934 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3935 | "license": "MIT", 3936 | "dependencies": { 3937 | "tr46": "~0.0.3", 3938 | "webidl-conversions": "^3.0.0" 3939 | } 3940 | }, 3941 | "node_modules/which": { 3942 | "version": "2.0.2", 3943 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3944 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3945 | "dev": true, 3946 | "license": "ISC", 3947 | "dependencies": { 3948 | "isexe": "^2.0.0" 3949 | }, 3950 | "bin": { 3951 | "node-which": "bin/node-which" 3952 | }, 3953 | "engines": { 3954 | "node": ">= 8" 3955 | } 3956 | }, 3957 | "node_modules/which-boxed-primitive": { 3958 | "version": "1.0.2", 3959 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3960 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3961 | "license": "MIT", 3962 | "dependencies": { 3963 | "is-bigint": "^1.0.1", 3964 | "is-boolean-object": "^1.1.0", 3965 | "is-number-object": "^1.0.4", 3966 | "is-string": "^1.0.5", 3967 | "is-symbol": "^1.0.3" 3968 | }, 3969 | "funding": { 3970 | "url": "https://github.com/sponsors/ljharb" 3971 | } 3972 | }, 3973 | "node_modules/which-builtin-type": { 3974 | "version": "1.2.0", 3975 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz", 3976 | "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==", 3977 | "license": "MIT", 3978 | "dependencies": { 3979 | "call-bind": "^1.0.7", 3980 | "function.prototype.name": "^1.1.6", 3981 | "has-tostringtag": "^1.0.2", 3982 | "is-async-function": "^2.0.0", 3983 | "is-date-object": "^1.0.5", 3984 | "is-finalizationregistry": "^1.1.0", 3985 | "is-generator-function": "^1.0.10", 3986 | "is-regex": "^1.1.4", 3987 | "is-weakref": "^1.0.2", 3988 | "isarray": "^2.0.5", 3989 | "which-boxed-primitive": "^1.0.2", 3990 | "which-collection": "^1.0.2", 3991 | "which-typed-array": "^1.1.15" 3992 | }, 3993 | "engines": { 3994 | "node": ">= 0.4" 3995 | }, 3996 | "funding": { 3997 | "url": "https://github.com/sponsors/ljharb" 3998 | } 3999 | }, 4000 | "node_modules/which-builtin-type/node_modules/isarray": { 4001 | "version": "2.0.5", 4002 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 4003 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 4004 | "license": "MIT" 4005 | }, 4006 | "node_modules/which-collection": { 4007 | "version": "1.0.2", 4008 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 4009 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 4010 | "license": "MIT", 4011 | "dependencies": { 4012 | "is-map": "^2.0.3", 4013 | "is-set": "^2.0.3", 4014 | "is-weakmap": "^2.0.2", 4015 | "is-weakset": "^2.0.3" 4016 | }, 4017 | "engines": { 4018 | "node": ">= 0.4" 4019 | }, 4020 | "funding": { 4021 | "url": "https://github.com/sponsors/ljharb" 4022 | } 4023 | }, 4024 | "node_modules/which-typed-array": { 4025 | "version": "1.1.15", 4026 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", 4027 | "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", 4028 | "license": "MIT", 4029 | "dependencies": { 4030 | "available-typed-arrays": "^1.0.7", 4031 | "call-bind": "^1.0.7", 4032 | "for-each": "^0.3.3", 4033 | "gopd": "^1.0.1", 4034 | "has-tostringtag": "^1.0.2" 4035 | }, 4036 | "engines": { 4037 | "node": ">= 0.4" 4038 | }, 4039 | "funding": { 4040 | "url": "https://github.com/sponsors/ljharb" 4041 | } 4042 | }, 4043 | "node_modules/word-wrap": { 4044 | "version": "1.2.5", 4045 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 4046 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 4047 | "dev": true, 4048 | "license": "MIT", 4049 | "engines": { 4050 | "node": ">=0.10.0" 4051 | } 4052 | }, 4053 | "node_modules/wrappy": { 4054 | "version": "1.0.2", 4055 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4056 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4057 | "license": "ISC" 4058 | }, 4059 | "node_modules/ws": { 4060 | "version": "7.5.10", 4061 | "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", 4062 | "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", 4063 | "license": "MIT", 4064 | "engines": { 4065 | "node": ">=8.3.0" 4066 | }, 4067 | "peerDependencies": { 4068 | "bufferutil": "^4.0.1", 4069 | "utf-8-validate": "^5.0.2" 4070 | }, 4071 | "peerDependenciesMeta": { 4072 | "bufferutil": { 4073 | "optional": true 4074 | }, 4075 | "utf-8-validate": { 4076 | "optional": true 4077 | } 4078 | } 4079 | }, 4080 | "node_modules/yocto-queue": { 4081 | "version": "0.1.0", 4082 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4083 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4084 | "dev": true, 4085 | "license": "MIT", 4086 | "engines": { 4087 | "node": ">=10" 4088 | }, 4089 | "funding": { 4090 | "url": "https://github.com/sponsors/sindresorhus" 4091 | } 4092 | } 4093 | } 4094 | } 4095 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "solana-tracker", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "scripts": { 6 | "test": "echo \"Error: no test specified\" && exit 1", 7 | "start": "node server.js", 8 | "dev": "nodemon server.js" 9 | }, 10 | "keywords": [], 11 | "author": "", 12 | "license": "ISC", 13 | "description": "", 14 | "dependencies": { 15 | "@solana/web3.js": "^1.95.5", 16 | "dotenv": "^16.4.5", 17 | "node-telegram-bot-api": "^0.66.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | const { Connection, PublicKey } = require('@solana/web3.js'); 2 | const TelegramBot = require('node-telegram-bot-api'); 3 | require('dotenv').config(); 4 | 5 | /** 6 | * Telegram Bot Configuration 7 | * Setup and initialization of Telegram bot for transaction notifications 8 | * Requires environment variables for secure token and chat ID storage 9 | */ 10 | const TELEGRAM_BOT_TOKEN = process.env.TELEGRAM_BOT_TOKEN; 11 | const ADMIN_CHAT_ID = process.env.ADMIN_CHAT_ID; 12 | const DISABLE_TELEGRAM_MESSAGES = process.env.DISABLE_TELEGRAM_MESSAGES; 13 | const bot = new TelegramBot(TELEGRAM_BOT_TOKEN, { polling: true }); 14 | 15 | /** 16 | * Wallet Configuration 17 | * List of Solana wallet addresses to monitor for transactions 18 | * Each wallet will be tracked for specific DEX interactions 19 | */ 20 | let TRACKING_WALLETS = [ 21 | '5szGx4sTngM9528j1pN3ap8fbnWwdByHrvopBqLFu9PW', 22 | 'BXvikrCePUMXyrvTvyyp3jddzL3KNvcJELQcET5eBFkh', 23 | 'BDhpEzHgS2TQ7Y8Dmz6dwhAd6i5FZqHycV6TiqaxViC4', 24 | '6b8ydf4wnrYe66VmwhEmvGhfWvzLv8Ce5b57MGoVWWKe', 25 | '4yQ9ke3GE6oJndJH8DogjeaU6kabK1vRVGzqy2e8Kh2m', 26 | '3JPYL9xEPFjefV3tccrUwhLzME1mMq2dQSDeDebgzQi6', 27 | ]; 28 | 29 | /** 30 | * DEX Program IDs Configuration 31 | * Mapping of different DEX programs on Solana to track specific interactions 32 | * Includes Jupiter, Raydium, and Pump.fun platforms 33 | */ 34 | const PROGRAMS = { 35 | JUPITER: 'JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4', 36 | RAYDIUM: '675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8', 37 | PUMP_FUN: '6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P', 38 | PUMP_FUN_TOKEN_MINT_AUTH: 'TSLvdd1pWpHVjahSpsvCXUbgwsL3JAcvokwaKt1eokM', 39 | }; 40 | 41 | /** 42 | * Formats JSON data into a readable string format for Telegram messages 43 | * Recursively processes nested objects and creates a formatted string 44 | * 45 | * @param {Object} jsonData - The JSON data to format 46 | * @returns {string} Formatted string representation of the JSON data 47 | */ 48 | const formatJsonToString = (jsonData) => { 49 | const result = []; 50 | 51 | function processObject(obj, prefix = '') { 52 | for (const [key, value] of Object.entries(obj)) { 53 | if (value === null || value === undefined) continue; 54 | 55 | if (typeof value === 'object') { 56 | result.push(`${prefix}${key}:`); 57 | processObject(value, ' '); 58 | } else { 59 | result.push(`${prefix}${key}: ${value}`); 60 | } 61 | } 62 | } 63 | 64 | processObject(jsonData); 65 | return result.join('\n'); 66 | }; 67 | 68 | /** 69 | * Sends a message to the configured Telegram chat 70 | * Respects the DISABLE_TELEGRAM_MESSAGES flag for testing environments 71 | * 72 | * @param {string} message - Message to send to Telegram 73 | */ 74 | const sendTelegramMessage = async (message) => { 75 | if (DISABLE_TELEGRAM_MESSAGES) return; 76 | await bot.sendMessage(ADMIN_CHAT_ID, message); 77 | }; 78 | 79 | /** 80 | * Prints the list of tracked wallets to Telegram 81 | * Formats the wallet addresses in a numbered list 82 | * 83 | * @param {string[]} wallets - Array of wallet addresses being tracked 84 | */ 85 | const printTrackedWalletTg = async (wallets) => { 86 | if (DISABLE_TELEGRAM_MESSAGES) return; 87 | let msgStr = 'Tracked wallets\n'; 88 | wallets.forEach((item, index) => { 89 | msgStr += `${index + 1}: ${item}\n`; 90 | }); 91 | await bot.sendMessage(ADMIN_CHAT_ID, msgStr); 92 | }; 93 | 94 | /** 95 | * TokenUtils Class 96 | * Utility class for token-related operations on Solana 97 | * Handles token mint address retrieval and balance calculations 98 | */ 99 | class TokenUtils { 100 | /** 101 | * @param {Connection} connection - Solana RPC connection instance 102 | */ 103 | constructor(connection) { 104 | this.connection = connection; 105 | } 106 | 107 | /** 108 | * Retrieves the mint address for a given token account 109 | * 110 | * @param {string} accountAddress - Token account address 111 | * @returns {Promise} Token mint address or null if not found 112 | */ 113 | async getTokenMintAddress(accountAddress) { 114 | try { 115 | const accountInfo = await this.connection.getParsedAccountInfo( 116 | new PublicKey(accountAddress), 117 | ); 118 | return accountInfo.value?.data?.parsed?.info?.mint || null; 119 | } catch (error) { 120 | console.log(error); 121 | return null; 122 | } 123 | } 124 | 125 | /** 126 | * Calculates SOL balance changes for a transaction 127 | * Determines if the transaction was a buy or sell based on balance change 128 | * 129 | * @param {Object[]} transactionDetails - Transaction information from Solana 130 | * @returns {Object|null} Transaction type and balance change amount 131 | */ 132 | calculateNativeBalanceChanges(transactionDetails) { 133 | try { 134 | const preBalance = transactionDetails[0].meta.preBalances[0]; 135 | const postBalance = transactionDetails[0].meta.postBalances[0]; 136 | const balanceChange = (postBalance - preBalance) / 1e9; 137 | 138 | return { 139 | type: balanceChange < 0 ? 'buy' : 'sell', 140 | balanceChange: Math.abs(balanceChange), 141 | }; 142 | } catch (error) { 143 | console.log(error); 144 | return null; 145 | } 146 | } 147 | } 148 | 149 | /** 150 | * TransactionParser Class 151 | * Handles parsing of Solana transactions to extract relevant swap information 152 | * Analyzes token transfers and balance changes 153 | */ 154 | class TransactionParser { 155 | /** 156 | * @param {Connection} connection - Solana RPC connection instance 157 | */ 158 | constructor(connection) { 159 | this.connection = connection; 160 | this.tokenUtils = new TokenUtils(connection); 161 | } 162 | 163 | /** 164 | * Parses transaction details to extract swap information 165 | * 166 | * @param {Object[]} txDetails - Transaction details from Solana 167 | * @param {Object} dexInfo - Information about the DEX used 168 | * @returns {Promise} Parsed transaction information or null if invalid 169 | */ 170 | async parseTransaction(txDetails, dexInfo) { 171 | try { 172 | if (!txDetails || !txDetails[0]) return null; 173 | 174 | const nativeBalance = 175 | this.tokenUtils.calculateNativeBalanceChanges(txDetails); 176 | if (!nativeBalance) return null; 177 | 178 | const accountKeys = txDetails[0].transaction.message.accountKeys; 179 | const signerAccount = accountKeys.find((account) => account.signer); 180 | const owner = signerAccount?.pubkey.toString(); 181 | 182 | // Extract token transfers from instructions 183 | const transfers = []; 184 | txDetails[0].meta?.innerInstructions?.forEach((instruction) => { 185 | instruction.instructions.forEach((ix) => { 186 | if (ix.parsed?.type === 'transfer' && ix.parsed.info.amount) { 187 | transfers.push({ 188 | amount: ix.parsed.info.amount, 189 | source: ix.parsed.info.source, 190 | destination: ix.parsed.info.destination, 191 | }); 192 | } 193 | }); 194 | }); 195 | 196 | if (transfers.length === 0) return null; 197 | 198 | // Analyze first and last transfers to determine swap details 199 | const firstTransfer = transfers[0]; 200 | const lastTransfer = transfers[transfers.length - 1]; 201 | 202 | const [tokenInMint, tokenOutMint] = await Promise.all([ 203 | this.tokenUtils.getTokenMintAddress(lastTransfer.source), 204 | this.tokenUtils.getTokenMintAddress(firstTransfer.destination), 205 | ]); 206 | 207 | return { 208 | type: nativeBalance.type, 209 | monitored_wallet: owner, 210 | dex: dexInfo.dex, 211 | operation: dexInfo.type, 212 | tokenIn: { 213 | mint: tokenInMint, 214 | amount: (lastTransfer.amount / 1e9).toFixed(6), 215 | }, 216 | tokenOut: { 217 | mint: tokenOutMint, 218 | amount: (firstTransfer.amount / 1e9).toFixed(6), 219 | }, 220 | signature: txDetails[0].transaction.signatures[0], 221 | }; 222 | } catch (error) { 223 | console.error('Error parsing transaction:', error); 224 | return null; 225 | } 226 | } 227 | } 228 | 229 | /** 230 | * SolanaMonitor Class 231 | * Main class for monitoring Solana wallet activities 232 | * Tracks transactions and DEX interactions for specified wallets 233 | */ 234 | class SolanaMonitor { 235 | /** 236 | * @param {string} rpcUrl - Solana RPC endpoint URL 237 | */ 238 | constructor(rpcUrl) { 239 | this.connection = new Connection(rpcUrl); 240 | this.parser = new TransactionParser(this.connection); 241 | } 242 | 243 | /** 244 | * Starts monitoring specified wallets for transactions 245 | * Sets up log listeners for each wallet 246 | * 247 | * @param {string[]} wallets - Array of wallet addresses to monitor 248 | */ 249 | async monitorWallets(wallets) { 250 | wallets.forEach((wallet) => { 251 | this.connection.onLogs( 252 | new PublicKey(wallet), 253 | async (logs) => { 254 | try { 255 | const dexInfo = this.identifyDex(logs.logs); 256 | if (!dexInfo.dex) return; 257 | 258 | const txDetails = await this.connection.getParsedTransactions( 259 | [logs.signature], 260 | { maxSupportedTransactionVersion: 0, commitment: 'confirmed' }, 261 | ); 262 | 263 | const parsedTx = await this.parser.parseTransaction( 264 | txDetails, 265 | dexInfo, 266 | ); 267 | if (parsedTx) { 268 | console.log('New Transaction:', parsedTx); 269 | sendTelegramMessage(formatJsonToString(parsedTx)); 270 | } 271 | } catch (error) { 272 | console.error('Error processing transaction:', error); 273 | } 274 | }, 275 | 'confirmed', 276 | ); 277 | console.log(`Monitoring wallet: ${wallet}`); 278 | }); 279 | } 280 | 281 | /** 282 | * Identifies the DEX used in a transaction based on program IDs 283 | * 284 | * @param {string[]} logs - Transaction logs 285 | * @returns {Object} DEX information including name and operation type 286 | */ 287 | identifyDex(logs) { 288 | if (!logs?.length) return { dex: null, type: null }; 289 | 290 | const logString = logs.join(' '); 291 | 292 | if (logString.includes(PROGRAMS.PUMP_FUN_TOKEN_MINT_AUTH)) { 293 | return { dex: 'Pump.fun', type: 'mint' }; 294 | } 295 | if (logString.includes(PROGRAMS.PUMP_FUN)) { 296 | return { dex: 'Pump.fun', type: 'swap' }; 297 | } 298 | if (logString.includes(PROGRAMS.JUPITER)) { 299 | return { dex: 'Jupiter', type: 'swap' }; 300 | } 301 | if (logString.includes(PROGRAMS.RAYDIUM)) { 302 | return { dex: 'Raydium', type: 'swap' }; 303 | } 304 | 305 | return { dex: null, type: null }; 306 | } 307 | } 308 | 309 | /** 310 | * Message Manager 311 | * Handles the initialization sequence of Telegram bot messages 312 | * Sends startup notifications and prints tracked wallet information 313 | */ 314 | const messageManager = async () => { 315 | console.log('DISABLE_TELEGRAM_MESSAGES:', DISABLE_TELEGRAM_MESSAGES); 316 | await sendTelegramMessage('Wallet Tracker started.'); 317 | await sendTelegramMessage('Monitoring.'); 318 | await printTrackedWalletTg(TRACKING_WALLETS); 319 | }; 320 | 321 | // Initialize and start the monitoring system 322 | const monitor = new SolanaMonitor('https://api.mainnet-beta.solana.com'); 323 | monitor.monitorWallets(TRACKING_WALLETS); 324 | messageManager(); --------------------------------------------------------------------------------