├── .gitignore ├── LICENSE ├── README.md ├── class ├── GeneratorBot.js ├── ProblemGenerator.js └── Setting.js ├── config.json ├── data.json ├── index.js ├── package-lock.json ├── package.json ├── statistic.json └── template ├── generate.txt ├── solution.txt └── tips.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /config.json 2 | /statistic.json 3 | /data.json 4 | /node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 cool.void.zero 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Demo 2 | https://t.me/coding_problem_generator_bot 3 | 4 | ## Introduction 5 | This program used "GPT-3.5" and "TelegramBot" API to simulate LeetCode generate coding problem 6 | and provide tips and solution (specify programming language). 7 | - Need to provide "OpenAI API KEY" and "TelegramBot TOKEN" in "config.json" file for run this program. 8 | - Split the "generate", "tips", and "solution" template content in the template folder (for GPT role of system or user). 9 | 10 | ## Command of Telegram Bot 11 | - The generate coding problem command structure: "/difficult_tag#human_language". 12 | - The tips of problem command structure: "/tips_id#human_language". 13 | - The solution of problem command structure: "/solution_id#programming_language". 14 | 15 | Here is the main list of commands and their functions: 16 | - /start - Start introducing this channel. 17 | - /tips - Get tips of latest generated coding problem. 18 | - /solution - Get solution of latest generated coding problem. 19 | - /easy - Generate an easy coding problem. 20 | - /medium - Generate a medium coding problem. 21 | - /hard - Generate a hard coding problem. 22 | - /random - Random a coding problem. 23 | - /help - Help of the command list. 24 | -------------------------------------------------------------------------------- /class/GeneratorBot.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const TelegramBot = require('node-telegram-bot-api'); 3 | // custom class 4 | const { ProblemGenerator } = require("./ProblemGenerator"); 5 | 6 | class GeneratorBot{ 7 | // telegram bot default main menu keyboard 8 | configMenuKeyboard({ 9 | keyboard = [], 10 | resize_keyboard = true, 11 | one_time_keyboard = true, 12 | }){ 13 | return { 14 | reply_markup: { 15 | keyboard: keyboard, 16 | resize_keyboard: resize_keyboard, 17 | one_time_keyboard: one_time_keyboard, 18 | }, 19 | }; 20 | } 21 | 22 | constructor({ 23 | openai_api_key, telegram_token, template, 24 | data_path, data, statistic_path, statistic = { 25 | total_generate: 0, 26 | users: new Set(), 27 | execute_commands: new Map() 28 | } 29 | }){ 30 | // instance 31 | this.generator = new ProblemGenerator(openai_api_key, template); 32 | this.bot = new TelegramBot(telegram_token, { polling: true }); 33 | // split data value 34 | this.data_path = data_path; 35 | this.user_map = new Map(data.queues); 36 | this.queue_limit = data.queue_limit; 37 | // split statistic value 38 | this.statistic_path = statistic_path; 39 | this.statistic = statistic; 40 | 41 | this.menu_keyboard = this.configMenuKeyboard({ 42 | keyboard: [ 43 | ['/easy', '/medium', '/hard', '/random'], 44 | ['/tips', '/solution', '/help'] 45 | ] 46 | }); 47 | 48 | // listen telegram, user sent message 49 | this.bot.on('message', (user_msg) => { 50 | // const chatId = user_msg.chat.id; 51 | const user_chat_id = user_msg.chat.id; 52 | const username = user_msg.chat.username; 53 | let user_cmd = user_msg.text.toLocaleLowerCase(); 54 | 55 | // show running whose and what command 56 | if(user_cmd.includes("/")){ 57 | console.log(`"${username}" execute "${user_cmd}" command.`); 58 | 59 | // new users 60 | if(!this.statistic.users.has(username)) 61 | this.statistic.users.add(username); 62 | // count this command execute total 63 | let command_count = this.statistic.execute_commands.get(user_cmd) || 0; 64 | this.statistic.execute_commands.set(user_cmd, command_count + 1); 65 | 66 | this.writeStatistic(this.statistic); 67 | } 68 | 69 | // introduce this bot 70 | if(user_cmd === "/start"){ 71 | const start_msg = ` 72 | Welcome ${username} to here! 73 | Now let me introduce to you what instructions the bots in this channel have: 74 | 75 | 1. [Generate] 76 | -------------------------------------------------- 77 | 1a. [Required] "/easy", "/medium", "/hard", "/random" or any any descriptive gerund word. 78 | 1b. [Optional] set specify one or multiple type of the generate problem, ex: "/easy_array", "/medium_string-array". 79 | 1c. [Optional] set specify human language code or country language, ex: "/easy#ja", "/easy#taiwan". 80 | -------------------------------------------------- 81 | 82 | 2. [Tips] 83 | -------------------------------------------------- 84 | 2a. [Required] "/tips" or "/tips_xxx" (xxx meaning specify coding problem id) 85 | 2b. [Optional] set specify human language code or country language, ex: "/tips#en", "/tips#malaysia". 86 | -------------------------------------------------- 87 | 88 | 3. [Solution] 89 | -------------------------------------------------- 90 | 3a. [Required] "/solution" or "/tips_xxx" (xxx meaning specify coding problem id) 91 | 3b. [Optional] set specify programming language, ex: "/solution#javascript", "/solution#java". 92 | -------------------------------------------------- 93 | 94 | This bot will collect your "username" and your "commands" for statistics and analysis. 95 | `; 96 | 97 | this.bot.sendMessage(user_chat_id, start_msg, this.menu_keyboard); 98 | } 99 | // help, show command list 100 | else if(user_cmd === "/help"){ 101 | const help_msg = ` 102 | Here is the list of commands and their functions: 103 | 104 | /start - Start introducing this channel. 105 | /tips - Get tips of latest generated coding problem. 106 | /solution - Get solution of latest generated coding problem. 107 | /easy - Generate an easy coding problem. 108 | /medium - Generate a medium coding problem. 109 | /hard - Generate a hard coding problem. 110 | /random - Random a coding problem. 111 | /help - Help of the command list. 112 | `; 113 | 114 | this.bot.sendMessage(user_chat_id, help_msg, this.menu_keyboard); 115 | } 116 | // tips of problem 117 | else if(user_cmd.includes("/tips")){ 118 | const [cmd, message_id] = user_cmd.split('_'); 119 | const humen_language = user_cmd.split('#')[1] || "en"; 120 | const username = user_msg.chat.username; 121 | 122 | if(this.user_map.has(username)){ 123 | const queue = this.user_map.get(username); 124 | let problem = ""; 125 | 126 | // not specify "message_id" 127 | if(!user_cmd.includes("_")) 128 | problem = queue[queue.length - 1]['text']; 129 | // can expected specify "message_id" 130 | else{ 131 | for(let obj of queue) 132 | if(parseInt(message_id) === obj['id']){ 133 | problem = obj['text']; 134 | break; 135 | } 136 | } 137 | 138 | this.generator.tips({ 139 | problem: problem, 140 | humen_language: humen_language, 141 | }) 142 | .then(tips => this.bot.sendMessage(user_chat_id, tips, this.menu_keyboard)) 143 | .catch(err => { 144 | console.error(err); 145 | 146 | // custom error response message 147 | const err_msg = `Fail to call OpenAI ChatGPT to generate tips.`; 148 | console.log(err_msg); 149 | this.bot.sendMessage(user_chat_id, err_msg); 150 | }); 151 | } 152 | } 153 | // solution of problem 154 | else if(user_cmd.includes("/solution")){ 155 | const [cmd, message_id] = user_cmd.split('_'); 156 | const programming_language = user_cmd.split('#')[1] || "random"; 157 | const username = user_msg.chat.username; 158 | 159 | if(this.user_map.has(username)){ 160 | const queue = this.user_map.get(username); 161 | let problem = ""; 162 | 163 | // not specify "message_id" 164 | if(!user_cmd.includes('_')) 165 | problem = queue[queue.length - 1]['text']; 166 | // can expected specify "message_id" 167 | else{ 168 | for(let obj of queue) 169 | if(parseInt(message_id) === obj['id']){ 170 | problem = obj['text']; 171 | break; 172 | } 173 | } 174 | 175 | this.generator.solution({ 176 | problem: problem, 177 | programming_language: programming_language, 178 | }) 179 | .then(solution => this.bot.sendMessage(user_chat_id, solution, this.menu_keyboard)) 180 | .catch(err => { 181 | console.error(err); 182 | 183 | // custom error response message 184 | const err_msg = `Fail to call OpenAI ChatGPT to generate solution.`; 185 | console.log(err_msg); 186 | this.bot.sendMessage(user_chat_id, err_msg); 187 | }); 188 | } 189 | } 190 | // generate problem 191 | else if(user_cmd.includes("/")){ 192 | // call OpenAI GPT API to generate problem 193 | this.generator.generate({ 194 | content: user_cmd 195 | }) 196 | .then(coding_problem => { 197 | this.statistic.total_generate += 1; 198 | this.writeStatistic(this.statistic); 199 | 200 | return this.bot.sendMessage(user_chat_id, coding_problem); 201 | }) 202 | // after sent, store the generate problem for refer 203 | .then(bot_msg => { 204 | const { text } = bot_msg; 205 | const message_id = bot_msg.message_id; 206 | 207 | if(this.user_map.has(username)){ 208 | let queue = this.user_map.get(username); 209 | 210 | if(queue.length >= this.queue_limit) 211 | queue.shift(); 212 | 213 | // push the new message and re-new to variable and data path file 214 | queue.push({ 215 | id: message_id, 216 | text: text, 217 | }); 218 | this.user_map.set(username, queue); 219 | 220 | this.writeData(this.user_map, this.queue_limit); 221 | } 222 | else{ 223 | this.user_map.set(username, [{ 224 | id: message_id, 225 | text: text, 226 | }]); 227 | 228 | this.writeData(this.user_map, this.queue_limit); 229 | } 230 | 231 | // interactive commands 232 | const options = this.configMenuKeyboard({ 233 | keyboard: [['/tips', '/solution']] 234 | }); 235 | 236 | this.bot.sendMessage(user_chat_id, `You can click below command for tips or solution: 237 | "/tips_${message_id}", "/solution_${message_id}" 238 | `, options); 239 | }) 240 | .catch(err => { 241 | console.error(err); 242 | 243 | // custom error response message 244 | const err_msg = `Fail to call OpenAI ChatGPT to generate problem.`; 245 | console.log(err_msg); 246 | this.bot.sendMessage(user_chat_id, err_msg); 247 | }); 248 | } 249 | }); 250 | } 251 | 252 | writeData(map, queue_limit = this.queue_limit){ 253 | const data = { 254 | queues: [...map], 255 | queue_limit: queue_limit, 256 | } 257 | const json_str = JSON.stringify(data, null, 2); 258 | 259 | // use async to optimize process 260 | fs.writeFile(this.data_path, json_str, (err) => { 261 | if(err) 262 | console.error(err); 263 | }); 264 | } 265 | 266 | writeStatistic(statistic= {}){ 267 | let data = { 268 | ...statistic 269 | } 270 | // change data type "Set" and "Map" to array to store 271 | data.users = [...statistic.users]; 272 | data.execute_commands = [...statistic.execute_commands]; 273 | const json_str = JSON.stringify(data, null, 2); 274 | 275 | // use async to optimize process 276 | fs.writeFile(this.statistic_path, json_str, (err) => { 277 | if(err) 278 | console.error(err); 279 | }); 280 | } 281 | } 282 | 283 | module.exports = { GeneratorBot }; -------------------------------------------------------------------------------- /class/ProblemGenerator.js: -------------------------------------------------------------------------------- 1 | const { Configuration, OpenAIApi } = require("openai"); 2 | 3 | class ProblemGenerator{ 4 | constructor( 5 | openai_api_key, 6 | template = { 7 | generate: "", 8 | tips: "", 9 | solution: "", 10 | }, 11 | model = "gpt-3.5-turbo" 12 | ){ 13 | this.template = template; 14 | this.model = model; 15 | this.openai = new OpenAIApi(new Configuration({ 16 | apiKey: openai_api_key 17 | })); 18 | } 19 | 20 | // user input command to generate coding problem 21 | generate = async({ content }) => { 22 | // re-assign, default set human language code = "en" 23 | content = (content.includes("#"))? content: content + "#en"; 24 | 25 | return new Promise(async (resolve, reject) => { 26 | try { 27 | const completion = await this.openai.createChatCompletion({ 28 | model: this.model, 29 | messages: [ 30 | { 31 | role: "system", 32 | content: this.template.generate, 33 | }, 34 | { 35 | role: "user", 36 | content: content, 37 | } 38 | ], 39 | }); 40 | 41 | const generate_content = completion.data.choices[0].message.content; 42 | resolve(generate_content); 43 | }catch(err){ 44 | reject(err); 45 | } 46 | }); 47 | } 48 | 49 | tips = async({ problem, humen_language = "en" }) => { 50 | return new Promise(async (resolve, reject) => { 51 | try { 52 | const completion = await this.openai.createChatCompletion({ 53 | model: this.model, 54 | messages: [ 55 | { 56 | role: "assistant", 57 | content: problem, 58 | }, 59 | { 60 | role: "system", 61 | content: this.template.tips.replace(/\${humen_language}/g, humen_language) 62 | }, 63 | ], 64 | }); 65 | 66 | const tips_content = completion.data.choices[0].message.content; 67 | resolve(tips_content); 68 | }catch(err){ 69 | reject(err); 70 | } 71 | }); 72 | } 73 | 74 | solution = async({ problem, programming_language = "random" }) => { 75 | console.log(`problem: ${problem}`); 76 | console.log(`process solution...`); 77 | 78 | 79 | return new Promise(async (resolve, reject) => { 80 | try { 81 | const completion = await this.openai.createChatCompletion({ 82 | model: this.model, 83 | messages: [ 84 | { 85 | role: "assistant", 86 | content: problem, 87 | }, 88 | { 89 | role: "user", 90 | content: this.template.solution.replace(/\${programming_language}/g, programming_language) 91 | }, 92 | ], 93 | }); 94 | 95 | const solution_content = completion.data.choices[0].message.content; 96 | resolve(solution_content); 97 | }catch(err){ 98 | reject(err); 99 | } 100 | }); 101 | } 102 | } 103 | 104 | module.exports = { ProblemGenerator }; -------------------------------------------------------------------------------- /class/Setting.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const fs = require("fs"); 3 | 4 | class Setting{ 5 | constructor({ 6 | project_root, config_path = "config.json", 7 | data_path = "data.json", statistic_path = "statistic.json" 8 | }){ 9 | this.project_root = project_root; 10 | this.data_full_path = path.join(this.project_root, data_path); 11 | this.statistic_full_path = path.join(this.project_root, statistic_path); 12 | this.config = this.getConfig(config_path); 13 | this.data = this.getData(data_path); 14 | this.statistic = this.getStatistic(statistic_path); 15 | } 16 | 17 | getConfig(config_path){ 18 | const full_path = path.join(this.project_root, config_path); 19 | let json = JSON.parse(fs.readFileSync(full_path)); 20 | 21 | // load all the template 22 | json['template'] = {}; 23 | for(const prop in json['template_path']){ 24 | const template_str = fs.readFileSync(json['template_path'][prop], { encoding: "utf-8" }).replace(/\r\n/g, '\n'); 25 | 26 | json['template'][prop] = template_str; 27 | } 28 | delete json['template_path']; 29 | 30 | return json; 31 | } 32 | 33 | getData(data_path){ 34 | const full_path = path.join(this.project_root, data_path); 35 | const json_str = fs.readFileSync(full_path, { encoding: "utf-8" }); 36 | 37 | return JSON.parse(json_str); 38 | } 39 | 40 | getStatistic(statistic_path){ 41 | const full_path = path.join(this.project_root, statistic_path); 42 | const json_str = fs.readFileSync(full_path, { encoding: "utf-8" }) 43 | 44 | return JSON.parse(json_str); 45 | } 46 | } 47 | 48 | module.exports = { Setting }; -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "openai_api_key": "YOUR_API_KEY", 3 | "telegram_token": "YOUR_TOKEN", 4 | "template_path": { 5 | "generate": "./template/generate.txt", 6 | "tips": "./template/tips.txt", 7 | "solution": "./template/solution.txt" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "queues": [ 3 | 4 | ], 5 | "queue_limit": 5 6 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /* 2 | Todo list 3 | ----------------------------------------------------------------------------- 4 | [√] telegram bot api 5 | [√] specify problem type (tag) (ex: string, array, tree, etc) 6 | [√] specify language 7 | [√] push to Google Cloud VM 8 | [√] re-structure file content 9 | (move default role = "system" template content to a "template.txt") 10 | [√] tips of solution 11 | [√] give the solution 12 | (currenly store in local data.json) 13 | [√] support not need specify message_id, default get latest tips or solution 14 | [√] add a statistics.json for record command and total generate 15 | [√] issue, some time the GPT will give many example (more than 10) 16 | (edit template, change "at least 2 examples" to "only need 2 examples") 17 | [√] issue, when use "/easy" GPT will not generate content 18 | (when the generate command not include "#language", default set to "#en") 19 | ----------------------------------------------------------------------------- 20 | 21 | [] simplify between "Setting" and "GeneratorBot" properties and parameters 22 | [] custom setting default language (human and programming language) 23 | */ 24 | const { Setting } = require("./class/Setting"); 25 | const { GeneratorBot } = require("./class/GeneratorBot"); 26 | 27 | // instance "Setting" and "GeneratorBot" 28 | const setting = new Setting({ 29 | project_root: __dirname, 30 | config_path: "config.json", 31 | data_path: "data.json", 32 | statistic_path: "statistic.json", 33 | }); 34 | const bot = new GeneratorBot({ 35 | ...setting.config, 36 | 37 | data_path: setting.data_full_path, 38 | statistic_path: setting.statistic_full_path, 39 | 40 | data: { 41 | ...setting.data 42 | }, 43 | statistic: { 44 | total_generate: setting.statistic.total_generate, 45 | users: new Set(setting.statistic.users), 46 | execute_commands: new Map(setting.statistic.execute_commands), 47 | }, 48 | }); 49 | 50 | console.log(`Your Telegram Bot running...`); -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coding-problem-generator", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "coding-problem-generator", 9 | "version": "0.1.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "express": "^4.18.2", 13 | "node-telegram-bot-api": "^0.61.0", 14 | "openai": "^3.2.1" 15 | } 16 | }, 17 | "node_modules/accepts": { 18 | "version": "1.3.8", 19 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 20 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 21 | "dependencies": { 22 | "mime-types": "~2.1.34", 23 | "negotiator": "0.6.3" 24 | }, 25 | "engines": { 26 | "node": ">= 0.6" 27 | } 28 | }, 29 | "node_modules/ajv": { 30 | "version": "6.12.6", 31 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 32 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 33 | "dependencies": { 34 | "fast-deep-equal": "^3.1.1", 35 | "fast-json-stable-stringify": "^2.0.0", 36 | "json-schema-traverse": "^0.4.1", 37 | "uri-js": "^4.2.2" 38 | }, 39 | "funding": { 40 | "type": "github", 41 | "url": "https://github.com/sponsors/epoberezkin" 42 | } 43 | }, 44 | "node_modules/array-flatten": { 45 | "version": "1.1.1", 46 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 47 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 48 | }, 49 | "node_modules/array.prototype.findindex": { 50 | "version": "2.2.1", 51 | "resolved": "https://registry.npmjs.org/array.prototype.findindex/-/array.prototype.findindex-2.2.1.tgz", 52 | "integrity": "sha512-tMj4uTmGpaGUh4XFMUh3H7KYAIqlygrlXchOEVTiICbTwRwMhDqtzsOwvtI+WAf1GdjJBeIP3Bu92Qg0SnXdtA==", 53 | "dependencies": { 54 | "call-bind": "^1.0.2", 55 | "define-properties": "^1.1.4", 56 | "es-abstract": "^1.20.4", 57 | "es-shim-unscopables": "^1.0.0" 58 | } 59 | }, 60 | "node_modules/asn1": { 61 | "version": "0.2.6", 62 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", 63 | "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", 64 | "dependencies": { 65 | "safer-buffer": "~2.1.0" 66 | } 67 | }, 68 | "node_modules/assert-plus": { 69 | "version": "1.0.0", 70 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 71 | "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", 72 | "engines": { 73 | "node": ">=0.8" 74 | } 75 | }, 76 | "node_modules/asynckit": { 77 | "version": "0.4.0", 78 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 79 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 80 | }, 81 | "node_modules/available-typed-arrays": { 82 | "version": "1.0.5", 83 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 84 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 85 | "engines": { 86 | "node": ">= 0.4" 87 | }, 88 | "funding": { 89 | "url": "https://github.com/sponsors/ljharb" 90 | } 91 | }, 92 | "node_modules/aws-sign2": { 93 | "version": "0.7.0", 94 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 95 | "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", 96 | "engines": { 97 | "node": "*" 98 | } 99 | }, 100 | "node_modules/aws4": { 101 | "version": "1.12.0", 102 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", 103 | "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" 104 | }, 105 | "node_modules/axios": { 106 | "version": "0.26.1", 107 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", 108 | "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", 109 | "dependencies": { 110 | "follow-redirects": "^1.14.8" 111 | } 112 | }, 113 | "node_modules/bcrypt-pbkdf": { 114 | "version": "1.0.2", 115 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 116 | "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", 117 | "dependencies": { 118 | "tweetnacl": "^0.14.3" 119 | } 120 | }, 121 | "node_modules/bl": { 122 | "version": "1.2.3", 123 | "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", 124 | "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", 125 | "dependencies": { 126 | "readable-stream": "^2.3.5", 127 | "safe-buffer": "^5.1.1" 128 | } 129 | }, 130 | "node_modules/bluebird": { 131 | "version": "3.7.2", 132 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 133 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" 134 | }, 135 | "node_modules/body-parser": { 136 | "version": "1.20.1", 137 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 138 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 139 | "dependencies": { 140 | "bytes": "3.1.2", 141 | "content-type": "~1.0.4", 142 | "debug": "2.6.9", 143 | "depd": "2.0.0", 144 | "destroy": "1.2.0", 145 | "http-errors": "2.0.0", 146 | "iconv-lite": "0.4.24", 147 | "on-finished": "2.4.1", 148 | "qs": "6.11.0", 149 | "raw-body": "2.5.1", 150 | "type-is": "~1.6.18", 151 | "unpipe": "1.0.0" 152 | }, 153 | "engines": { 154 | "node": ">= 0.8", 155 | "npm": "1.2.8000 || >= 1.4.16" 156 | } 157 | }, 158 | "node_modules/bytes": { 159 | "version": "3.1.2", 160 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 161 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 162 | "engines": { 163 | "node": ">= 0.8" 164 | } 165 | }, 166 | "node_modules/call-bind": { 167 | "version": "1.0.2", 168 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 169 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 170 | "dependencies": { 171 | "function-bind": "^1.1.1", 172 | "get-intrinsic": "^1.0.2" 173 | }, 174 | "funding": { 175 | "url": "https://github.com/sponsors/ljharb" 176 | } 177 | }, 178 | "node_modules/caseless": { 179 | "version": "0.12.0", 180 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 181 | "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" 182 | }, 183 | "node_modules/combined-stream": { 184 | "version": "1.0.8", 185 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 186 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 187 | "dependencies": { 188 | "delayed-stream": "~1.0.0" 189 | }, 190 | "engines": { 191 | "node": ">= 0.8" 192 | } 193 | }, 194 | "node_modules/content-disposition": { 195 | "version": "0.5.4", 196 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 197 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 198 | "dependencies": { 199 | "safe-buffer": "5.2.1" 200 | }, 201 | "engines": { 202 | "node": ">= 0.6" 203 | } 204 | }, 205 | "node_modules/content-type": { 206 | "version": "1.0.5", 207 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 208 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 209 | "engines": { 210 | "node": ">= 0.6" 211 | } 212 | }, 213 | "node_modules/cookie": { 214 | "version": "0.5.0", 215 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 216 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 217 | "engines": { 218 | "node": ">= 0.6" 219 | } 220 | }, 221 | "node_modules/cookie-signature": { 222 | "version": "1.0.6", 223 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 224 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 225 | }, 226 | "node_modules/core-util-is": { 227 | "version": "1.0.3", 228 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 229 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" 230 | }, 231 | "node_modules/dashdash": { 232 | "version": "1.14.1", 233 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 234 | "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", 235 | "dependencies": { 236 | "assert-plus": "^1.0.0" 237 | }, 238 | "engines": { 239 | "node": ">=0.10" 240 | } 241 | }, 242 | "node_modules/debug": { 243 | "version": "2.6.9", 244 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 245 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 246 | "dependencies": { 247 | "ms": "2.0.0" 248 | } 249 | }, 250 | "node_modules/define-properties": { 251 | "version": "1.2.0", 252 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 253 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 254 | "dependencies": { 255 | "has-property-descriptors": "^1.0.0", 256 | "object-keys": "^1.1.1" 257 | }, 258 | "engines": { 259 | "node": ">= 0.4" 260 | }, 261 | "funding": { 262 | "url": "https://github.com/sponsors/ljharb" 263 | } 264 | }, 265 | "node_modules/delayed-stream": { 266 | "version": "1.0.0", 267 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 268 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 269 | "engines": { 270 | "node": ">=0.4.0" 271 | } 272 | }, 273 | "node_modules/depd": { 274 | "version": "2.0.0", 275 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 276 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 277 | "engines": { 278 | "node": ">= 0.8" 279 | } 280 | }, 281 | "node_modules/destroy": { 282 | "version": "1.2.0", 283 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 284 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 285 | "engines": { 286 | "node": ">= 0.8", 287 | "npm": "1.2.8000 || >= 1.4.16" 288 | } 289 | }, 290 | "node_modules/ecc-jsbn": { 291 | "version": "0.1.2", 292 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 293 | "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", 294 | "dependencies": { 295 | "jsbn": "~0.1.0", 296 | "safer-buffer": "^2.1.0" 297 | } 298 | }, 299 | "node_modules/ee-first": { 300 | "version": "1.1.1", 301 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 302 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 303 | }, 304 | "node_modules/encodeurl": { 305 | "version": "1.0.2", 306 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 307 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 308 | "engines": { 309 | "node": ">= 0.8" 310 | } 311 | }, 312 | "node_modules/end-of-stream": { 313 | "version": "1.4.4", 314 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 315 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 316 | "dependencies": { 317 | "once": "^1.4.0" 318 | } 319 | }, 320 | "node_modules/es-abstract": { 321 | "version": "1.21.1", 322 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", 323 | "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", 324 | "dependencies": { 325 | "available-typed-arrays": "^1.0.5", 326 | "call-bind": "^1.0.2", 327 | "es-set-tostringtag": "^2.0.1", 328 | "es-to-primitive": "^1.2.1", 329 | "function-bind": "^1.1.1", 330 | "function.prototype.name": "^1.1.5", 331 | "get-intrinsic": "^1.1.3", 332 | "get-symbol-description": "^1.0.0", 333 | "globalthis": "^1.0.3", 334 | "gopd": "^1.0.1", 335 | "has": "^1.0.3", 336 | "has-property-descriptors": "^1.0.0", 337 | "has-proto": "^1.0.1", 338 | "has-symbols": "^1.0.3", 339 | "internal-slot": "^1.0.4", 340 | "is-array-buffer": "^3.0.1", 341 | "is-callable": "^1.2.7", 342 | "is-negative-zero": "^2.0.2", 343 | "is-regex": "^1.1.4", 344 | "is-shared-array-buffer": "^1.0.2", 345 | "is-string": "^1.0.7", 346 | "is-typed-array": "^1.1.10", 347 | "is-weakref": "^1.0.2", 348 | "object-inspect": "^1.12.2", 349 | "object-keys": "^1.1.1", 350 | "object.assign": "^4.1.4", 351 | "regexp.prototype.flags": "^1.4.3", 352 | "safe-regex-test": "^1.0.0", 353 | "string.prototype.trimend": "^1.0.6", 354 | "string.prototype.trimstart": "^1.0.6", 355 | "typed-array-length": "^1.0.4", 356 | "unbox-primitive": "^1.0.2", 357 | "which-typed-array": "^1.1.9" 358 | }, 359 | "engines": { 360 | "node": ">= 0.4" 361 | }, 362 | "funding": { 363 | "url": "https://github.com/sponsors/ljharb" 364 | } 365 | }, 366 | "node_modules/es-set-tostringtag": { 367 | "version": "2.0.1", 368 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 369 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 370 | "dependencies": { 371 | "get-intrinsic": "^1.1.3", 372 | "has": "^1.0.3", 373 | "has-tostringtag": "^1.0.0" 374 | }, 375 | "engines": { 376 | "node": ">= 0.4" 377 | } 378 | }, 379 | "node_modules/es-shim-unscopables": { 380 | "version": "1.0.0", 381 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 382 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 383 | "dependencies": { 384 | "has": "^1.0.3" 385 | } 386 | }, 387 | "node_modules/es-to-primitive": { 388 | "version": "1.2.1", 389 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 390 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 391 | "dependencies": { 392 | "is-callable": "^1.1.4", 393 | "is-date-object": "^1.0.1", 394 | "is-symbol": "^1.0.2" 395 | }, 396 | "engines": { 397 | "node": ">= 0.4" 398 | }, 399 | "funding": { 400 | "url": "https://github.com/sponsors/ljharb" 401 | } 402 | }, 403 | "node_modules/escape-html": { 404 | "version": "1.0.3", 405 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 406 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 407 | }, 408 | "node_modules/etag": { 409 | "version": "1.8.1", 410 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 411 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 412 | "engines": { 413 | "node": ">= 0.6" 414 | } 415 | }, 416 | "node_modules/eventemitter3": { 417 | "version": "3.1.2", 418 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", 419 | "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" 420 | }, 421 | "node_modules/express": { 422 | "version": "4.18.2", 423 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 424 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 425 | "dependencies": { 426 | "accepts": "~1.3.8", 427 | "array-flatten": "1.1.1", 428 | "body-parser": "1.20.1", 429 | "content-disposition": "0.5.4", 430 | "content-type": "~1.0.4", 431 | "cookie": "0.5.0", 432 | "cookie-signature": "1.0.6", 433 | "debug": "2.6.9", 434 | "depd": "2.0.0", 435 | "encodeurl": "~1.0.2", 436 | "escape-html": "~1.0.3", 437 | "etag": "~1.8.1", 438 | "finalhandler": "1.2.0", 439 | "fresh": "0.5.2", 440 | "http-errors": "2.0.0", 441 | "merge-descriptors": "1.0.1", 442 | "methods": "~1.1.2", 443 | "on-finished": "2.4.1", 444 | "parseurl": "~1.3.3", 445 | "path-to-regexp": "0.1.7", 446 | "proxy-addr": "~2.0.7", 447 | "qs": "6.11.0", 448 | "range-parser": "~1.2.1", 449 | "safe-buffer": "5.2.1", 450 | "send": "0.18.0", 451 | "serve-static": "1.15.0", 452 | "setprototypeof": "1.2.0", 453 | "statuses": "2.0.1", 454 | "type-is": "~1.6.18", 455 | "utils-merge": "1.0.1", 456 | "vary": "~1.1.2" 457 | }, 458 | "engines": { 459 | "node": ">= 0.10.0" 460 | } 461 | }, 462 | "node_modules/extend": { 463 | "version": "3.0.2", 464 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 465 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 466 | }, 467 | "node_modules/extsprintf": { 468 | "version": "1.3.0", 469 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 470 | "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", 471 | "engines": [ 472 | "node >=0.6.0" 473 | ] 474 | }, 475 | "node_modules/fast-deep-equal": { 476 | "version": "3.1.3", 477 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 478 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 479 | }, 480 | "node_modules/fast-json-stable-stringify": { 481 | "version": "2.1.0", 482 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 483 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 484 | }, 485 | "node_modules/file-type": { 486 | "version": "3.9.0", 487 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", 488 | "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", 489 | "engines": { 490 | "node": ">=0.10.0" 491 | } 492 | }, 493 | "node_modules/finalhandler": { 494 | "version": "1.2.0", 495 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 496 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 497 | "dependencies": { 498 | "debug": "2.6.9", 499 | "encodeurl": "~1.0.2", 500 | "escape-html": "~1.0.3", 501 | "on-finished": "2.4.1", 502 | "parseurl": "~1.3.3", 503 | "statuses": "2.0.1", 504 | "unpipe": "~1.0.0" 505 | }, 506 | "engines": { 507 | "node": ">= 0.8" 508 | } 509 | }, 510 | "node_modules/follow-redirects": { 511 | "version": "1.15.2", 512 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", 513 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", 514 | "funding": [ 515 | { 516 | "type": "individual", 517 | "url": "https://github.com/sponsors/RubenVerborgh" 518 | } 519 | ], 520 | "engines": { 521 | "node": ">=4.0" 522 | }, 523 | "peerDependenciesMeta": { 524 | "debug": { 525 | "optional": true 526 | } 527 | } 528 | }, 529 | "node_modules/for-each": { 530 | "version": "0.3.3", 531 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 532 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 533 | "dependencies": { 534 | "is-callable": "^1.1.3" 535 | } 536 | }, 537 | "node_modules/forever-agent": { 538 | "version": "0.6.1", 539 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 540 | "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", 541 | "engines": { 542 | "node": "*" 543 | } 544 | }, 545 | "node_modules/form-data": { 546 | "version": "4.0.0", 547 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 548 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 549 | "dependencies": { 550 | "asynckit": "^0.4.0", 551 | "combined-stream": "^1.0.8", 552 | "mime-types": "^2.1.12" 553 | }, 554 | "engines": { 555 | "node": ">= 6" 556 | } 557 | }, 558 | "node_modules/forwarded": { 559 | "version": "0.2.0", 560 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 561 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 562 | "engines": { 563 | "node": ">= 0.6" 564 | } 565 | }, 566 | "node_modules/fresh": { 567 | "version": "0.5.2", 568 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 569 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 570 | "engines": { 571 | "node": ">= 0.6" 572 | } 573 | }, 574 | "node_modules/function-bind": { 575 | "version": "1.1.1", 576 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 577 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 578 | }, 579 | "node_modules/function.prototype.name": { 580 | "version": "1.1.5", 581 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 582 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 583 | "dependencies": { 584 | "call-bind": "^1.0.2", 585 | "define-properties": "^1.1.3", 586 | "es-abstract": "^1.19.0", 587 | "functions-have-names": "^1.2.2" 588 | }, 589 | "engines": { 590 | "node": ">= 0.4" 591 | }, 592 | "funding": { 593 | "url": "https://github.com/sponsors/ljharb" 594 | } 595 | }, 596 | "node_modules/functions-have-names": { 597 | "version": "1.2.3", 598 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 599 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 600 | "funding": { 601 | "url": "https://github.com/sponsors/ljharb" 602 | } 603 | }, 604 | "node_modules/get-intrinsic": { 605 | "version": "1.2.0", 606 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 607 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 608 | "dependencies": { 609 | "function-bind": "^1.1.1", 610 | "has": "^1.0.3", 611 | "has-symbols": "^1.0.3" 612 | }, 613 | "funding": { 614 | "url": "https://github.com/sponsors/ljharb" 615 | } 616 | }, 617 | "node_modules/get-symbol-description": { 618 | "version": "1.0.0", 619 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 620 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 621 | "dependencies": { 622 | "call-bind": "^1.0.2", 623 | "get-intrinsic": "^1.1.1" 624 | }, 625 | "engines": { 626 | "node": ">= 0.4" 627 | }, 628 | "funding": { 629 | "url": "https://github.com/sponsors/ljharb" 630 | } 631 | }, 632 | "node_modules/getpass": { 633 | "version": "0.1.7", 634 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 635 | "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", 636 | "dependencies": { 637 | "assert-plus": "^1.0.0" 638 | } 639 | }, 640 | "node_modules/globalthis": { 641 | "version": "1.0.3", 642 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 643 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 644 | "dependencies": { 645 | "define-properties": "^1.1.3" 646 | }, 647 | "engines": { 648 | "node": ">= 0.4" 649 | }, 650 | "funding": { 651 | "url": "https://github.com/sponsors/ljharb" 652 | } 653 | }, 654 | "node_modules/gopd": { 655 | "version": "1.0.1", 656 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 657 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 658 | "dependencies": { 659 | "get-intrinsic": "^1.1.3" 660 | }, 661 | "funding": { 662 | "url": "https://github.com/sponsors/ljharb" 663 | } 664 | }, 665 | "node_modules/har-schema": { 666 | "version": "2.0.0", 667 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 668 | "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", 669 | "engines": { 670 | "node": ">=4" 671 | } 672 | }, 673 | "node_modules/har-validator": { 674 | "version": "5.1.5", 675 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 676 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 677 | "deprecated": "this library is no longer supported", 678 | "dependencies": { 679 | "ajv": "^6.12.3", 680 | "har-schema": "^2.0.0" 681 | }, 682 | "engines": { 683 | "node": ">=6" 684 | } 685 | }, 686 | "node_modules/has": { 687 | "version": "1.0.3", 688 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 689 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 690 | "dependencies": { 691 | "function-bind": "^1.1.1" 692 | }, 693 | "engines": { 694 | "node": ">= 0.4.0" 695 | } 696 | }, 697 | "node_modules/has-bigints": { 698 | "version": "1.0.2", 699 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 700 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 701 | "funding": { 702 | "url": "https://github.com/sponsors/ljharb" 703 | } 704 | }, 705 | "node_modules/has-property-descriptors": { 706 | "version": "1.0.0", 707 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 708 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 709 | "dependencies": { 710 | "get-intrinsic": "^1.1.1" 711 | }, 712 | "funding": { 713 | "url": "https://github.com/sponsors/ljharb" 714 | } 715 | }, 716 | "node_modules/has-proto": { 717 | "version": "1.0.1", 718 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 719 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 720 | "engines": { 721 | "node": ">= 0.4" 722 | }, 723 | "funding": { 724 | "url": "https://github.com/sponsors/ljharb" 725 | } 726 | }, 727 | "node_modules/has-symbols": { 728 | "version": "1.0.3", 729 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 730 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 731 | "engines": { 732 | "node": ">= 0.4" 733 | }, 734 | "funding": { 735 | "url": "https://github.com/sponsors/ljharb" 736 | } 737 | }, 738 | "node_modules/has-tostringtag": { 739 | "version": "1.0.0", 740 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 741 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 742 | "dependencies": { 743 | "has-symbols": "^1.0.2" 744 | }, 745 | "engines": { 746 | "node": ">= 0.4" 747 | }, 748 | "funding": { 749 | "url": "https://github.com/sponsors/ljharb" 750 | } 751 | }, 752 | "node_modules/http-errors": { 753 | "version": "2.0.0", 754 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 755 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 756 | "dependencies": { 757 | "depd": "2.0.0", 758 | "inherits": "2.0.4", 759 | "setprototypeof": "1.2.0", 760 | "statuses": "2.0.1", 761 | "toidentifier": "1.0.1" 762 | }, 763 | "engines": { 764 | "node": ">= 0.8" 765 | } 766 | }, 767 | "node_modules/http-signature": { 768 | "version": "1.2.0", 769 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 770 | "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", 771 | "dependencies": { 772 | "assert-plus": "^1.0.0", 773 | "jsprim": "^1.2.2", 774 | "sshpk": "^1.7.0" 775 | }, 776 | "engines": { 777 | "node": ">=0.8", 778 | "npm": ">=1.3.7" 779 | } 780 | }, 781 | "node_modules/iconv-lite": { 782 | "version": "0.4.24", 783 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 784 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 785 | "dependencies": { 786 | "safer-buffer": ">= 2.1.2 < 3" 787 | }, 788 | "engines": { 789 | "node": ">=0.10.0" 790 | } 791 | }, 792 | "node_modules/inherits": { 793 | "version": "2.0.4", 794 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 795 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 796 | }, 797 | "node_modules/internal-slot": { 798 | "version": "1.0.5", 799 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 800 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 801 | "dependencies": { 802 | "get-intrinsic": "^1.2.0", 803 | "has": "^1.0.3", 804 | "side-channel": "^1.0.4" 805 | }, 806 | "engines": { 807 | "node": ">= 0.4" 808 | } 809 | }, 810 | "node_modules/ipaddr.js": { 811 | "version": "1.9.1", 812 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 813 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 814 | "engines": { 815 | "node": ">= 0.10" 816 | } 817 | }, 818 | "node_modules/is-array-buffer": { 819 | "version": "3.0.2", 820 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 821 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 822 | "dependencies": { 823 | "call-bind": "^1.0.2", 824 | "get-intrinsic": "^1.2.0", 825 | "is-typed-array": "^1.1.10" 826 | }, 827 | "funding": { 828 | "url": "https://github.com/sponsors/ljharb" 829 | } 830 | }, 831 | "node_modules/is-bigint": { 832 | "version": "1.0.4", 833 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 834 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 835 | "dependencies": { 836 | "has-bigints": "^1.0.1" 837 | }, 838 | "funding": { 839 | "url": "https://github.com/sponsors/ljharb" 840 | } 841 | }, 842 | "node_modules/is-boolean-object": { 843 | "version": "1.1.2", 844 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 845 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 846 | "dependencies": { 847 | "call-bind": "^1.0.2", 848 | "has-tostringtag": "^1.0.0" 849 | }, 850 | "engines": { 851 | "node": ">= 0.4" 852 | }, 853 | "funding": { 854 | "url": "https://github.com/sponsors/ljharb" 855 | } 856 | }, 857 | "node_modules/is-callable": { 858 | "version": "1.2.7", 859 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 860 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 861 | "engines": { 862 | "node": ">= 0.4" 863 | }, 864 | "funding": { 865 | "url": "https://github.com/sponsors/ljharb" 866 | } 867 | }, 868 | "node_modules/is-date-object": { 869 | "version": "1.0.5", 870 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 871 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 872 | "dependencies": { 873 | "has-tostringtag": "^1.0.0" 874 | }, 875 | "engines": { 876 | "node": ">= 0.4" 877 | }, 878 | "funding": { 879 | "url": "https://github.com/sponsors/ljharb" 880 | } 881 | }, 882 | "node_modules/is-negative-zero": { 883 | "version": "2.0.2", 884 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 885 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 886 | "engines": { 887 | "node": ">= 0.4" 888 | }, 889 | "funding": { 890 | "url": "https://github.com/sponsors/ljharb" 891 | } 892 | }, 893 | "node_modules/is-number-object": { 894 | "version": "1.0.7", 895 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 896 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 897 | "dependencies": { 898 | "has-tostringtag": "^1.0.0" 899 | }, 900 | "engines": { 901 | "node": ">= 0.4" 902 | }, 903 | "funding": { 904 | "url": "https://github.com/sponsors/ljharb" 905 | } 906 | }, 907 | "node_modules/is-regex": { 908 | "version": "1.1.4", 909 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 910 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 911 | "dependencies": { 912 | "call-bind": "^1.0.2", 913 | "has-tostringtag": "^1.0.0" 914 | }, 915 | "engines": { 916 | "node": ">= 0.4" 917 | }, 918 | "funding": { 919 | "url": "https://github.com/sponsors/ljharb" 920 | } 921 | }, 922 | "node_modules/is-shared-array-buffer": { 923 | "version": "1.0.2", 924 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 925 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 926 | "dependencies": { 927 | "call-bind": "^1.0.2" 928 | }, 929 | "funding": { 930 | "url": "https://github.com/sponsors/ljharb" 931 | } 932 | }, 933 | "node_modules/is-string": { 934 | "version": "1.0.7", 935 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 936 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 937 | "dependencies": { 938 | "has-tostringtag": "^1.0.0" 939 | }, 940 | "engines": { 941 | "node": ">= 0.4" 942 | }, 943 | "funding": { 944 | "url": "https://github.com/sponsors/ljharb" 945 | } 946 | }, 947 | "node_modules/is-symbol": { 948 | "version": "1.0.4", 949 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 950 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 951 | "dependencies": { 952 | "has-symbols": "^1.0.2" 953 | }, 954 | "engines": { 955 | "node": ">= 0.4" 956 | }, 957 | "funding": { 958 | "url": "https://github.com/sponsors/ljharb" 959 | } 960 | }, 961 | "node_modules/is-typed-array": { 962 | "version": "1.1.10", 963 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 964 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 965 | "dependencies": { 966 | "available-typed-arrays": "^1.0.5", 967 | "call-bind": "^1.0.2", 968 | "for-each": "^0.3.3", 969 | "gopd": "^1.0.1", 970 | "has-tostringtag": "^1.0.0" 971 | }, 972 | "engines": { 973 | "node": ">= 0.4" 974 | }, 975 | "funding": { 976 | "url": "https://github.com/sponsors/ljharb" 977 | } 978 | }, 979 | "node_modules/is-typedarray": { 980 | "version": "1.0.0", 981 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 982 | "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" 983 | }, 984 | "node_modules/is-weakref": { 985 | "version": "1.0.2", 986 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 987 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 988 | "dependencies": { 989 | "call-bind": "^1.0.2" 990 | }, 991 | "funding": { 992 | "url": "https://github.com/sponsors/ljharb" 993 | } 994 | }, 995 | "node_modules/isarray": { 996 | "version": "1.0.0", 997 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 998 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" 999 | }, 1000 | "node_modules/isstream": { 1001 | "version": "0.1.2", 1002 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1003 | "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" 1004 | }, 1005 | "node_modules/jsbn": { 1006 | "version": "0.1.1", 1007 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 1008 | "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" 1009 | }, 1010 | "node_modules/json-schema": { 1011 | "version": "0.4.0", 1012 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", 1013 | "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" 1014 | }, 1015 | "node_modules/json-schema-traverse": { 1016 | "version": "0.4.1", 1017 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1018 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 1019 | }, 1020 | "node_modules/json-stringify-safe": { 1021 | "version": "5.0.1", 1022 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 1023 | "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" 1024 | }, 1025 | "node_modules/jsprim": { 1026 | "version": "1.4.2", 1027 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", 1028 | "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", 1029 | "dependencies": { 1030 | "assert-plus": "1.0.0", 1031 | "extsprintf": "1.3.0", 1032 | "json-schema": "0.4.0", 1033 | "verror": "1.10.0" 1034 | }, 1035 | "engines": { 1036 | "node": ">=0.6.0" 1037 | } 1038 | }, 1039 | "node_modules/lodash": { 1040 | "version": "4.17.21", 1041 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1042 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 1043 | }, 1044 | "node_modules/media-typer": { 1045 | "version": "0.3.0", 1046 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1047 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 1048 | "engines": { 1049 | "node": ">= 0.6" 1050 | } 1051 | }, 1052 | "node_modules/merge-descriptors": { 1053 | "version": "1.0.1", 1054 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1055 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" 1056 | }, 1057 | "node_modules/methods": { 1058 | "version": "1.1.2", 1059 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1060 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 1061 | "engines": { 1062 | "node": ">= 0.6" 1063 | } 1064 | }, 1065 | "node_modules/mime": { 1066 | "version": "1.6.0", 1067 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1068 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 1069 | "bin": { 1070 | "mime": "cli.js" 1071 | }, 1072 | "engines": { 1073 | "node": ">=4" 1074 | } 1075 | }, 1076 | "node_modules/mime-db": { 1077 | "version": "1.52.0", 1078 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1079 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1080 | "engines": { 1081 | "node": ">= 0.6" 1082 | } 1083 | }, 1084 | "node_modules/mime-types": { 1085 | "version": "2.1.35", 1086 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1087 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1088 | "dependencies": { 1089 | "mime-db": "1.52.0" 1090 | }, 1091 | "engines": { 1092 | "node": ">= 0.6" 1093 | } 1094 | }, 1095 | "node_modules/ms": { 1096 | "version": "2.0.0", 1097 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1098 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1099 | }, 1100 | "node_modules/negotiator": { 1101 | "version": "0.6.3", 1102 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 1103 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 1104 | "engines": { 1105 | "node": ">= 0.6" 1106 | } 1107 | }, 1108 | "node_modules/node-telegram-bot-api": { 1109 | "version": "0.61.0", 1110 | "resolved": "https://registry.npmjs.org/node-telegram-bot-api/-/node-telegram-bot-api-0.61.0.tgz", 1111 | "integrity": "sha512-BZXd8Bh2C5+uBEQuuI3FD7TFJF3alV+6oFQt8CNLx3ldX/hsd+NYyllTX+Y+5X0tG+xtcRQQjbfLgz/4sRvmBQ==", 1112 | "dependencies": { 1113 | "array.prototype.findindex": "^2.0.2", 1114 | "bl": "^1.2.3", 1115 | "debug": "^3.2.7", 1116 | "eventemitter3": "^3.0.0", 1117 | "file-type": "^3.9.0", 1118 | "mime": "^1.6.0", 1119 | "pump": "^2.0.0", 1120 | "request": "^2.83.0", 1121 | "request-promise": "^4.2.2" 1122 | }, 1123 | "engines": { 1124 | "node": ">=0.12" 1125 | } 1126 | }, 1127 | "node_modules/node-telegram-bot-api/node_modules/debug": { 1128 | "version": "3.2.7", 1129 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1130 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1131 | "dependencies": { 1132 | "ms": "^2.1.1" 1133 | } 1134 | }, 1135 | "node_modules/node-telegram-bot-api/node_modules/ms": { 1136 | "version": "2.1.3", 1137 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1138 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1139 | }, 1140 | "node_modules/oauth-sign": { 1141 | "version": "0.9.0", 1142 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 1143 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 1144 | "engines": { 1145 | "node": "*" 1146 | } 1147 | }, 1148 | "node_modules/object-inspect": { 1149 | "version": "1.12.3", 1150 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 1151 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 1152 | "funding": { 1153 | "url": "https://github.com/sponsors/ljharb" 1154 | } 1155 | }, 1156 | "node_modules/object-keys": { 1157 | "version": "1.1.1", 1158 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1159 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 1160 | "engines": { 1161 | "node": ">= 0.4" 1162 | } 1163 | }, 1164 | "node_modules/object.assign": { 1165 | "version": "4.1.4", 1166 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 1167 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 1168 | "dependencies": { 1169 | "call-bind": "^1.0.2", 1170 | "define-properties": "^1.1.4", 1171 | "has-symbols": "^1.0.3", 1172 | "object-keys": "^1.1.1" 1173 | }, 1174 | "engines": { 1175 | "node": ">= 0.4" 1176 | }, 1177 | "funding": { 1178 | "url": "https://github.com/sponsors/ljharb" 1179 | } 1180 | }, 1181 | "node_modules/on-finished": { 1182 | "version": "2.4.1", 1183 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1184 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1185 | "dependencies": { 1186 | "ee-first": "1.1.1" 1187 | }, 1188 | "engines": { 1189 | "node": ">= 0.8" 1190 | } 1191 | }, 1192 | "node_modules/once": { 1193 | "version": "1.4.0", 1194 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1195 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1196 | "dependencies": { 1197 | "wrappy": "1" 1198 | } 1199 | }, 1200 | "node_modules/openai": { 1201 | "version": "3.2.1", 1202 | "resolved": "https://registry.npmjs.org/openai/-/openai-3.2.1.tgz", 1203 | "integrity": "sha512-762C9BNlJPbjjlWZi4WYK9iM2tAVAv0uUp1UmI34vb0CN5T2mjB/qM6RYBmNKMh/dN9fC+bxqPwWJZUTWW052A==", 1204 | "dependencies": { 1205 | "axios": "^0.26.0", 1206 | "form-data": "^4.0.0" 1207 | } 1208 | }, 1209 | "node_modules/parseurl": { 1210 | "version": "1.3.3", 1211 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1212 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 1213 | "engines": { 1214 | "node": ">= 0.8" 1215 | } 1216 | }, 1217 | "node_modules/path-to-regexp": { 1218 | "version": "0.1.7", 1219 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1220 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" 1221 | }, 1222 | "node_modules/performance-now": { 1223 | "version": "2.1.0", 1224 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 1225 | "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" 1226 | }, 1227 | "node_modules/process-nextick-args": { 1228 | "version": "2.0.1", 1229 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 1230 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 1231 | }, 1232 | "node_modules/proxy-addr": { 1233 | "version": "2.0.7", 1234 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1235 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1236 | "dependencies": { 1237 | "forwarded": "0.2.0", 1238 | "ipaddr.js": "1.9.1" 1239 | }, 1240 | "engines": { 1241 | "node": ">= 0.10" 1242 | } 1243 | }, 1244 | "node_modules/psl": { 1245 | "version": "1.9.0", 1246 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", 1247 | "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" 1248 | }, 1249 | "node_modules/pump": { 1250 | "version": "2.0.1", 1251 | "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", 1252 | "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", 1253 | "dependencies": { 1254 | "end-of-stream": "^1.1.0", 1255 | "once": "^1.3.1" 1256 | } 1257 | }, 1258 | "node_modules/punycode": { 1259 | "version": "2.3.0", 1260 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 1261 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 1262 | "engines": { 1263 | "node": ">=6" 1264 | } 1265 | }, 1266 | "node_modules/qs": { 1267 | "version": "6.11.0", 1268 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1269 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1270 | "dependencies": { 1271 | "side-channel": "^1.0.4" 1272 | }, 1273 | "engines": { 1274 | "node": ">=0.6" 1275 | }, 1276 | "funding": { 1277 | "url": "https://github.com/sponsors/ljharb" 1278 | } 1279 | }, 1280 | "node_modules/range-parser": { 1281 | "version": "1.2.1", 1282 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1283 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1284 | "engines": { 1285 | "node": ">= 0.6" 1286 | } 1287 | }, 1288 | "node_modules/raw-body": { 1289 | "version": "2.5.1", 1290 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 1291 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 1292 | "dependencies": { 1293 | "bytes": "3.1.2", 1294 | "http-errors": "2.0.0", 1295 | "iconv-lite": "0.4.24", 1296 | "unpipe": "1.0.0" 1297 | }, 1298 | "engines": { 1299 | "node": ">= 0.8" 1300 | } 1301 | }, 1302 | "node_modules/readable-stream": { 1303 | "version": "2.3.8", 1304 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 1305 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 1306 | "dependencies": { 1307 | "core-util-is": "~1.0.0", 1308 | "inherits": "~2.0.3", 1309 | "isarray": "~1.0.0", 1310 | "process-nextick-args": "~2.0.0", 1311 | "safe-buffer": "~5.1.1", 1312 | "string_decoder": "~1.1.1", 1313 | "util-deprecate": "~1.0.1" 1314 | } 1315 | }, 1316 | "node_modules/readable-stream/node_modules/safe-buffer": { 1317 | "version": "5.1.2", 1318 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 1319 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 1320 | }, 1321 | "node_modules/regexp.prototype.flags": { 1322 | "version": "1.4.3", 1323 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", 1324 | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", 1325 | "dependencies": { 1326 | "call-bind": "^1.0.2", 1327 | "define-properties": "^1.1.3", 1328 | "functions-have-names": "^1.2.2" 1329 | }, 1330 | "engines": { 1331 | "node": ">= 0.4" 1332 | }, 1333 | "funding": { 1334 | "url": "https://github.com/sponsors/ljharb" 1335 | } 1336 | }, 1337 | "node_modules/request": { 1338 | "version": "2.88.2", 1339 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 1340 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 1341 | "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", 1342 | "dependencies": { 1343 | "aws-sign2": "~0.7.0", 1344 | "aws4": "^1.8.0", 1345 | "caseless": "~0.12.0", 1346 | "combined-stream": "~1.0.6", 1347 | "extend": "~3.0.2", 1348 | "forever-agent": "~0.6.1", 1349 | "form-data": "~2.3.2", 1350 | "har-validator": "~5.1.3", 1351 | "http-signature": "~1.2.0", 1352 | "is-typedarray": "~1.0.0", 1353 | "isstream": "~0.1.2", 1354 | "json-stringify-safe": "~5.0.1", 1355 | "mime-types": "~2.1.19", 1356 | "oauth-sign": "~0.9.0", 1357 | "performance-now": "^2.1.0", 1358 | "qs": "~6.5.2", 1359 | "safe-buffer": "^5.1.2", 1360 | "tough-cookie": "~2.5.0", 1361 | "tunnel-agent": "^0.6.0", 1362 | "uuid": "^3.3.2" 1363 | }, 1364 | "engines": { 1365 | "node": ">= 6" 1366 | } 1367 | }, 1368 | "node_modules/request-promise": { 1369 | "version": "4.2.6", 1370 | "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", 1371 | "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", 1372 | "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", 1373 | "dependencies": { 1374 | "bluebird": "^3.5.0", 1375 | "request-promise-core": "1.1.4", 1376 | "stealthy-require": "^1.1.1", 1377 | "tough-cookie": "^2.3.3" 1378 | }, 1379 | "engines": { 1380 | "node": ">=0.10.0" 1381 | }, 1382 | "peerDependencies": { 1383 | "request": "^2.34" 1384 | } 1385 | }, 1386 | "node_modules/request-promise-core": { 1387 | "version": "1.1.4", 1388 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", 1389 | "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", 1390 | "dependencies": { 1391 | "lodash": "^4.17.19" 1392 | }, 1393 | "engines": { 1394 | "node": ">=0.10.0" 1395 | }, 1396 | "peerDependencies": { 1397 | "request": "^2.34" 1398 | } 1399 | }, 1400 | "node_modules/request/node_modules/form-data": { 1401 | "version": "2.3.3", 1402 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 1403 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 1404 | "dependencies": { 1405 | "asynckit": "^0.4.0", 1406 | "combined-stream": "^1.0.6", 1407 | "mime-types": "^2.1.12" 1408 | }, 1409 | "engines": { 1410 | "node": ">= 0.12" 1411 | } 1412 | }, 1413 | "node_modules/request/node_modules/qs": { 1414 | "version": "6.5.3", 1415 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", 1416 | "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", 1417 | "engines": { 1418 | "node": ">=0.6" 1419 | } 1420 | }, 1421 | "node_modules/safe-buffer": { 1422 | "version": "5.2.1", 1423 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1424 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1425 | "funding": [ 1426 | { 1427 | "type": "github", 1428 | "url": "https://github.com/sponsors/feross" 1429 | }, 1430 | { 1431 | "type": "patreon", 1432 | "url": "https://www.patreon.com/feross" 1433 | }, 1434 | { 1435 | "type": "consulting", 1436 | "url": "https://feross.org/support" 1437 | } 1438 | ] 1439 | }, 1440 | "node_modules/safe-regex-test": { 1441 | "version": "1.0.0", 1442 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 1443 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 1444 | "dependencies": { 1445 | "call-bind": "^1.0.2", 1446 | "get-intrinsic": "^1.1.3", 1447 | "is-regex": "^1.1.4" 1448 | }, 1449 | "funding": { 1450 | "url": "https://github.com/sponsors/ljharb" 1451 | } 1452 | }, 1453 | "node_modules/safer-buffer": { 1454 | "version": "2.1.2", 1455 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1456 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 1457 | }, 1458 | "node_modules/send": { 1459 | "version": "0.18.0", 1460 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1461 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1462 | "dependencies": { 1463 | "debug": "2.6.9", 1464 | "depd": "2.0.0", 1465 | "destroy": "1.2.0", 1466 | "encodeurl": "~1.0.2", 1467 | "escape-html": "~1.0.3", 1468 | "etag": "~1.8.1", 1469 | "fresh": "0.5.2", 1470 | "http-errors": "2.0.0", 1471 | "mime": "1.6.0", 1472 | "ms": "2.1.3", 1473 | "on-finished": "2.4.1", 1474 | "range-parser": "~1.2.1", 1475 | "statuses": "2.0.1" 1476 | }, 1477 | "engines": { 1478 | "node": ">= 0.8.0" 1479 | } 1480 | }, 1481 | "node_modules/send/node_modules/ms": { 1482 | "version": "2.1.3", 1483 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1484 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1485 | }, 1486 | "node_modules/serve-static": { 1487 | "version": "1.15.0", 1488 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1489 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1490 | "dependencies": { 1491 | "encodeurl": "~1.0.2", 1492 | "escape-html": "~1.0.3", 1493 | "parseurl": "~1.3.3", 1494 | "send": "0.18.0" 1495 | }, 1496 | "engines": { 1497 | "node": ">= 0.8.0" 1498 | } 1499 | }, 1500 | "node_modules/setprototypeof": { 1501 | "version": "1.2.0", 1502 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1503 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 1504 | }, 1505 | "node_modules/side-channel": { 1506 | "version": "1.0.4", 1507 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 1508 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 1509 | "dependencies": { 1510 | "call-bind": "^1.0.0", 1511 | "get-intrinsic": "^1.0.2", 1512 | "object-inspect": "^1.9.0" 1513 | }, 1514 | "funding": { 1515 | "url": "https://github.com/sponsors/ljharb" 1516 | } 1517 | }, 1518 | "node_modules/sshpk": { 1519 | "version": "1.17.0", 1520 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", 1521 | "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", 1522 | "dependencies": { 1523 | "asn1": "~0.2.3", 1524 | "assert-plus": "^1.0.0", 1525 | "bcrypt-pbkdf": "^1.0.0", 1526 | "dashdash": "^1.12.0", 1527 | "ecc-jsbn": "~0.1.1", 1528 | "getpass": "^0.1.1", 1529 | "jsbn": "~0.1.0", 1530 | "safer-buffer": "^2.0.2", 1531 | "tweetnacl": "~0.14.0" 1532 | }, 1533 | "bin": { 1534 | "sshpk-conv": "bin/sshpk-conv", 1535 | "sshpk-sign": "bin/sshpk-sign", 1536 | "sshpk-verify": "bin/sshpk-verify" 1537 | }, 1538 | "engines": { 1539 | "node": ">=0.10.0" 1540 | } 1541 | }, 1542 | "node_modules/statuses": { 1543 | "version": "2.0.1", 1544 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1545 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1546 | "engines": { 1547 | "node": ">= 0.8" 1548 | } 1549 | }, 1550 | "node_modules/stealthy-require": { 1551 | "version": "1.1.1", 1552 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", 1553 | "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", 1554 | "engines": { 1555 | "node": ">=0.10.0" 1556 | } 1557 | }, 1558 | "node_modules/string_decoder": { 1559 | "version": "1.1.1", 1560 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 1561 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 1562 | "dependencies": { 1563 | "safe-buffer": "~5.1.0" 1564 | } 1565 | }, 1566 | "node_modules/string_decoder/node_modules/safe-buffer": { 1567 | "version": "5.1.2", 1568 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 1569 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 1570 | }, 1571 | "node_modules/string.prototype.trimend": { 1572 | "version": "1.0.6", 1573 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 1574 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 1575 | "dependencies": { 1576 | "call-bind": "^1.0.2", 1577 | "define-properties": "^1.1.4", 1578 | "es-abstract": "^1.20.4" 1579 | }, 1580 | "funding": { 1581 | "url": "https://github.com/sponsors/ljharb" 1582 | } 1583 | }, 1584 | "node_modules/string.prototype.trimstart": { 1585 | "version": "1.0.6", 1586 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 1587 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 1588 | "dependencies": { 1589 | "call-bind": "^1.0.2", 1590 | "define-properties": "^1.1.4", 1591 | "es-abstract": "^1.20.4" 1592 | }, 1593 | "funding": { 1594 | "url": "https://github.com/sponsors/ljharb" 1595 | } 1596 | }, 1597 | "node_modules/toidentifier": { 1598 | "version": "1.0.1", 1599 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1600 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 1601 | "engines": { 1602 | "node": ">=0.6" 1603 | } 1604 | }, 1605 | "node_modules/tough-cookie": { 1606 | "version": "2.5.0", 1607 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 1608 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 1609 | "dependencies": { 1610 | "psl": "^1.1.28", 1611 | "punycode": "^2.1.1" 1612 | }, 1613 | "engines": { 1614 | "node": ">=0.8" 1615 | } 1616 | }, 1617 | "node_modules/tunnel-agent": { 1618 | "version": "0.6.0", 1619 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 1620 | "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", 1621 | "dependencies": { 1622 | "safe-buffer": "^5.0.1" 1623 | }, 1624 | "engines": { 1625 | "node": "*" 1626 | } 1627 | }, 1628 | "node_modules/tweetnacl": { 1629 | "version": "0.14.5", 1630 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 1631 | "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" 1632 | }, 1633 | "node_modules/type-is": { 1634 | "version": "1.6.18", 1635 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1636 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1637 | "dependencies": { 1638 | "media-typer": "0.3.0", 1639 | "mime-types": "~2.1.24" 1640 | }, 1641 | "engines": { 1642 | "node": ">= 0.6" 1643 | } 1644 | }, 1645 | "node_modules/typed-array-length": { 1646 | "version": "1.0.4", 1647 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 1648 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 1649 | "dependencies": { 1650 | "call-bind": "^1.0.2", 1651 | "for-each": "^0.3.3", 1652 | "is-typed-array": "^1.1.9" 1653 | }, 1654 | "funding": { 1655 | "url": "https://github.com/sponsors/ljharb" 1656 | } 1657 | }, 1658 | "node_modules/unbox-primitive": { 1659 | "version": "1.0.2", 1660 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 1661 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 1662 | "dependencies": { 1663 | "call-bind": "^1.0.2", 1664 | "has-bigints": "^1.0.2", 1665 | "has-symbols": "^1.0.3", 1666 | "which-boxed-primitive": "^1.0.2" 1667 | }, 1668 | "funding": { 1669 | "url": "https://github.com/sponsors/ljharb" 1670 | } 1671 | }, 1672 | "node_modules/unpipe": { 1673 | "version": "1.0.0", 1674 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1675 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 1676 | "engines": { 1677 | "node": ">= 0.8" 1678 | } 1679 | }, 1680 | "node_modules/uri-js": { 1681 | "version": "4.4.1", 1682 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1683 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1684 | "dependencies": { 1685 | "punycode": "^2.1.0" 1686 | } 1687 | }, 1688 | "node_modules/util-deprecate": { 1689 | "version": "1.0.2", 1690 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1691 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 1692 | }, 1693 | "node_modules/utils-merge": { 1694 | "version": "1.0.1", 1695 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1696 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 1697 | "engines": { 1698 | "node": ">= 0.4.0" 1699 | } 1700 | }, 1701 | "node_modules/uuid": { 1702 | "version": "3.4.0", 1703 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 1704 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 1705 | "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.", 1706 | "bin": { 1707 | "uuid": "bin/uuid" 1708 | } 1709 | }, 1710 | "node_modules/vary": { 1711 | "version": "1.1.2", 1712 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1713 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1714 | "engines": { 1715 | "node": ">= 0.8" 1716 | } 1717 | }, 1718 | "node_modules/verror": { 1719 | "version": "1.10.0", 1720 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 1721 | "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", 1722 | "engines": [ 1723 | "node >=0.6.0" 1724 | ], 1725 | "dependencies": { 1726 | "assert-plus": "^1.0.0", 1727 | "core-util-is": "1.0.2", 1728 | "extsprintf": "^1.2.0" 1729 | } 1730 | }, 1731 | "node_modules/verror/node_modules/core-util-is": { 1732 | "version": "1.0.2", 1733 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 1734 | "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" 1735 | }, 1736 | "node_modules/which-boxed-primitive": { 1737 | "version": "1.0.2", 1738 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 1739 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 1740 | "dependencies": { 1741 | "is-bigint": "^1.0.1", 1742 | "is-boolean-object": "^1.1.0", 1743 | "is-number-object": "^1.0.4", 1744 | "is-string": "^1.0.5", 1745 | "is-symbol": "^1.0.3" 1746 | }, 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/ljharb" 1749 | } 1750 | }, 1751 | "node_modules/which-typed-array": { 1752 | "version": "1.1.9", 1753 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 1754 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 1755 | "dependencies": { 1756 | "available-typed-arrays": "^1.0.5", 1757 | "call-bind": "^1.0.2", 1758 | "for-each": "^0.3.3", 1759 | "gopd": "^1.0.1", 1760 | "has-tostringtag": "^1.0.0", 1761 | "is-typed-array": "^1.1.10" 1762 | }, 1763 | "engines": { 1764 | "node": ">= 0.4" 1765 | }, 1766 | "funding": { 1767 | "url": "https://github.com/sponsors/ljharb" 1768 | } 1769 | }, 1770 | "node_modules/wrappy": { 1771 | "version": "1.0.2", 1772 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1773 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 1774 | } 1775 | } 1776 | } 1777 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coding-problem-generator", 3 | "version": "0.1.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "express": "^4.18.2", 13 | "node-telegram-bot-api": "^0.61.0", 14 | "openai": "^3.2.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /statistic.json: -------------------------------------------------------------------------------- 1 | { 2 | "total_generate": 0, 3 | "users": [ 4 | 5 | ], 6 | "execute_commands": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /template/generate.txt: -------------------------------------------------------------------------------- 1 | Now you need to similar Leetcode for generate coding problem. 2 | Here the command structure can be: "/difficult", "/difficult_tag", "/difficult#language", "/difficult_tag#language" . 3 | 1. Only the diffcult is required, example: "/easy", "/medium", "/hard", "/newbie", "/advance", or any descriptive gerund word. 4 | 1.a. If it is "/random", just random the difficult. 5 | 2. Tag can be empty, one or multiple with "-", example: "/easy", "/easy_array", "/easy_array-string", etc. 6 | 2.a. If command not provide just random the tag value refer from Leetcode tags and show the value what you random in the generate content. 7 | 3. Language can be empty. If not empty it can specify human language code refer "ISO 639-1" or that country language and generate content with that language. 8 | After generate the coding problem, only need 2 examples for input, output and a few constraints enough. 9 | 10 | Below using "/easy_array" command to generate sample: 11 | 【Difficult】 Easy 12 | 【Tag】 Array 13 | 14 | 【Description】 15 | 16 | 17 | 【Example 1】 18 | Input: 19 | Output: 20 | 【Example 2】 21 | Input: 22 | Output: 23 | 24 | 【Constraints】 25 | -------------------------------------------------------------------------------- /template/solution.txt: -------------------------------------------------------------------------------- 1 | use ${programming_language} programing language to sovle this coding problem. 2 | you output the code enough. -------------------------------------------------------------------------------- /template/tips.txt: -------------------------------------------------------------------------------- 1 | 1. generate the tips of above coding problem and how to solve it step by step. 2 | 2. use ${humen_language} in "ISO 639-1" or ${humen_language} country language to direct generate your tips, 3 | not need to restate the coding problem, such like description, example and constraints. --------------------------------------------------------------------------------