├── .gitignore ├── LICENSE ├── README.md ├── dist-zip └── plugin.zip ├── manifest.json ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── src ├── index.tsx ├── submodules │ ├── embedder.tsx │ ├── nerdsniper.tsx │ ├── pets.tsx │ └── settings.tsx └── utils │ ├── caidoapi.ts │ └── types.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🐵 The Primate Pack 2 | 3 | A suite of plugins to add your own touch to Caido. The Primate Pack currently has 3 mini-plugins. After modifying your settings, you may need to reload Caido. 4 | 5 | ## Caido Pets 6 | Add a GIF to the sidebar. The default is a sleeping cat. You can configure the URL of the GIF as well as its dimensions in the Settings menu. 7 | 8 | ## Nerd Sniper 9 | Send requests to your friends directly via Discord webhooks! 10 | 11 | ### Usage 12 | 1. Ask your friend to provide you with a webhook URL for a text channel in their server. 13 | 2. Go to the Primate Pack settings, and add their Name and URL. 14 | 3. Save your settings, and visit any request tab. 15 | 4. Right click -> Plugins -> Send to (Name). 16 | 5. Done! Your friend will now receive the request in their text channel, with the `Cookie` and `Authorization` headers removed. 17 | 18 | ## Embedder 19 | Embed any page in an iframe in Caido! You can change the name of the tab in the sidebar, as well as the URL of the page that is embedded. 20 | 21 | ### Suggested Usage 22 | If you run some private tooling such as XSSHunter, put it behind your own VPN, or add a password. Then, set the URL for it in the Primate Pack settings and you're good to go! 23 | 24 | ## Roadmap 25 | - Custom dimensions for Embedder (in the next few days). 26 | - Persistent settings between updates. 27 | - Slack webhook support for Nerd Sniper. 28 | - Reload Caido after saving settings. 29 | - Granular enable/disable of specific plugin features. 30 | 31 | ## Known Issues 32 | - Please open issues if you have any problems. 33 | 34 | ## Thanks 35 | - [Iieitaimus](https://x.com/iieitaimus) for helping me squash some bugs. 36 | -------------------------------------------------------------------------------- /dist-zip/plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmonke/PrimatePack/f98bfb488cd53c32670836c01614f377fa852755/dist-zip/plugin.zip -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "primatepack", 3 | "name": "The Primate Pack", 4 | "version": "2.0.0", 5 | "description": "A suite of plugins to add your own touch to Caido :)", 6 | "author": { 7 | "name": "Monke", 8 | "email": "monke@wearehackerone.com", 9 | "url": "https://www.monke.ie" 10 | }, 11 | "plugins": [ 12 | { 13 | "kind": "frontend", 14 | "id": "caido-primate-pack", 15 | "name": "Primate Pack", 16 | "entrypoint": "frontend/script.js", 17 | "style": "frontend/style.css" 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "primatepack", 3 | "version": "2.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "primatepack", 9 | "version": "2.0.0", 10 | "license": "CC0-1.0", 11 | "dependencies": { 12 | "@caido/sdk-frontend": "0.37.0", 13 | "@radix-ui/react-slot": "^1.0.2", 14 | "class-variance-authority": "^0.7.0", 15 | "clsx": "^2.1.1", 16 | "lucide-react": "^0.395.0", 17 | "react-dom": "^18.3.1", 18 | "tailwind-merge": "^2.3.0", 19 | "tailwindcss-animate": "^1.0.7" 20 | }, 21 | "devDependencies": { 22 | "@babel/core": "^7.24.7", 23 | "@types/node": "^20.14.5", 24 | "@types/react": "^18.3.3", 25 | "@types/react-dom": "^18.3.0", 26 | "@vitejs/plugin-react": "^4.3.1", 27 | "autoprefixer": "^10.4.19", 28 | "postcss": "^8.4.38", 29 | "tailwindcss": "^3.4.4", 30 | "typescript": "5.4.3", 31 | "vite": "5.2.7", 32 | "vite-plugin-env-compatible": "^2.0.1", 33 | "vite-plugin-static-copy": "1.0.3", 34 | "vite-plugin-zip-pack": "1.2.3" 35 | } 36 | }, 37 | "node_modules/@alloc/quick-lru": { 38 | "version": "5.2.0", 39 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 40 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 41 | "license": "MIT", 42 | "engines": { 43 | "node": ">=10" 44 | }, 45 | "funding": { 46 | "url": "https://github.com/sponsors/sindresorhus" 47 | } 48 | }, 49 | "node_modules/@ampproject/remapping": { 50 | "version": "2.3.0", 51 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 52 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 53 | "dev": true, 54 | "license": "Apache-2.0", 55 | "dependencies": { 56 | "@jridgewell/gen-mapping": "^0.3.5", 57 | "@jridgewell/trace-mapping": "^0.3.24" 58 | }, 59 | "engines": { 60 | "node": ">=6.0.0" 61 | } 62 | }, 63 | "node_modules/@babel/code-frame": { 64 | "version": "7.24.7", 65 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", 66 | "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", 67 | "dev": true, 68 | "license": "MIT", 69 | "dependencies": { 70 | "@babel/highlight": "^7.24.7", 71 | "picocolors": "^1.0.0" 72 | }, 73 | "engines": { 74 | "node": ">=6.9.0" 75 | } 76 | }, 77 | "node_modules/@babel/compat-data": { 78 | "version": "7.24.7", 79 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", 80 | "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", 81 | "dev": true, 82 | "license": "MIT", 83 | "engines": { 84 | "node": ">=6.9.0" 85 | } 86 | }, 87 | "node_modules/@babel/core": { 88 | "version": "7.24.7", 89 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", 90 | "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", 91 | "dev": true, 92 | "license": "MIT", 93 | "dependencies": { 94 | "@ampproject/remapping": "^2.2.0", 95 | "@babel/code-frame": "^7.24.7", 96 | "@babel/generator": "^7.24.7", 97 | "@babel/helper-compilation-targets": "^7.24.7", 98 | "@babel/helper-module-transforms": "^7.24.7", 99 | "@babel/helpers": "^7.24.7", 100 | "@babel/parser": "^7.24.7", 101 | "@babel/template": "^7.24.7", 102 | "@babel/traverse": "^7.24.7", 103 | "@babel/types": "^7.24.7", 104 | "convert-source-map": "^2.0.0", 105 | "debug": "^4.1.0", 106 | "gensync": "^1.0.0-beta.2", 107 | "json5": "^2.2.3", 108 | "semver": "^6.3.1" 109 | }, 110 | "engines": { 111 | "node": ">=6.9.0" 112 | }, 113 | "funding": { 114 | "type": "opencollective", 115 | "url": "https://opencollective.com/babel" 116 | } 117 | }, 118 | "node_modules/@babel/generator": { 119 | "version": "7.24.7", 120 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", 121 | "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", 122 | "dev": true, 123 | "license": "MIT", 124 | "dependencies": { 125 | "@babel/types": "^7.24.7", 126 | "@jridgewell/gen-mapping": "^0.3.5", 127 | "@jridgewell/trace-mapping": "^0.3.25", 128 | "jsesc": "^2.5.1" 129 | }, 130 | "engines": { 131 | "node": ">=6.9.0" 132 | } 133 | }, 134 | "node_modules/@babel/helper-compilation-targets": { 135 | "version": "7.24.7", 136 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", 137 | "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", 138 | "dev": true, 139 | "license": "MIT", 140 | "dependencies": { 141 | "@babel/compat-data": "^7.24.7", 142 | "@babel/helper-validator-option": "^7.24.7", 143 | "browserslist": "^4.22.2", 144 | "lru-cache": "^5.1.1", 145 | "semver": "^6.3.1" 146 | }, 147 | "engines": { 148 | "node": ">=6.9.0" 149 | } 150 | }, 151 | "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { 152 | "version": "5.1.1", 153 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 154 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 155 | "dev": true, 156 | "license": "ISC", 157 | "dependencies": { 158 | "yallist": "^3.0.2" 159 | } 160 | }, 161 | "node_modules/@babel/helper-environment-visitor": { 162 | "version": "7.24.7", 163 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", 164 | "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", 165 | "dev": true, 166 | "license": "MIT", 167 | "dependencies": { 168 | "@babel/types": "^7.24.7" 169 | }, 170 | "engines": { 171 | "node": ">=6.9.0" 172 | } 173 | }, 174 | "node_modules/@babel/helper-function-name": { 175 | "version": "7.24.7", 176 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", 177 | "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", 178 | "dev": true, 179 | "license": "MIT", 180 | "dependencies": { 181 | "@babel/template": "^7.24.7", 182 | "@babel/types": "^7.24.7" 183 | }, 184 | "engines": { 185 | "node": ">=6.9.0" 186 | } 187 | }, 188 | "node_modules/@babel/helper-hoist-variables": { 189 | "version": "7.24.7", 190 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", 191 | "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", 192 | "dev": true, 193 | "license": "MIT", 194 | "dependencies": { 195 | "@babel/types": "^7.24.7" 196 | }, 197 | "engines": { 198 | "node": ">=6.9.0" 199 | } 200 | }, 201 | "node_modules/@babel/helper-module-imports": { 202 | "version": "7.24.7", 203 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", 204 | "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", 205 | "dev": true, 206 | "license": "MIT", 207 | "dependencies": { 208 | "@babel/traverse": "^7.24.7", 209 | "@babel/types": "^7.24.7" 210 | }, 211 | "engines": { 212 | "node": ">=6.9.0" 213 | } 214 | }, 215 | "node_modules/@babel/helper-module-transforms": { 216 | "version": "7.24.7", 217 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", 218 | "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", 219 | "dev": true, 220 | "license": "MIT", 221 | "dependencies": { 222 | "@babel/helper-environment-visitor": "^7.24.7", 223 | "@babel/helper-module-imports": "^7.24.7", 224 | "@babel/helper-simple-access": "^7.24.7", 225 | "@babel/helper-split-export-declaration": "^7.24.7", 226 | "@babel/helper-validator-identifier": "^7.24.7" 227 | }, 228 | "engines": { 229 | "node": ">=6.9.0" 230 | }, 231 | "peerDependencies": { 232 | "@babel/core": "^7.0.0" 233 | } 234 | }, 235 | "node_modules/@babel/helper-plugin-utils": { 236 | "version": "7.24.7", 237 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", 238 | "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", 239 | "dev": true, 240 | "license": "MIT", 241 | "engines": { 242 | "node": ">=6.9.0" 243 | } 244 | }, 245 | "node_modules/@babel/helper-simple-access": { 246 | "version": "7.24.7", 247 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", 248 | "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", 249 | "dev": true, 250 | "license": "MIT", 251 | "dependencies": { 252 | "@babel/traverse": "^7.24.7", 253 | "@babel/types": "^7.24.7" 254 | }, 255 | "engines": { 256 | "node": ">=6.9.0" 257 | } 258 | }, 259 | "node_modules/@babel/helper-split-export-declaration": { 260 | "version": "7.24.7", 261 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", 262 | "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", 263 | "dev": true, 264 | "license": "MIT", 265 | "dependencies": { 266 | "@babel/types": "^7.24.7" 267 | }, 268 | "engines": { 269 | "node": ">=6.9.0" 270 | } 271 | }, 272 | "node_modules/@babel/helper-string-parser": { 273 | "version": "7.24.7", 274 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", 275 | "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", 276 | "dev": true, 277 | "license": "MIT", 278 | "engines": { 279 | "node": ">=6.9.0" 280 | } 281 | }, 282 | "node_modules/@babel/helper-validator-identifier": { 283 | "version": "7.24.7", 284 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", 285 | "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", 286 | "dev": true, 287 | "license": "MIT", 288 | "engines": { 289 | "node": ">=6.9.0" 290 | } 291 | }, 292 | "node_modules/@babel/helper-validator-option": { 293 | "version": "7.24.7", 294 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", 295 | "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", 296 | "dev": true, 297 | "license": "MIT", 298 | "engines": { 299 | "node": ">=6.9.0" 300 | } 301 | }, 302 | "node_modules/@babel/helpers": { 303 | "version": "7.24.7", 304 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", 305 | "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", 306 | "dev": true, 307 | "license": "MIT", 308 | "dependencies": { 309 | "@babel/template": "^7.24.7", 310 | "@babel/types": "^7.24.7" 311 | }, 312 | "engines": { 313 | "node": ">=6.9.0" 314 | } 315 | }, 316 | "node_modules/@babel/highlight": { 317 | "version": "7.24.7", 318 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", 319 | "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", 320 | "dev": true, 321 | "license": "MIT", 322 | "dependencies": { 323 | "@babel/helper-validator-identifier": "^7.24.7", 324 | "chalk": "^2.4.2", 325 | "js-tokens": "^4.0.0", 326 | "picocolors": "^1.0.0" 327 | }, 328 | "engines": { 329 | "node": ">=6.9.0" 330 | } 331 | }, 332 | "node_modules/@babel/parser": { 333 | "version": "7.24.7", 334 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", 335 | "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", 336 | "dev": true, 337 | "license": "MIT", 338 | "bin": { 339 | "parser": "bin/babel-parser.js" 340 | }, 341 | "engines": { 342 | "node": ">=6.0.0" 343 | } 344 | }, 345 | "node_modules/@babel/plugin-transform-react-jsx-self": { 346 | "version": "7.24.7", 347 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", 348 | "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", 349 | "dev": true, 350 | "license": "MIT", 351 | "dependencies": { 352 | "@babel/helper-plugin-utils": "^7.24.7" 353 | }, 354 | "engines": { 355 | "node": ">=6.9.0" 356 | }, 357 | "peerDependencies": { 358 | "@babel/core": "^7.0.0-0" 359 | } 360 | }, 361 | "node_modules/@babel/plugin-transform-react-jsx-source": { 362 | "version": "7.24.7", 363 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", 364 | "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", 365 | "dev": true, 366 | "license": "MIT", 367 | "dependencies": { 368 | "@babel/helper-plugin-utils": "^7.24.7" 369 | }, 370 | "engines": { 371 | "node": ">=6.9.0" 372 | }, 373 | "peerDependencies": { 374 | "@babel/core": "^7.0.0-0" 375 | } 376 | }, 377 | "node_modules/@babel/runtime": { 378 | "version": "7.24.7", 379 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz", 380 | "integrity": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==", 381 | "license": "MIT", 382 | "dependencies": { 383 | "regenerator-runtime": "^0.14.0" 384 | }, 385 | "engines": { 386 | "node": ">=6.9.0" 387 | } 388 | }, 389 | "node_modules/@babel/template": { 390 | "version": "7.24.7", 391 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", 392 | "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", 393 | "dev": true, 394 | "license": "MIT", 395 | "dependencies": { 396 | "@babel/code-frame": "^7.24.7", 397 | "@babel/parser": "^7.24.7", 398 | "@babel/types": "^7.24.7" 399 | }, 400 | "engines": { 401 | "node": ">=6.9.0" 402 | } 403 | }, 404 | "node_modules/@babel/traverse": { 405 | "version": "7.24.7", 406 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", 407 | "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", 408 | "dev": true, 409 | "license": "MIT", 410 | "dependencies": { 411 | "@babel/code-frame": "^7.24.7", 412 | "@babel/generator": "^7.24.7", 413 | "@babel/helper-environment-visitor": "^7.24.7", 414 | "@babel/helper-function-name": "^7.24.7", 415 | "@babel/helper-hoist-variables": "^7.24.7", 416 | "@babel/helper-split-export-declaration": "^7.24.7", 417 | "@babel/parser": "^7.24.7", 418 | "@babel/types": "^7.24.7", 419 | "debug": "^4.3.1", 420 | "globals": "^11.1.0" 421 | }, 422 | "engines": { 423 | "node": ">=6.9.0" 424 | } 425 | }, 426 | "node_modules/@babel/types": { 427 | "version": "7.24.7", 428 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", 429 | "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", 430 | "dev": true, 431 | "license": "MIT", 432 | "dependencies": { 433 | "@babel/helper-string-parser": "^7.24.7", 434 | "@babel/helper-validator-identifier": "^7.24.7", 435 | "to-fast-properties": "^2.0.0" 436 | }, 437 | "engines": { 438 | "node": ">=6.9.0" 439 | } 440 | }, 441 | "node_modules/@caido/sdk-frontend": { 442 | "version": "0.37.0", 443 | "resolved": "https://registry.npmjs.org/@caido/sdk-frontend/-/sdk-frontend-0.37.0.tgz", 444 | "integrity": "sha512-+rhS7IPihH5si5+RBtT+KZiBu0kh0zWKnj6Wxx03tX5NgJv+TpVDWnSDvCxXph5rVh+HExtbVyiYEUKxyZ6nrQ==", 445 | "license": "MIT" 446 | }, 447 | "node_modules/@esbuild/aix-ppc64": { 448 | "version": "0.20.2", 449 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", 450 | "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", 451 | "cpu": [ 452 | "ppc64" 453 | ], 454 | "dev": true, 455 | "optional": true, 456 | "os": [ 457 | "aix" 458 | ], 459 | "engines": { 460 | "node": ">=12" 461 | } 462 | }, 463 | "node_modules/@esbuild/android-arm": { 464 | "version": "0.20.2", 465 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", 466 | "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", 467 | "cpu": [ 468 | "arm" 469 | ], 470 | "dev": true, 471 | "optional": true, 472 | "os": [ 473 | "android" 474 | ], 475 | "engines": { 476 | "node": ">=12" 477 | } 478 | }, 479 | "node_modules/@esbuild/android-arm64": { 480 | "version": "0.20.2", 481 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", 482 | "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", 483 | "cpu": [ 484 | "arm64" 485 | ], 486 | "dev": true, 487 | "optional": true, 488 | "os": [ 489 | "android" 490 | ], 491 | "engines": { 492 | "node": ">=12" 493 | } 494 | }, 495 | "node_modules/@esbuild/android-x64": { 496 | "version": "0.20.2", 497 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", 498 | "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", 499 | "cpu": [ 500 | "x64" 501 | ], 502 | "dev": true, 503 | "optional": true, 504 | "os": [ 505 | "android" 506 | ], 507 | "engines": { 508 | "node": ">=12" 509 | } 510 | }, 511 | "node_modules/@esbuild/darwin-arm64": { 512 | "version": "0.20.2", 513 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", 514 | "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", 515 | "cpu": [ 516 | "arm64" 517 | ], 518 | "dev": true, 519 | "optional": true, 520 | "os": [ 521 | "darwin" 522 | ], 523 | "engines": { 524 | "node": ">=12" 525 | } 526 | }, 527 | "node_modules/@esbuild/darwin-x64": { 528 | "version": "0.20.2", 529 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", 530 | "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", 531 | "cpu": [ 532 | "x64" 533 | ], 534 | "dev": true, 535 | "optional": true, 536 | "os": [ 537 | "darwin" 538 | ], 539 | "engines": { 540 | "node": ">=12" 541 | } 542 | }, 543 | "node_modules/@esbuild/freebsd-arm64": { 544 | "version": "0.20.2", 545 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", 546 | "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", 547 | "cpu": [ 548 | "arm64" 549 | ], 550 | "dev": true, 551 | "optional": true, 552 | "os": [ 553 | "freebsd" 554 | ], 555 | "engines": { 556 | "node": ">=12" 557 | } 558 | }, 559 | "node_modules/@esbuild/freebsd-x64": { 560 | "version": "0.20.2", 561 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", 562 | "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", 563 | "cpu": [ 564 | "x64" 565 | ], 566 | "dev": true, 567 | "optional": true, 568 | "os": [ 569 | "freebsd" 570 | ], 571 | "engines": { 572 | "node": ">=12" 573 | } 574 | }, 575 | "node_modules/@esbuild/linux-arm": { 576 | "version": "0.20.2", 577 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", 578 | "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", 579 | "cpu": [ 580 | "arm" 581 | ], 582 | "dev": true, 583 | "optional": true, 584 | "os": [ 585 | "linux" 586 | ], 587 | "engines": { 588 | "node": ">=12" 589 | } 590 | }, 591 | "node_modules/@esbuild/linux-arm64": { 592 | "version": "0.20.2", 593 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", 594 | "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", 595 | "cpu": [ 596 | "arm64" 597 | ], 598 | "dev": true, 599 | "optional": true, 600 | "os": [ 601 | "linux" 602 | ], 603 | "engines": { 604 | "node": ">=12" 605 | } 606 | }, 607 | "node_modules/@esbuild/linux-ia32": { 608 | "version": "0.20.2", 609 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", 610 | "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", 611 | "cpu": [ 612 | "ia32" 613 | ], 614 | "dev": true, 615 | "optional": true, 616 | "os": [ 617 | "linux" 618 | ], 619 | "engines": { 620 | "node": ">=12" 621 | } 622 | }, 623 | "node_modules/@esbuild/linux-loong64": { 624 | "version": "0.20.2", 625 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", 626 | "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", 627 | "cpu": [ 628 | "loong64" 629 | ], 630 | "dev": true, 631 | "optional": true, 632 | "os": [ 633 | "linux" 634 | ], 635 | "engines": { 636 | "node": ">=12" 637 | } 638 | }, 639 | "node_modules/@esbuild/linux-mips64el": { 640 | "version": "0.20.2", 641 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", 642 | "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", 643 | "cpu": [ 644 | "mips64el" 645 | ], 646 | "dev": true, 647 | "optional": true, 648 | "os": [ 649 | "linux" 650 | ], 651 | "engines": { 652 | "node": ">=12" 653 | } 654 | }, 655 | "node_modules/@esbuild/linux-ppc64": { 656 | "version": "0.20.2", 657 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", 658 | "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", 659 | "cpu": [ 660 | "ppc64" 661 | ], 662 | "dev": true, 663 | "optional": true, 664 | "os": [ 665 | "linux" 666 | ], 667 | "engines": { 668 | "node": ">=12" 669 | } 670 | }, 671 | "node_modules/@esbuild/linux-riscv64": { 672 | "version": "0.20.2", 673 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", 674 | "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", 675 | "cpu": [ 676 | "riscv64" 677 | ], 678 | "dev": true, 679 | "optional": true, 680 | "os": [ 681 | "linux" 682 | ], 683 | "engines": { 684 | "node": ">=12" 685 | } 686 | }, 687 | "node_modules/@esbuild/linux-s390x": { 688 | "version": "0.20.2", 689 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", 690 | "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", 691 | "cpu": [ 692 | "s390x" 693 | ], 694 | "dev": true, 695 | "optional": true, 696 | "os": [ 697 | "linux" 698 | ], 699 | "engines": { 700 | "node": ">=12" 701 | } 702 | }, 703 | "node_modules/@esbuild/linux-x64": { 704 | "version": "0.20.2", 705 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", 706 | "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", 707 | "cpu": [ 708 | "x64" 709 | ], 710 | "dev": true, 711 | "optional": true, 712 | "os": [ 713 | "linux" 714 | ], 715 | "engines": { 716 | "node": ">=12" 717 | } 718 | }, 719 | "node_modules/@esbuild/netbsd-x64": { 720 | "version": "0.20.2", 721 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", 722 | "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", 723 | "cpu": [ 724 | "x64" 725 | ], 726 | "dev": true, 727 | "optional": true, 728 | "os": [ 729 | "netbsd" 730 | ], 731 | "engines": { 732 | "node": ">=12" 733 | } 734 | }, 735 | "node_modules/@esbuild/openbsd-x64": { 736 | "version": "0.20.2", 737 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", 738 | "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", 739 | "cpu": [ 740 | "x64" 741 | ], 742 | "dev": true, 743 | "optional": true, 744 | "os": [ 745 | "openbsd" 746 | ], 747 | "engines": { 748 | "node": ">=12" 749 | } 750 | }, 751 | "node_modules/@esbuild/sunos-x64": { 752 | "version": "0.20.2", 753 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", 754 | "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", 755 | "cpu": [ 756 | "x64" 757 | ], 758 | "dev": true, 759 | "optional": true, 760 | "os": [ 761 | "sunos" 762 | ], 763 | "engines": { 764 | "node": ">=12" 765 | } 766 | }, 767 | "node_modules/@esbuild/win32-arm64": { 768 | "version": "0.20.2", 769 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", 770 | "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", 771 | "cpu": [ 772 | "arm64" 773 | ], 774 | "dev": true, 775 | "optional": true, 776 | "os": [ 777 | "win32" 778 | ], 779 | "engines": { 780 | "node": ">=12" 781 | } 782 | }, 783 | "node_modules/@esbuild/win32-ia32": { 784 | "version": "0.20.2", 785 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", 786 | "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", 787 | "cpu": [ 788 | "ia32" 789 | ], 790 | "dev": true, 791 | "optional": true, 792 | "os": [ 793 | "win32" 794 | ], 795 | "engines": { 796 | "node": ">=12" 797 | } 798 | }, 799 | "node_modules/@esbuild/win32-x64": { 800 | "version": "0.20.2", 801 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", 802 | "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", 803 | "cpu": [ 804 | "x64" 805 | ], 806 | "dev": true, 807 | "optional": true, 808 | "os": [ 809 | "win32" 810 | ], 811 | "engines": { 812 | "node": ">=12" 813 | } 814 | }, 815 | "node_modules/@isaacs/cliui": { 816 | "version": "8.0.2", 817 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 818 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 819 | "license": "ISC", 820 | "dependencies": { 821 | "string-width": "^5.1.2", 822 | "string-width-cjs": "npm:string-width@^4.2.0", 823 | "strip-ansi": "^7.0.1", 824 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 825 | "wrap-ansi": "^8.1.0", 826 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 827 | }, 828 | "engines": { 829 | "node": ">=12" 830 | } 831 | }, 832 | "node_modules/@jridgewell/gen-mapping": { 833 | "version": "0.3.5", 834 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 835 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 836 | "license": "MIT", 837 | "dependencies": { 838 | "@jridgewell/set-array": "^1.2.1", 839 | "@jridgewell/sourcemap-codec": "^1.4.10", 840 | "@jridgewell/trace-mapping": "^0.3.24" 841 | }, 842 | "engines": { 843 | "node": ">=6.0.0" 844 | } 845 | }, 846 | "node_modules/@jridgewell/resolve-uri": { 847 | "version": "3.1.2", 848 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 849 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 850 | "license": "MIT", 851 | "engines": { 852 | "node": ">=6.0.0" 853 | } 854 | }, 855 | "node_modules/@jridgewell/set-array": { 856 | "version": "1.2.1", 857 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 858 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 859 | "license": "MIT", 860 | "engines": { 861 | "node": ">=6.0.0" 862 | } 863 | }, 864 | "node_modules/@jridgewell/sourcemap-codec": { 865 | "version": "1.4.15", 866 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 867 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 868 | "license": "MIT" 869 | }, 870 | "node_modules/@jridgewell/trace-mapping": { 871 | "version": "0.3.25", 872 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 873 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 874 | "license": "MIT", 875 | "dependencies": { 876 | "@jridgewell/resolve-uri": "^3.1.0", 877 | "@jridgewell/sourcemap-codec": "^1.4.14" 878 | } 879 | }, 880 | "node_modules/@nodelib/fs.scandir": { 881 | "version": "2.1.5", 882 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 883 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 884 | "license": "MIT", 885 | "dependencies": { 886 | "@nodelib/fs.stat": "2.0.5", 887 | "run-parallel": "^1.1.9" 888 | }, 889 | "engines": { 890 | "node": ">= 8" 891 | } 892 | }, 893 | "node_modules/@nodelib/fs.stat": { 894 | "version": "2.0.5", 895 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 896 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 897 | "license": "MIT", 898 | "engines": { 899 | "node": ">= 8" 900 | } 901 | }, 902 | "node_modules/@nodelib/fs.walk": { 903 | "version": "1.2.8", 904 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 905 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 906 | "license": "MIT", 907 | "dependencies": { 908 | "@nodelib/fs.scandir": "2.1.5", 909 | "fastq": "^1.6.0" 910 | }, 911 | "engines": { 912 | "node": ">= 8" 913 | } 914 | }, 915 | "node_modules/@pkgjs/parseargs": { 916 | "version": "0.11.0", 917 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 918 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 919 | "license": "MIT", 920 | "optional": true, 921 | "engines": { 922 | "node": ">=14" 923 | } 924 | }, 925 | "node_modules/@radix-ui/react-compose-refs": { 926 | "version": "1.0.1", 927 | "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", 928 | "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", 929 | "license": "MIT", 930 | "dependencies": { 931 | "@babel/runtime": "^7.13.10" 932 | }, 933 | "peerDependencies": { 934 | "@types/react": "*", 935 | "react": "^16.8 || ^17.0 || ^18.0" 936 | }, 937 | "peerDependenciesMeta": { 938 | "@types/react": { 939 | "optional": true 940 | } 941 | } 942 | }, 943 | "node_modules/@radix-ui/react-slot": { 944 | "version": "1.0.2", 945 | "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", 946 | "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", 947 | "license": "MIT", 948 | "dependencies": { 949 | "@babel/runtime": "^7.13.10", 950 | "@radix-ui/react-compose-refs": "1.0.1" 951 | }, 952 | "peerDependencies": { 953 | "@types/react": "*", 954 | "react": "^16.8 || ^17.0 || ^18.0" 955 | }, 956 | "peerDependenciesMeta": { 957 | "@types/react": { 958 | "optional": true 959 | } 960 | } 961 | }, 962 | "node_modules/@rollup/rollup-android-arm-eabi": { 963 | "version": "4.13.2", 964 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.2.tgz", 965 | "integrity": "sha512-3XFIDKWMFZrMnao1mJhnOT1h2g0169Os848NhhmGweEcfJ4rCi+3yMCOLG4zA61rbJdkcrM/DjVZm9Hg5p5w7g==", 966 | "cpu": [ 967 | "arm" 968 | ], 969 | "dev": true, 970 | "optional": true, 971 | "os": [ 972 | "android" 973 | ] 974 | }, 975 | "node_modules/@rollup/rollup-android-arm64": { 976 | "version": "4.13.2", 977 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.2.tgz", 978 | "integrity": "sha512-GdxxXbAuM7Y/YQM9/TwwP+L0omeE/lJAR1J+olu36c3LqqZEBdsIWeQ91KBe6nxwOnb06Xh7JS2U5ooWU5/LgQ==", 979 | "cpu": [ 980 | "arm64" 981 | ], 982 | "dev": true, 983 | "optional": true, 984 | "os": [ 985 | "android" 986 | ] 987 | }, 988 | "node_modules/@rollup/rollup-darwin-arm64": { 989 | "version": "4.13.2", 990 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.2.tgz", 991 | "integrity": "sha512-mCMlpzlBgOTdaFs83I4XRr8wNPveJiJX1RLfv4hggyIVhfB5mJfN4P8Z6yKh+oE4Luz+qq1P3kVdWrCKcMYrrA==", 992 | "cpu": [ 993 | "arm64" 994 | ], 995 | "dev": true, 996 | "optional": true, 997 | "os": [ 998 | "darwin" 999 | ] 1000 | }, 1001 | "node_modules/@rollup/rollup-darwin-x64": { 1002 | "version": "4.13.2", 1003 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.2.tgz", 1004 | "integrity": "sha512-yUoEvnH0FBef/NbB1u6d3HNGyruAKnN74LrPAfDQL3O32e3k3OSfLrPgSJmgb3PJrBZWfPyt6m4ZhAFa2nZp2A==", 1005 | "cpu": [ 1006 | "x64" 1007 | ], 1008 | "dev": true, 1009 | "optional": true, 1010 | "os": [ 1011 | "darwin" 1012 | ] 1013 | }, 1014 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1015 | "version": "4.13.2", 1016 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.2.tgz", 1017 | "integrity": "sha512-GYbLs5ErswU/Xs7aGXqzc3RrdEjKdmoCrgzhJWyFL0r5fL3qd1NPcDKDowDnmcoSiGJeU68/Vy+OMUluRxPiLQ==", 1018 | "cpu": [ 1019 | "arm" 1020 | ], 1021 | "dev": true, 1022 | "optional": true, 1023 | "os": [ 1024 | "linux" 1025 | ] 1026 | }, 1027 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1028 | "version": "4.13.2", 1029 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.2.tgz", 1030 | "integrity": "sha512-L1+D8/wqGnKQIlh4Zre9i4R4b4noxzH5DDciyahX4oOz62CphY7WDWqJoQ66zNR4oScLNOqQJfNSIAe/6TPUmQ==", 1031 | "cpu": [ 1032 | "arm64" 1033 | ], 1034 | "dev": true, 1035 | "optional": true, 1036 | "os": [ 1037 | "linux" 1038 | ] 1039 | }, 1040 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1041 | "version": "4.13.2", 1042 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.2.tgz", 1043 | "integrity": "sha512-tK5eoKFkXdz6vjfkSTCupUzCo40xueTOiOO6PeEIadlNBkadH1wNOH8ILCPIl8by/Gmb5AGAeQOFeLev7iZDOA==", 1044 | "cpu": [ 1045 | "arm64" 1046 | ], 1047 | "dev": true, 1048 | "optional": true, 1049 | "os": [ 1050 | "linux" 1051 | ] 1052 | }, 1053 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1054 | "version": "4.13.2", 1055 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.13.2.tgz", 1056 | "integrity": "sha512-zvXvAUGGEYi6tYhcDmb9wlOckVbuD+7z3mzInCSTACJ4DQrdSLPNUeDIcAQW39M3q6PDquqLWu7pnO39uSMRzQ==", 1057 | "cpu": [ 1058 | "ppc64le" 1059 | ], 1060 | "dev": true, 1061 | "optional": true, 1062 | "os": [ 1063 | "linux" 1064 | ] 1065 | }, 1066 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1067 | "version": "4.13.2", 1068 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.2.tgz", 1069 | "integrity": "sha512-C3GSKvMtdudHCN5HdmAMSRYR2kkhgdOfye4w0xzyii7lebVr4riCgmM6lRiSCnJn2w1Xz7ZZzHKuLrjx5620kw==", 1070 | "cpu": [ 1071 | "riscv64" 1072 | ], 1073 | "dev": true, 1074 | "optional": true, 1075 | "os": [ 1076 | "linux" 1077 | ] 1078 | }, 1079 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1080 | "version": "4.13.2", 1081 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.13.2.tgz", 1082 | "integrity": "sha512-l4U0KDFwzD36j7HdfJ5/TveEQ1fUTjFFQP5qIt9gBqBgu1G8/kCaq5Ok05kd5TG9F8Lltf3MoYsUMw3rNlJ0Yg==", 1083 | "cpu": [ 1084 | "s390x" 1085 | ], 1086 | "dev": true, 1087 | "optional": true, 1088 | "os": [ 1089 | "linux" 1090 | ] 1091 | }, 1092 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1093 | "version": "4.13.2", 1094 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.2.tgz", 1095 | "integrity": "sha512-xXMLUAMzrtsvh3cZ448vbXqlUa7ZL8z0MwHp63K2IIID2+DeP5iWIT6g1SN7hg1VxPzqx0xZdiDM9l4n9LRU1A==", 1096 | "cpu": [ 1097 | "x64" 1098 | ], 1099 | "dev": true, 1100 | "optional": true, 1101 | "os": [ 1102 | "linux" 1103 | ] 1104 | }, 1105 | "node_modules/@rollup/rollup-linux-x64-musl": { 1106 | "version": "4.13.2", 1107 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.2.tgz", 1108 | "integrity": "sha512-M/JYAWickafUijWPai4ehrjzVPKRCyDb1SLuO+ZyPfoXgeCEAlgPkNXewFZx0zcnoIe3ay4UjXIMdXQXOZXWqA==", 1109 | "cpu": [ 1110 | "x64" 1111 | ], 1112 | "dev": true, 1113 | "optional": true, 1114 | "os": [ 1115 | "linux" 1116 | ] 1117 | }, 1118 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1119 | "version": "4.13.2", 1120 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.2.tgz", 1121 | "integrity": "sha512-2YWwoVg9KRkIKaXSh0mz3NmfurpmYoBBTAXA9qt7VXk0Xy12PoOP40EFuau+ajgALbbhi4uTj3tSG3tVseCjuA==", 1122 | "cpu": [ 1123 | "arm64" 1124 | ], 1125 | "dev": true, 1126 | "optional": true, 1127 | "os": [ 1128 | "win32" 1129 | ] 1130 | }, 1131 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1132 | "version": "4.13.2", 1133 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.2.tgz", 1134 | "integrity": "sha512-2FSsE9aQ6OWD20E498NYKEQLneShWes0NGMPQwxWOdws35qQXH+FplabOSP5zEe1pVjurSDOGEVCE2agFwSEsw==", 1135 | "cpu": [ 1136 | "ia32" 1137 | ], 1138 | "dev": true, 1139 | "optional": true, 1140 | "os": [ 1141 | "win32" 1142 | ] 1143 | }, 1144 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1145 | "version": "4.13.2", 1146 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.2.tgz", 1147 | "integrity": "sha512-7h7J2nokcdPePdKykd8wtc8QqqkqxIrUz7MHj6aNr8waBRU//NLDVnNjQnqQO6fqtjrtCdftpbTuOKAyrAQETQ==", 1148 | "cpu": [ 1149 | "x64" 1150 | ], 1151 | "dev": true, 1152 | "optional": true, 1153 | "os": [ 1154 | "win32" 1155 | ] 1156 | }, 1157 | "node_modules/@types/babel__core": { 1158 | "version": "7.20.5", 1159 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1160 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1161 | "dev": true, 1162 | "license": "MIT", 1163 | "dependencies": { 1164 | "@babel/parser": "^7.20.7", 1165 | "@babel/types": "^7.20.7", 1166 | "@types/babel__generator": "*", 1167 | "@types/babel__template": "*", 1168 | "@types/babel__traverse": "*" 1169 | } 1170 | }, 1171 | "node_modules/@types/babel__generator": { 1172 | "version": "7.6.8", 1173 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1174 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1175 | "dev": true, 1176 | "license": "MIT", 1177 | "dependencies": { 1178 | "@babel/types": "^7.0.0" 1179 | } 1180 | }, 1181 | "node_modules/@types/babel__template": { 1182 | "version": "7.4.4", 1183 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1184 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1185 | "dev": true, 1186 | "license": "MIT", 1187 | "dependencies": { 1188 | "@babel/parser": "^7.1.0", 1189 | "@babel/types": "^7.0.0" 1190 | } 1191 | }, 1192 | "node_modules/@types/babel__traverse": { 1193 | "version": "7.20.6", 1194 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 1195 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 1196 | "dev": true, 1197 | "license": "MIT", 1198 | "dependencies": { 1199 | "@babel/types": "^7.20.7" 1200 | } 1201 | }, 1202 | "node_modules/@types/estree": { 1203 | "version": "1.0.5", 1204 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 1205 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 1206 | "dev": true 1207 | }, 1208 | "node_modules/@types/node": { 1209 | "version": "20.14.5", 1210 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.5.tgz", 1211 | "integrity": "sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA==", 1212 | "dev": true, 1213 | "license": "MIT", 1214 | "dependencies": { 1215 | "undici-types": "~5.26.4" 1216 | } 1217 | }, 1218 | "node_modules/@types/prop-types": { 1219 | "version": "15.7.12", 1220 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", 1221 | "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", 1222 | "devOptional": true, 1223 | "license": "MIT" 1224 | }, 1225 | "node_modules/@types/react": { 1226 | "version": "18.3.3", 1227 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", 1228 | "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", 1229 | "devOptional": true, 1230 | "license": "MIT", 1231 | "dependencies": { 1232 | "@types/prop-types": "*", 1233 | "csstype": "^3.0.2" 1234 | } 1235 | }, 1236 | "node_modules/@types/react-dom": { 1237 | "version": "18.3.0", 1238 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", 1239 | "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", 1240 | "dev": true, 1241 | "license": "MIT", 1242 | "dependencies": { 1243 | "@types/react": "*" 1244 | } 1245 | }, 1246 | "node_modules/@vitejs/plugin-react": { 1247 | "version": "4.3.1", 1248 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.1.tgz", 1249 | "integrity": "sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==", 1250 | "dev": true, 1251 | "license": "MIT", 1252 | "dependencies": { 1253 | "@babel/core": "^7.24.5", 1254 | "@babel/plugin-transform-react-jsx-self": "^7.24.5", 1255 | "@babel/plugin-transform-react-jsx-source": "^7.24.1", 1256 | "@types/babel__core": "^7.20.5", 1257 | "react-refresh": "^0.14.2" 1258 | }, 1259 | "engines": { 1260 | "node": "^14.18.0 || >=16.0.0" 1261 | }, 1262 | "peerDependencies": { 1263 | "vite": "^4.2.0 || ^5.0.0" 1264 | } 1265 | }, 1266 | "node_modules/ansi-regex": { 1267 | "version": "6.0.1", 1268 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 1269 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 1270 | "license": "MIT", 1271 | "engines": { 1272 | "node": ">=12" 1273 | }, 1274 | "funding": { 1275 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1276 | } 1277 | }, 1278 | "node_modules/ansi-styles": { 1279 | "version": "6.2.1", 1280 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 1281 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 1282 | "license": "MIT", 1283 | "engines": { 1284 | "node": ">=12" 1285 | }, 1286 | "funding": { 1287 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1288 | } 1289 | }, 1290 | "node_modules/any-promise": { 1291 | "version": "1.3.0", 1292 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1293 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 1294 | "license": "MIT" 1295 | }, 1296 | "node_modules/anymatch": { 1297 | "version": "3.1.3", 1298 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1299 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1300 | "license": "ISC", 1301 | "dependencies": { 1302 | "normalize-path": "^3.0.0", 1303 | "picomatch": "^2.0.4" 1304 | }, 1305 | "engines": { 1306 | "node": ">= 8" 1307 | } 1308 | }, 1309 | "node_modules/arg": { 1310 | "version": "5.0.2", 1311 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 1312 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 1313 | "license": "MIT" 1314 | }, 1315 | "node_modules/autoprefixer": { 1316 | "version": "10.4.19", 1317 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", 1318 | "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", 1319 | "dev": true, 1320 | "funding": [ 1321 | { 1322 | "type": "opencollective", 1323 | "url": "https://opencollective.com/postcss/" 1324 | }, 1325 | { 1326 | "type": "tidelift", 1327 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 1328 | }, 1329 | { 1330 | "type": "github", 1331 | "url": "https://github.com/sponsors/ai" 1332 | } 1333 | ], 1334 | "license": "MIT", 1335 | "dependencies": { 1336 | "browserslist": "^4.23.0", 1337 | "caniuse-lite": "^1.0.30001599", 1338 | "fraction.js": "^4.3.7", 1339 | "normalize-range": "^0.1.2", 1340 | "picocolors": "^1.0.0", 1341 | "postcss-value-parser": "^4.2.0" 1342 | }, 1343 | "bin": { 1344 | "autoprefixer": "bin/autoprefixer" 1345 | }, 1346 | "engines": { 1347 | "node": "^10 || ^12 || >=14" 1348 | }, 1349 | "peerDependencies": { 1350 | "postcss": "^8.1.0" 1351 | } 1352 | }, 1353 | "node_modules/balanced-match": { 1354 | "version": "1.0.2", 1355 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1356 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1357 | "license": "MIT" 1358 | }, 1359 | "node_modules/binary-extensions": { 1360 | "version": "2.3.0", 1361 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1362 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1363 | "license": "MIT", 1364 | "engines": { 1365 | "node": ">=8" 1366 | }, 1367 | "funding": { 1368 | "url": "https://github.com/sponsors/sindresorhus" 1369 | } 1370 | }, 1371 | "node_modules/brace-expansion": { 1372 | "version": "2.0.1", 1373 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1374 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1375 | "license": "MIT", 1376 | "dependencies": { 1377 | "balanced-match": "^1.0.0" 1378 | } 1379 | }, 1380 | "node_modules/braces": { 1381 | "version": "3.0.3", 1382 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1383 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1384 | "license": "MIT", 1385 | "dependencies": { 1386 | "fill-range": "^7.1.1" 1387 | }, 1388 | "engines": { 1389 | "node": ">=8" 1390 | } 1391 | }, 1392 | "node_modules/browserslist": { 1393 | "version": "4.23.1", 1394 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", 1395 | "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", 1396 | "dev": true, 1397 | "funding": [ 1398 | { 1399 | "type": "opencollective", 1400 | "url": "https://opencollective.com/browserslist" 1401 | }, 1402 | { 1403 | "type": "tidelift", 1404 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1405 | }, 1406 | { 1407 | "type": "github", 1408 | "url": "https://github.com/sponsors/ai" 1409 | } 1410 | ], 1411 | "license": "MIT", 1412 | "dependencies": { 1413 | "caniuse-lite": "^1.0.30001629", 1414 | "electron-to-chromium": "^1.4.796", 1415 | "node-releases": "^2.0.14", 1416 | "update-browserslist-db": "^1.0.16" 1417 | }, 1418 | "bin": { 1419 | "browserslist": "cli.js" 1420 | }, 1421 | "engines": { 1422 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1423 | } 1424 | }, 1425 | "node_modules/camelcase-css": { 1426 | "version": "2.0.1", 1427 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 1428 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 1429 | "license": "MIT", 1430 | "engines": { 1431 | "node": ">= 6" 1432 | } 1433 | }, 1434 | "node_modules/caniuse-lite": { 1435 | "version": "1.0.30001636", 1436 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", 1437 | "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", 1438 | "dev": true, 1439 | "funding": [ 1440 | { 1441 | "type": "opencollective", 1442 | "url": "https://opencollective.com/browserslist" 1443 | }, 1444 | { 1445 | "type": "tidelift", 1446 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1447 | }, 1448 | { 1449 | "type": "github", 1450 | "url": "https://github.com/sponsors/ai" 1451 | } 1452 | ], 1453 | "license": "CC-BY-4.0" 1454 | }, 1455 | "node_modules/chalk": { 1456 | "version": "2.4.2", 1457 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1458 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1459 | "dev": true, 1460 | "license": "MIT", 1461 | "dependencies": { 1462 | "ansi-styles": "^3.2.1", 1463 | "escape-string-regexp": "^1.0.5", 1464 | "supports-color": "^5.3.0" 1465 | }, 1466 | "engines": { 1467 | "node": ">=4" 1468 | } 1469 | }, 1470 | "node_modules/chalk/node_modules/ansi-styles": { 1471 | "version": "3.2.1", 1472 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1473 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1474 | "dev": true, 1475 | "license": "MIT", 1476 | "dependencies": { 1477 | "color-convert": "^1.9.0" 1478 | }, 1479 | "engines": { 1480 | "node": ">=4" 1481 | } 1482 | }, 1483 | "node_modules/chalk/node_modules/color-convert": { 1484 | "version": "1.9.3", 1485 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1486 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1487 | "dev": true, 1488 | "license": "MIT", 1489 | "dependencies": { 1490 | "color-name": "1.1.3" 1491 | } 1492 | }, 1493 | "node_modules/chalk/node_modules/color-name": { 1494 | "version": "1.1.3", 1495 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1496 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 1497 | "dev": true, 1498 | "license": "MIT" 1499 | }, 1500 | "node_modules/chokidar": { 1501 | "version": "3.6.0", 1502 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1503 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1504 | "license": "MIT", 1505 | "dependencies": { 1506 | "anymatch": "~3.1.2", 1507 | "braces": "~3.0.2", 1508 | "glob-parent": "~5.1.2", 1509 | "is-binary-path": "~2.1.0", 1510 | "is-glob": "~4.0.1", 1511 | "normalize-path": "~3.0.0", 1512 | "readdirp": "~3.6.0" 1513 | }, 1514 | "engines": { 1515 | "node": ">= 8.10.0" 1516 | }, 1517 | "funding": { 1518 | "url": "https://paulmillr.com/funding/" 1519 | }, 1520 | "optionalDependencies": { 1521 | "fsevents": "~2.3.2" 1522 | } 1523 | }, 1524 | "node_modules/chokidar/node_modules/glob-parent": { 1525 | "version": "5.1.2", 1526 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1527 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1528 | "license": "ISC", 1529 | "dependencies": { 1530 | "is-glob": "^4.0.1" 1531 | }, 1532 | "engines": { 1533 | "node": ">= 6" 1534 | } 1535 | }, 1536 | "node_modules/class-variance-authority": { 1537 | "version": "0.7.0", 1538 | "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.0.tgz", 1539 | "integrity": "sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==", 1540 | "license": "Apache-2.0", 1541 | "dependencies": { 1542 | "clsx": "2.0.0" 1543 | }, 1544 | "funding": { 1545 | "url": "https://joebell.co.uk" 1546 | } 1547 | }, 1548 | "node_modules/class-variance-authority/node_modules/clsx": { 1549 | "version": "2.0.0", 1550 | "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", 1551 | "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", 1552 | "license": "MIT", 1553 | "engines": { 1554 | "node": ">=6" 1555 | } 1556 | }, 1557 | "node_modules/clsx": { 1558 | "version": "2.1.1", 1559 | "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1560 | "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1561 | "license": "MIT", 1562 | "engines": { 1563 | "node": ">=6" 1564 | } 1565 | }, 1566 | "node_modules/color-convert": { 1567 | "version": "2.0.1", 1568 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1569 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1570 | "license": "MIT", 1571 | "dependencies": { 1572 | "color-name": "~1.1.4" 1573 | }, 1574 | "engines": { 1575 | "node": ">=7.0.0" 1576 | } 1577 | }, 1578 | "node_modules/color-name": { 1579 | "version": "1.1.4", 1580 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1581 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1582 | "license": "MIT" 1583 | }, 1584 | "node_modules/commander": { 1585 | "version": "4.1.1", 1586 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1587 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1588 | "license": "MIT", 1589 | "engines": { 1590 | "node": ">= 6" 1591 | } 1592 | }, 1593 | "node_modules/convert-source-map": { 1594 | "version": "2.0.0", 1595 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1596 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1597 | "dev": true, 1598 | "license": "MIT" 1599 | }, 1600 | "node_modules/core-util-is": { 1601 | "version": "1.0.3", 1602 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 1603 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 1604 | "dev": true, 1605 | "license": "MIT" 1606 | }, 1607 | "node_modules/cross-spawn": { 1608 | "version": "7.0.3", 1609 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1610 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1611 | "license": "MIT", 1612 | "dependencies": { 1613 | "path-key": "^3.1.0", 1614 | "shebang-command": "^2.0.0", 1615 | "which": "^2.0.1" 1616 | }, 1617 | "engines": { 1618 | "node": ">= 8" 1619 | } 1620 | }, 1621 | "node_modules/cssesc": { 1622 | "version": "3.0.0", 1623 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1624 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1625 | "license": "MIT", 1626 | "bin": { 1627 | "cssesc": "bin/cssesc" 1628 | }, 1629 | "engines": { 1630 | "node": ">=4" 1631 | } 1632 | }, 1633 | "node_modules/csstype": { 1634 | "version": "3.1.3", 1635 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1636 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1637 | "devOptional": true, 1638 | "license": "MIT" 1639 | }, 1640 | "node_modules/debug": { 1641 | "version": "4.3.5", 1642 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 1643 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 1644 | "dev": true, 1645 | "license": "MIT", 1646 | "dependencies": { 1647 | "ms": "2.1.2" 1648 | }, 1649 | "engines": { 1650 | "node": ">=6.0" 1651 | }, 1652 | "peerDependenciesMeta": { 1653 | "supports-color": { 1654 | "optional": true 1655 | } 1656 | } 1657 | }, 1658 | "node_modules/didyoumean": { 1659 | "version": "1.2.2", 1660 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1661 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 1662 | "license": "Apache-2.0" 1663 | }, 1664 | "node_modules/dlv": { 1665 | "version": "1.1.3", 1666 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1667 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 1668 | "license": "MIT" 1669 | }, 1670 | "node_modules/dotenv": { 1671 | "version": "8.2.0", 1672 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", 1673 | "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", 1674 | "dev": true, 1675 | "license": "BSD-2-Clause", 1676 | "engines": { 1677 | "node": ">=8" 1678 | } 1679 | }, 1680 | "node_modules/dotenv-expand": { 1681 | "version": "5.1.0", 1682 | "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", 1683 | "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", 1684 | "dev": true, 1685 | "license": "BSD-2-Clause" 1686 | }, 1687 | "node_modules/eastasianwidth": { 1688 | "version": "0.2.0", 1689 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1690 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1691 | "license": "MIT" 1692 | }, 1693 | "node_modules/electron-to-chromium": { 1694 | "version": "1.4.805", 1695 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.805.tgz", 1696 | "integrity": "sha512-8W4UJwX/w9T0QSzINJckTKG6CYpAUTqsaWcWIsdud3I1FYJcMgW9QqT1/4CBff/pP/TihWh13OmiyY8neto6vw==", 1697 | "dev": true, 1698 | "license": "ISC" 1699 | }, 1700 | "node_modules/emoji-regex": { 1701 | "version": "9.2.2", 1702 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1703 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1704 | "license": "MIT" 1705 | }, 1706 | "node_modules/esbuild": { 1707 | "version": "0.20.2", 1708 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", 1709 | "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", 1710 | "dev": true, 1711 | "hasInstallScript": true, 1712 | "bin": { 1713 | "esbuild": "bin/esbuild" 1714 | }, 1715 | "engines": { 1716 | "node": ">=12" 1717 | }, 1718 | "optionalDependencies": { 1719 | "@esbuild/aix-ppc64": "0.20.2", 1720 | "@esbuild/android-arm": "0.20.2", 1721 | "@esbuild/android-arm64": "0.20.2", 1722 | "@esbuild/android-x64": "0.20.2", 1723 | "@esbuild/darwin-arm64": "0.20.2", 1724 | "@esbuild/darwin-x64": "0.20.2", 1725 | "@esbuild/freebsd-arm64": "0.20.2", 1726 | "@esbuild/freebsd-x64": "0.20.2", 1727 | "@esbuild/linux-arm": "0.20.2", 1728 | "@esbuild/linux-arm64": "0.20.2", 1729 | "@esbuild/linux-ia32": "0.20.2", 1730 | "@esbuild/linux-loong64": "0.20.2", 1731 | "@esbuild/linux-mips64el": "0.20.2", 1732 | "@esbuild/linux-ppc64": "0.20.2", 1733 | "@esbuild/linux-riscv64": "0.20.2", 1734 | "@esbuild/linux-s390x": "0.20.2", 1735 | "@esbuild/linux-x64": "0.20.2", 1736 | "@esbuild/netbsd-x64": "0.20.2", 1737 | "@esbuild/openbsd-x64": "0.20.2", 1738 | "@esbuild/sunos-x64": "0.20.2", 1739 | "@esbuild/win32-arm64": "0.20.2", 1740 | "@esbuild/win32-ia32": "0.20.2", 1741 | "@esbuild/win32-x64": "0.20.2" 1742 | } 1743 | }, 1744 | "node_modules/escalade": { 1745 | "version": "3.1.2", 1746 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 1747 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 1748 | "dev": true, 1749 | "license": "MIT", 1750 | "engines": { 1751 | "node": ">=6" 1752 | } 1753 | }, 1754 | "node_modules/escape-string-regexp": { 1755 | "version": "1.0.5", 1756 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1757 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 1758 | "dev": true, 1759 | "license": "MIT", 1760 | "engines": { 1761 | "node": ">=0.8.0" 1762 | } 1763 | }, 1764 | "node_modules/fast-glob": { 1765 | "version": "3.3.2", 1766 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1767 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1768 | "license": "MIT", 1769 | "dependencies": { 1770 | "@nodelib/fs.stat": "^2.0.2", 1771 | "@nodelib/fs.walk": "^1.2.3", 1772 | "glob-parent": "^5.1.2", 1773 | "merge2": "^1.3.0", 1774 | "micromatch": "^4.0.4" 1775 | }, 1776 | "engines": { 1777 | "node": ">=8.6.0" 1778 | } 1779 | }, 1780 | "node_modules/fast-glob/node_modules/glob-parent": { 1781 | "version": "5.1.2", 1782 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1783 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1784 | "license": "ISC", 1785 | "dependencies": { 1786 | "is-glob": "^4.0.1" 1787 | }, 1788 | "engines": { 1789 | "node": ">= 6" 1790 | } 1791 | }, 1792 | "node_modules/fastq": { 1793 | "version": "1.17.1", 1794 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1795 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1796 | "license": "ISC", 1797 | "dependencies": { 1798 | "reusify": "^1.0.4" 1799 | } 1800 | }, 1801 | "node_modules/fill-range": { 1802 | "version": "7.1.1", 1803 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1804 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1805 | "license": "MIT", 1806 | "dependencies": { 1807 | "to-regex-range": "^5.0.1" 1808 | }, 1809 | "engines": { 1810 | "node": ">=8" 1811 | } 1812 | }, 1813 | "node_modules/foreground-child": { 1814 | "version": "3.2.1", 1815 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", 1816 | "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", 1817 | "license": "ISC", 1818 | "dependencies": { 1819 | "cross-spawn": "^7.0.0", 1820 | "signal-exit": "^4.0.1" 1821 | }, 1822 | "engines": { 1823 | "node": ">=14" 1824 | }, 1825 | "funding": { 1826 | "url": "https://github.com/sponsors/isaacs" 1827 | } 1828 | }, 1829 | "node_modules/fraction.js": { 1830 | "version": "4.3.7", 1831 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1832 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1833 | "dev": true, 1834 | "license": "MIT", 1835 | "engines": { 1836 | "node": "*" 1837 | }, 1838 | "funding": { 1839 | "type": "patreon", 1840 | "url": "https://github.com/sponsors/rawify" 1841 | } 1842 | }, 1843 | "node_modules/fs-extra": { 1844 | "version": "11.2.0", 1845 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", 1846 | "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", 1847 | "dev": true, 1848 | "license": "MIT", 1849 | "dependencies": { 1850 | "graceful-fs": "^4.2.0", 1851 | "jsonfile": "^6.0.1", 1852 | "universalify": "^2.0.0" 1853 | }, 1854 | "engines": { 1855 | "node": ">=14.14" 1856 | } 1857 | }, 1858 | "node_modules/fsevents": { 1859 | "version": "2.3.3", 1860 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1861 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1862 | "hasInstallScript": true, 1863 | "optional": true, 1864 | "os": [ 1865 | "darwin" 1866 | ], 1867 | "engines": { 1868 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1869 | } 1870 | }, 1871 | "node_modules/function-bind": { 1872 | "version": "1.1.2", 1873 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1874 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1875 | "license": "MIT", 1876 | "funding": { 1877 | "url": "https://github.com/sponsors/ljharb" 1878 | } 1879 | }, 1880 | "node_modules/gensync": { 1881 | "version": "1.0.0-beta.2", 1882 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1883 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1884 | "dev": true, 1885 | "license": "MIT", 1886 | "engines": { 1887 | "node": ">=6.9.0" 1888 | } 1889 | }, 1890 | "node_modules/glob": { 1891 | "version": "10.4.1", 1892 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", 1893 | "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", 1894 | "license": "ISC", 1895 | "dependencies": { 1896 | "foreground-child": "^3.1.0", 1897 | "jackspeak": "^3.1.2", 1898 | "minimatch": "^9.0.4", 1899 | "minipass": "^7.1.2", 1900 | "path-scurry": "^1.11.1" 1901 | }, 1902 | "bin": { 1903 | "glob": "dist/esm/bin.mjs" 1904 | }, 1905 | "engines": { 1906 | "node": ">=16 || 14 >=14.18" 1907 | }, 1908 | "funding": { 1909 | "url": "https://github.com/sponsors/isaacs" 1910 | } 1911 | }, 1912 | "node_modules/glob-parent": { 1913 | "version": "6.0.2", 1914 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1915 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1916 | "license": "ISC", 1917 | "dependencies": { 1918 | "is-glob": "^4.0.3" 1919 | }, 1920 | "engines": { 1921 | "node": ">=10.13.0" 1922 | } 1923 | }, 1924 | "node_modules/globals": { 1925 | "version": "11.12.0", 1926 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1927 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1928 | "dev": true, 1929 | "license": "MIT", 1930 | "engines": { 1931 | "node": ">=4" 1932 | } 1933 | }, 1934 | "node_modules/graceful-fs": { 1935 | "version": "4.2.11", 1936 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1937 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1938 | "dev": true, 1939 | "license": "ISC" 1940 | }, 1941 | "node_modules/has-flag": { 1942 | "version": "3.0.0", 1943 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1944 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 1945 | "dev": true, 1946 | "license": "MIT", 1947 | "engines": { 1948 | "node": ">=4" 1949 | } 1950 | }, 1951 | "node_modules/hasown": { 1952 | "version": "2.0.2", 1953 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1954 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1955 | "license": "MIT", 1956 | "dependencies": { 1957 | "function-bind": "^1.1.2" 1958 | }, 1959 | "engines": { 1960 | "node": ">= 0.4" 1961 | } 1962 | }, 1963 | "node_modules/immediate": { 1964 | "version": "3.0.6", 1965 | "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", 1966 | "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", 1967 | "dev": true, 1968 | "license": "MIT" 1969 | }, 1970 | "node_modules/inherits": { 1971 | "version": "2.0.4", 1972 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1973 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1974 | "dev": true, 1975 | "license": "ISC" 1976 | }, 1977 | "node_modules/is-binary-path": { 1978 | "version": "2.1.0", 1979 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1980 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1981 | "license": "MIT", 1982 | "dependencies": { 1983 | "binary-extensions": "^2.0.0" 1984 | }, 1985 | "engines": { 1986 | "node": ">=8" 1987 | } 1988 | }, 1989 | "node_modules/is-core-module": { 1990 | "version": "2.13.1", 1991 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 1992 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 1993 | "license": "MIT", 1994 | "dependencies": { 1995 | "hasown": "^2.0.0" 1996 | }, 1997 | "funding": { 1998 | "url": "https://github.com/sponsors/ljharb" 1999 | } 2000 | }, 2001 | "node_modules/is-extglob": { 2002 | "version": "2.1.1", 2003 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2004 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2005 | "license": "MIT", 2006 | "engines": { 2007 | "node": ">=0.10.0" 2008 | } 2009 | }, 2010 | "node_modules/is-fullwidth-code-point": { 2011 | "version": "3.0.0", 2012 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2013 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2014 | "license": "MIT", 2015 | "engines": { 2016 | "node": ">=8" 2017 | } 2018 | }, 2019 | "node_modules/is-glob": { 2020 | "version": "4.0.3", 2021 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2022 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2023 | "license": "MIT", 2024 | "dependencies": { 2025 | "is-extglob": "^2.1.1" 2026 | }, 2027 | "engines": { 2028 | "node": ">=0.10.0" 2029 | } 2030 | }, 2031 | "node_modules/is-number": { 2032 | "version": "7.0.0", 2033 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2034 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2035 | "license": "MIT", 2036 | "engines": { 2037 | "node": ">=0.12.0" 2038 | } 2039 | }, 2040 | "node_modules/isarray": { 2041 | "version": "1.0.0", 2042 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 2043 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 2044 | "dev": true, 2045 | "license": "MIT" 2046 | }, 2047 | "node_modules/isexe": { 2048 | "version": "2.0.0", 2049 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2050 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2051 | "license": "ISC" 2052 | }, 2053 | "node_modules/jackspeak": { 2054 | "version": "3.4.0", 2055 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", 2056 | "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", 2057 | "license": "BlueOak-1.0.0", 2058 | "dependencies": { 2059 | "@isaacs/cliui": "^8.0.2" 2060 | }, 2061 | "engines": { 2062 | "node": ">=14" 2063 | }, 2064 | "funding": { 2065 | "url": "https://github.com/sponsors/isaacs" 2066 | }, 2067 | "optionalDependencies": { 2068 | "@pkgjs/parseargs": "^0.11.0" 2069 | } 2070 | }, 2071 | "node_modules/jiti": { 2072 | "version": "1.21.6", 2073 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 2074 | "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 2075 | "license": "MIT", 2076 | "bin": { 2077 | "jiti": "bin/jiti.js" 2078 | } 2079 | }, 2080 | "node_modules/js-tokens": { 2081 | "version": "4.0.0", 2082 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2083 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2084 | "license": "MIT" 2085 | }, 2086 | "node_modules/jsesc": { 2087 | "version": "2.5.2", 2088 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2089 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 2090 | "dev": true, 2091 | "license": "MIT", 2092 | "bin": { 2093 | "jsesc": "bin/jsesc" 2094 | }, 2095 | "engines": { 2096 | "node": ">=4" 2097 | } 2098 | }, 2099 | "node_modules/json5": { 2100 | "version": "2.2.3", 2101 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2102 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2103 | "dev": true, 2104 | "license": "MIT", 2105 | "bin": { 2106 | "json5": "lib/cli.js" 2107 | }, 2108 | "engines": { 2109 | "node": ">=6" 2110 | } 2111 | }, 2112 | "node_modules/jsonfile": { 2113 | "version": "6.1.0", 2114 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 2115 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 2116 | "dev": true, 2117 | "license": "MIT", 2118 | "dependencies": { 2119 | "universalify": "^2.0.0" 2120 | }, 2121 | "optionalDependencies": { 2122 | "graceful-fs": "^4.1.6" 2123 | } 2124 | }, 2125 | "node_modules/jszip": { 2126 | "version": "3.10.1", 2127 | "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", 2128 | "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", 2129 | "dev": true, 2130 | "license": "(MIT OR GPL-3.0-or-later)", 2131 | "dependencies": { 2132 | "lie": "~3.3.0", 2133 | "pako": "~1.0.2", 2134 | "readable-stream": "~2.3.6", 2135 | "setimmediate": "^1.0.5" 2136 | } 2137 | }, 2138 | "node_modules/lie": { 2139 | "version": "3.3.0", 2140 | "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", 2141 | "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", 2142 | "dev": true, 2143 | "license": "MIT", 2144 | "dependencies": { 2145 | "immediate": "~3.0.5" 2146 | } 2147 | }, 2148 | "node_modules/lilconfig": { 2149 | "version": "2.1.0", 2150 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2151 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2152 | "license": "MIT", 2153 | "engines": { 2154 | "node": ">=10" 2155 | } 2156 | }, 2157 | "node_modules/lines-and-columns": { 2158 | "version": "1.2.4", 2159 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2160 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2161 | "license": "MIT" 2162 | }, 2163 | "node_modules/loose-envify": { 2164 | "version": "1.4.0", 2165 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2166 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2167 | "license": "MIT", 2168 | "dependencies": { 2169 | "js-tokens": "^3.0.0 || ^4.0.0" 2170 | }, 2171 | "bin": { 2172 | "loose-envify": "cli.js" 2173 | } 2174 | }, 2175 | "node_modules/lru-cache": { 2176 | "version": "10.2.2", 2177 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", 2178 | "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", 2179 | "license": "ISC", 2180 | "engines": { 2181 | "node": "14 || >=16.14" 2182 | } 2183 | }, 2184 | "node_modules/lucide-react": { 2185 | "version": "0.395.0", 2186 | "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.395.0.tgz", 2187 | "integrity": "sha512-6hzdNH5723A4FLaYZWpK50iyZH8iS2Jq5zuPRRotOFkhu6kxxJiebVdJ72tCR5XkiIeYFOU5NUawFZOac+VeYw==", 2188 | "license": "ISC", 2189 | "peerDependencies": { 2190 | "react": "^16.5.1 || ^17.0.0 || ^18.0.0" 2191 | } 2192 | }, 2193 | "node_modules/merge2": { 2194 | "version": "1.4.1", 2195 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2196 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2197 | "license": "MIT", 2198 | "engines": { 2199 | "node": ">= 8" 2200 | } 2201 | }, 2202 | "node_modules/micromatch": { 2203 | "version": "4.0.7", 2204 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 2205 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 2206 | "license": "MIT", 2207 | "dependencies": { 2208 | "braces": "^3.0.3", 2209 | "picomatch": "^2.3.1" 2210 | }, 2211 | "engines": { 2212 | "node": ">=8.6" 2213 | } 2214 | }, 2215 | "node_modules/minimatch": { 2216 | "version": "9.0.4", 2217 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", 2218 | "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", 2219 | "license": "ISC", 2220 | "dependencies": { 2221 | "brace-expansion": "^2.0.1" 2222 | }, 2223 | "engines": { 2224 | "node": ">=16 || 14 >=14.17" 2225 | }, 2226 | "funding": { 2227 | "url": "https://github.com/sponsors/isaacs" 2228 | } 2229 | }, 2230 | "node_modules/minipass": { 2231 | "version": "7.1.2", 2232 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2233 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2234 | "license": "ISC", 2235 | "engines": { 2236 | "node": ">=16 || 14 >=14.17" 2237 | } 2238 | }, 2239 | "node_modules/ms": { 2240 | "version": "2.1.2", 2241 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2242 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2243 | "dev": true, 2244 | "license": "MIT" 2245 | }, 2246 | "node_modules/mz": { 2247 | "version": "2.7.0", 2248 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2249 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2250 | "license": "MIT", 2251 | "dependencies": { 2252 | "any-promise": "^1.0.0", 2253 | "object-assign": "^4.0.1", 2254 | "thenify-all": "^1.0.0" 2255 | } 2256 | }, 2257 | "node_modules/nanoid": { 2258 | "version": "3.3.7", 2259 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 2260 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 2261 | "funding": [ 2262 | { 2263 | "type": "github", 2264 | "url": "https://github.com/sponsors/ai" 2265 | } 2266 | ], 2267 | "bin": { 2268 | "nanoid": "bin/nanoid.cjs" 2269 | }, 2270 | "engines": { 2271 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2272 | } 2273 | }, 2274 | "node_modules/node-releases": { 2275 | "version": "2.0.14", 2276 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 2277 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 2278 | "dev": true, 2279 | "license": "MIT" 2280 | }, 2281 | "node_modules/normalize-path": { 2282 | "version": "3.0.0", 2283 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2284 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2285 | "license": "MIT", 2286 | "engines": { 2287 | "node": ">=0.10.0" 2288 | } 2289 | }, 2290 | "node_modules/normalize-range": { 2291 | "version": "0.1.2", 2292 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2293 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2294 | "dev": true, 2295 | "license": "MIT", 2296 | "engines": { 2297 | "node": ">=0.10.0" 2298 | } 2299 | }, 2300 | "node_modules/object-assign": { 2301 | "version": "4.1.1", 2302 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2303 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2304 | "license": "MIT", 2305 | "engines": { 2306 | "node": ">=0.10.0" 2307 | } 2308 | }, 2309 | "node_modules/object-hash": { 2310 | "version": "3.0.0", 2311 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 2312 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2313 | "license": "MIT", 2314 | "engines": { 2315 | "node": ">= 6" 2316 | } 2317 | }, 2318 | "node_modules/pako": { 2319 | "version": "1.0.11", 2320 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", 2321 | "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", 2322 | "dev": true, 2323 | "license": "(MIT AND Zlib)" 2324 | }, 2325 | "node_modules/path-key": { 2326 | "version": "3.1.1", 2327 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2328 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2329 | "license": "MIT", 2330 | "engines": { 2331 | "node": ">=8" 2332 | } 2333 | }, 2334 | "node_modules/path-parse": { 2335 | "version": "1.0.7", 2336 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2337 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2338 | "license": "MIT" 2339 | }, 2340 | "node_modules/path-scurry": { 2341 | "version": "1.11.1", 2342 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2343 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2344 | "license": "BlueOak-1.0.0", 2345 | "dependencies": { 2346 | "lru-cache": "^10.2.0", 2347 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2348 | }, 2349 | "engines": { 2350 | "node": ">=16 || 14 >=14.18" 2351 | }, 2352 | "funding": { 2353 | "url": "https://github.com/sponsors/isaacs" 2354 | } 2355 | }, 2356 | "node_modules/picocolors": { 2357 | "version": "1.0.1", 2358 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 2359 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 2360 | "license": "ISC" 2361 | }, 2362 | "node_modules/picomatch": { 2363 | "version": "2.3.1", 2364 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2365 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2366 | "license": "MIT", 2367 | "engines": { 2368 | "node": ">=8.6" 2369 | }, 2370 | "funding": { 2371 | "url": "https://github.com/sponsors/jonschlinkert" 2372 | } 2373 | }, 2374 | "node_modules/pify": { 2375 | "version": "2.3.0", 2376 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 2377 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 2378 | "license": "MIT", 2379 | "engines": { 2380 | "node": ">=0.10.0" 2381 | } 2382 | }, 2383 | "node_modules/pirates": { 2384 | "version": "4.0.6", 2385 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 2386 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 2387 | "license": "MIT", 2388 | "engines": { 2389 | "node": ">= 6" 2390 | } 2391 | }, 2392 | "node_modules/postcss": { 2393 | "version": "8.4.38", 2394 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 2395 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 2396 | "funding": [ 2397 | { 2398 | "type": "opencollective", 2399 | "url": "https://opencollective.com/postcss/" 2400 | }, 2401 | { 2402 | "type": "tidelift", 2403 | "url": "https://tidelift.com/funding/github/npm/postcss" 2404 | }, 2405 | { 2406 | "type": "github", 2407 | "url": "https://github.com/sponsors/ai" 2408 | } 2409 | ], 2410 | "license": "MIT", 2411 | "dependencies": { 2412 | "nanoid": "^3.3.7", 2413 | "picocolors": "^1.0.0", 2414 | "source-map-js": "^1.2.0" 2415 | }, 2416 | "engines": { 2417 | "node": "^10 || ^12 || >=14" 2418 | } 2419 | }, 2420 | "node_modules/postcss-import": { 2421 | "version": "15.1.0", 2422 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 2423 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 2424 | "license": "MIT", 2425 | "dependencies": { 2426 | "postcss-value-parser": "^4.0.0", 2427 | "read-cache": "^1.0.0", 2428 | "resolve": "^1.1.7" 2429 | }, 2430 | "engines": { 2431 | "node": ">=14.0.0" 2432 | }, 2433 | "peerDependencies": { 2434 | "postcss": "^8.0.0" 2435 | } 2436 | }, 2437 | "node_modules/postcss-js": { 2438 | "version": "4.0.1", 2439 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 2440 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 2441 | "license": "MIT", 2442 | "dependencies": { 2443 | "camelcase-css": "^2.0.1" 2444 | }, 2445 | "engines": { 2446 | "node": "^12 || ^14 || >= 16" 2447 | }, 2448 | "funding": { 2449 | "type": "opencollective", 2450 | "url": "https://opencollective.com/postcss/" 2451 | }, 2452 | "peerDependencies": { 2453 | "postcss": "^8.4.21" 2454 | } 2455 | }, 2456 | "node_modules/postcss-load-config": { 2457 | "version": "4.0.2", 2458 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 2459 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 2460 | "funding": [ 2461 | { 2462 | "type": "opencollective", 2463 | "url": "https://opencollective.com/postcss/" 2464 | }, 2465 | { 2466 | "type": "github", 2467 | "url": "https://github.com/sponsors/ai" 2468 | } 2469 | ], 2470 | "license": "MIT", 2471 | "dependencies": { 2472 | "lilconfig": "^3.0.0", 2473 | "yaml": "^2.3.4" 2474 | }, 2475 | "engines": { 2476 | "node": ">= 14" 2477 | }, 2478 | "peerDependencies": { 2479 | "postcss": ">=8.0.9", 2480 | "ts-node": ">=9.0.0" 2481 | }, 2482 | "peerDependenciesMeta": { 2483 | "postcss": { 2484 | "optional": true 2485 | }, 2486 | "ts-node": { 2487 | "optional": true 2488 | } 2489 | } 2490 | }, 2491 | "node_modules/postcss-load-config/node_modules/lilconfig": { 2492 | "version": "3.1.2", 2493 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", 2494 | "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", 2495 | "license": "MIT", 2496 | "engines": { 2497 | "node": ">=14" 2498 | }, 2499 | "funding": { 2500 | "url": "https://github.com/sponsors/antonk52" 2501 | } 2502 | }, 2503 | "node_modules/postcss-nested": { 2504 | "version": "6.0.1", 2505 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 2506 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 2507 | "license": "MIT", 2508 | "dependencies": { 2509 | "postcss-selector-parser": "^6.0.11" 2510 | }, 2511 | "engines": { 2512 | "node": ">=12.0" 2513 | }, 2514 | "funding": { 2515 | "type": "opencollective", 2516 | "url": "https://opencollective.com/postcss/" 2517 | }, 2518 | "peerDependencies": { 2519 | "postcss": "^8.2.14" 2520 | } 2521 | }, 2522 | "node_modules/postcss-selector-parser": { 2523 | "version": "6.1.0", 2524 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", 2525 | "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", 2526 | "license": "MIT", 2527 | "dependencies": { 2528 | "cssesc": "^3.0.0", 2529 | "util-deprecate": "^1.0.2" 2530 | }, 2531 | "engines": { 2532 | "node": ">=4" 2533 | } 2534 | }, 2535 | "node_modules/postcss-value-parser": { 2536 | "version": "4.2.0", 2537 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 2538 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 2539 | "license": "MIT" 2540 | }, 2541 | "node_modules/process-nextick-args": { 2542 | "version": "2.0.1", 2543 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2544 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2545 | "dev": true, 2546 | "license": "MIT" 2547 | }, 2548 | "node_modules/queue-microtask": { 2549 | "version": "1.2.3", 2550 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2551 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2552 | "funding": [ 2553 | { 2554 | "type": "github", 2555 | "url": "https://github.com/sponsors/feross" 2556 | }, 2557 | { 2558 | "type": "patreon", 2559 | "url": "https://www.patreon.com/feross" 2560 | }, 2561 | { 2562 | "type": "consulting", 2563 | "url": "https://feross.org/support" 2564 | } 2565 | ], 2566 | "license": "MIT" 2567 | }, 2568 | "node_modules/react": { 2569 | "version": "18.3.1", 2570 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", 2571 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", 2572 | "license": "MIT", 2573 | "peer": true, 2574 | "dependencies": { 2575 | "loose-envify": "^1.1.0" 2576 | }, 2577 | "engines": { 2578 | "node": ">=0.10.0" 2579 | } 2580 | }, 2581 | "node_modules/react-dom": { 2582 | "version": "18.3.1", 2583 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", 2584 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", 2585 | "license": "MIT", 2586 | "dependencies": { 2587 | "loose-envify": "^1.1.0", 2588 | "scheduler": "^0.23.2" 2589 | }, 2590 | "peerDependencies": { 2591 | "react": "^18.3.1" 2592 | } 2593 | }, 2594 | "node_modules/react-refresh": { 2595 | "version": "0.14.2", 2596 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", 2597 | "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", 2598 | "dev": true, 2599 | "license": "MIT", 2600 | "engines": { 2601 | "node": ">=0.10.0" 2602 | } 2603 | }, 2604 | "node_modules/read-cache": { 2605 | "version": "1.0.0", 2606 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 2607 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 2608 | "license": "MIT", 2609 | "dependencies": { 2610 | "pify": "^2.3.0" 2611 | } 2612 | }, 2613 | "node_modules/readable-stream": { 2614 | "version": "2.3.8", 2615 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 2616 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 2617 | "dev": true, 2618 | "license": "MIT", 2619 | "dependencies": { 2620 | "core-util-is": "~1.0.0", 2621 | "inherits": "~2.0.3", 2622 | "isarray": "~1.0.0", 2623 | "process-nextick-args": "~2.0.0", 2624 | "safe-buffer": "~5.1.1", 2625 | "string_decoder": "~1.1.1", 2626 | "util-deprecate": "~1.0.1" 2627 | } 2628 | }, 2629 | "node_modules/readdirp": { 2630 | "version": "3.6.0", 2631 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2632 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2633 | "license": "MIT", 2634 | "dependencies": { 2635 | "picomatch": "^2.2.1" 2636 | }, 2637 | "engines": { 2638 | "node": ">=8.10.0" 2639 | } 2640 | }, 2641 | "node_modules/regenerator-runtime": { 2642 | "version": "0.14.1", 2643 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 2644 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", 2645 | "license": "MIT" 2646 | }, 2647 | "node_modules/resolve": { 2648 | "version": "1.22.8", 2649 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 2650 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 2651 | "license": "MIT", 2652 | "dependencies": { 2653 | "is-core-module": "^2.13.0", 2654 | "path-parse": "^1.0.7", 2655 | "supports-preserve-symlinks-flag": "^1.0.0" 2656 | }, 2657 | "bin": { 2658 | "resolve": "bin/resolve" 2659 | }, 2660 | "funding": { 2661 | "url": "https://github.com/sponsors/ljharb" 2662 | } 2663 | }, 2664 | "node_modules/reusify": { 2665 | "version": "1.0.4", 2666 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2667 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2668 | "license": "MIT", 2669 | "engines": { 2670 | "iojs": ">=1.0.0", 2671 | "node": ">=0.10.0" 2672 | } 2673 | }, 2674 | "node_modules/rollup": { 2675 | "version": "4.13.2", 2676 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.2.tgz", 2677 | "integrity": "sha512-MIlLgsdMprDBXC+4hsPgzWUasLO9CE4zOkj/u6j+Z6j5A4zRY+CtiXAdJyPtgCsc42g658Aeh1DlrdVEJhsL2g==", 2678 | "dev": true, 2679 | "dependencies": { 2680 | "@types/estree": "1.0.5" 2681 | }, 2682 | "bin": { 2683 | "rollup": "dist/bin/rollup" 2684 | }, 2685 | "engines": { 2686 | "node": ">=18.0.0", 2687 | "npm": ">=8.0.0" 2688 | }, 2689 | "optionalDependencies": { 2690 | "@rollup/rollup-android-arm-eabi": "4.13.2", 2691 | "@rollup/rollup-android-arm64": "4.13.2", 2692 | "@rollup/rollup-darwin-arm64": "4.13.2", 2693 | "@rollup/rollup-darwin-x64": "4.13.2", 2694 | "@rollup/rollup-linux-arm-gnueabihf": "4.13.2", 2695 | "@rollup/rollup-linux-arm64-gnu": "4.13.2", 2696 | "@rollup/rollup-linux-arm64-musl": "4.13.2", 2697 | "@rollup/rollup-linux-powerpc64le-gnu": "4.13.2", 2698 | "@rollup/rollup-linux-riscv64-gnu": "4.13.2", 2699 | "@rollup/rollup-linux-s390x-gnu": "4.13.2", 2700 | "@rollup/rollup-linux-x64-gnu": "4.13.2", 2701 | "@rollup/rollup-linux-x64-musl": "4.13.2", 2702 | "@rollup/rollup-win32-arm64-msvc": "4.13.2", 2703 | "@rollup/rollup-win32-ia32-msvc": "4.13.2", 2704 | "@rollup/rollup-win32-x64-msvc": "4.13.2", 2705 | "fsevents": "~2.3.2" 2706 | } 2707 | }, 2708 | "node_modules/run-parallel": { 2709 | "version": "1.2.0", 2710 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2711 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2712 | "funding": [ 2713 | { 2714 | "type": "github", 2715 | "url": "https://github.com/sponsors/feross" 2716 | }, 2717 | { 2718 | "type": "patreon", 2719 | "url": "https://www.patreon.com/feross" 2720 | }, 2721 | { 2722 | "type": "consulting", 2723 | "url": "https://feross.org/support" 2724 | } 2725 | ], 2726 | "license": "MIT", 2727 | "dependencies": { 2728 | "queue-microtask": "^1.2.2" 2729 | } 2730 | }, 2731 | "node_modules/safe-buffer": { 2732 | "version": "5.1.2", 2733 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2734 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 2735 | "dev": true, 2736 | "license": "MIT" 2737 | }, 2738 | "node_modules/scheduler": { 2739 | "version": "0.23.2", 2740 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", 2741 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", 2742 | "license": "MIT", 2743 | "dependencies": { 2744 | "loose-envify": "^1.1.0" 2745 | } 2746 | }, 2747 | "node_modules/semver": { 2748 | "version": "6.3.1", 2749 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 2750 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 2751 | "dev": true, 2752 | "license": "ISC", 2753 | "bin": { 2754 | "semver": "bin/semver.js" 2755 | } 2756 | }, 2757 | "node_modules/setimmediate": { 2758 | "version": "1.0.5", 2759 | "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", 2760 | "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", 2761 | "dev": true, 2762 | "license": "MIT" 2763 | }, 2764 | "node_modules/shebang-command": { 2765 | "version": "2.0.0", 2766 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2767 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2768 | "license": "MIT", 2769 | "dependencies": { 2770 | "shebang-regex": "^3.0.0" 2771 | }, 2772 | "engines": { 2773 | "node": ">=8" 2774 | } 2775 | }, 2776 | "node_modules/shebang-regex": { 2777 | "version": "3.0.0", 2778 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2779 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2780 | "license": "MIT", 2781 | "engines": { 2782 | "node": ">=8" 2783 | } 2784 | }, 2785 | "node_modules/signal-exit": { 2786 | "version": "4.1.0", 2787 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2788 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2789 | "license": "ISC", 2790 | "engines": { 2791 | "node": ">=14" 2792 | }, 2793 | "funding": { 2794 | "url": "https://github.com/sponsors/isaacs" 2795 | } 2796 | }, 2797 | "node_modules/source-map-js": { 2798 | "version": "1.2.0", 2799 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 2800 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 2801 | "engines": { 2802 | "node": ">=0.10.0" 2803 | } 2804 | }, 2805 | "node_modules/string_decoder": { 2806 | "version": "1.1.1", 2807 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2808 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2809 | "dev": true, 2810 | "license": "MIT", 2811 | "dependencies": { 2812 | "safe-buffer": "~5.1.0" 2813 | } 2814 | }, 2815 | "node_modules/string-width": { 2816 | "version": "5.1.2", 2817 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2818 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2819 | "license": "MIT", 2820 | "dependencies": { 2821 | "eastasianwidth": "^0.2.0", 2822 | "emoji-regex": "^9.2.2", 2823 | "strip-ansi": "^7.0.1" 2824 | }, 2825 | "engines": { 2826 | "node": ">=12" 2827 | }, 2828 | "funding": { 2829 | "url": "https://github.com/sponsors/sindresorhus" 2830 | } 2831 | }, 2832 | "node_modules/string-width-cjs": { 2833 | "name": "string-width", 2834 | "version": "4.2.3", 2835 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2836 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2837 | "license": "MIT", 2838 | "dependencies": { 2839 | "emoji-regex": "^8.0.0", 2840 | "is-fullwidth-code-point": "^3.0.0", 2841 | "strip-ansi": "^6.0.1" 2842 | }, 2843 | "engines": { 2844 | "node": ">=8" 2845 | } 2846 | }, 2847 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 2848 | "version": "5.0.1", 2849 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2850 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2851 | "license": "MIT", 2852 | "engines": { 2853 | "node": ">=8" 2854 | } 2855 | }, 2856 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 2857 | "version": "8.0.0", 2858 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2859 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2860 | "license": "MIT" 2861 | }, 2862 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 2863 | "version": "6.0.1", 2864 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2865 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2866 | "license": "MIT", 2867 | "dependencies": { 2868 | "ansi-regex": "^5.0.1" 2869 | }, 2870 | "engines": { 2871 | "node": ">=8" 2872 | } 2873 | }, 2874 | "node_modules/strip-ansi": { 2875 | "version": "7.1.0", 2876 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2877 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2878 | "license": "MIT", 2879 | "dependencies": { 2880 | "ansi-regex": "^6.0.1" 2881 | }, 2882 | "engines": { 2883 | "node": ">=12" 2884 | }, 2885 | "funding": { 2886 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2887 | } 2888 | }, 2889 | "node_modules/strip-ansi-cjs": { 2890 | "name": "strip-ansi", 2891 | "version": "6.0.1", 2892 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2893 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2894 | "license": "MIT", 2895 | "dependencies": { 2896 | "ansi-regex": "^5.0.1" 2897 | }, 2898 | "engines": { 2899 | "node": ">=8" 2900 | } 2901 | }, 2902 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 2903 | "version": "5.0.1", 2904 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2905 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2906 | "license": "MIT", 2907 | "engines": { 2908 | "node": ">=8" 2909 | } 2910 | }, 2911 | "node_modules/sucrase": { 2912 | "version": "3.35.0", 2913 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 2914 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 2915 | "license": "MIT", 2916 | "dependencies": { 2917 | "@jridgewell/gen-mapping": "^0.3.2", 2918 | "commander": "^4.0.0", 2919 | "glob": "^10.3.10", 2920 | "lines-and-columns": "^1.1.6", 2921 | "mz": "^2.7.0", 2922 | "pirates": "^4.0.1", 2923 | "ts-interface-checker": "^0.1.9" 2924 | }, 2925 | "bin": { 2926 | "sucrase": "bin/sucrase", 2927 | "sucrase-node": "bin/sucrase-node" 2928 | }, 2929 | "engines": { 2930 | "node": ">=16 || 14 >=14.17" 2931 | } 2932 | }, 2933 | "node_modules/supports-color": { 2934 | "version": "5.5.0", 2935 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2936 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2937 | "dev": true, 2938 | "license": "MIT", 2939 | "dependencies": { 2940 | "has-flag": "^3.0.0" 2941 | }, 2942 | "engines": { 2943 | "node": ">=4" 2944 | } 2945 | }, 2946 | "node_modules/supports-preserve-symlinks-flag": { 2947 | "version": "1.0.0", 2948 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2949 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2950 | "license": "MIT", 2951 | "engines": { 2952 | "node": ">= 0.4" 2953 | }, 2954 | "funding": { 2955 | "url": "https://github.com/sponsors/ljharb" 2956 | } 2957 | }, 2958 | "node_modules/tailwind-merge": { 2959 | "version": "2.3.0", 2960 | "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.3.0.tgz", 2961 | "integrity": "sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==", 2962 | "license": "MIT", 2963 | "dependencies": { 2964 | "@babel/runtime": "^7.24.1" 2965 | }, 2966 | "funding": { 2967 | "type": "github", 2968 | "url": "https://github.com/sponsors/dcastil" 2969 | } 2970 | }, 2971 | "node_modules/tailwindcss": { 2972 | "version": "3.4.4", 2973 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", 2974 | "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", 2975 | "license": "MIT", 2976 | "dependencies": { 2977 | "@alloc/quick-lru": "^5.2.0", 2978 | "arg": "^5.0.2", 2979 | "chokidar": "^3.5.3", 2980 | "didyoumean": "^1.2.2", 2981 | "dlv": "^1.1.3", 2982 | "fast-glob": "^3.3.0", 2983 | "glob-parent": "^6.0.2", 2984 | "is-glob": "^4.0.3", 2985 | "jiti": "^1.21.0", 2986 | "lilconfig": "^2.1.0", 2987 | "micromatch": "^4.0.5", 2988 | "normalize-path": "^3.0.0", 2989 | "object-hash": "^3.0.0", 2990 | "picocolors": "^1.0.0", 2991 | "postcss": "^8.4.23", 2992 | "postcss-import": "^15.1.0", 2993 | "postcss-js": "^4.0.1", 2994 | "postcss-load-config": "^4.0.1", 2995 | "postcss-nested": "^6.0.1", 2996 | "postcss-selector-parser": "^6.0.11", 2997 | "resolve": "^1.22.2", 2998 | "sucrase": "^3.32.0" 2999 | }, 3000 | "bin": { 3001 | "tailwind": "lib/cli.js", 3002 | "tailwindcss": "lib/cli.js" 3003 | }, 3004 | "engines": { 3005 | "node": ">=14.0.0" 3006 | } 3007 | }, 3008 | "node_modules/tailwindcss-animate": { 3009 | "version": "1.0.7", 3010 | "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", 3011 | "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", 3012 | "license": "MIT", 3013 | "peerDependencies": { 3014 | "tailwindcss": ">=3.0.0 || insiders" 3015 | } 3016 | }, 3017 | "node_modules/thenify": { 3018 | "version": "3.3.1", 3019 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3020 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3021 | "license": "MIT", 3022 | "dependencies": { 3023 | "any-promise": "^1.0.0" 3024 | } 3025 | }, 3026 | "node_modules/thenify-all": { 3027 | "version": "1.6.0", 3028 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3029 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3030 | "license": "MIT", 3031 | "dependencies": { 3032 | "thenify": ">= 3.1.0 < 4" 3033 | }, 3034 | "engines": { 3035 | "node": ">=0.8" 3036 | } 3037 | }, 3038 | "node_modules/to-fast-properties": { 3039 | "version": "2.0.0", 3040 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3041 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3042 | "dev": true, 3043 | "license": "MIT", 3044 | "engines": { 3045 | "node": ">=4" 3046 | } 3047 | }, 3048 | "node_modules/to-regex-range": { 3049 | "version": "5.0.1", 3050 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3051 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3052 | "license": "MIT", 3053 | "dependencies": { 3054 | "is-number": "^7.0.0" 3055 | }, 3056 | "engines": { 3057 | "node": ">=8.0" 3058 | } 3059 | }, 3060 | "node_modules/ts-interface-checker": { 3061 | "version": "0.1.13", 3062 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3063 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 3064 | "license": "Apache-2.0" 3065 | }, 3066 | "node_modules/typescript": { 3067 | "version": "5.4.3", 3068 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz", 3069 | "integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==", 3070 | "dev": true, 3071 | "bin": { 3072 | "tsc": "bin/tsc", 3073 | "tsserver": "bin/tsserver" 3074 | }, 3075 | "engines": { 3076 | "node": ">=14.17" 3077 | } 3078 | }, 3079 | "node_modules/undici-types": { 3080 | "version": "5.26.5", 3081 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3082 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 3083 | "dev": true, 3084 | "license": "MIT" 3085 | }, 3086 | "node_modules/universalify": { 3087 | "version": "2.0.1", 3088 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 3089 | "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 3090 | "dev": true, 3091 | "license": "MIT", 3092 | "engines": { 3093 | "node": ">= 10.0.0" 3094 | } 3095 | }, 3096 | "node_modules/update-browserslist-db": { 3097 | "version": "1.0.16", 3098 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", 3099 | "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", 3100 | "dev": true, 3101 | "funding": [ 3102 | { 3103 | "type": "opencollective", 3104 | "url": "https://opencollective.com/browserslist" 3105 | }, 3106 | { 3107 | "type": "tidelift", 3108 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3109 | }, 3110 | { 3111 | "type": "github", 3112 | "url": "https://github.com/sponsors/ai" 3113 | } 3114 | ], 3115 | "license": "MIT", 3116 | "dependencies": { 3117 | "escalade": "^3.1.2", 3118 | "picocolors": "^1.0.1" 3119 | }, 3120 | "bin": { 3121 | "update-browserslist-db": "cli.js" 3122 | }, 3123 | "peerDependencies": { 3124 | "browserslist": ">= 4.21.0" 3125 | } 3126 | }, 3127 | "node_modules/util-deprecate": { 3128 | "version": "1.0.2", 3129 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3130 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3131 | "license": "MIT" 3132 | }, 3133 | "node_modules/vite": { 3134 | "version": "5.2.7", 3135 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.7.tgz", 3136 | "integrity": "sha512-k14PWOKLI6pMaSzAuGtT+Cf0YmIx12z9YGon39onaJNy8DLBfBJrzg9FQEmkAM5lpHBZs9wksWAsyF/HkpEwJA==", 3137 | "dev": true, 3138 | "dependencies": { 3139 | "esbuild": "^0.20.1", 3140 | "postcss": "^8.4.38", 3141 | "rollup": "^4.13.0" 3142 | }, 3143 | "bin": { 3144 | "vite": "bin/vite.js" 3145 | }, 3146 | "engines": { 3147 | "node": "^18.0.0 || >=20.0.0" 3148 | }, 3149 | "funding": { 3150 | "url": "https://github.com/vitejs/vite?sponsor=1" 3151 | }, 3152 | "optionalDependencies": { 3153 | "fsevents": "~2.3.3" 3154 | }, 3155 | "peerDependencies": { 3156 | "@types/node": "^18.0.0 || >=20.0.0", 3157 | "less": "*", 3158 | "lightningcss": "^1.21.0", 3159 | "sass": "*", 3160 | "stylus": "*", 3161 | "sugarss": "*", 3162 | "terser": "^5.4.0" 3163 | }, 3164 | "peerDependenciesMeta": { 3165 | "@types/node": { 3166 | "optional": true 3167 | }, 3168 | "less": { 3169 | "optional": true 3170 | }, 3171 | "lightningcss": { 3172 | "optional": true 3173 | }, 3174 | "sass": { 3175 | "optional": true 3176 | }, 3177 | "stylus": { 3178 | "optional": true 3179 | }, 3180 | "sugarss": { 3181 | "optional": true 3182 | }, 3183 | "terser": { 3184 | "optional": true 3185 | } 3186 | } 3187 | }, 3188 | "node_modules/vite-plugin-env-compatible": { 3189 | "version": "2.0.1", 3190 | "resolved": "https://registry.npmjs.org/vite-plugin-env-compatible/-/vite-plugin-env-compatible-2.0.1.tgz", 3191 | "integrity": "sha512-DRrOZTg/W44ojVQQfGSMPEgYQGzp5TeIpt9cpaK35hTOC/b2D7Ffl8/RIgK8vQ0mlnDIUgETcA173bnMEkyzdw==", 3192 | "dev": true, 3193 | "license": "MIT", 3194 | "dependencies": { 3195 | "dotenv": "8.2.0", 3196 | "dotenv-expand": "5.1.0" 3197 | } 3198 | }, 3199 | "node_modules/vite-plugin-static-copy": { 3200 | "version": "1.0.3", 3201 | "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-1.0.3.tgz", 3202 | "integrity": "sha512-hBCCz6T0uNI3oF5oJ/Ju73rhoR+ADrJ2iLAea5+wA7kpQ8clYgY8BD+GL0w0BrqsYCbgBITOByBP/3y9Y+h93A==", 3203 | "dev": true, 3204 | "license": "MIT", 3205 | "dependencies": { 3206 | "chokidar": "^3.5.3", 3207 | "fast-glob": "^3.2.11", 3208 | "fs-extra": "^11.1.0", 3209 | "picocolors": "^1.0.0" 3210 | }, 3211 | "engines": { 3212 | "node": "^18.0.0 || >=20.0.0" 3213 | }, 3214 | "peerDependencies": { 3215 | "vite": "^5.0.0" 3216 | } 3217 | }, 3218 | "node_modules/vite-plugin-zip-pack": { 3219 | "version": "1.2.3", 3220 | "resolved": "https://registry.npmjs.org/vite-plugin-zip-pack/-/vite-plugin-zip-pack-1.2.3.tgz", 3221 | "integrity": "sha512-sAKn1PBWcrwWkBf2degreaef8yV4h1UEOY9nHaWVebOhytLLvq8b5f42xsriuRR2VoQidF2JLHLtuCxhJ2oQFg==", 3222 | "dev": true, 3223 | "license": "MIT", 3224 | "dependencies": { 3225 | "jszip": "^3.10.1" 3226 | }, 3227 | "peerDependencies": { 3228 | "vite": ">=2.x" 3229 | } 3230 | }, 3231 | "node_modules/which": { 3232 | "version": "2.0.2", 3233 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3234 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3235 | "license": "ISC", 3236 | "dependencies": { 3237 | "isexe": "^2.0.0" 3238 | }, 3239 | "bin": { 3240 | "node-which": "bin/node-which" 3241 | }, 3242 | "engines": { 3243 | "node": ">= 8" 3244 | } 3245 | }, 3246 | "node_modules/wrap-ansi": { 3247 | "version": "8.1.0", 3248 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3249 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3250 | "license": "MIT", 3251 | "dependencies": { 3252 | "ansi-styles": "^6.1.0", 3253 | "string-width": "^5.0.1", 3254 | "strip-ansi": "^7.0.1" 3255 | }, 3256 | "engines": { 3257 | "node": ">=12" 3258 | }, 3259 | "funding": { 3260 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3261 | } 3262 | }, 3263 | "node_modules/wrap-ansi-cjs": { 3264 | "name": "wrap-ansi", 3265 | "version": "7.0.0", 3266 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3267 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3268 | "license": "MIT", 3269 | "dependencies": { 3270 | "ansi-styles": "^4.0.0", 3271 | "string-width": "^4.1.0", 3272 | "strip-ansi": "^6.0.0" 3273 | }, 3274 | "engines": { 3275 | "node": ">=10" 3276 | }, 3277 | "funding": { 3278 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3279 | } 3280 | }, 3281 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3282 | "version": "5.0.1", 3283 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3284 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3285 | "license": "MIT", 3286 | "engines": { 3287 | "node": ">=8" 3288 | } 3289 | }, 3290 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 3291 | "version": "4.3.0", 3292 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3293 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3294 | "license": "MIT", 3295 | "dependencies": { 3296 | "color-convert": "^2.0.1" 3297 | }, 3298 | "engines": { 3299 | "node": ">=8" 3300 | }, 3301 | "funding": { 3302 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3303 | } 3304 | }, 3305 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3306 | "version": "8.0.0", 3307 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3308 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3309 | "license": "MIT" 3310 | }, 3311 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3312 | "version": "4.2.3", 3313 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3314 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3315 | "license": "MIT", 3316 | "dependencies": { 3317 | "emoji-regex": "^8.0.0", 3318 | "is-fullwidth-code-point": "^3.0.0", 3319 | "strip-ansi": "^6.0.1" 3320 | }, 3321 | "engines": { 3322 | "node": ">=8" 3323 | } 3324 | }, 3325 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3326 | "version": "6.0.1", 3327 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3328 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3329 | "license": "MIT", 3330 | "dependencies": { 3331 | "ansi-regex": "^5.0.1" 3332 | }, 3333 | "engines": { 3334 | "node": ">=8" 3335 | } 3336 | }, 3337 | "node_modules/yallist": { 3338 | "version": "3.1.1", 3339 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3340 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3341 | "dev": true, 3342 | "license": "ISC" 3343 | }, 3344 | "node_modules/yaml": { 3345 | "version": "2.4.5", 3346 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz", 3347 | "integrity": "sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==", 3348 | "license": "ISC", 3349 | "bin": { 3350 | "yaml": "bin.mjs" 3351 | }, 3352 | "engines": { 3353 | "node": ">= 14" 3354 | } 3355 | } 3356 | } 3357 | } 3358 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "primatepack", 3 | "version": "2.0.0", 4 | "description": "A suite of plugins developed by Monke", 5 | "author": "Ciarán Cotter ", 6 | "license": "CC0-1.0", 7 | "type": "module", 8 | "scripts": { 9 | "build": "vite build" 10 | }, 11 | "dependencies": { 12 | "@caido/sdk-frontend": "0.41.1-beta.1", 13 | "@radix-ui/react-icons": "^1.3.0", 14 | "@radix-ui/react-slot": "^1.1.0", 15 | "@radix-ui/themes": "^3.1.4", 16 | "class-variance-authority": "^0.7.0", 17 | "clsx": "^2.1.1", 18 | "lucide-react": "^0.395.0", 19 | "react-dom": "^18.3.1", 20 | "react-speech-recognition": "^3.10.0", 21 | "tailwind-merge": "^2.5.2", 22 | "tailwindcss-animate": "^1.0.7" 23 | }, 24 | "devDependencies": { 25 | "@babel/core": "^7.25.2", 26 | "@types/node": "^20.16.10", 27 | "@types/react": "^18.3.10", 28 | "@types/react-dom": "^18.3.0", 29 | "@vitejs/plugin-react": "^4.3.1", 30 | "autoprefixer": "^10.4.20", 31 | "postcss": "^8.4.47", 32 | "tailwindcss": "^3.4.13", 33 | "typescript": "5.4.3", 34 | "vite": "5.2.7", 35 | "vite-plugin-env-compatible": "^2.0.1", 36 | "vite-plugin-static-copy": "1.0.3", 37 | "vite-plugin-zip-pack": "1.2.3" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from "react-dom/client"; 2 | import "@radix-ui/themes/styles.css"; 3 | import type { Caido } from "@caido/sdk-frontend"; 4 | import { getCaidoAPI, setCaidoAPI } from "./utils/caidoapi"; 5 | import { PluginStorage } from "./utils/types"; 6 | import { PrimatePackSettings } from "./submodules/settings"; 7 | import { EmbedPage } from "./submodules/embedder"; 8 | 9 | const addSettingsPages = (caido: Caido) => { 10 | const body = document.createElement("div"); 11 | body.className = "primatepack-settings"; 12 | body.innerHTML = '
'; 13 | document.body.appendChild(body); 14 | 15 | const rootElement = document.getElementById("settings-root"); 16 | if (rootElement) { 17 | const root = createRoot(rootElement); 18 | root.render(); 19 | } 20 | 21 | caido.navigation.addPage("/settings/primatepack", { body }); 22 | }; 23 | 24 | const addEmbedderPage = (caido: Caido) => { 25 | const embedderBody = document.createElement("div"); 26 | embedderBody.className = "primatepack-embedder"; 27 | embedderBody.innerHTML = '
'; 28 | document.body.appendChild(embedderBody); 29 | 30 | const embedderRootElement = document.getElementById("embedder-root"); 31 | if (embedderRootElement) { 32 | const root = createRoot(embedderRootElement); 33 | root.render(); 34 | } 35 | 36 | caido.navigation.addPage("/embedder", { body: embedderBody }); 37 | }; 38 | 39 | const loadPrefs = (caido: Caido) => { 40 | const storage = caido.storage.get() as PluginStorage | null; 41 | 42 | const defaultPrefs: PluginStorage = { 43 | embed_title: "Embedder", 44 | embed_url: "https://www.example.com", 45 | gif_url: "https://i.pinimg.com/originals/56/7a/09/567a0964671de5b98b70583fe81ae5b0.gif", 46 | gif_width: 150, 47 | gif_height: 100, 48 | webhooks: [] 49 | }; 50 | 51 | return { 52 | gifUrl: storage?.gif_url || defaultPrefs.gif_url, 53 | gifWidth: storage?.gif_width || defaultPrefs.gif_width, 54 | gifHeight: storage?.gif_height || defaultPrefs.gif_height, 55 | webhooks: storage?.webhooks || defaultPrefs.webhooks, 56 | embedTitle: storage?.embed_title || defaultPrefs.embed_title, 57 | embedUrl: storage?.embed_url || defaultPrefs.embed_url 58 | }; 59 | }; 60 | 61 | export const init = (caido: Caido) => { 62 | setCaidoAPI(caido); 63 | addSettingsPages(caido); 64 | addEmbedderPage(caido); 65 | 66 | getCaidoAPI().menu.registerItem({ 67 | type: "Settings", 68 | label: "The Primate Pack", 69 | path: "/settings/primatepack", 70 | leadingIcon: "fas fa-cat", 71 | }); 72 | 73 | const { gifUrl, gifWidth, gifHeight, webhooks, embedTitle } = loadPrefs(caido); 74 | 75 | getCaidoAPI().sidebar.registerItem("", "#", { 76 | icon: "", 77 | group: ``, 78 | }); 79 | 80 | caido.sidebar.registerItem(embedTitle, "/embedder", { 81 | icon: "fas fa-cat", 82 | group: "Primate Pack", 83 | }); 84 | 85 | const gifImage = document.getElementById("gifImage") as HTMLImageElement; 86 | if (gifImage) { 87 | gifImage.src = gifUrl; 88 | gifImage.width = gifWidth; 89 | gifImage.height = gifHeight; 90 | } 91 | 92 | if (webhooks.length === 0) { 93 | console.warn("No webhooks found."); 94 | return; 95 | } 96 | 97 | webhooks.forEach((webhook) => { 98 | const commandId = `send_to_${webhook.name.toLowerCase().replace(/\s+/g, '_')}`; 99 | 100 | caido.commands.register(commandId, { 101 | name: `Send to ${webhook.name}`, 102 | run: async () => { 103 | const selectedText = caido.window.getActiveEditor()?.getSelectedText(); 104 | 105 | if (!selectedText) { 106 | alert("Please select text"); 107 | return; 108 | } 109 | 110 | const cleanedText = selectedText.replace(/(?:^|\n)(?:\s*cookie:\s*.*?(\r?\n|$)|\s*Authorization:\s*.*?(\r?\n|$))/gi, ''); 111 | 112 | try { 113 | const response = await fetch(webhook.url, { 114 | method: 'POST', 115 | headers: { 116 | 'Content-Type': 'application/json', 117 | }, 118 | body: JSON.stringify({ content: cleanedText }), 119 | }); 120 | if (!response.ok) { 121 | throw new Error(`Error: ${response.statusText}`); 122 | } 123 | alert("Request Sent Successfully"); 124 | } catch (error) { 125 | alert("Failed to Send"); 126 | } 127 | }, 128 | group: "Custom Commands", 129 | }); 130 | 131 | caido.menu.registerItem({ 132 | type: "Request", 133 | commandId: commandId, 134 | leadingIcon: "fas fa-paper-plane", 135 | }); 136 | }); 137 | 138 | /* 139 | Speech-to-text navigation coming soon for web-based Caido users! leaving this snippet of code here as an easter egg. 140 | 141 | getCaidoAPI().commands.register("stt", { 142 | name: "STT", 143 | group: "Navigation", 144 | run: () => { 145 | const recognition = new (window.SpeechRecognition || window.webkitSpeechRecognition)(); 146 | recognition.onresult = (event: SpeechRecognitionEvent) => { 147 | const transcript = event.results[0][0].transcript; 148 | console.log("Navigated to " + transcript + " via STT"); 149 | getCaidoAPI().navigation.goTo("/"+transcript); 150 | }; 151 | recognition.start(); 152 | }, 153 | }); 154 | */ 155 | 156 | // getCaidoAPI().commandPalette.register("stt"); 157 | }; 158 | -------------------------------------------------------------------------------- /src/submodules/embedder.tsx: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | import { TextField, Button, Grid } from "@radix-ui/themes"; 3 | import { Link1Icon } from "@radix-ui/react-icons"; 4 | import type { Caido } from "@caido/sdk-frontend"; 5 | import type { PluginStorage } from "../utils/types"; 6 | 7 | export const EmbedderSettingsForm = ({ caido }: { caido: Caido }) => { 8 | const [embedTitle, setEmbedTitle] = useState(() => { 9 | const storage = caido.storage.get() as PluginStorage; 10 | return storage?.embed_title || "Embedder"; 11 | }); 12 | const [embedUrl, setEmbedUrl] = useState(() => { 13 | const storage = caido.storage.get() as PluginStorage; 14 | return storage?.embed_url || "https://www.example.com"; 15 | }); 16 | 17 | useEffect(() => { 18 | const storage = caido.storage.get() as PluginStorage; 19 | if (storage) { 20 | setEmbedTitle(storage.embed_title || "Embedder"); 21 | setEmbedUrl(storage.embed_url || "https://www.example.com"); 22 | } 23 | }, [caido]); 24 | 25 | const handleSaveChanges = () => { 26 | const storage = caido.storage.get() as PluginStorage; 27 | caido.storage.set({ 28 | ...storage, 29 | embed_title: embedTitle, 30 | embed_url: embedUrl 31 | }); 32 | }; 33 | 34 | return ( 35 | 36 |

Embedder

37 | setEmbedTitle(e.target.value)} 41 | id="embed_title_input" 42 | /> 43 | setEmbedUrl(e.target.value)} 47 | id="embed_url_input" 48 | > 49 | 50 | 51 | 52 | 53 | 56 |
57 | ); 58 | }; 59 | 60 | export const EmbedderSettings = ({ caido }: { caido: Caido }) => ( 61 | 62 | 63 | 64 | ); 65 | 66 | export const EmbedPage = ({ caido }: { caido: Caido }) => { 67 | const storage = caido.storage.get() as PluginStorage; 68 | const embedUrl = storage ? storage.embed_url || "https://www.example.com" : "https://www.example.com"; 69 | return ( 70 |