├── .env.example ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── api └── index.js ├── package-lock.json ├── package.json └── src ├── Card.js ├── allowlistGames.js └── assets ├── badge.ai ├── badgebanner.png ├── discord-card.svg ├── discord-card1.png ├── discord-card2.png ├── example-game.png ├── example-nogame.png ├── example-richpresence.png └── example-spotify.png /.env.example: -------------------------------------------------------------------------------- 1 | # the token for your discord's bot 2 | DISCORD_BOT_TOKEN="" 3 | # the id for the guild where users' presence will be fetched 4 | DISCORD_GUILD_ID="" -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | node: true, 4 | }, 5 | extends: "eslint:recommended", 6 | parserOptions: { 7 | ecmaVersion: 12, 8 | }, 9 | rules: { 10 | "linebreak-style": ["error", "windows"], 11 | quotes: ["error", "double"], 12 | semi: ["error", "always"], 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .env 4 | .vercel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Repo Banner](./src/assets/badgebanner.png) 2 | 3 |

Discord README Badge

4 | 5 | Working in an IDE with Rich Presence on? Show off what you're working on with a README badge! Comes as a svg you can add anywhere you'd like. Inspired by [kittinan/spotify-github-profile](https://github.com/kittinan/spotify-github-profile) and [anuraghazra/github-readme-stats](https://github.com/anuraghazra/github-readme-stats). Built by leveraging Vercel's serverless functions. 6 | 7 | ## Getting started 8 | 9 | First off, you will need your Discord user ID. If you're unsure how to get your Discord user ID, follow [this guide](https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-). 10 | 11 | In order to grab your Discord status and Rich Presence data, you will have to join [this discord server](https://discord.gg/MqSew5KzYp). For privacy's sake, there is no members list, you'll temporarily join a voice channel (where invites can be created). You can leave it when you join the Discord server. 12 | 13 | Once you've joined, you can add a badge to your profile using this snippet: 14 | 15 | ``` 16 | ![My Discord](https://discord-readme-badge.vercel.app/api?id=) 17 | ``` 18 | 19 | It should look something like this: 20 | 21 |

Card with Rich Presence

22 | 23 | ## Card states 24 | 25 | The card will only display certain games. Since this is meant to show off what you're working on, they are IDEs and creative programs. The full list of shown games can be found at [allowlistGames.js](./src/allowlistGames.js). If there are missing ones you would like to add, create a pull request. 26 | 27 | > **Note** 28 | > If you're adding something allowListGames.js, please write the program name in lowercase. 29 | 30 | If the game you're playing does not have rich presence, it will look something like this: 31 | 32 |

Card without Rich Presence

33 | 34 | If you're not playing anything, it will just show your status: 35 | 36 |

Card Default

37 | 38 | If you're listening to some tunes on Spotify, it will show what you're listening to: 39 | 40 |

Card with Spotify

41 | 42 | ## Project Setup 43 | 44 | **This project depends on Vercel's serverless functions.** First install the Vercel CLI by doing `npm i -g vercel`. 45 | 46 | If you'd like to run this project locally, you will first need a Discord bot account. You can create one by following [this guide](https://discordpy.readthedocs.io/en/stable/discord.html). 47 | 48 | **Very important!** In Bots > Privileged Gateway Intents, make sure "Presence Intent" and "Server Members Intent" is enabled. The bot won't be able to get presence data without these enabled. Copy the bot token as you'll need it later. 49 | 50 | This project also requires a Discord server where the bot will be. Invite the bot you made to a Discord server and copy that server's ID. Make sure the bot has permissions to see all members. 51 | 52 | Once you have a bot account and a server with the bot in it, clone this repo and rename `.env.example` to `.env`, filling out the required values. Now open a command prompt and do the following command in the project directory: 53 | 54 | ``` 55 | vercel dev 56 | ``` 57 | 58 | On first start Vercel may ask you to link this project. Set it up and you should be greeted with: 59 | 60 | ``` 61 | Vercel CLI 62 | > Ready! Available at http://localhost:3000 63 | ``` 64 | 65 | Go to `http://localhost:3000/api?id=` and you should see this project working locally on your machine. 66 | -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- 1 | require("dotenv").config(); 2 | const Card = require("../src/Card"); 3 | const sharp = require("sharp"); 4 | const { Client, GatewayIntentBits, DiscordAPIError } = require("discord.js"); 5 | 6 | const allowlistGames = require("../src/allowlistGames"); 7 | 8 | const truncate = (input) => 9 | input.length > 32 ? `${input.substring(0, 32)}...` : input; 10 | 11 | const encodeHTML = (input) => { 12 | return input 13 | .replace(/&/g, "&") 14 | .replace(//g, ">") 16 | .replace(/"/g, """) 17 | .replace(/'/g, "'"); 18 | }; 19 | 20 | const processText = (input) => { 21 | return encodeHTML(truncate(input)); 22 | }; 23 | 24 | const getImageBufferFromUrl = async (imageUrl) => { 25 | const response = await fetch(imageUrl); 26 | 27 | if (!response.ok) { 28 | throw new Error(`unexpected response ${response.statusText}`); 29 | } 30 | 31 | // https://stackoverflow.com/a/76596000 32 | const arrayBuffer = await response.arrayBuffer(); 33 | return Buffer.from(arrayBuffer); 34 | }; 35 | 36 | const resizedBufferFromImageBuffer = async (imageBuffer) => { 37 | // https://github.com/lovell/sharp/issues/1337#issuecomment-412880172 38 | return await sharp(imageBuffer).resize(128, 128).png().toBuffer(); 39 | }; 40 | 41 | const getBase64FromUrl = async (imageUrl) => { 42 | const imageBuffer = await getImageBufferFromUrl(imageUrl); 43 | const sharpBuffer = await resizedBufferFromImageBuffer(imageBuffer); 44 | return sharpBuffer.toString("base64"); 45 | }; 46 | 47 | /** 48 | * @typedef {Object} Presence 49 | * @property {string} username 50 | * @property {string} pfpImage 51 | * @property {string} status 52 | * @property {string} gameType 53 | * @property {string} game 54 | * @property {string} details 55 | * @property {string} detailsImage 56 | * @property {string} state 57 | * @property {number} height 58 | * 59 | * @param {import("discord.js").GuildMember} member 60 | */ 61 | async function parsePresence(member) { 62 | const username = processText(member.user.username); 63 | 64 | let pfpImage = false; 65 | try { 66 | const pfpImageUrl = member.displayAvatarURL({ 67 | format: "png", 68 | dynamic: false, 69 | size: 128, 70 | }); 71 | 72 | const pfpImageBase64 = await getBase64FromUrl(pfpImageUrl); 73 | pfpImage = `data:image/png;base64,${pfpImageBase64}`; 74 | } catch (error) { 75 | if (error?.code !== 404 && error?.code !== "ETIMEDOUT") { 76 | console.error(error); 77 | } 78 | } 79 | 80 | // console.log(member.presence); 81 | 82 | if (!member.presence) { 83 | return { 84 | username, 85 | pfpImage, 86 | status: "offline", 87 | gameType: "Offline", 88 | game: "", 89 | details: "", 90 | detailsImage: false, 91 | state: "", 92 | height: 97, 93 | }; 94 | } 95 | 96 | const statuses = member.presence.clientStatus; 97 | if (!statuses) { 98 | return { 99 | username, 100 | pfpImage, 101 | status: "offline", 102 | gameType: "Offline", 103 | game: "", 104 | details: "", 105 | detailsImage: false, 106 | state: "", 107 | height: 97, 108 | }; 109 | } 110 | const status = statuses.desktop || statuses.mobile || statuses.web; 111 | 112 | const playingRichGame = member.presence.activities 113 | .reverse() 114 | .find( 115 | (e) => 116 | allowlistGames.includes(e.name.toLowerCase()) && (e.details || e.state), 117 | ); 118 | const playingGame = member.presence.activities 119 | .reverse() 120 | .find( 121 | (e) => 122 | allowlistGames.includes(e.name.toLowerCase()) && !e.details && !e.state, 123 | ); 124 | const spotifyGame = member.presence.activities.find( 125 | (e) => e.type === "LISTENING" && e.name === "Spotify", 126 | ); 127 | 128 | const gameObject = playingRichGame || playingGame || spotifyGame; 129 | 130 | if (!gameObject) { 131 | return { 132 | username, 133 | pfpImage, 134 | status, 135 | gameType: "", 136 | game: "", 137 | details: "", 138 | detailsImage: false, 139 | state: "", 140 | height: 97, 141 | }; 142 | } 143 | 144 | // console.log(gameObject); 145 | 146 | const game = processText(gameObject.name); 147 | let gameType = "Playing"; 148 | 149 | if (game === "Spotify") gameType = "Listening to"; 150 | 151 | if (!gameObject.details && !gameObject.state) { 152 | return { 153 | username, 154 | pfpImage, 155 | status, 156 | gameType, 157 | game, 158 | details: "", 159 | detailsImage: false, 160 | state: "", 161 | height: 97, 162 | }; 163 | } 164 | 165 | const details = gameObject.details ? processText(gameObject.details) : ""; 166 | 167 | let detailsImageUrl = false; 168 | let detailsImage = false; 169 | if (gameObject.assets?.largeImage) { 170 | // "mp:" prefixed assets don't use keys and will use different image url formatting 171 | // as according to https://discord.com/developers/docs/topics/gateway-events#activity-object-activity-asset-image 172 | if (gameObject.assets.largeImage.startsWith("mp:")) { 173 | detailsImageUrl = `https://media.discordapp.net/${gameObject.assets.largeImage.substring( 174 | 3, 175 | )}`; 176 | } else { 177 | detailsImageUrl = `https://cdn.discordapp.com/app-assets/${gameObject.applicationId}/${gameObject.assets.largeImage}.png`; 178 | 179 | if (game === "Spotify") 180 | detailsImageUrl = `https://i.scdn.co/image/${gameObject.assets.largeImage.replace( 181 | "spotify:", 182 | "", 183 | )}`; 184 | } 185 | 186 | try { 187 | const detailsImageBase64 = await getBase64FromUrl(detailsImageUrl); 188 | 189 | detailsImage = `data:image/png;base64,${detailsImageBase64}`; 190 | } catch (error) { 191 | if (error?.code !== 404 && error?.code !== "ETIMEDOUT") { 192 | console.error(error); 193 | } 194 | } 195 | } 196 | 197 | const state = gameObject.state ? processText(gameObject.state) : ""; 198 | 199 | return { 200 | username, 201 | pfpImage, 202 | status, 203 | game, 204 | gameType, 205 | details, 206 | detailsImage, 207 | state, 208 | height: 187, 209 | }; 210 | } 211 | 212 | module.exports = async (req, res) => { 213 | res.setHeader("Content-Type", "image/svg+xml"); 214 | res.setHeader("Cache-Control", "public, max-age=30"); 215 | 216 | const { id } = req.query; 217 | 218 | const client = new Client({ 219 | intents: [ 220 | GatewayIntentBits.Guilds, 221 | GatewayIntentBits.GuildPresences, 222 | GatewayIntentBits.GuildMembers, 223 | ], 224 | }); 225 | 226 | await client.login(process.env.DISCORD_BOT_TOKEN); 227 | 228 | const guild = await client.guilds.fetch(process.env.DISCORD_GUILD_ID); 229 | 230 | let card; 231 | 232 | try { 233 | const member = await guild.members.fetch({ 234 | user: id, 235 | cache: false, 236 | force: true, 237 | }); 238 | 239 | // console.log("GOT MEMBER", member); 240 | // console.log("MEMBER PRESENCE", member.presence); 241 | 242 | const cardContent = await parsePresence(member); 243 | card = new Card(cardContent); 244 | } catch (error) { 245 | if (error?.code !== 10013) { 246 | console.error(error); 247 | } 248 | 249 | if (error instanceof DiscordAPIError) { 250 | if (error.code === 10013) { 251 | card = new Card({ 252 | username: "Error", 253 | pfpImage: 254 | "https://cdn.discordapp.com/icons/839432085856583730/59d186ba87f3d08917893a1273dce0ae.webp?size=1280", 255 | status: "dnd", 256 | game: "Zyplos/discord-readme-badge", 257 | gameType: "Check", 258 | details: "You don't seem to be in the server.", 259 | detailsImage: 260 | "https://sparkcdnwus2.azureedge.net/sparkimageassets/XPDC2RH70K22MN-08afd558-a61c-4a63-9171-d3f199738e9f", 261 | state: "Did you use the correct user ID?", 262 | height: 187, 263 | }); 264 | } else { 265 | card = new Card({ 266 | username: "Error", 267 | pfpImage: 268 | "https://cdn.discordapp.com/icons/839432085856583730/59d186ba87f3d08917893a1273dce0ae.webp?size=1280", 269 | status: "dnd", 270 | game: "Zyplos/discord-readme-badge", 271 | gameType: "Check", 272 | details: "Sorry, an error occured!", 273 | detailsImage: 274 | "https://sparkcdnwus2.azureedge.net/sparkimageassets/XPDC2RH70K22MN-08afd558-a61c-4a63-9171-d3f199738e9f", 275 | state: "Are you in the server? Correct ID?", 276 | height: 187, 277 | }); 278 | } 279 | } else { 280 | card = new Card({ 281 | username: "Error", 282 | pfpImage: 283 | "https://cdn.discordapp.com/icons/839432085856583730/59d186ba87f3d08917893a1273dce0ae.webp?size=1280", 284 | status: "dnd", 285 | game: "Zyplos/discord-readme-badge", 286 | gameType: "Report to", 287 | details: "Sorry, an unexpected error occured!", 288 | detailsImage: 289 | "https://sparkcdnwus2.azureedge.net/sparkimageassets/XPDC2RH70K22MN-08afd558-a61c-4a63-9171-d3f199738e9f", 290 | state: "Please open in an issue.", 291 | height: 187, 292 | }); 293 | } 294 | } 295 | 296 | await client.destroy(); 297 | 298 | return res.send(card.render()); 299 | }; 300 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "discord-readme-badge", 3 | "version": "1.0.5", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "discord-readme-badge", 9 | "version": "1.0.5", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "bufferutil": "^4.0.8", 13 | "discord.js": "^14.15.2", 14 | "dotenv": "^16.4.5", 15 | "sharp": "^0.33.4", 16 | "utf-8-validate": "^6.0.3", 17 | "zlib-sync": "^0.1.9" 18 | }, 19 | "devDependencies": { 20 | "eslint": "^9.2.0" 21 | }, 22 | "engines": { 23 | "node": ">=20.0.0" 24 | } 25 | }, 26 | "node_modules/@discordjs/builders": { 27 | "version": "1.8.1", 28 | "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.8.1.tgz", 29 | "integrity": "sha512-GkF+HM01FHy+NSoTaUPR8z44otfQgJ1AIsRxclYGUZDyUbdZEFyD/5QVv2Y1Flx6M+B0bQLzg2M9CJv5lGTqpA==", 30 | "dependencies": { 31 | "@discordjs/formatters": "^0.4.0", 32 | "@discordjs/util": "^1.1.0", 33 | "@sapphire/shapeshift": "^3.9.7", 34 | "discord-api-types": "0.37.83", 35 | "fast-deep-equal": "^3.1.3", 36 | "ts-mixer": "^6.0.4", 37 | "tslib": "^2.6.2" 38 | }, 39 | "engines": { 40 | "node": ">=16.11.0" 41 | }, 42 | "funding": { 43 | "url": "https://github.com/discordjs/discord.js?sponsor" 44 | } 45 | }, 46 | "node_modules/@discordjs/collection": { 47 | "version": "1.5.3", 48 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz", 49 | "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==", 50 | "engines": { 51 | "node": ">=16.11.0" 52 | } 53 | }, 54 | "node_modules/@discordjs/formatters": { 55 | "version": "0.4.0", 56 | "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.4.0.tgz", 57 | "integrity": "sha512-fJ06TLC1NiruF35470q3Nr1bi95BdvKFAF+T5bNfZJ4bNdqZ3VZ+Ttg6SThqTxm6qumSG3choxLBHMC69WXNXQ==", 58 | "dependencies": { 59 | "discord-api-types": "0.37.83" 60 | }, 61 | "engines": { 62 | "node": ">=16.11.0" 63 | }, 64 | "funding": { 65 | "url": "https://github.com/discordjs/discord.js?sponsor" 66 | } 67 | }, 68 | "node_modules/@discordjs/rest": { 69 | "version": "2.3.0", 70 | "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.3.0.tgz", 71 | "integrity": "sha512-C1kAJK8aSYRv3ZwMG8cvrrW4GN0g5eMdP8AuN8ODH5DyOCbHgJspze1my3xHOAgwLJdKUbWNVyAeJ9cEdduqIg==", 72 | "dependencies": { 73 | "@discordjs/collection": "^2.1.0", 74 | "@discordjs/util": "^1.1.0", 75 | "@sapphire/async-queue": "^1.5.2", 76 | "@sapphire/snowflake": "^3.5.3", 77 | "@vladfrangu/async_event_emitter": "^2.2.4", 78 | "discord-api-types": "0.37.83", 79 | "magic-bytes.js": "^1.10.0", 80 | "tslib": "^2.6.2", 81 | "undici": "6.13.0" 82 | }, 83 | "engines": { 84 | "node": ">=16.11.0" 85 | }, 86 | "funding": { 87 | "url": "https://github.com/discordjs/discord.js?sponsor" 88 | } 89 | }, 90 | "node_modules/@discordjs/rest/node_modules/@discordjs/collection": { 91 | "version": "2.1.0", 92 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.0.tgz", 93 | "integrity": "sha512-mLcTACtXUuVgutoznkh6hS3UFqYirDYAg5Dc1m8xn6OvPjetnUlf/xjtqnnc47OwWdaoCQnHmHh9KofhD6uRqw==", 94 | "engines": { 95 | "node": ">=18" 96 | }, 97 | "funding": { 98 | "url": "https://github.com/discordjs/discord.js?sponsor" 99 | } 100 | }, 101 | "node_modules/@discordjs/util": { 102 | "version": "1.1.0", 103 | "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.1.0.tgz", 104 | "integrity": "sha512-IndcI5hzlNZ7GS96RV3Xw1R2kaDuXEp7tRIy/KlhidpN/BQ1qh1NZt3377dMLTa44xDUNKT7hnXkA/oUAzD/lg==", 105 | "engines": { 106 | "node": ">=16.11.0" 107 | }, 108 | "funding": { 109 | "url": "https://github.com/discordjs/discord.js?sponsor" 110 | } 111 | }, 112 | "node_modules/@discordjs/ws": { 113 | "version": "1.1.0", 114 | "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.1.0.tgz", 115 | "integrity": "sha512-O97DIeSvfNTn5wz5vaER6ciyUsr7nOqSEtsLoMhhIgeFkhnxLRqSr00/Fpq2/ppLgjDGLbQCDzIK7ilGoB/M7A==", 116 | "dependencies": { 117 | "@discordjs/collection": "^2.1.0", 118 | "@discordjs/rest": "^2.3.0", 119 | "@discordjs/util": "^1.1.0", 120 | "@sapphire/async-queue": "^1.5.2", 121 | "@types/ws": "^8.5.10", 122 | "@vladfrangu/async_event_emitter": "^2.2.4", 123 | "discord-api-types": "0.37.83", 124 | "tslib": "^2.6.2", 125 | "ws": "^8.16.0" 126 | }, 127 | "engines": { 128 | "node": ">=16.11.0" 129 | }, 130 | "funding": { 131 | "url": "https://github.com/discordjs/discord.js?sponsor" 132 | } 133 | }, 134 | "node_modules/@discordjs/ws/node_modules/@discordjs/collection": { 135 | "version": "2.1.0", 136 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.0.tgz", 137 | "integrity": "sha512-mLcTACtXUuVgutoznkh6hS3UFqYirDYAg5Dc1m8xn6OvPjetnUlf/xjtqnnc47OwWdaoCQnHmHh9KofhD6uRqw==", 138 | "engines": { 139 | "node": ">=18" 140 | }, 141 | "funding": { 142 | "url": "https://github.com/discordjs/discord.js?sponsor" 143 | } 144 | }, 145 | "node_modules/@emnapi/runtime": { 146 | "version": "1.2.0", 147 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz", 148 | "integrity": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==", 149 | "optional": true, 150 | "dependencies": { 151 | "tslib": "^2.4.0" 152 | } 153 | }, 154 | "node_modules/@eslint-community/eslint-utils": { 155 | "version": "4.4.0", 156 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 157 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 158 | "dev": true, 159 | "dependencies": { 160 | "eslint-visitor-keys": "^3.3.0" 161 | }, 162 | "engines": { 163 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 164 | }, 165 | "peerDependencies": { 166 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 167 | } 168 | }, 169 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 170 | "version": "3.4.3", 171 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 172 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 173 | "dev": true, 174 | "engines": { 175 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 176 | }, 177 | "funding": { 178 | "url": "https://opencollective.com/eslint" 179 | } 180 | }, 181 | "node_modules/@eslint-community/regexpp": { 182 | "version": "4.10.0", 183 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 184 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 185 | "dev": true, 186 | "engines": { 187 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 188 | } 189 | }, 190 | "node_modules/@eslint/eslintrc": { 191 | "version": "3.0.2", 192 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.0.2.tgz", 193 | "integrity": "sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==", 194 | "dev": true, 195 | "dependencies": { 196 | "ajv": "^6.12.4", 197 | "debug": "^4.3.2", 198 | "espree": "^10.0.1", 199 | "globals": "^14.0.0", 200 | "ignore": "^5.2.0", 201 | "import-fresh": "^3.2.1", 202 | "js-yaml": "^4.1.0", 203 | "minimatch": "^3.1.2", 204 | "strip-json-comments": "^3.1.1" 205 | }, 206 | "engines": { 207 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 208 | }, 209 | "funding": { 210 | "url": "https://opencollective.com/eslint" 211 | } 212 | }, 213 | "node_modules/@eslint/js": { 214 | "version": "9.2.0", 215 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.2.0.tgz", 216 | "integrity": "sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==", 217 | "dev": true, 218 | "engines": { 219 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 220 | } 221 | }, 222 | "node_modules/@humanwhocodes/config-array": { 223 | "version": "0.13.0", 224 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 225 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 226 | "dev": true, 227 | "dependencies": { 228 | "@humanwhocodes/object-schema": "^2.0.3", 229 | "debug": "^4.3.1", 230 | "minimatch": "^3.0.5" 231 | }, 232 | "engines": { 233 | "node": ">=10.10.0" 234 | } 235 | }, 236 | "node_modules/@humanwhocodes/module-importer": { 237 | "version": "1.0.1", 238 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 239 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 240 | "dev": true, 241 | "engines": { 242 | "node": ">=12.22" 243 | }, 244 | "funding": { 245 | "type": "github", 246 | "url": "https://github.com/sponsors/nzakas" 247 | } 248 | }, 249 | "node_modules/@humanwhocodes/object-schema": { 250 | "version": "2.0.3", 251 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 252 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 253 | "dev": true 254 | }, 255 | "node_modules/@humanwhocodes/retry": { 256 | "version": "0.2.4", 257 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.2.4.tgz", 258 | "integrity": "sha512-Ttl/jHpxfS3st5sxwICYfk4pOH0WrLI1SpW283GgQL7sCWU7EHIOhX4b4fkIxr3tkfzwg8+FNojtzsIEE7Ecgg==", 259 | "dev": true, 260 | "engines": { 261 | "node": ">=18.18" 262 | }, 263 | "funding": { 264 | "type": "github", 265 | "url": "https://github.com/sponsors/nzakas" 266 | } 267 | }, 268 | "node_modules/@img/sharp-darwin-arm64": { 269 | "version": "0.33.4", 270 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.4.tgz", 271 | "integrity": "sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==", 272 | "cpu": [ 273 | "arm64" 274 | ], 275 | "optional": true, 276 | "os": [ 277 | "darwin" 278 | ], 279 | "engines": { 280 | "glibc": ">=2.26", 281 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 282 | "npm": ">=9.6.5", 283 | "pnpm": ">=7.1.0", 284 | "yarn": ">=3.2.0" 285 | }, 286 | "funding": { 287 | "url": "https://opencollective.com/libvips" 288 | }, 289 | "optionalDependencies": { 290 | "@img/sharp-libvips-darwin-arm64": "1.0.2" 291 | } 292 | }, 293 | "node_modules/@img/sharp-darwin-x64": { 294 | "version": "0.33.4", 295 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.4.tgz", 296 | "integrity": "sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==", 297 | "cpu": [ 298 | "x64" 299 | ], 300 | "optional": true, 301 | "os": [ 302 | "darwin" 303 | ], 304 | "engines": { 305 | "glibc": ">=2.26", 306 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 307 | "npm": ">=9.6.5", 308 | "pnpm": ">=7.1.0", 309 | "yarn": ">=3.2.0" 310 | }, 311 | "funding": { 312 | "url": "https://opencollective.com/libvips" 313 | }, 314 | "optionalDependencies": { 315 | "@img/sharp-libvips-darwin-x64": "1.0.2" 316 | } 317 | }, 318 | "node_modules/@img/sharp-libvips-darwin-arm64": { 319 | "version": "1.0.2", 320 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.2.tgz", 321 | "integrity": "sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==", 322 | "cpu": [ 323 | "arm64" 324 | ], 325 | "optional": true, 326 | "os": [ 327 | "darwin" 328 | ], 329 | "engines": { 330 | "macos": ">=11", 331 | "npm": ">=9.6.5", 332 | "pnpm": ">=7.1.0", 333 | "yarn": ">=3.2.0" 334 | }, 335 | "funding": { 336 | "url": "https://opencollective.com/libvips" 337 | } 338 | }, 339 | "node_modules/@img/sharp-libvips-darwin-x64": { 340 | "version": "1.0.2", 341 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz", 342 | "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==", 343 | "cpu": [ 344 | "x64" 345 | ], 346 | "optional": true, 347 | "os": [ 348 | "darwin" 349 | ], 350 | "engines": { 351 | "macos": ">=10.13", 352 | "npm": ">=9.6.5", 353 | "pnpm": ">=7.1.0", 354 | "yarn": ">=3.2.0" 355 | }, 356 | "funding": { 357 | "url": "https://opencollective.com/libvips" 358 | } 359 | }, 360 | "node_modules/@img/sharp-libvips-linux-arm": { 361 | "version": "1.0.2", 362 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.2.tgz", 363 | "integrity": "sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==", 364 | "cpu": [ 365 | "arm" 366 | ], 367 | "optional": true, 368 | "os": [ 369 | "linux" 370 | ], 371 | "engines": { 372 | "glibc": ">=2.28", 373 | "npm": ">=9.6.5", 374 | "pnpm": ">=7.1.0", 375 | "yarn": ">=3.2.0" 376 | }, 377 | "funding": { 378 | "url": "https://opencollective.com/libvips" 379 | } 380 | }, 381 | "node_modules/@img/sharp-libvips-linux-arm64": { 382 | "version": "1.0.2", 383 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.2.tgz", 384 | "integrity": "sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==", 385 | "cpu": [ 386 | "arm64" 387 | ], 388 | "optional": true, 389 | "os": [ 390 | "linux" 391 | ], 392 | "engines": { 393 | "glibc": ">=2.26", 394 | "npm": ">=9.6.5", 395 | "pnpm": ">=7.1.0", 396 | "yarn": ">=3.2.0" 397 | }, 398 | "funding": { 399 | "url": "https://opencollective.com/libvips" 400 | } 401 | }, 402 | "node_modules/@img/sharp-libvips-linux-s390x": { 403 | "version": "1.0.2", 404 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.2.tgz", 405 | "integrity": "sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==", 406 | "cpu": [ 407 | "s390x" 408 | ], 409 | "optional": true, 410 | "os": [ 411 | "linux" 412 | ], 413 | "engines": { 414 | "glibc": ">=2.28", 415 | "npm": ">=9.6.5", 416 | "pnpm": ">=7.1.0", 417 | "yarn": ">=3.2.0" 418 | }, 419 | "funding": { 420 | "url": "https://opencollective.com/libvips" 421 | } 422 | }, 423 | "node_modules/@img/sharp-libvips-linux-x64": { 424 | "version": "1.0.2", 425 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.2.tgz", 426 | "integrity": "sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==", 427 | "cpu": [ 428 | "x64" 429 | ], 430 | "optional": true, 431 | "os": [ 432 | "linux" 433 | ], 434 | "engines": { 435 | "glibc": ">=2.26", 436 | "npm": ">=9.6.5", 437 | "pnpm": ">=7.1.0", 438 | "yarn": ">=3.2.0" 439 | }, 440 | "funding": { 441 | "url": "https://opencollective.com/libvips" 442 | } 443 | }, 444 | "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 445 | "version": "1.0.2", 446 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.2.tgz", 447 | "integrity": "sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==", 448 | "cpu": [ 449 | "arm64" 450 | ], 451 | "optional": true, 452 | "os": [ 453 | "linux" 454 | ], 455 | "engines": { 456 | "musl": ">=1.2.2", 457 | "npm": ">=9.6.5", 458 | "pnpm": ">=7.1.0", 459 | "yarn": ">=3.2.0" 460 | }, 461 | "funding": { 462 | "url": "https://opencollective.com/libvips" 463 | } 464 | }, 465 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { 466 | "version": "1.0.2", 467 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.2.tgz", 468 | "integrity": "sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==", 469 | "cpu": [ 470 | "x64" 471 | ], 472 | "optional": true, 473 | "os": [ 474 | "linux" 475 | ], 476 | "engines": { 477 | "musl": ">=1.2.2", 478 | "npm": ">=9.6.5", 479 | "pnpm": ">=7.1.0", 480 | "yarn": ">=3.2.0" 481 | }, 482 | "funding": { 483 | "url": "https://opencollective.com/libvips" 484 | } 485 | }, 486 | "node_modules/@img/sharp-linux-arm": { 487 | "version": "0.33.4", 488 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.4.tgz", 489 | "integrity": "sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==", 490 | "cpu": [ 491 | "arm" 492 | ], 493 | "optional": true, 494 | "os": [ 495 | "linux" 496 | ], 497 | "engines": { 498 | "glibc": ">=2.28", 499 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 500 | "npm": ">=9.6.5", 501 | "pnpm": ">=7.1.0", 502 | "yarn": ">=3.2.0" 503 | }, 504 | "funding": { 505 | "url": "https://opencollective.com/libvips" 506 | }, 507 | "optionalDependencies": { 508 | "@img/sharp-libvips-linux-arm": "1.0.2" 509 | } 510 | }, 511 | "node_modules/@img/sharp-linux-arm64": { 512 | "version": "0.33.4", 513 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.4.tgz", 514 | "integrity": "sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==", 515 | "cpu": [ 516 | "arm64" 517 | ], 518 | "optional": true, 519 | "os": [ 520 | "linux" 521 | ], 522 | "engines": { 523 | "glibc": ">=2.26", 524 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 525 | "npm": ">=9.6.5", 526 | "pnpm": ">=7.1.0", 527 | "yarn": ">=3.2.0" 528 | }, 529 | "funding": { 530 | "url": "https://opencollective.com/libvips" 531 | }, 532 | "optionalDependencies": { 533 | "@img/sharp-libvips-linux-arm64": "1.0.2" 534 | } 535 | }, 536 | "node_modules/@img/sharp-linux-s390x": { 537 | "version": "0.33.4", 538 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.4.tgz", 539 | "integrity": "sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==", 540 | "cpu": [ 541 | "s390x" 542 | ], 543 | "optional": true, 544 | "os": [ 545 | "linux" 546 | ], 547 | "engines": { 548 | "glibc": ">=2.31", 549 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 550 | "npm": ">=9.6.5", 551 | "pnpm": ">=7.1.0", 552 | "yarn": ">=3.2.0" 553 | }, 554 | "funding": { 555 | "url": "https://opencollective.com/libvips" 556 | }, 557 | "optionalDependencies": { 558 | "@img/sharp-libvips-linux-s390x": "1.0.2" 559 | } 560 | }, 561 | "node_modules/@img/sharp-linux-x64": { 562 | "version": "0.33.4", 563 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.4.tgz", 564 | "integrity": "sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==", 565 | "cpu": [ 566 | "x64" 567 | ], 568 | "optional": true, 569 | "os": [ 570 | "linux" 571 | ], 572 | "engines": { 573 | "glibc": ">=2.26", 574 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 575 | "npm": ">=9.6.5", 576 | "pnpm": ">=7.1.0", 577 | "yarn": ">=3.2.0" 578 | }, 579 | "funding": { 580 | "url": "https://opencollective.com/libvips" 581 | }, 582 | "optionalDependencies": { 583 | "@img/sharp-libvips-linux-x64": "1.0.2" 584 | } 585 | }, 586 | "node_modules/@img/sharp-linuxmusl-arm64": { 587 | "version": "0.33.4", 588 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.4.tgz", 589 | "integrity": "sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==", 590 | "cpu": [ 591 | "arm64" 592 | ], 593 | "optional": true, 594 | "os": [ 595 | "linux" 596 | ], 597 | "engines": { 598 | "musl": ">=1.2.2", 599 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 600 | "npm": ">=9.6.5", 601 | "pnpm": ">=7.1.0", 602 | "yarn": ">=3.2.0" 603 | }, 604 | "funding": { 605 | "url": "https://opencollective.com/libvips" 606 | }, 607 | "optionalDependencies": { 608 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2" 609 | } 610 | }, 611 | "node_modules/@img/sharp-linuxmusl-x64": { 612 | "version": "0.33.4", 613 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.4.tgz", 614 | "integrity": "sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==", 615 | "cpu": [ 616 | "x64" 617 | ], 618 | "optional": true, 619 | "os": [ 620 | "linux" 621 | ], 622 | "engines": { 623 | "musl": ">=1.2.2", 624 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 625 | "npm": ">=9.6.5", 626 | "pnpm": ">=7.1.0", 627 | "yarn": ">=3.2.0" 628 | }, 629 | "funding": { 630 | "url": "https://opencollective.com/libvips" 631 | }, 632 | "optionalDependencies": { 633 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2" 634 | } 635 | }, 636 | "node_modules/@img/sharp-wasm32": { 637 | "version": "0.33.4", 638 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.4.tgz", 639 | "integrity": "sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==", 640 | "cpu": [ 641 | "wasm32" 642 | ], 643 | "optional": true, 644 | "dependencies": { 645 | "@emnapi/runtime": "^1.1.1" 646 | }, 647 | "engines": { 648 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 649 | "npm": ">=9.6.5", 650 | "pnpm": ">=7.1.0", 651 | "yarn": ">=3.2.0" 652 | }, 653 | "funding": { 654 | "url": "https://opencollective.com/libvips" 655 | } 656 | }, 657 | "node_modules/@img/sharp-win32-ia32": { 658 | "version": "0.33.4", 659 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.4.tgz", 660 | "integrity": "sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==", 661 | "cpu": [ 662 | "ia32" 663 | ], 664 | "optional": true, 665 | "os": [ 666 | "win32" 667 | ], 668 | "engines": { 669 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 670 | "npm": ">=9.6.5", 671 | "pnpm": ">=7.1.0", 672 | "yarn": ">=3.2.0" 673 | }, 674 | "funding": { 675 | "url": "https://opencollective.com/libvips" 676 | } 677 | }, 678 | "node_modules/@img/sharp-win32-x64": { 679 | "version": "0.33.4", 680 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.4.tgz", 681 | "integrity": "sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==", 682 | "cpu": [ 683 | "x64" 684 | ], 685 | "optional": true, 686 | "os": [ 687 | "win32" 688 | ], 689 | "engines": { 690 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0", 691 | "npm": ">=9.6.5", 692 | "pnpm": ">=7.1.0", 693 | "yarn": ">=3.2.0" 694 | }, 695 | "funding": { 696 | "url": "https://opencollective.com/libvips" 697 | } 698 | }, 699 | "node_modules/@nodelib/fs.scandir": { 700 | "version": "2.1.5", 701 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 702 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 703 | "dev": true, 704 | "dependencies": { 705 | "@nodelib/fs.stat": "2.0.5", 706 | "run-parallel": "^1.1.9" 707 | }, 708 | "engines": { 709 | "node": ">= 8" 710 | } 711 | }, 712 | "node_modules/@nodelib/fs.stat": { 713 | "version": "2.0.5", 714 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 715 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 716 | "dev": true, 717 | "engines": { 718 | "node": ">= 8" 719 | } 720 | }, 721 | "node_modules/@nodelib/fs.walk": { 722 | "version": "1.2.8", 723 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 724 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 725 | "dev": true, 726 | "dependencies": { 727 | "@nodelib/fs.scandir": "2.1.5", 728 | "fastq": "^1.6.0" 729 | }, 730 | "engines": { 731 | "node": ">= 8" 732 | } 733 | }, 734 | "node_modules/@sapphire/async-queue": { 735 | "version": "1.5.2", 736 | "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.2.tgz", 737 | "integrity": "sha512-7X7FFAA4DngXUl95+hYbUF19bp1LGiffjJtu7ygrZrbdCSsdDDBaSjB7Akw0ZbOu6k0xpXyljnJ6/RZUvLfRdg==", 738 | "engines": { 739 | "node": ">=v14.0.0", 740 | "npm": ">=7.0.0" 741 | } 742 | }, 743 | "node_modules/@sapphire/shapeshift": { 744 | "version": "3.9.7", 745 | "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.9.7.tgz", 746 | "integrity": "sha512-4It2mxPSr4OGn4HSQWGmhFMsNFGfFVhWeRPCRwbH972Ek2pzfGRZtb0pJ4Ze6oIzcyh2jw7nUDa6qGlWofgd9g==", 747 | "dependencies": { 748 | "fast-deep-equal": "^3.1.3", 749 | "lodash": "^4.17.21" 750 | }, 751 | "engines": { 752 | "node": ">=v16" 753 | } 754 | }, 755 | "node_modules/@sapphire/snowflake": { 756 | "version": "3.5.3", 757 | "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.3.tgz", 758 | "integrity": "sha512-jjmJywLAFoWeBi1W7994zZyiNWPIiqRRNAmSERxyg93xRGzNYvGjlZ0gR6x0F4gPRi2+0O6S71kOZYyr3cxaIQ==", 759 | "engines": { 760 | "node": ">=v14.0.0", 761 | "npm": ">=7.0.0" 762 | } 763 | }, 764 | "node_modules/@types/node": { 765 | "version": "20.12.8", 766 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.8.tgz", 767 | "integrity": "sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==", 768 | "dependencies": { 769 | "undici-types": "~5.26.4" 770 | } 771 | }, 772 | "node_modules/@types/ws": { 773 | "version": "8.5.10", 774 | "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", 775 | "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", 776 | "dependencies": { 777 | "@types/node": "*" 778 | } 779 | }, 780 | "node_modules/@vladfrangu/async_event_emitter": { 781 | "version": "2.2.4", 782 | "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.2.4.tgz", 783 | "integrity": "sha512-ButUPz9E9cXMLgvAW8aLAKKJJsPu1dY1/l/E8xzLFuysowXygs6GBcyunK9rnGC4zTsnIc2mQo71rGw9U+Ykug==", 784 | "engines": { 785 | "node": ">=v14.0.0", 786 | "npm": ">=7.0.0" 787 | } 788 | }, 789 | "node_modules/acorn": { 790 | "version": "8.11.3", 791 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 792 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 793 | "dev": true, 794 | "bin": { 795 | "acorn": "bin/acorn" 796 | }, 797 | "engines": { 798 | "node": ">=0.4.0" 799 | } 800 | }, 801 | "node_modules/acorn-jsx": { 802 | "version": "5.3.2", 803 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 804 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 805 | "dev": true, 806 | "peerDependencies": { 807 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 808 | } 809 | }, 810 | "node_modules/ajv": { 811 | "version": "6.12.6", 812 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 813 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 814 | "dev": true, 815 | "dependencies": { 816 | "fast-deep-equal": "^3.1.1", 817 | "fast-json-stable-stringify": "^2.0.0", 818 | "json-schema-traverse": "^0.4.1", 819 | "uri-js": "^4.2.2" 820 | }, 821 | "funding": { 822 | "type": "github", 823 | "url": "https://github.com/sponsors/epoberezkin" 824 | } 825 | }, 826 | "node_modules/ansi-regex": { 827 | "version": "5.0.1", 828 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 829 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 830 | "dev": true, 831 | "engines": { 832 | "node": ">=8" 833 | } 834 | }, 835 | "node_modules/argparse": { 836 | "version": "2.0.1", 837 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 838 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 839 | "dev": true 840 | }, 841 | "node_modules/balanced-match": { 842 | "version": "1.0.2", 843 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 844 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 845 | "dev": true 846 | }, 847 | "node_modules/brace-expansion": { 848 | "version": "1.1.11", 849 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 850 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 851 | "dev": true, 852 | "dependencies": { 853 | "balanced-match": "^1.0.0", 854 | "concat-map": "0.0.1" 855 | } 856 | }, 857 | "node_modules/bufferutil": { 858 | "version": "4.0.8", 859 | "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz", 860 | "integrity": "sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==", 861 | "hasInstallScript": true, 862 | "dependencies": { 863 | "node-gyp-build": "^4.3.0" 864 | }, 865 | "engines": { 866 | "node": ">=6.14.2" 867 | } 868 | }, 869 | "node_modules/callsites": { 870 | "version": "3.1.0", 871 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 872 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 873 | "dev": true, 874 | "engines": { 875 | "node": ">=6" 876 | } 877 | }, 878 | "node_modules/chalk": { 879 | "version": "4.1.1", 880 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", 881 | "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", 882 | "dev": true, 883 | "dependencies": { 884 | "ansi-styles": "^4.1.0", 885 | "supports-color": "^7.1.0" 886 | }, 887 | "engines": { 888 | "node": ">=10" 889 | }, 890 | "funding": { 891 | "url": "https://github.com/chalk/chalk?sponsor=1" 892 | } 893 | }, 894 | "node_modules/chalk/node_modules/ansi-styles": { 895 | "version": "4.3.0", 896 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 897 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 898 | "dev": true, 899 | "dependencies": { 900 | "color-convert": "^2.0.1" 901 | }, 902 | "engines": { 903 | "node": ">=8" 904 | }, 905 | "funding": { 906 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 907 | } 908 | }, 909 | "node_modules/chalk/node_modules/has-flag": { 910 | "version": "4.0.0", 911 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 912 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 913 | "dev": true, 914 | "engines": { 915 | "node": ">=8" 916 | } 917 | }, 918 | "node_modules/chalk/node_modules/supports-color": { 919 | "version": "7.2.0", 920 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 921 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 922 | "dev": true, 923 | "dependencies": { 924 | "has-flag": "^4.0.0" 925 | }, 926 | "engines": { 927 | "node": ">=8" 928 | } 929 | }, 930 | "node_modules/color": { 931 | "version": "4.2.3", 932 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 933 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 934 | "dependencies": { 935 | "color-convert": "^2.0.1", 936 | "color-string": "^1.9.0" 937 | }, 938 | "engines": { 939 | "node": ">=12.5.0" 940 | } 941 | }, 942 | "node_modules/color-convert": { 943 | "version": "2.0.1", 944 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 945 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 946 | "dependencies": { 947 | "color-name": "~1.1.4" 948 | }, 949 | "engines": { 950 | "node": ">=7.0.0" 951 | } 952 | }, 953 | "node_modules/color-name": { 954 | "version": "1.1.4", 955 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 956 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 957 | }, 958 | "node_modules/color-string": { 959 | "version": "1.9.1", 960 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 961 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 962 | "dependencies": { 963 | "color-name": "^1.0.0", 964 | "simple-swizzle": "^0.2.2" 965 | } 966 | }, 967 | "node_modules/concat-map": { 968 | "version": "0.0.1", 969 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 970 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 971 | "dev": true 972 | }, 973 | "node_modules/cross-spawn": { 974 | "version": "7.0.3", 975 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 976 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 977 | "dev": true, 978 | "dependencies": { 979 | "path-key": "^3.1.0", 980 | "shebang-command": "^2.0.0", 981 | "which": "^2.0.1" 982 | }, 983 | "engines": { 984 | "node": ">= 8" 985 | } 986 | }, 987 | "node_modules/debug": { 988 | "version": "4.3.4", 989 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 990 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 991 | "dev": true, 992 | "dependencies": { 993 | "ms": "2.1.2" 994 | }, 995 | "engines": { 996 | "node": ">=6.0" 997 | }, 998 | "peerDependenciesMeta": { 999 | "supports-color": { 1000 | "optional": true 1001 | } 1002 | } 1003 | }, 1004 | "node_modules/deep-is": { 1005 | "version": "0.1.4", 1006 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1007 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1008 | "dev": true 1009 | }, 1010 | "node_modules/detect-libc": { 1011 | "version": "2.0.3", 1012 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 1013 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 1014 | "engines": { 1015 | "node": ">=8" 1016 | } 1017 | }, 1018 | "node_modules/discord-api-types": { 1019 | "version": "0.37.83", 1020 | "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.83.tgz", 1021 | "integrity": "sha512-urGGYeWtWNYMKnYlZnOnDHm8fVRffQs3U0SpE8RHeiuLKb/u92APS8HoQnPTFbnXmY1vVnXjXO4dOxcAn3J+DA==" 1022 | }, 1023 | "node_modules/discord.js": { 1024 | "version": "14.15.2", 1025 | "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.15.2.tgz", 1026 | "integrity": "sha512-wGD37YCaTUNprtpqMIRuNiswwsvSWXrHykBSm2SAosoTYut0VUDj9yo9t4iLtMKvuhI49zYkvKc2TNdzdvpJhg==", 1027 | "dependencies": { 1028 | "@discordjs/builders": "^1.8.1", 1029 | "@discordjs/collection": "1.5.3", 1030 | "@discordjs/formatters": "^0.4.0", 1031 | "@discordjs/rest": "^2.3.0", 1032 | "@discordjs/util": "^1.1.0", 1033 | "@discordjs/ws": "^1.1.0", 1034 | "@sapphire/snowflake": "3.5.3", 1035 | "discord-api-types": "0.37.83", 1036 | "fast-deep-equal": "3.1.3", 1037 | "lodash.snakecase": "4.1.1", 1038 | "tslib": "2.6.2", 1039 | "undici": "6.13.0" 1040 | }, 1041 | "engines": { 1042 | "node": ">=16.11.0" 1043 | }, 1044 | "funding": { 1045 | "url": "https://github.com/discordjs/discord.js?sponsor" 1046 | } 1047 | }, 1048 | "node_modules/dotenv": { 1049 | "version": "16.4.5", 1050 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 1051 | "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 1052 | "engines": { 1053 | "node": ">=12" 1054 | }, 1055 | "funding": { 1056 | "url": "https://dotenvx.com" 1057 | } 1058 | }, 1059 | "node_modules/escape-string-regexp": { 1060 | "version": "4.0.0", 1061 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1062 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1063 | "dev": true, 1064 | "engines": { 1065 | "node": ">=10" 1066 | }, 1067 | "funding": { 1068 | "url": "https://github.com/sponsors/sindresorhus" 1069 | } 1070 | }, 1071 | "node_modules/eslint": { 1072 | "version": "9.2.0", 1073 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.2.0.tgz", 1074 | "integrity": "sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==", 1075 | "dev": true, 1076 | "dependencies": { 1077 | "@eslint-community/eslint-utils": "^4.2.0", 1078 | "@eslint-community/regexpp": "^4.6.1", 1079 | "@eslint/eslintrc": "^3.0.2", 1080 | "@eslint/js": "9.2.0", 1081 | "@humanwhocodes/config-array": "^0.13.0", 1082 | "@humanwhocodes/module-importer": "^1.0.1", 1083 | "@humanwhocodes/retry": "^0.2.3", 1084 | "@nodelib/fs.walk": "^1.2.8", 1085 | "ajv": "^6.12.4", 1086 | "chalk": "^4.0.0", 1087 | "cross-spawn": "^7.0.2", 1088 | "debug": "^4.3.2", 1089 | "escape-string-regexp": "^4.0.0", 1090 | "eslint-scope": "^8.0.1", 1091 | "eslint-visitor-keys": "^4.0.0", 1092 | "espree": "^10.0.1", 1093 | "esquery": "^1.4.2", 1094 | "esutils": "^2.0.2", 1095 | "fast-deep-equal": "^3.1.3", 1096 | "file-entry-cache": "^8.0.0", 1097 | "find-up": "^5.0.0", 1098 | "glob-parent": "^6.0.2", 1099 | "ignore": "^5.2.0", 1100 | "imurmurhash": "^0.1.4", 1101 | "is-glob": "^4.0.0", 1102 | "is-path-inside": "^3.0.3", 1103 | "json-stable-stringify-without-jsonify": "^1.0.1", 1104 | "levn": "^0.4.1", 1105 | "lodash.merge": "^4.6.2", 1106 | "minimatch": "^3.1.2", 1107 | "natural-compare": "^1.4.0", 1108 | "optionator": "^0.9.3", 1109 | "strip-ansi": "^6.0.1", 1110 | "text-table": "^0.2.0" 1111 | }, 1112 | "bin": { 1113 | "eslint": "bin/eslint.js" 1114 | }, 1115 | "engines": { 1116 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1117 | }, 1118 | "funding": { 1119 | "url": "https://opencollective.com/eslint" 1120 | } 1121 | }, 1122 | "node_modules/eslint-scope": { 1123 | "version": "8.0.1", 1124 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", 1125 | "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", 1126 | "dev": true, 1127 | "dependencies": { 1128 | "esrecurse": "^4.3.0", 1129 | "estraverse": "^5.2.0" 1130 | }, 1131 | "engines": { 1132 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1133 | }, 1134 | "funding": { 1135 | "url": "https://opencollective.com/eslint" 1136 | } 1137 | }, 1138 | "node_modules/eslint-visitor-keys": { 1139 | "version": "4.0.0", 1140 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", 1141 | "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", 1142 | "dev": true, 1143 | "engines": { 1144 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1145 | }, 1146 | "funding": { 1147 | "url": "https://opencollective.com/eslint" 1148 | } 1149 | }, 1150 | "node_modules/espree": { 1151 | "version": "10.0.1", 1152 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz", 1153 | "integrity": "sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==", 1154 | "dev": true, 1155 | "dependencies": { 1156 | "acorn": "^8.11.3", 1157 | "acorn-jsx": "^5.3.2", 1158 | "eslint-visitor-keys": "^4.0.0" 1159 | }, 1160 | "engines": { 1161 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1162 | }, 1163 | "funding": { 1164 | "url": "https://opencollective.com/eslint" 1165 | } 1166 | }, 1167 | "node_modules/esquery": { 1168 | "version": "1.5.0", 1169 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1170 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1171 | "dev": true, 1172 | "dependencies": { 1173 | "estraverse": "^5.1.0" 1174 | }, 1175 | "engines": { 1176 | "node": ">=0.10" 1177 | } 1178 | }, 1179 | "node_modules/esrecurse": { 1180 | "version": "4.3.0", 1181 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1182 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1183 | "dev": true, 1184 | "dependencies": { 1185 | "estraverse": "^5.2.0" 1186 | }, 1187 | "engines": { 1188 | "node": ">=4.0" 1189 | } 1190 | }, 1191 | "node_modules/estraverse": { 1192 | "version": "5.3.0", 1193 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1194 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1195 | "dev": true, 1196 | "engines": { 1197 | "node": ">=4.0" 1198 | } 1199 | }, 1200 | "node_modules/esutils": { 1201 | "version": "2.0.3", 1202 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1203 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1204 | "dev": true, 1205 | "engines": { 1206 | "node": ">=0.10.0" 1207 | } 1208 | }, 1209 | "node_modules/fast-deep-equal": { 1210 | "version": "3.1.3", 1211 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1212 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1213 | }, 1214 | "node_modules/fast-json-stable-stringify": { 1215 | "version": "2.1.0", 1216 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1217 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1218 | "dev": true 1219 | }, 1220 | "node_modules/fast-levenshtein": { 1221 | "version": "2.0.6", 1222 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1223 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1224 | "dev": true 1225 | }, 1226 | "node_modules/fastq": { 1227 | "version": "1.17.1", 1228 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1229 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1230 | "dev": true, 1231 | "dependencies": { 1232 | "reusify": "^1.0.4" 1233 | } 1234 | }, 1235 | "node_modules/file-entry-cache": { 1236 | "version": "8.0.0", 1237 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1238 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1239 | "dev": true, 1240 | "dependencies": { 1241 | "flat-cache": "^4.0.0" 1242 | }, 1243 | "engines": { 1244 | "node": ">=16.0.0" 1245 | } 1246 | }, 1247 | "node_modules/find-up": { 1248 | "version": "5.0.0", 1249 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1250 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1251 | "dev": true, 1252 | "dependencies": { 1253 | "locate-path": "^6.0.0", 1254 | "path-exists": "^4.0.0" 1255 | }, 1256 | "engines": { 1257 | "node": ">=10" 1258 | }, 1259 | "funding": { 1260 | "url": "https://github.com/sponsors/sindresorhus" 1261 | } 1262 | }, 1263 | "node_modules/flat-cache": { 1264 | "version": "4.0.1", 1265 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1266 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1267 | "dev": true, 1268 | "dependencies": { 1269 | "flatted": "^3.2.9", 1270 | "keyv": "^4.5.4" 1271 | }, 1272 | "engines": { 1273 | "node": ">=16" 1274 | } 1275 | }, 1276 | "node_modules/flatted": { 1277 | "version": "3.3.1", 1278 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 1279 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 1280 | "dev": true 1281 | }, 1282 | "node_modules/glob-parent": { 1283 | "version": "6.0.2", 1284 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1285 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1286 | "dev": true, 1287 | "dependencies": { 1288 | "is-glob": "^4.0.3" 1289 | }, 1290 | "engines": { 1291 | "node": ">=10.13.0" 1292 | } 1293 | }, 1294 | "node_modules/globals": { 1295 | "version": "14.0.0", 1296 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 1297 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 1298 | "dev": true, 1299 | "engines": { 1300 | "node": ">=18" 1301 | }, 1302 | "funding": { 1303 | "url": "https://github.com/sponsors/sindresorhus" 1304 | } 1305 | }, 1306 | "node_modules/ignore": { 1307 | "version": "5.3.1", 1308 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1309 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1310 | "dev": true, 1311 | "engines": { 1312 | "node": ">= 4" 1313 | } 1314 | }, 1315 | "node_modules/import-fresh": { 1316 | "version": "3.3.0", 1317 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1318 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1319 | "dev": true, 1320 | "dependencies": { 1321 | "parent-module": "^1.0.0", 1322 | "resolve-from": "^4.0.0" 1323 | }, 1324 | "engines": { 1325 | "node": ">=6" 1326 | }, 1327 | "funding": { 1328 | "url": "https://github.com/sponsors/sindresorhus" 1329 | } 1330 | }, 1331 | "node_modules/imurmurhash": { 1332 | "version": "0.1.4", 1333 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1334 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 1335 | "dev": true, 1336 | "engines": { 1337 | "node": ">=0.8.19" 1338 | } 1339 | }, 1340 | "node_modules/is-arrayish": { 1341 | "version": "0.3.2", 1342 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1343 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 1344 | }, 1345 | "node_modules/is-extglob": { 1346 | "version": "2.1.1", 1347 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1348 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1349 | "dev": true, 1350 | "engines": { 1351 | "node": ">=0.10.0" 1352 | } 1353 | }, 1354 | "node_modules/is-glob": { 1355 | "version": "4.0.3", 1356 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1357 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1358 | "dev": true, 1359 | "dependencies": { 1360 | "is-extglob": "^2.1.1" 1361 | }, 1362 | "engines": { 1363 | "node": ">=0.10.0" 1364 | } 1365 | }, 1366 | "node_modules/is-path-inside": { 1367 | "version": "3.0.3", 1368 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1369 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1370 | "dev": true, 1371 | "engines": { 1372 | "node": ">=8" 1373 | } 1374 | }, 1375 | "node_modules/isexe": { 1376 | "version": "2.0.0", 1377 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1378 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 1379 | "dev": true 1380 | }, 1381 | "node_modules/js-yaml": { 1382 | "version": "4.1.0", 1383 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1384 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1385 | "dev": true, 1386 | "dependencies": { 1387 | "argparse": "^2.0.1" 1388 | }, 1389 | "bin": { 1390 | "js-yaml": "bin/js-yaml.js" 1391 | } 1392 | }, 1393 | "node_modules/json-buffer": { 1394 | "version": "3.0.1", 1395 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1396 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1397 | "dev": true 1398 | }, 1399 | "node_modules/json-schema-traverse": { 1400 | "version": "0.4.1", 1401 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1402 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1403 | "dev": true 1404 | }, 1405 | "node_modules/json-stable-stringify-without-jsonify": { 1406 | "version": "1.0.1", 1407 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1408 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", 1409 | "dev": true 1410 | }, 1411 | "node_modules/keyv": { 1412 | "version": "4.5.4", 1413 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1414 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1415 | "dev": true, 1416 | "dependencies": { 1417 | "json-buffer": "3.0.1" 1418 | } 1419 | }, 1420 | "node_modules/levn": { 1421 | "version": "0.4.1", 1422 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1423 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1424 | "dev": true, 1425 | "dependencies": { 1426 | "prelude-ls": "^1.2.1", 1427 | "type-check": "~0.4.0" 1428 | }, 1429 | "engines": { 1430 | "node": ">= 0.8.0" 1431 | } 1432 | }, 1433 | "node_modules/locate-path": { 1434 | "version": "6.0.0", 1435 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1436 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1437 | "dev": true, 1438 | "dependencies": { 1439 | "p-locate": "^5.0.0" 1440 | }, 1441 | "engines": { 1442 | "node": ">=10" 1443 | }, 1444 | "funding": { 1445 | "url": "https://github.com/sponsors/sindresorhus" 1446 | } 1447 | }, 1448 | "node_modules/lodash": { 1449 | "version": "4.17.21", 1450 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1451 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 1452 | }, 1453 | "node_modules/lodash.merge": { 1454 | "version": "4.6.2", 1455 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1456 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1457 | "dev": true 1458 | }, 1459 | "node_modules/lodash.snakecase": { 1460 | "version": "4.1.1", 1461 | "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", 1462 | "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" 1463 | }, 1464 | "node_modules/magic-bytes.js": { 1465 | "version": "1.10.0", 1466 | "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.10.0.tgz", 1467 | "integrity": "sha512-/k20Lg2q8LE5xiaaSkMXk4sfvI+9EGEykFS4b0CHHGWqDYU0bGUFSwchNOMA56D7TCs9GwVTkqe9als1/ns8UQ==" 1468 | }, 1469 | "node_modules/minimatch": { 1470 | "version": "3.1.2", 1471 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1472 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1473 | "dev": true, 1474 | "dependencies": { 1475 | "brace-expansion": "^1.1.7" 1476 | }, 1477 | "engines": { 1478 | "node": "*" 1479 | } 1480 | }, 1481 | "node_modules/ms": { 1482 | "version": "2.1.2", 1483 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1484 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1485 | "dev": true 1486 | }, 1487 | "node_modules/nan": { 1488 | "version": "2.19.0", 1489 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", 1490 | "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" 1491 | }, 1492 | "node_modules/natural-compare": { 1493 | "version": "1.4.0", 1494 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1495 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", 1496 | "dev": true 1497 | }, 1498 | "node_modules/node-gyp-build": { 1499 | "version": "4.8.1", 1500 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", 1501 | "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", 1502 | "bin": { 1503 | "node-gyp-build": "bin.js", 1504 | "node-gyp-build-optional": "optional.js", 1505 | "node-gyp-build-test": "build-test.js" 1506 | } 1507 | }, 1508 | "node_modules/optionator": { 1509 | "version": "0.9.4", 1510 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 1511 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 1512 | "dev": true, 1513 | "dependencies": { 1514 | "deep-is": "^0.1.3", 1515 | "fast-levenshtein": "^2.0.6", 1516 | "levn": "^0.4.1", 1517 | "prelude-ls": "^1.2.1", 1518 | "type-check": "^0.4.0", 1519 | "word-wrap": "^1.2.5" 1520 | }, 1521 | "engines": { 1522 | "node": ">= 0.8.0" 1523 | } 1524 | }, 1525 | "node_modules/p-limit": { 1526 | "version": "3.1.0", 1527 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1528 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1529 | "dev": true, 1530 | "dependencies": { 1531 | "yocto-queue": "^0.1.0" 1532 | }, 1533 | "engines": { 1534 | "node": ">=10" 1535 | }, 1536 | "funding": { 1537 | "url": "https://github.com/sponsors/sindresorhus" 1538 | } 1539 | }, 1540 | "node_modules/p-locate": { 1541 | "version": "5.0.0", 1542 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1543 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1544 | "dev": true, 1545 | "dependencies": { 1546 | "p-limit": "^3.0.2" 1547 | }, 1548 | "engines": { 1549 | "node": ">=10" 1550 | }, 1551 | "funding": { 1552 | "url": "https://github.com/sponsors/sindresorhus" 1553 | } 1554 | }, 1555 | "node_modules/parent-module": { 1556 | "version": "1.0.1", 1557 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1558 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1559 | "dev": true, 1560 | "dependencies": { 1561 | "callsites": "^3.0.0" 1562 | }, 1563 | "engines": { 1564 | "node": ">=6" 1565 | } 1566 | }, 1567 | "node_modules/path-exists": { 1568 | "version": "4.0.0", 1569 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1570 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1571 | "dev": true, 1572 | "engines": { 1573 | "node": ">=8" 1574 | } 1575 | }, 1576 | "node_modules/path-key": { 1577 | "version": "3.1.1", 1578 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1579 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1580 | "dev": true, 1581 | "engines": { 1582 | "node": ">=8" 1583 | } 1584 | }, 1585 | "node_modules/prelude-ls": { 1586 | "version": "1.2.1", 1587 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1588 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1589 | "dev": true, 1590 | "engines": { 1591 | "node": ">= 0.8.0" 1592 | } 1593 | }, 1594 | "node_modules/punycode": { 1595 | "version": "2.3.1", 1596 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1597 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1598 | "dev": true, 1599 | "engines": { 1600 | "node": ">=6" 1601 | } 1602 | }, 1603 | "node_modules/queue-microtask": { 1604 | "version": "1.2.3", 1605 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1606 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1607 | "dev": true, 1608 | "funding": [ 1609 | { 1610 | "type": "github", 1611 | "url": "https://github.com/sponsors/feross" 1612 | }, 1613 | { 1614 | "type": "patreon", 1615 | "url": "https://www.patreon.com/feross" 1616 | }, 1617 | { 1618 | "type": "consulting", 1619 | "url": "https://feross.org/support" 1620 | } 1621 | ] 1622 | }, 1623 | "node_modules/resolve-from": { 1624 | "version": "4.0.0", 1625 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1626 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1627 | "dev": true, 1628 | "engines": { 1629 | "node": ">=4" 1630 | } 1631 | }, 1632 | "node_modules/reusify": { 1633 | "version": "1.0.4", 1634 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1635 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1636 | "dev": true, 1637 | "engines": { 1638 | "iojs": ">=1.0.0", 1639 | "node": ">=0.10.0" 1640 | } 1641 | }, 1642 | "node_modules/run-parallel": { 1643 | "version": "1.2.0", 1644 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1645 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1646 | "dev": true, 1647 | "funding": [ 1648 | { 1649 | "type": "github", 1650 | "url": "https://github.com/sponsors/feross" 1651 | }, 1652 | { 1653 | "type": "patreon", 1654 | "url": "https://www.patreon.com/feross" 1655 | }, 1656 | { 1657 | "type": "consulting", 1658 | "url": "https://feross.org/support" 1659 | } 1660 | ], 1661 | "dependencies": { 1662 | "queue-microtask": "^1.2.2" 1663 | } 1664 | }, 1665 | "node_modules/semver": { 1666 | "version": "7.6.2", 1667 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 1668 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 1669 | "bin": { 1670 | "semver": "bin/semver.js" 1671 | }, 1672 | "engines": { 1673 | "node": ">=10" 1674 | } 1675 | }, 1676 | "node_modules/sharp": { 1677 | "version": "0.33.4", 1678 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz", 1679 | "integrity": "sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==", 1680 | "hasInstallScript": true, 1681 | "dependencies": { 1682 | "color": "^4.2.3", 1683 | "detect-libc": "^2.0.3", 1684 | "semver": "^7.6.0" 1685 | }, 1686 | "engines": { 1687 | "libvips": ">=8.15.2", 1688 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1689 | }, 1690 | "funding": { 1691 | "url": "https://opencollective.com/libvips" 1692 | }, 1693 | "optionalDependencies": { 1694 | "@img/sharp-darwin-arm64": "0.33.4", 1695 | "@img/sharp-darwin-x64": "0.33.4", 1696 | "@img/sharp-libvips-darwin-arm64": "1.0.2", 1697 | "@img/sharp-libvips-darwin-x64": "1.0.2", 1698 | "@img/sharp-libvips-linux-arm": "1.0.2", 1699 | "@img/sharp-libvips-linux-arm64": "1.0.2", 1700 | "@img/sharp-libvips-linux-s390x": "1.0.2", 1701 | "@img/sharp-libvips-linux-x64": "1.0.2", 1702 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2", 1703 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2", 1704 | "@img/sharp-linux-arm": "0.33.4", 1705 | "@img/sharp-linux-arm64": "0.33.4", 1706 | "@img/sharp-linux-s390x": "0.33.4", 1707 | "@img/sharp-linux-x64": "0.33.4", 1708 | "@img/sharp-linuxmusl-arm64": "0.33.4", 1709 | "@img/sharp-linuxmusl-x64": "0.33.4", 1710 | "@img/sharp-wasm32": "0.33.4", 1711 | "@img/sharp-win32-ia32": "0.33.4", 1712 | "@img/sharp-win32-x64": "0.33.4" 1713 | } 1714 | }, 1715 | "node_modules/shebang-command": { 1716 | "version": "2.0.0", 1717 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1718 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1719 | "dev": true, 1720 | "dependencies": { 1721 | "shebang-regex": "^3.0.0" 1722 | }, 1723 | "engines": { 1724 | "node": ">=8" 1725 | } 1726 | }, 1727 | "node_modules/shebang-regex": { 1728 | "version": "3.0.0", 1729 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1730 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1731 | "dev": true, 1732 | "engines": { 1733 | "node": ">=8" 1734 | } 1735 | }, 1736 | "node_modules/simple-swizzle": { 1737 | "version": "0.2.2", 1738 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 1739 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 1740 | "dependencies": { 1741 | "is-arrayish": "^0.3.1" 1742 | } 1743 | }, 1744 | "node_modules/strip-ansi": { 1745 | "version": "6.0.1", 1746 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1747 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1748 | "dev": true, 1749 | "dependencies": { 1750 | "ansi-regex": "^5.0.1" 1751 | }, 1752 | "engines": { 1753 | "node": ">=8" 1754 | } 1755 | }, 1756 | "node_modules/strip-json-comments": { 1757 | "version": "3.1.1", 1758 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1759 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1760 | "dev": true, 1761 | "engines": { 1762 | "node": ">=8" 1763 | }, 1764 | "funding": { 1765 | "url": "https://github.com/sponsors/sindresorhus" 1766 | } 1767 | }, 1768 | "node_modules/text-table": { 1769 | "version": "0.2.0", 1770 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1771 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", 1772 | "dev": true 1773 | }, 1774 | "node_modules/ts-mixer": { 1775 | "version": "6.0.4", 1776 | "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz", 1777 | "integrity": "sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==" 1778 | }, 1779 | "node_modules/tslib": { 1780 | "version": "2.6.2", 1781 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 1782 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 1783 | }, 1784 | "node_modules/type-check": { 1785 | "version": "0.4.0", 1786 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1787 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1788 | "dev": true, 1789 | "dependencies": { 1790 | "prelude-ls": "^1.2.1" 1791 | }, 1792 | "engines": { 1793 | "node": ">= 0.8.0" 1794 | } 1795 | }, 1796 | "node_modules/undici": { 1797 | "version": "6.13.0", 1798 | "resolved": "https://registry.npmjs.org/undici/-/undici-6.13.0.tgz", 1799 | "integrity": "sha512-Q2rtqmZWrbP8nePMq7mOJIN98M0fYvSgV89vwl/BQRT4mDOeY2GXZngfGpcBBhtky3woM7G24wZV3Q304Bv6cw==", 1800 | "engines": { 1801 | "node": ">=18.0" 1802 | } 1803 | }, 1804 | "node_modules/undici-types": { 1805 | "version": "5.26.5", 1806 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 1807 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" 1808 | }, 1809 | "node_modules/uri-js": { 1810 | "version": "4.4.1", 1811 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1812 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1813 | "dev": true, 1814 | "dependencies": { 1815 | "punycode": "^2.1.0" 1816 | } 1817 | }, 1818 | "node_modules/utf-8-validate": { 1819 | "version": "6.0.3", 1820 | "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz", 1821 | "integrity": "sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==", 1822 | "hasInstallScript": true, 1823 | "dependencies": { 1824 | "node-gyp-build": "^4.3.0" 1825 | }, 1826 | "engines": { 1827 | "node": ">=6.14.2" 1828 | } 1829 | }, 1830 | "node_modules/which": { 1831 | "version": "2.0.2", 1832 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1833 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1834 | "dev": true, 1835 | "dependencies": { 1836 | "isexe": "^2.0.0" 1837 | }, 1838 | "bin": { 1839 | "node-which": "bin/node-which" 1840 | }, 1841 | "engines": { 1842 | "node": ">= 8" 1843 | } 1844 | }, 1845 | "node_modules/word-wrap": { 1846 | "version": "1.2.5", 1847 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 1848 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 1849 | "dev": true, 1850 | "engines": { 1851 | "node": ">=0.10.0" 1852 | } 1853 | }, 1854 | "node_modules/ws": { 1855 | "version": "8.17.0", 1856 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", 1857 | "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", 1858 | "engines": { 1859 | "node": ">=10.0.0" 1860 | }, 1861 | "peerDependencies": { 1862 | "bufferutil": "^4.0.1", 1863 | "utf-8-validate": ">=5.0.2" 1864 | }, 1865 | "peerDependenciesMeta": { 1866 | "bufferutil": { 1867 | "optional": true 1868 | }, 1869 | "utf-8-validate": { 1870 | "optional": true 1871 | } 1872 | } 1873 | }, 1874 | "node_modules/yocto-queue": { 1875 | "version": "0.1.0", 1876 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1877 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1878 | "dev": true, 1879 | "engines": { 1880 | "node": ">=10" 1881 | }, 1882 | "funding": { 1883 | "url": "https://github.com/sponsors/sindresorhus" 1884 | } 1885 | }, 1886 | "node_modules/zlib-sync": { 1887 | "version": "0.1.9", 1888 | "resolved": "https://registry.npmjs.org/zlib-sync/-/zlib-sync-0.1.9.tgz", 1889 | "integrity": "sha512-DinB43xCjVwIBDpaIvQqHbmDsnYnSt6HJ/yiB2MZQGTqgPcwBSZqLkimXwK8BvdjQ/MaZysb5uEenImncqvCqQ==", 1890 | "hasInstallScript": true, 1891 | "dependencies": { 1892 | "nan": "^2.18.0" 1893 | } 1894 | } 1895 | }, 1896 | "dependencies": { 1897 | "@discordjs/builders": { 1898 | "version": "1.8.1", 1899 | "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.8.1.tgz", 1900 | "integrity": "sha512-GkF+HM01FHy+NSoTaUPR8z44otfQgJ1AIsRxclYGUZDyUbdZEFyD/5QVv2Y1Flx6M+B0bQLzg2M9CJv5lGTqpA==", 1901 | "requires": { 1902 | "@discordjs/formatters": "^0.4.0", 1903 | "@discordjs/util": "^1.1.0", 1904 | "@sapphire/shapeshift": "^3.9.7", 1905 | "discord-api-types": "0.37.83", 1906 | "fast-deep-equal": "^3.1.3", 1907 | "ts-mixer": "^6.0.4", 1908 | "tslib": "^2.6.2" 1909 | } 1910 | }, 1911 | "@discordjs/collection": { 1912 | "version": "1.5.3", 1913 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz", 1914 | "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==" 1915 | }, 1916 | "@discordjs/formatters": { 1917 | "version": "0.4.0", 1918 | "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.4.0.tgz", 1919 | "integrity": "sha512-fJ06TLC1NiruF35470q3Nr1bi95BdvKFAF+T5bNfZJ4bNdqZ3VZ+Ttg6SThqTxm6qumSG3choxLBHMC69WXNXQ==", 1920 | "requires": { 1921 | "discord-api-types": "0.37.83" 1922 | } 1923 | }, 1924 | "@discordjs/rest": { 1925 | "version": "2.3.0", 1926 | "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.3.0.tgz", 1927 | "integrity": "sha512-C1kAJK8aSYRv3ZwMG8cvrrW4GN0g5eMdP8AuN8ODH5DyOCbHgJspze1my3xHOAgwLJdKUbWNVyAeJ9cEdduqIg==", 1928 | "requires": { 1929 | "@discordjs/collection": "^2.1.0", 1930 | "@discordjs/util": "^1.1.0", 1931 | "@sapphire/async-queue": "^1.5.2", 1932 | "@sapphire/snowflake": "^3.5.3", 1933 | "@vladfrangu/async_event_emitter": "^2.2.4", 1934 | "discord-api-types": "0.37.83", 1935 | "magic-bytes.js": "^1.10.0", 1936 | "tslib": "^2.6.2", 1937 | "undici": "6.13.0" 1938 | }, 1939 | "dependencies": { 1940 | "@discordjs/collection": { 1941 | "version": "2.1.0", 1942 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.0.tgz", 1943 | "integrity": "sha512-mLcTACtXUuVgutoznkh6hS3UFqYirDYAg5Dc1m8xn6OvPjetnUlf/xjtqnnc47OwWdaoCQnHmHh9KofhD6uRqw==" 1944 | } 1945 | } 1946 | }, 1947 | "@discordjs/util": { 1948 | "version": "1.1.0", 1949 | "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.1.0.tgz", 1950 | "integrity": "sha512-IndcI5hzlNZ7GS96RV3Xw1R2kaDuXEp7tRIy/KlhidpN/BQ1qh1NZt3377dMLTa44xDUNKT7hnXkA/oUAzD/lg==" 1951 | }, 1952 | "@discordjs/ws": { 1953 | "version": "1.1.0", 1954 | "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.1.0.tgz", 1955 | "integrity": "sha512-O97DIeSvfNTn5wz5vaER6ciyUsr7nOqSEtsLoMhhIgeFkhnxLRqSr00/Fpq2/ppLgjDGLbQCDzIK7ilGoB/M7A==", 1956 | "requires": { 1957 | "@discordjs/collection": "^2.1.0", 1958 | "@discordjs/rest": "^2.3.0", 1959 | "@discordjs/util": "^1.1.0", 1960 | "@sapphire/async-queue": "^1.5.2", 1961 | "@types/ws": "^8.5.10", 1962 | "@vladfrangu/async_event_emitter": "^2.2.4", 1963 | "discord-api-types": "0.37.83", 1964 | "tslib": "^2.6.2", 1965 | "ws": "^8.16.0" 1966 | }, 1967 | "dependencies": { 1968 | "@discordjs/collection": { 1969 | "version": "2.1.0", 1970 | "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.0.tgz", 1971 | "integrity": "sha512-mLcTACtXUuVgutoznkh6hS3UFqYirDYAg5Dc1m8xn6OvPjetnUlf/xjtqnnc47OwWdaoCQnHmHh9KofhD6uRqw==" 1972 | } 1973 | } 1974 | }, 1975 | "@emnapi/runtime": { 1976 | "version": "1.2.0", 1977 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz", 1978 | "integrity": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==", 1979 | "optional": true, 1980 | "requires": { 1981 | "tslib": "^2.4.0" 1982 | } 1983 | }, 1984 | "@eslint-community/eslint-utils": { 1985 | "version": "4.4.0", 1986 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 1987 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 1988 | "dev": true, 1989 | "requires": { 1990 | "eslint-visitor-keys": "^3.3.0" 1991 | }, 1992 | "dependencies": { 1993 | "eslint-visitor-keys": { 1994 | "version": "3.4.3", 1995 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1996 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1997 | "dev": true 1998 | } 1999 | } 2000 | }, 2001 | "@eslint-community/regexpp": { 2002 | "version": "4.10.0", 2003 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 2004 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 2005 | "dev": true 2006 | }, 2007 | "@eslint/eslintrc": { 2008 | "version": "3.0.2", 2009 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.0.2.tgz", 2010 | "integrity": "sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==", 2011 | "dev": true, 2012 | "requires": { 2013 | "ajv": "^6.12.4", 2014 | "debug": "^4.3.2", 2015 | "espree": "^10.0.1", 2016 | "globals": "^14.0.0", 2017 | "ignore": "^5.2.0", 2018 | "import-fresh": "^3.2.1", 2019 | "js-yaml": "^4.1.0", 2020 | "minimatch": "^3.1.2", 2021 | "strip-json-comments": "^3.1.1" 2022 | } 2023 | }, 2024 | "@eslint/js": { 2025 | "version": "9.2.0", 2026 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.2.0.tgz", 2027 | "integrity": "sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==", 2028 | "dev": true 2029 | }, 2030 | "@humanwhocodes/config-array": { 2031 | "version": "0.13.0", 2032 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 2033 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 2034 | "dev": true, 2035 | "requires": { 2036 | "@humanwhocodes/object-schema": "^2.0.3", 2037 | "debug": "^4.3.1", 2038 | "minimatch": "^3.0.5" 2039 | } 2040 | }, 2041 | "@humanwhocodes/module-importer": { 2042 | "version": "1.0.1", 2043 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 2044 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 2045 | "dev": true 2046 | }, 2047 | "@humanwhocodes/object-schema": { 2048 | "version": "2.0.3", 2049 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 2050 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 2051 | "dev": true 2052 | }, 2053 | "@humanwhocodes/retry": { 2054 | "version": "0.2.4", 2055 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.2.4.tgz", 2056 | "integrity": "sha512-Ttl/jHpxfS3st5sxwICYfk4pOH0WrLI1SpW283GgQL7sCWU7EHIOhX4b4fkIxr3tkfzwg8+FNojtzsIEE7Ecgg==", 2057 | "dev": true 2058 | }, 2059 | "@img/sharp-darwin-arm64": { 2060 | "version": "0.33.4", 2061 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.4.tgz", 2062 | "integrity": "sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==", 2063 | "optional": true, 2064 | "requires": { 2065 | "@img/sharp-libvips-darwin-arm64": "1.0.2" 2066 | } 2067 | }, 2068 | "@img/sharp-darwin-x64": { 2069 | "version": "0.33.4", 2070 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.4.tgz", 2071 | "integrity": "sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==", 2072 | "optional": true, 2073 | "requires": { 2074 | "@img/sharp-libvips-darwin-x64": "1.0.2" 2075 | } 2076 | }, 2077 | "@img/sharp-libvips-darwin-arm64": { 2078 | "version": "1.0.2", 2079 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.2.tgz", 2080 | "integrity": "sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==", 2081 | "optional": true 2082 | }, 2083 | "@img/sharp-libvips-darwin-x64": { 2084 | "version": "1.0.2", 2085 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz", 2086 | "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==", 2087 | "optional": true 2088 | }, 2089 | "@img/sharp-libvips-linux-arm": { 2090 | "version": "1.0.2", 2091 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.2.tgz", 2092 | "integrity": "sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==", 2093 | "optional": true 2094 | }, 2095 | "@img/sharp-libvips-linux-arm64": { 2096 | "version": "1.0.2", 2097 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.2.tgz", 2098 | "integrity": "sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==", 2099 | "optional": true 2100 | }, 2101 | "@img/sharp-libvips-linux-s390x": { 2102 | "version": "1.0.2", 2103 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.2.tgz", 2104 | "integrity": "sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==", 2105 | "optional": true 2106 | }, 2107 | "@img/sharp-libvips-linux-x64": { 2108 | "version": "1.0.2", 2109 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.2.tgz", 2110 | "integrity": "sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==", 2111 | "optional": true 2112 | }, 2113 | "@img/sharp-libvips-linuxmusl-arm64": { 2114 | "version": "1.0.2", 2115 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.2.tgz", 2116 | "integrity": "sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==", 2117 | "optional": true 2118 | }, 2119 | "@img/sharp-libvips-linuxmusl-x64": { 2120 | "version": "1.0.2", 2121 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.2.tgz", 2122 | "integrity": "sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==", 2123 | "optional": true 2124 | }, 2125 | "@img/sharp-linux-arm": { 2126 | "version": "0.33.4", 2127 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.4.tgz", 2128 | "integrity": "sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==", 2129 | "optional": true, 2130 | "requires": { 2131 | "@img/sharp-libvips-linux-arm": "1.0.2" 2132 | } 2133 | }, 2134 | "@img/sharp-linux-arm64": { 2135 | "version": "0.33.4", 2136 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.4.tgz", 2137 | "integrity": "sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==", 2138 | "optional": true, 2139 | "requires": { 2140 | "@img/sharp-libvips-linux-arm64": "1.0.2" 2141 | } 2142 | }, 2143 | "@img/sharp-linux-s390x": { 2144 | "version": "0.33.4", 2145 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.4.tgz", 2146 | "integrity": "sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==", 2147 | "optional": true, 2148 | "requires": { 2149 | "@img/sharp-libvips-linux-s390x": "1.0.2" 2150 | } 2151 | }, 2152 | "@img/sharp-linux-x64": { 2153 | "version": "0.33.4", 2154 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.4.tgz", 2155 | "integrity": "sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==", 2156 | "optional": true, 2157 | "requires": { 2158 | "@img/sharp-libvips-linux-x64": "1.0.2" 2159 | } 2160 | }, 2161 | "@img/sharp-linuxmusl-arm64": { 2162 | "version": "0.33.4", 2163 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.4.tgz", 2164 | "integrity": "sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==", 2165 | "optional": true, 2166 | "requires": { 2167 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2" 2168 | } 2169 | }, 2170 | "@img/sharp-linuxmusl-x64": { 2171 | "version": "0.33.4", 2172 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.4.tgz", 2173 | "integrity": "sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==", 2174 | "optional": true, 2175 | "requires": { 2176 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2" 2177 | } 2178 | }, 2179 | "@img/sharp-wasm32": { 2180 | "version": "0.33.4", 2181 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.4.tgz", 2182 | "integrity": "sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==", 2183 | "optional": true, 2184 | "requires": { 2185 | "@emnapi/runtime": "^1.1.1" 2186 | } 2187 | }, 2188 | "@img/sharp-win32-ia32": { 2189 | "version": "0.33.4", 2190 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.4.tgz", 2191 | "integrity": "sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==", 2192 | "optional": true 2193 | }, 2194 | "@img/sharp-win32-x64": { 2195 | "version": "0.33.4", 2196 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.4.tgz", 2197 | "integrity": "sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==", 2198 | "optional": true 2199 | }, 2200 | "@nodelib/fs.scandir": { 2201 | "version": "2.1.5", 2202 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 2203 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 2204 | "dev": true, 2205 | "requires": { 2206 | "@nodelib/fs.stat": "2.0.5", 2207 | "run-parallel": "^1.1.9" 2208 | } 2209 | }, 2210 | "@nodelib/fs.stat": { 2211 | "version": "2.0.5", 2212 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 2213 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 2214 | "dev": true 2215 | }, 2216 | "@nodelib/fs.walk": { 2217 | "version": "1.2.8", 2218 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 2219 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 2220 | "dev": true, 2221 | "requires": { 2222 | "@nodelib/fs.scandir": "2.1.5", 2223 | "fastq": "^1.6.0" 2224 | } 2225 | }, 2226 | "@sapphire/async-queue": { 2227 | "version": "1.5.2", 2228 | "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.2.tgz", 2229 | "integrity": "sha512-7X7FFAA4DngXUl95+hYbUF19bp1LGiffjJtu7ygrZrbdCSsdDDBaSjB7Akw0ZbOu6k0xpXyljnJ6/RZUvLfRdg==" 2230 | }, 2231 | "@sapphire/shapeshift": { 2232 | "version": "3.9.7", 2233 | "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.9.7.tgz", 2234 | "integrity": "sha512-4It2mxPSr4OGn4HSQWGmhFMsNFGfFVhWeRPCRwbH972Ek2pzfGRZtb0pJ4Ze6oIzcyh2jw7nUDa6qGlWofgd9g==", 2235 | "requires": { 2236 | "fast-deep-equal": "^3.1.3", 2237 | "lodash": "^4.17.21" 2238 | } 2239 | }, 2240 | "@sapphire/snowflake": { 2241 | "version": "3.5.3", 2242 | "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.3.tgz", 2243 | "integrity": "sha512-jjmJywLAFoWeBi1W7994zZyiNWPIiqRRNAmSERxyg93xRGzNYvGjlZ0gR6x0F4gPRi2+0O6S71kOZYyr3cxaIQ==" 2244 | }, 2245 | "@types/node": { 2246 | "version": "20.12.8", 2247 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.8.tgz", 2248 | "integrity": "sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==", 2249 | "requires": { 2250 | "undici-types": "~5.26.4" 2251 | } 2252 | }, 2253 | "@types/ws": { 2254 | "version": "8.5.10", 2255 | "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", 2256 | "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", 2257 | "requires": { 2258 | "@types/node": "*" 2259 | } 2260 | }, 2261 | "@vladfrangu/async_event_emitter": { 2262 | "version": "2.2.4", 2263 | "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.2.4.tgz", 2264 | "integrity": "sha512-ButUPz9E9cXMLgvAW8aLAKKJJsPu1dY1/l/E8xzLFuysowXygs6GBcyunK9rnGC4zTsnIc2mQo71rGw9U+Ykug==" 2265 | }, 2266 | "acorn": { 2267 | "version": "8.11.3", 2268 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 2269 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 2270 | "dev": true 2271 | }, 2272 | "acorn-jsx": { 2273 | "version": "5.3.2", 2274 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2275 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2276 | "dev": true, 2277 | "requires": {} 2278 | }, 2279 | "ajv": { 2280 | "version": "6.12.6", 2281 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 2282 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 2283 | "dev": true, 2284 | "requires": { 2285 | "fast-deep-equal": "^3.1.1", 2286 | "fast-json-stable-stringify": "^2.0.0", 2287 | "json-schema-traverse": "^0.4.1", 2288 | "uri-js": "^4.2.2" 2289 | } 2290 | }, 2291 | "ansi-regex": { 2292 | "version": "5.0.1", 2293 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2294 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2295 | "dev": true 2296 | }, 2297 | "argparse": { 2298 | "version": "2.0.1", 2299 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2300 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2301 | "dev": true 2302 | }, 2303 | "balanced-match": { 2304 | "version": "1.0.2", 2305 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 2306 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 2307 | "dev": true 2308 | }, 2309 | "brace-expansion": { 2310 | "version": "1.1.11", 2311 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2312 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2313 | "dev": true, 2314 | "requires": { 2315 | "balanced-match": "^1.0.0", 2316 | "concat-map": "0.0.1" 2317 | } 2318 | }, 2319 | "bufferutil": { 2320 | "version": "4.0.8", 2321 | "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.8.tgz", 2322 | "integrity": "sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==", 2323 | "requires": { 2324 | "node-gyp-build": "^4.3.0" 2325 | } 2326 | }, 2327 | "callsites": { 2328 | "version": "3.1.0", 2329 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2330 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2331 | "dev": true 2332 | }, 2333 | "chalk": { 2334 | "version": "4.1.1", 2335 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", 2336 | "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", 2337 | "dev": true, 2338 | "requires": { 2339 | "ansi-styles": "^4.1.0", 2340 | "supports-color": "^7.1.0" 2341 | }, 2342 | "dependencies": { 2343 | "ansi-styles": { 2344 | "version": "4.3.0", 2345 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2346 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2347 | "dev": true, 2348 | "requires": { 2349 | "color-convert": "^2.0.1" 2350 | } 2351 | }, 2352 | "has-flag": { 2353 | "version": "4.0.0", 2354 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2355 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2356 | "dev": true 2357 | }, 2358 | "supports-color": { 2359 | "version": "7.2.0", 2360 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2361 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2362 | "dev": true, 2363 | "requires": { 2364 | "has-flag": "^4.0.0" 2365 | } 2366 | } 2367 | } 2368 | }, 2369 | "color": { 2370 | "version": "4.2.3", 2371 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 2372 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 2373 | "requires": { 2374 | "color-convert": "^2.0.1", 2375 | "color-string": "^1.9.0" 2376 | } 2377 | }, 2378 | "color-convert": { 2379 | "version": "2.0.1", 2380 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2381 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2382 | "requires": { 2383 | "color-name": "~1.1.4" 2384 | } 2385 | }, 2386 | "color-name": { 2387 | "version": "1.1.4", 2388 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2389 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 2390 | }, 2391 | "color-string": { 2392 | "version": "1.9.1", 2393 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 2394 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 2395 | "requires": { 2396 | "color-name": "^1.0.0", 2397 | "simple-swizzle": "^0.2.2" 2398 | } 2399 | }, 2400 | "concat-map": { 2401 | "version": "0.0.1", 2402 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2403 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2404 | "dev": true 2405 | }, 2406 | "cross-spawn": { 2407 | "version": "7.0.3", 2408 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 2409 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 2410 | "dev": true, 2411 | "requires": { 2412 | "path-key": "^3.1.0", 2413 | "shebang-command": "^2.0.0", 2414 | "which": "^2.0.1" 2415 | } 2416 | }, 2417 | "debug": { 2418 | "version": "4.3.4", 2419 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 2420 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 2421 | "dev": true, 2422 | "requires": { 2423 | "ms": "2.1.2" 2424 | } 2425 | }, 2426 | "deep-is": { 2427 | "version": "0.1.4", 2428 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2429 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2430 | "dev": true 2431 | }, 2432 | "detect-libc": { 2433 | "version": "2.0.3", 2434 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 2435 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" 2436 | }, 2437 | "discord-api-types": { 2438 | "version": "0.37.83", 2439 | "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.83.tgz", 2440 | "integrity": "sha512-urGGYeWtWNYMKnYlZnOnDHm8fVRffQs3U0SpE8RHeiuLKb/u92APS8HoQnPTFbnXmY1vVnXjXO4dOxcAn3J+DA==" 2441 | }, 2442 | "discord.js": { 2443 | "version": "14.15.2", 2444 | "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.15.2.tgz", 2445 | "integrity": "sha512-wGD37YCaTUNprtpqMIRuNiswwsvSWXrHykBSm2SAosoTYut0VUDj9yo9t4iLtMKvuhI49zYkvKc2TNdzdvpJhg==", 2446 | "requires": { 2447 | "@discordjs/builders": "^1.8.1", 2448 | "@discordjs/collection": "1.5.3", 2449 | "@discordjs/formatters": "^0.4.0", 2450 | "@discordjs/rest": "^2.3.0", 2451 | "@discordjs/util": "^1.1.0", 2452 | "@discordjs/ws": "^1.1.0", 2453 | "@sapphire/snowflake": "3.5.3", 2454 | "discord-api-types": "0.37.83", 2455 | "fast-deep-equal": "3.1.3", 2456 | "lodash.snakecase": "4.1.1", 2457 | "tslib": "2.6.2", 2458 | "undici": "6.13.0" 2459 | } 2460 | }, 2461 | "dotenv": { 2462 | "version": "16.4.5", 2463 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 2464 | "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" 2465 | }, 2466 | "escape-string-regexp": { 2467 | "version": "4.0.0", 2468 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2469 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2470 | "dev": true 2471 | }, 2472 | "eslint": { 2473 | "version": "9.2.0", 2474 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.2.0.tgz", 2475 | "integrity": "sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==", 2476 | "dev": true, 2477 | "requires": { 2478 | "@eslint-community/eslint-utils": "^4.2.0", 2479 | "@eslint-community/regexpp": "^4.6.1", 2480 | "@eslint/eslintrc": "^3.0.2", 2481 | "@eslint/js": "9.2.0", 2482 | "@humanwhocodes/config-array": "^0.13.0", 2483 | "@humanwhocodes/module-importer": "^1.0.1", 2484 | "@humanwhocodes/retry": "^0.2.3", 2485 | "@nodelib/fs.walk": "^1.2.8", 2486 | "ajv": "^6.12.4", 2487 | "chalk": "^4.0.0", 2488 | "cross-spawn": "^7.0.2", 2489 | "debug": "^4.3.2", 2490 | "escape-string-regexp": "^4.0.0", 2491 | "eslint-scope": "^8.0.1", 2492 | "eslint-visitor-keys": "^4.0.0", 2493 | "espree": "^10.0.1", 2494 | "esquery": "^1.4.2", 2495 | "esutils": "^2.0.2", 2496 | "fast-deep-equal": "^3.1.3", 2497 | "file-entry-cache": "^8.0.0", 2498 | "find-up": "^5.0.0", 2499 | "glob-parent": "^6.0.2", 2500 | "ignore": "^5.2.0", 2501 | "imurmurhash": "^0.1.4", 2502 | "is-glob": "^4.0.0", 2503 | "is-path-inside": "^3.0.3", 2504 | "json-stable-stringify-without-jsonify": "^1.0.1", 2505 | "levn": "^0.4.1", 2506 | "lodash.merge": "^4.6.2", 2507 | "minimatch": "^3.1.2", 2508 | "natural-compare": "^1.4.0", 2509 | "optionator": "^0.9.3", 2510 | "strip-ansi": "^6.0.1", 2511 | "text-table": "^0.2.0" 2512 | } 2513 | }, 2514 | "eslint-scope": { 2515 | "version": "8.0.1", 2516 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", 2517 | "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", 2518 | "dev": true, 2519 | "requires": { 2520 | "esrecurse": "^4.3.0", 2521 | "estraverse": "^5.2.0" 2522 | } 2523 | }, 2524 | "eslint-visitor-keys": { 2525 | "version": "4.0.0", 2526 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", 2527 | "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", 2528 | "dev": true 2529 | }, 2530 | "espree": { 2531 | "version": "10.0.1", 2532 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz", 2533 | "integrity": "sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==", 2534 | "dev": true, 2535 | "requires": { 2536 | "acorn": "^8.11.3", 2537 | "acorn-jsx": "^5.3.2", 2538 | "eslint-visitor-keys": "^4.0.0" 2539 | } 2540 | }, 2541 | "esquery": { 2542 | "version": "1.5.0", 2543 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 2544 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 2545 | "dev": true, 2546 | "requires": { 2547 | "estraverse": "^5.1.0" 2548 | } 2549 | }, 2550 | "esrecurse": { 2551 | "version": "4.3.0", 2552 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2553 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2554 | "dev": true, 2555 | "requires": { 2556 | "estraverse": "^5.2.0" 2557 | } 2558 | }, 2559 | "estraverse": { 2560 | "version": "5.3.0", 2561 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2562 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2563 | "dev": true 2564 | }, 2565 | "esutils": { 2566 | "version": "2.0.3", 2567 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2568 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2569 | "dev": true 2570 | }, 2571 | "fast-deep-equal": { 2572 | "version": "3.1.3", 2573 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2574 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 2575 | }, 2576 | "fast-json-stable-stringify": { 2577 | "version": "2.1.0", 2578 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2579 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2580 | "dev": true 2581 | }, 2582 | "fast-levenshtein": { 2583 | "version": "2.0.6", 2584 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2585 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2586 | "dev": true 2587 | }, 2588 | "fastq": { 2589 | "version": "1.17.1", 2590 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 2591 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 2592 | "dev": true, 2593 | "requires": { 2594 | "reusify": "^1.0.4" 2595 | } 2596 | }, 2597 | "file-entry-cache": { 2598 | "version": "8.0.0", 2599 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2600 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2601 | "dev": true, 2602 | "requires": { 2603 | "flat-cache": "^4.0.0" 2604 | } 2605 | }, 2606 | "find-up": { 2607 | "version": "5.0.0", 2608 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2609 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2610 | "dev": true, 2611 | "requires": { 2612 | "locate-path": "^6.0.0", 2613 | "path-exists": "^4.0.0" 2614 | } 2615 | }, 2616 | "flat-cache": { 2617 | "version": "4.0.1", 2618 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2619 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2620 | "dev": true, 2621 | "requires": { 2622 | "flatted": "^3.2.9", 2623 | "keyv": "^4.5.4" 2624 | } 2625 | }, 2626 | "flatted": { 2627 | "version": "3.3.1", 2628 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 2629 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 2630 | "dev": true 2631 | }, 2632 | "glob-parent": { 2633 | "version": "6.0.2", 2634 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2635 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2636 | "dev": true, 2637 | "requires": { 2638 | "is-glob": "^4.0.3" 2639 | } 2640 | }, 2641 | "globals": { 2642 | "version": "14.0.0", 2643 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 2644 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 2645 | "dev": true 2646 | }, 2647 | "ignore": { 2648 | "version": "5.3.1", 2649 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 2650 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 2651 | "dev": true 2652 | }, 2653 | "import-fresh": { 2654 | "version": "3.3.0", 2655 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2656 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2657 | "dev": true, 2658 | "requires": { 2659 | "parent-module": "^1.0.0", 2660 | "resolve-from": "^4.0.0" 2661 | } 2662 | }, 2663 | "imurmurhash": { 2664 | "version": "0.1.4", 2665 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2666 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 2667 | "dev": true 2668 | }, 2669 | "is-arrayish": { 2670 | "version": "0.3.2", 2671 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 2672 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 2673 | }, 2674 | "is-extglob": { 2675 | "version": "2.1.1", 2676 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2677 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2678 | "dev": true 2679 | }, 2680 | "is-glob": { 2681 | "version": "4.0.3", 2682 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2683 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2684 | "dev": true, 2685 | "requires": { 2686 | "is-extglob": "^2.1.1" 2687 | } 2688 | }, 2689 | "is-path-inside": { 2690 | "version": "3.0.3", 2691 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2692 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2693 | "dev": true 2694 | }, 2695 | "isexe": { 2696 | "version": "2.0.0", 2697 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2698 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 2699 | "dev": true 2700 | }, 2701 | "js-yaml": { 2702 | "version": "4.1.0", 2703 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2704 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2705 | "dev": true, 2706 | "requires": { 2707 | "argparse": "^2.0.1" 2708 | } 2709 | }, 2710 | "json-buffer": { 2711 | "version": "3.0.1", 2712 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2713 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2714 | "dev": true 2715 | }, 2716 | "json-schema-traverse": { 2717 | "version": "0.4.1", 2718 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2719 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2720 | "dev": true 2721 | }, 2722 | "json-stable-stringify-without-jsonify": { 2723 | "version": "1.0.1", 2724 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2725 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", 2726 | "dev": true 2727 | }, 2728 | "keyv": { 2729 | "version": "4.5.4", 2730 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2731 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2732 | "dev": true, 2733 | "requires": { 2734 | "json-buffer": "3.0.1" 2735 | } 2736 | }, 2737 | "levn": { 2738 | "version": "0.4.1", 2739 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2740 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2741 | "dev": true, 2742 | "requires": { 2743 | "prelude-ls": "^1.2.1", 2744 | "type-check": "~0.4.0" 2745 | } 2746 | }, 2747 | "locate-path": { 2748 | "version": "6.0.0", 2749 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2750 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2751 | "dev": true, 2752 | "requires": { 2753 | "p-locate": "^5.0.0" 2754 | } 2755 | }, 2756 | "lodash": { 2757 | "version": "4.17.21", 2758 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2759 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2760 | }, 2761 | "lodash.merge": { 2762 | "version": "4.6.2", 2763 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2764 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2765 | "dev": true 2766 | }, 2767 | "lodash.snakecase": { 2768 | "version": "4.1.1", 2769 | "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", 2770 | "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" 2771 | }, 2772 | "magic-bytes.js": { 2773 | "version": "1.10.0", 2774 | "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.10.0.tgz", 2775 | "integrity": "sha512-/k20Lg2q8LE5xiaaSkMXk4sfvI+9EGEykFS4b0CHHGWqDYU0bGUFSwchNOMA56D7TCs9GwVTkqe9als1/ns8UQ==" 2776 | }, 2777 | "minimatch": { 2778 | "version": "3.1.2", 2779 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2780 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2781 | "dev": true, 2782 | "requires": { 2783 | "brace-expansion": "^1.1.7" 2784 | } 2785 | }, 2786 | "ms": { 2787 | "version": "2.1.2", 2788 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2789 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2790 | "dev": true 2791 | }, 2792 | "nan": { 2793 | "version": "2.19.0", 2794 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", 2795 | "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" 2796 | }, 2797 | "natural-compare": { 2798 | "version": "1.4.0", 2799 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2800 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", 2801 | "dev": true 2802 | }, 2803 | "node-gyp-build": { 2804 | "version": "4.8.1", 2805 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", 2806 | "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==" 2807 | }, 2808 | "optionator": { 2809 | "version": "0.9.4", 2810 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2811 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2812 | "dev": true, 2813 | "requires": { 2814 | "deep-is": "^0.1.3", 2815 | "fast-levenshtein": "^2.0.6", 2816 | "levn": "^0.4.1", 2817 | "prelude-ls": "^1.2.1", 2818 | "type-check": "^0.4.0", 2819 | "word-wrap": "^1.2.5" 2820 | } 2821 | }, 2822 | "p-limit": { 2823 | "version": "3.1.0", 2824 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2825 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2826 | "dev": true, 2827 | "requires": { 2828 | "yocto-queue": "^0.1.0" 2829 | } 2830 | }, 2831 | "p-locate": { 2832 | "version": "5.0.0", 2833 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2834 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2835 | "dev": true, 2836 | "requires": { 2837 | "p-limit": "^3.0.2" 2838 | } 2839 | }, 2840 | "parent-module": { 2841 | "version": "1.0.1", 2842 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2843 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2844 | "dev": true, 2845 | "requires": { 2846 | "callsites": "^3.0.0" 2847 | } 2848 | }, 2849 | "path-exists": { 2850 | "version": "4.0.0", 2851 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2852 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2853 | "dev": true 2854 | }, 2855 | "path-key": { 2856 | "version": "3.1.1", 2857 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2858 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2859 | "dev": true 2860 | }, 2861 | "prelude-ls": { 2862 | "version": "1.2.1", 2863 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2864 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2865 | "dev": true 2866 | }, 2867 | "punycode": { 2868 | "version": "2.3.1", 2869 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2870 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2871 | "dev": true 2872 | }, 2873 | "queue-microtask": { 2874 | "version": "1.2.3", 2875 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2876 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2877 | "dev": true 2878 | }, 2879 | "resolve-from": { 2880 | "version": "4.0.0", 2881 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2882 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2883 | "dev": true 2884 | }, 2885 | "reusify": { 2886 | "version": "1.0.4", 2887 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2888 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2889 | "dev": true 2890 | }, 2891 | "run-parallel": { 2892 | "version": "1.2.0", 2893 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2894 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2895 | "dev": true, 2896 | "requires": { 2897 | "queue-microtask": "^1.2.2" 2898 | } 2899 | }, 2900 | "semver": { 2901 | "version": "7.6.2", 2902 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 2903 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==" 2904 | }, 2905 | "sharp": { 2906 | "version": "0.33.4", 2907 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz", 2908 | "integrity": "sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==", 2909 | "requires": { 2910 | "@img/sharp-darwin-arm64": "0.33.4", 2911 | "@img/sharp-darwin-x64": "0.33.4", 2912 | "@img/sharp-libvips-darwin-arm64": "1.0.2", 2913 | "@img/sharp-libvips-darwin-x64": "1.0.2", 2914 | "@img/sharp-libvips-linux-arm": "1.0.2", 2915 | "@img/sharp-libvips-linux-arm64": "1.0.2", 2916 | "@img/sharp-libvips-linux-s390x": "1.0.2", 2917 | "@img/sharp-libvips-linux-x64": "1.0.2", 2918 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.2", 2919 | "@img/sharp-libvips-linuxmusl-x64": "1.0.2", 2920 | "@img/sharp-linux-arm": "0.33.4", 2921 | "@img/sharp-linux-arm64": "0.33.4", 2922 | "@img/sharp-linux-s390x": "0.33.4", 2923 | "@img/sharp-linux-x64": "0.33.4", 2924 | "@img/sharp-linuxmusl-arm64": "0.33.4", 2925 | "@img/sharp-linuxmusl-x64": "0.33.4", 2926 | "@img/sharp-wasm32": "0.33.4", 2927 | "@img/sharp-win32-ia32": "0.33.4", 2928 | "@img/sharp-win32-x64": "0.33.4", 2929 | "color": "^4.2.3", 2930 | "detect-libc": "^2.0.3", 2931 | "semver": "^7.6.0" 2932 | } 2933 | }, 2934 | "shebang-command": { 2935 | "version": "2.0.0", 2936 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2937 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2938 | "dev": true, 2939 | "requires": { 2940 | "shebang-regex": "^3.0.0" 2941 | } 2942 | }, 2943 | "shebang-regex": { 2944 | "version": "3.0.0", 2945 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2946 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2947 | "dev": true 2948 | }, 2949 | "simple-swizzle": { 2950 | "version": "0.2.2", 2951 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2952 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 2953 | "requires": { 2954 | "is-arrayish": "^0.3.1" 2955 | } 2956 | }, 2957 | "strip-ansi": { 2958 | "version": "6.0.1", 2959 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2960 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2961 | "dev": true, 2962 | "requires": { 2963 | "ansi-regex": "^5.0.1" 2964 | } 2965 | }, 2966 | "strip-json-comments": { 2967 | "version": "3.1.1", 2968 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2969 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2970 | "dev": true 2971 | }, 2972 | "text-table": { 2973 | "version": "0.2.0", 2974 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2975 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", 2976 | "dev": true 2977 | }, 2978 | "ts-mixer": { 2979 | "version": "6.0.4", 2980 | "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz", 2981 | "integrity": "sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==" 2982 | }, 2983 | "tslib": { 2984 | "version": "2.6.2", 2985 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 2986 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 2987 | }, 2988 | "type-check": { 2989 | "version": "0.4.0", 2990 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2991 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2992 | "dev": true, 2993 | "requires": { 2994 | "prelude-ls": "^1.2.1" 2995 | } 2996 | }, 2997 | "undici": { 2998 | "version": "6.13.0", 2999 | "resolved": "https://registry.npmjs.org/undici/-/undici-6.13.0.tgz", 3000 | "integrity": "sha512-Q2rtqmZWrbP8nePMq7mOJIN98M0fYvSgV89vwl/BQRT4mDOeY2GXZngfGpcBBhtky3woM7G24wZV3Q304Bv6cw==" 3001 | }, 3002 | "undici-types": { 3003 | "version": "5.26.5", 3004 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3005 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" 3006 | }, 3007 | "uri-js": { 3008 | "version": "4.4.1", 3009 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3010 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3011 | "dev": true, 3012 | "requires": { 3013 | "punycode": "^2.1.0" 3014 | } 3015 | }, 3016 | "utf-8-validate": { 3017 | "version": "6.0.3", 3018 | "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.3.tgz", 3019 | "integrity": "sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==", 3020 | "requires": { 3021 | "node-gyp-build": "^4.3.0" 3022 | } 3023 | }, 3024 | "which": { 3025 | "version": "2.0.2", 3026 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3027 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3028 | "dev": true, 3029 | "requires": { 3030 | "isexe": "^2.0.0" 3031 | } 3032 | }, 3033 | "word-wrap": { 3034 | "version": "1.2.5", 3035 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3036 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3037 | "dev": true 3038 | }, 3039 | "ws": { 3040 | "version": "8.17.0", 3041 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", 3042 | "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", 3043 | "requires": {} 3044 | }, 3045 | "yocto-queue": { 3046 | "version": "0.1.0", 3047 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3048 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3049 | "dev": true 3050 | }, 3051 | "zlib-sync": { 3052 | "version": "0.1.9", 3053 | "resolved": "https://registry.npmjs.org/zlib-sync/-/zlib-sync-0.1.9.tgz", 3054 | "integrity": "sha512-DinB43xCjVwIBDpaIvQqHbmDsnYnSt6HJ/yiB2MZQGTqgPcwBSZqLkimXwK8BvdjQ/MaZysb5uEenImncqvCqQ==", 3055 | "requires": { 3056 | "nan": "^2.18.0" 3057 | } 3058 | } 3059 | } 3060 | } 3061 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "discord-readme-badge", 3 | "version": "1.0.6", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Angel (Zyplos)", 10 | "dependencies": { 11 | "bufferutil": "^4.0.8", 12 | "discord.js": "^14.15.2", 13 | "dotenv": "^16.4.5", 14 | "sharp": "^0.33.4", 15 | "utf-8-validate": "^6.0.3", 16 | "zlib-sync": "^0.1.9" 17 | }, 18 | "license": "Apache-2.0", 19 | "devDependencies": { 20 | "eslint": "^9.2.0" 21 | }, 22 | "engines": { 23 | "node": ">=20.0.0" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Card.js: -------------------------------------------------------------------------------- 1 | const statusColors = { 2 | online: "#43b581", 3 | idle: "#faa61a", 4 | dnd: "#f04747", 5 | streaming: "#6441a5", 6 | offline: "#747f8d", 7 | }; 8 | 9 | const statusNames = { 10 | online: "Online", 11 | idle: "Away", 12 | dnd: "Do Not Disturb", 13 | streaming: "Streaming", 14 | offline: "Offline", 15 | }; 16 | 17 | /* 18 | username: "Zyplos", 19 | pfpImage: 20 | "https://cdn.discordapp.com/avatars/204620732259368960/aafb013acb7c66b9084dfc941c9193fd.png?size=512", 21 | status: "dnd", 22 | game: "League of Legends", 23 | gameType: "Playing", 24 | details: "Summoner's Rift (Normal)", 25 | detailsImage: 26 | "https://cdn.discordapp.com/app-assets/383226320970055681/808841241142755358.png", 27 | state: "Teemo", 28 | */ 29 | class Card { 30 | constructor({ 31 | username, 32 | pfpImage, 33 | status, 34 | game, 35 | gameType, 36 | details, 37 | detailsImage, 38 | state, 39 | height, 40 | }) { 41 | this.username = username; 42 | this.pfpImage = pfpImage; 43 | this.status = status; 44 | this.game = game; 45 | this.gameType = gameType; 46 | this.details = details; 47 | this.detailsImage = detailsImage; 48 | this.state = state; 49 | this.height = height; 50 | 51 | this.statusColor = statusColors[status]; 52 | 53 | if (!this.game) { 54 | this.gameType = statusNames[status]; 55 | } 56 | } 57 | 58 | render() { 59 | return ` 60 | 63 | 64 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | ${ 129 | this.username 130 | } 131 | 132 | ${this.gameType} ${ 133 | this.game 134 | } 135 | 136 | 137 | 138 | 139 | ${ 140 | this.pfpImage 141 | ? `` 142 | : `` 143 | } 144 | 145 | 146 | 147 | 148 | 149 | 154 | 155 | 156 | 157 | ${ 158 | this.detailsImage 159 | ? `` 160 | : '' 161 | } 162 | 163 | 164 | 165 | ${this.details} 166 | 167 | 168 | ${this.state} 169 | 170 | 171 | `; 172 | } 173 | // 174 | } 175 | 176 | module.exports = Card; 177 | -------------------------------------------------------------------------------- /src/allowlistGames.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | "visual studio code", 3 | "visual studio", 4 | "code", 5 | "atom", 6 | "sublime text", 7 | "adobe illustrator", 8 | "adobe photoshop", 9 | "adobe xd", 10 | "adobe dimension", 11 | "adobe after effects", 12 | "vim", 13 | "neovim", 14 | "blender", 15 | "autodesk 3ds max", 16 | "aseprite", 17 | "intellij idea ultimate", 18 | "intellij idea community", 19 | "phpstorm", 20 | "webstorm", 21 | "pycharm", 22 | "writerside", 23 | "jetbrains ide", 24 | "youtube music", 25 | "android studio", 26 | ]; 27 | -------------------------------------------------------------------------------- /src/assets/badge.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/badge.ai -------------------------------------------------------------------------------- /src/assets/badgebanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/badgebanner.png -------------------------------------------------------------------------------- /src/assets/discord-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | $ zy --plos 68 | 69 | Playing Visual Studio Code 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | Editing presenceFetcher.js 88 | 89 | 90 | Workspace: discord-readme-badge 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /src/assets/discord-card1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/discord-card1.png -------------------------------------------------------------------------------- /src/assets/discord-card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/discord-card2.png -------------------------------------------------------------------------------- /src/assets/example-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/example-game.png -------------------------------------------------------------------------------- /src/assets/example-nogame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/example-nogame.png -------------------------------------------------------------------------------- /src/assets/example-richpresence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/example-richpresence.png -------------------------------------------------------------------------------- /src/assets/example-spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyplos/discord-readme-badge/d5c1588b3f6b1ac885b14a995b544747908f0864/src/assets/example-spotify.png --------------------------------------------------------------------------------