├── .editorconfig ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── package-lock.json ├── package.json ├── src └── index.ts ├── test ├── index.spec.ts └── tsconfig.json ├── tsconfig.json ├── vitest.config.mts ├── worker-configuration.d.ts └── wrangler.jsonc /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = tab 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.yml] 12 | indent_style = space 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | 3 | logs 4 | _.log 5 | npm-debug.log_ 6 | yarn-debug.log* 7 | yarn-error.log* 8 | lerna-debug.log* 9 | .pnpm-debug.log* 10 | 11 | # Diagnostic reports (https://nodejs.org/api/report.html) 12 | 13 | report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json 14 | 15 | # Runtime data 16 | 17 | pids 18 | _.pid 19 | _.seed 20 | \*.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | 24 | lib-cov 25 | 26 | # Coverage directory used by tools like istanbul 27 | 28 | coverage 29 | \*.lcov 30 | 31 | # nyc test coverage 32 | 33 | .nyc_output 34 | 35 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 36 | 37 | .grunt 38 | 39 | # Bower dependency directory (https://bower.io/) 40 | 41 | bower_components 42 | 43 | # node-waf configuration 44 | 45 | .lock-wscript 46 | 47 | # Compiled binary addons (https://nodejs.org/api/addons.html) 48 | 49 | build/Release 50 | 51 | # Dependency directories 52 | 53 | node_modules/ 54 | jspm_packages/ 55 | 56 | # Snowpack dependency directory (https://snowpack.dev/) 57 | 58 | web_modules/ 59 | 60 | # TypeScript cache 61 | 62 | \*.tsbuildinfo 63 | 64 | # Optional npm cache directory 65 | 66 | .npm 67 | 68 | # Optional eslint cache 69 | 70 | .eslintcache 71 | 72 | # Optional stylelint cache 73 | 74 | .stylelintcache 75 | 76 | # Microbundle cache 77 | 78 | .rpt2_cache/ 79 | .rts2_cache_cjs/ 80 | .rts2_cache_es/ 81 | .rts2_cache_umd/ 82 | 83 | # Optional REPL history 84 | 85 | .node_repl_history 86 | 87 | # Output of 'npm pack' 88 | 89 | \*.tgz 90 | 91 | # Yarn Integrity file 92 | 93 | .yarn-integrity 94 | 95 | # dotenv environment variable files 96 | 97 | .env 98 | .env.development.local 99 | .env.test.local 100 | .env.production.local 101 | .env.local 102 | 103 | # parcel-bundler cache (https://parceljs.org/) 104 | 105 | .cache 106 | .parcel-cache 107 | 108 | # Next.js build output 109 | 110 | .next 111 | out 112 | 113 | # Nuxt.js build / generate output 114 | 115 | .nuxt 116 | dist 117 | 118 | # Gatsby files 119 | 120 | .cache/ 121 | 122 | # Comment in the public line in if your project uses Gatsby and not Next.js 123 | 124 | # https://nextjs.org/blog/next-9-1#public-directory-support 125 | 126 | # public 127 | 128 | # vuepress build output 129 | 130 | .vuepress/dist 131 | 132 | # vuepress v2.x temp and cache directory 133 | 134 | .temp 135 | .cache 136 | 137 | # Docusaurus cache and generated files 138 | 139 | .docusaurus 140 | 141 | # Serverless directories 142 | 143 | .serverless/ 144 | 145 | # FuseBox cache 146 | 147 | .fusebox/ 148 | 149 | # DynamoDB Local files 150 | 151 | .dynamodb/ 152 | 153 | # TernJS port file 154 | 155 | .tern-port 156 | 157 | # Stores VSCode versions used for testing VSCode extensions 158 | 159 | .vscode-test 160 | 161 | # yarn v2 162 | 163 | .yarn/cache 164 | .yarn/unplugged 165 | .yarn/build-state.yml 166 | .yarn/install-state.gz 167 | .pnp.\* 168 | 169 | # wrangler project 170 | 171 | .dev.vars 172 | .wrangler/ 173 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 140, 3 | "singleQuote": true, 4 | "semi": true, 5 | "useTabs": true 6 | } 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "wrangler.json": "jsonc" 4 | } 5 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Hacker News Top 10 Stories with AI Analysis w/ Hourly Email Summaries 2 | 3 | This is a Cloudflare Worker that scrapes the top 10 stories from Hacker News using [Browser Rendering](https://developers.cloudflare.com/browser-rendering/workers-binding-api/screenshots/), analyzes/summarizes them using [Cloudflare Workers AI](https://developers.cloudflare.com/workers-ai/models/), displays that according to tone users select via button click, and sends the results via [Cloudflare Email Routing](https://developers.cloudflare.com/email-routing/email-workers/send-email-workers/) every hour (using [Cloudflare Cron Triggers](https://developers.cloudflare.com/workers/configuration/cron-triggers/)). 4 | 5 | ### Features 6 | Scrapes Top 10 Hacker News Stories: Uses Cloudflare's Browser Rendering API to fetch the latest top stories from Hacker News. 7 | 8 | AI-Powered Analysis: Generates summaries of the stories using Cloudflare Workers AI with customizable tones (e.g., Ted Lasso or Stephen A. Smith). 9 | 10 | Email Delivery: Sends the top stories and AI-generated summaries via Cloudflare Email. 11 | 12 | Interactive Web Interface: Provides a web interface to view the top stories and generate AI summaries in different tones. 13 | 14 | ### Setup 15 | #### Prerequisites 16 | - Cloudflare Account: Create one today for free: https://dash.cloudflare.com/sign-up 17 | 18 | - Wrangler CLI: Install and authenticate: 19 | 20 | ```bash 21 | npm install -g wrangler 22 | wrangler login 23 | ``` 24 | 25 | - Clone the repo and install dependencies: 26 | ```bash 27 | git clone https://github.com/elizabethsiegle/marchmadness-prediction-analysis-worker 28 | cd marchmadness-prediction-analysis-worker 29 | npm install 30 | ``` 31 | 32 | - Cloudflare Email Setup: [Configure your domain for Cloudflare Email and set up the necessary bindings](https://developers.cloudflare.com/email-routing/setup/email-routing-addresses/). 33 | 34 | - Add the following bindings to your wrangler.jsonc file to interact with your Worker: 35 | ```jsonc 36 | "triggers": 37 | { 38 | "crons": ["46 * * * *"] 39 | }, // Edit how often you wish the email to send. This runs every hour at the 46th minute 40 | "send_email": [ //email binding to send the email 41 | { 42 | "name": "SEB" 43 | } 44 | ], 45 | "browser": { // browser rendering binding to scrape Hacker News 46 | "binding": "MYBROWSER" 47 | }, 48 | "ai": { // AI binding to analyze and summarize the stories with Workers AI 49 | "binding": "AI" 50 | }, 51 | "compatibility_flags": ["nodejs_compat"], 52 | "durable_objects": { 53 | "bindings": [ 54 | { 55 | "name": "BROWSERDO", 56 | "class_name": "BrowserDo" 57 | } 58 | ] 59 | }, 60 | "migrations": [ 61 | { 62 | "tag": "v1", 63 | "new_classes": [ 64 | "BrowserDo" 65 | ] 66 | } 67 | ] 68 | ``` 69 | 70 | - Deploy the Worker: 71 | ```bash 72 | npx wrangler deploy 73 | ``` 74 | or run locally with `npm run dev --remote` -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacker-news-email-worker", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "hacker-news-email-worker", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "@cloudflare/puppeteer": "^0.0.14", 12 | "@hono/node-server": "^1.13.8", 13 | "mimetext": "^3.0.27" 14 | }, 15 | "devDependencies": { 16 | "@cloudflare/vitest-pool-workers": "^0.6.4", 17 | "@cloudflare/workers-types": "^4.20250224.0", 18 | "typescript": "^5.5.2", 19 | "vitest": "~2.1.9", 20 | "wrangler": "^3.110.0" 21 | } 22 | }, 23 | "node_modules/@babel/runtime": { 24 | "version": "7.26.9", 25 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz", 26 | "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==", 27 | "license": "MIT", 28 | "dependencies": { 29 | "regenerator-runtime": "^0.14.0" 30 | }, 31 | "engines": { 32 | "node": ">=6.9.0" 33 | } 34 | }, 35 | "node_modules/@babel/runtime-corejs3": { 36 | "version": "7.26.9", 37 | "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.9.tgz", 38 | "integrity": "sha512-5EVjbTegqN7RSJle6hMWYxO4voo4rI+9krITk+DWR+diJgGrjZjrIBnJhjrHYYQsFgI7j1w1QnrvV7YSKBfYGg==", 39 | "license": "MIT", 40 | "dependencies": { 41 | "core-js-pure": "^3.30.2", 42 | "regenerator-runtime": "^0.14.0" 43 | }, 44 | "engines": { 45 | "node": ">=6.9.0" 46 | } 47 | }, 48 | "node_modules/@cloudflare/kv-asset-handler": { 49 | "version": "0.3.4", 50 | "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz", 51 | "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", 52 | "dev": true, 53 | "license": "MIT OR Apache-2.0", 54 | "dependencies": { 55 | "mime": "^3.0.0" 56 | }, 57 | "engines": { 58 | "node": ">=16.13" 59 | } 60 | }, 61 | "node_modules/@cloudflare/puppeteer": { 62 | "version": "0.0.14", 63 | "resolved": "https://registry.npmjs.org/@cloudflare/puppeteer/-/puppeteer-0.0.14.tgz", 64 | "integrity": "sha512-wglNG53M4LbLnaU8i14bWNA3fUqKQy17Spczo+PWaGZO1W6m8rzi6u/x49BZ/s3LGg0VJHK4ZaLjkXo2/5ESdA==", 65 | "license": "Apache-2.0", 66 | "dependencies": { 67 | "@puppeteer/browsers": "1.7.0", 68 | "chromium-bidi": "0.4.20", 69 | "cross-fetch": "4.0.0", 70 | "debug": "4.3.4", 71 | "devtools-protocol": "0.0.1159816", 72 | "ws": "8.13.0" 73 | }, 74 | "engines": { 75 | "node": ">=16.3.0" 76 | } 77 | }, 78 | "node_modules/@cloudflare/puppeteer/node_modules/debug": { 79 | "version": "4.3.4", 80 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 81 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 82 | "license": "MIT", 83 | "dependencies": { 84 | "ms": "2.1.2" 85 | }, 86 | "engines": { 87 | "node": ">=6.0" 88 | }, 89 | "peerDependenciesMeta": { 90 | "supports-color": { 91 | "optional": true 92 | } 93 | } 94 | }, 95 | "node_modules/@cloudflare/puppeteer/node_modules/ms": { 96 | "version": "2.1.2", 97 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 98 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 99 | "license": "MIT" 100 | }, 101 | "node_modules/@cloudflare/puppeteer/node_modules/ws": { 102 | "version": "8.13.0", 103 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", 104 | "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", 105 | "license": "MIT", 106 | "engines": { 107 | "node": ">=10.0.0" 108 | }, 109 | "peerDependencies": { 110 | "bufferutil": "^4.0.1", 111 | "utf-8-validate": ">=5.0.2" 112 | }, 113 | "peerDependenciesMeta": { 114 | "bufferutil": { 115 | "optional": true 116 | }, 117 | "utf-8-validate": { 118 | "optional": true 119 | } 120 | } 121 | }, 122 | "node_modules/@cloudflare/vitest-pool-workers": { 123 | "version": "0.6.16", 124 | "resolved": "https://registry.npmjs.org/@cloudflare/vitest-pool-workers/-/vitest-pool-workers-0.6.16.tgz", 125 | "integrity": "sha512-fKGP+jMyrIh54QncFa7A5NE3k8fWW6oCU4v9IW6Hiu7cAVKBvhdPUAfYBQS7EU1TsjGJl/y5N4Urds3PUFocoQ==", 126 | "dev": true, 127 | "license": "MIT", 128 | "dependencies": { 129 | "birpc": "0.2.14", 130 | "cjs-module-lexer": "^1.2.3", 131 | "devalue": "^4.3.0", 132 | "esbuild": "0.17.19", 133 | "miniflare": "3.20250204.1", 134 | "semver": "^7.5.1", 135 | "wrangler": "3.109.1", 136 | "zod": "^3.22.3" 137 | }, 138 | "peerDependencies": { 139 | "@vitest/runner": "2.0.x - 2.1.x", 140 | "@vitest/snapshot": "2.0.x - 2.1.x", 141 | "vitest": "2.0.x - 2.1.x" 142 | } 143 | }, 144 | "node_modules/@cloudflare/vitest-pool-workers/node_modules/wrangler": { 145 | "version": "3.109.1", 146 | "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.109.1.tgz", 147 | "integrity": "sha512-1Jx+nZ6eCXPQ2rsGdrV6Qy/LGvhpqudeuTl4AYHl9P8Zugp44Uzxnj5w11qF4v/rv1dOZoA5TydSt9xMFfhpKg==", 148 | "dev": true, 149 | "license": "MIT OR Apache-2.0", 150 | "dependencies": { 151 | "@cloudflare/kv-asset-handler": "0.3.4", 152 | "@esbuild-plugins/node-globals-polyfill": "0.2.3", 153 | "@esbuild-plugins/node-modules-polyfill": "0.2.2", 154 | "blake3-wasm": "2.1.5", 155 | "esbuild": "0.17.19", 156 | "miniflare": "3.20250204.1", 157 | "path-to-regexp": "6.3.0", 158 | "unenv": "2.0.0-rc.1", 159 | "workerd": "1.20250204.0" 160 | }, 161 | "bin": { 162 | "wrangler": "bin/wrangler.js", 163 | "wrangler2": "bin/wrangler.js" 164 | }, 165 | "engines": { 166 | "node": ">=16.17.0" 167 | }, 168 | "optionalDependencies": { 169 | "fsevents": "~2.3.2", 170 | "sharp": "^0.33.5" 171 | }, 172 | "peerDependencies": { 173 | "@cloudflare/workers-types": "^4.20250204.0" 174 | }, 175 | "peerDependenciesMeta": { 176 | "@cloudflare/workers-types": { 177 | "optional": true 178 | } 179 | } 180 | }, 181 | "node_modules/@cloudflare/workerd-darwin-64": { 182 | "version": "1.20250204.0", 183 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20250204.0.tgz", 184 | "integrity": "sha512-HpsgbWEfvdcwuZ8WAZhi1TlSCyyHC3tbghpKsOqGDaQNltyAFAWqa278TPNfcitYf/FmV4961v3eqUE+RFdHNQ==", 185 | "cpu": [ 186 | "x64" 187 | ], 188 | "dev": true, 189 | "license": "Apache-2.0", 190 | "optional": true, 191 | "os": [ 192 | "darwin" 193 | ], 194 | "engines": { 195 | "node": ">=16" 196 | } 197 | }, 198 | "node_modules/@cloudflare/workerd-darwin-arm64": { 199 | "version": "1.20250204.0", 200 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20250204.0.tgz", 201 | "integrity": "sha512-AJ8Tk7KMJqePlch3SH8oL41ROtsrb07hKRHD6M+FvGC3tLtf26rpteAAMNYKMDYKzFNFUIKZNijYDFZjBFndXQ==", 202 | "cpu": [ 203 | "arm64" 204 | ], 205 | "dev": true, 206 | "license": "Apache-2.0", 207 | "optional": true, 208 | "os": [ 209 | "darwin" 210 | ], 211 | "engines": { 212 | "node": ">=16" 213 | } 214 | }, 215 | "node_modules/@cloudflare/workerd-linux-64": { 216 | "version": "1.20250204.0", 217 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20250204.0.tgz", 218 | "integrity": "sha512-RIUfUSnDC8h73zAa+u1K2Frc7nc+eeQoBBP7SaqsRe6JdX8jfIv/GtWjQWCoj8xQFgLvhpJKZ4sTTTV+AilQbw==", 219 | "cpu": [ 220 | "x64" 221 | ], 222 | "dev": true, 223 | "license": "Apache-2.0", 224 | "optional": true, 225 | "os": [ 226 | "linux" 227 | ], 228 | "engines": { 229 | "node": ">=16" 230 | } 231 | }, 232 | "node_modules/@cloudflare/workerd-linux-arm64": { 233 | "version": "1.20250204.0", 234 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20250204.0.tgz", 235 | "integrity": "sha512-8Ql8jDjoIgr2J7oBD01kd9kduUz60njofrBpAOkjCPed15He8e8XHkYaYow3g0xpae4S2ryrPOeoD3M64sRxeg==", 236 | "cpu": [ 237 | "arm64" 238 | ], 239 | "dev": true, 240 | "license": "Apache-2.0", 241 | "optional": true, 242 | "os": [ 243 | "linux" 244 | ], 245 | "engines": { 246 | "node": ">=16" 247 | } 248 | }, 249 | "node_modules/@cloudflare/workerd-windows-64": { 250 | "version": "1.20250204.0", 251 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20250204.0.tgz", 252 | "integrity": "sha512-RpDJO3+to+e17X3EWfRCagboZYwBz2fowc+jL53+fd7uD19v3F59H48lw2BDpHJMRyhg6ouWcpM94OhsHv8ecA==", 253 | "cpu": [ 254 | "x64" 255 | ], 256 | "dev": true, 257 | "license": "Apache-2.0", 258 | "optional": true, 259 | "os": [ 260 | "win32" 261 | ], 262 | "engines": { 263 | "node": ">=16" 264 | } 265 | }, 266 | "node_modules/@cloudflare/workers-types": { 267 | "version": "4.20250224.0", 268 | "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20250224.0.tgz", 269 | "integrity": "sha512-j6ZwQ5G2moQRaEtGI2u5TBQhVXv/XwOS5jfBAheZHcpCM07zm8j0i8jZHHLq/6VA8e6VRjKohOyj5j6tZ1KHLQ==", 270 | "dev": true, 271 | "license": "MIT OR Apache-2.0" 272 | }, 273 | "node_modules/@cspotcode/source-map-support": { 274 | "version": "0.8.1", 275 | "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", 276 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", 277 | "dev": true, 278 | "license": "MIT", 279 | "dependencies": { 280 | "@jridgewell/trace-mapping": "0.3.9" 281 | }, 282 | "engines": { 283 | "node": ">=12" 284 | } 285 | }, 286 | "node_modules/@emnapi/runtime": { 287 | "version": "1.3.1", 288 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", 289 | "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", 290 | "dev": true, 291 | "license": "MIT", 292 | "optional": true, 293 | "dependencies": { 294 | "tslib": "^2.4.0" 295 | } 296 | }, 297 | "node_modules/@esbuild-plugins/node-globals-polyfill": { 298 | "version": "0.2.3", 299 | "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz", 300 | "integrity": "sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==", 301 | "dev": true, 302 | "license": "ISC", 303 | "peerDependencies": { 304 | "esbuild": "*" 305 | } 306 | }, 307 | "node_modules/@esbuild-plugins/node-modules-polyfill": { 308 | "version": "0.2.2", 309 | "resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz", 310 | "integrity": "sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==", 311 | "dev": true, 312 | "license": "ISC", 313 | "dependencies": { 314 | "escape-string-regexp": "^4.0.0", 315 | "rollup-plugin-node-polyfills": "^0.2.1" 316 | }, 317 | "peerDependencies": { 318 | "esbuild": "*" 319 | } 320 | }, 321 | "node_modules/@esbuild/aix-ppc64": { 322 | "version": "0.21.5", 323 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 324 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 325 | "cpu": [ 326 | "ppc64" 327 | ], 328 | "dev": true, 329 | "license": "MIT", 330 | "optional": true, 331 | "os": [ 332 | "aix" 333 | ], 334 | "engines": { 335 | "node": ">=12" 336 | } 337 | }, 338 | "node_modules/@esbuild/android-arm": { 339 | "version": "0.17.19", 340 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", 341 | "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", 342 | "cpu": [ 343 | "arm" 344 | ], 345 | "dev": true, 346 | "license": "MIT", 347 | "optional": true, 348 | "os": [ 349 | "android" 350 | ], 351 | "engines": { 352 | "node": ">=12" 353 | } 354 | }, 355 | "node_modules/@esbuild/android-arm64": { 356 | "version": "0.17.19", 357 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", 358 | "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", 359 | "cpu": [ 360 | "arm64" 361 | ], 362 | "dev": true, 363 | "license": "MIT", 364 | "optional": true, 365 | "os": [ 366 | "android" 367 | ], 368 | "engines": { 369 | "node": ">=12" 370 | } 371 | }, 372 | "node_modules/@esbuild/android-x64": { 373 | "version": "0.17.19", 374 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", 375 | "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", 376 | "cpu": [ 377 | "x64" 378 | ], 379 | "dev": true, 380 | "license": "MIT", 381 | "optional": true, 382 | "os": [ 383 | "android" 384 | ], 385 | "engines": { 386 | "node": ">=12" 387 | } 388 | }, 389 | "node_modules/@esbuild/darwin-arm64": { 390 | "version": "0.17.19", 391 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", 392 | "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", 393 | "cpu": [ 394 | "arm64" 395 | ], 396 | "dev": true, 397 | "license": "MIT", 398 | "optional": true, 399 | "os": [ 400 | "darwin" 401 | ], 402 | "engines": { 403 | "node": ">=12" 404 | } 405 | }, 406 | "node_modules/@esbuild/darwin-x64": { 407 | "version": "0.17.19", 408 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", 409 | "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", 410 | "cpu": [ 411 | "x64" 412 | ], 413 | "dev": true, 414 | "license": "MIT", 415 | "optional": true, 416 | "os": [ 417 | "darwin" 418 | ], 419 | "engines": { 420 | "node": ">=12" 421 | } 422 | }, 423 | "node_modules/@esbuild/freebsd-arm64": { 424 | "version": "0.17.19", 425 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", 426 | "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", 427 | "cpu": [ 428 | "arm64" 429 | ], 430 | "dev": true, 431 | "license": "MIT", 432 | "optional": true, 433 | "os": [ 434 | "freebsd" 435 | ], 436 | "engines": { 437 | "node": ">=12" 438 | } 439 | }, 440 | "node_modules/@esbuild/freebsd-x64": { 441 | "version": "0.17.19", 442 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", 443 | "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", 444 | "cpu": [ 445 | "x64" 446 | ], 447 | "dev": true, 448 | "license": "MIT", 449 | "optional": true, 450 | "os": [ 451 | "freebsd" 452 | ], 453 | "engines": { 454 | "node": ">=12" 455 | } 456 | }, 457 | "node_modules/@esbuild/linux-arm": { 458 | "version": "0.17.19", 459 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", 460 | "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", 461 | "cpu": [ 462 | "arm" 463 | ], 464 | "dev": true, 465 | "license": "MIT", 466 | "optional": true, 467 | "os": [ 468 | "linux" 469 | ], 470 | "engines": { 471 | "node": ">=12" 472 | } 473 | }, 474 | "node_modules/@esbuild/linux-arm64": { 475 | "version": "0.17.19", 476 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", 477 | "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", 478 | "cpu": [ 479 | "arm64" 480 | ], 481 | "dev": true, 482 | "license": "MIT", 483 | "optional": true, 484 | "os": [ 485 | "linux" 486 | ], 487 | "engines": { 488 | "node": ">=12" 489 | } 490 | }, 491 | "node_modules/@esbuild/linux-ia32": { 492 | "version": "0.17.19", 493 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", 494 | "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", 495 | "cpu": [ 496 | "ia32" 497 | ], 498 | "dev": true, 499 | "license": "MIT", 500 | "optional": true, 501 | "os": [ 502 | "linux" 503 | ], 504 | "engines": { 505 | "node": ">=12" 506 | } 507 | }, 508 | "node_modules/@esbuild/linux-loong64": { 509 | "version": "0.17.19", 510 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", 511 | "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", 512 | "cpu": [ 513 | "loong64" 514 | ], 515 | "dev": true, 516 | "license": "MIT", 517 | "optional": true, 518 | "os": [ 519 | "linux" 520 | ], 521 | "engines": { 522 | "node": ">=12" 523 | } 524 | }, 525 | "node_modules/@esbuild/linux-mips64el": { 526 | "version": "0.17.19", 527 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", 528 | "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", 529 | "cpu": [ 530 | "mips64el" 531 | ], 532 | "dev": true, 533 | "license": "MIT", 534 | "optional": true, 535 | "os": [ 536 | "linux" 537 | ], 538 | "engines": { 539 | "node": ">=12" 540 | } 541 | }, 542 | "node_modules/@esbuild/linux-ppc64": { 543 | "version": "0.17.19", 544 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", 545 | "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", 546 | "cpu": [ 547 | "ppc64" 548 | ], 549 | "dev": true, 550 | "license": "MIT", 551 | "optional": true, 552 | "os": [ 553 | "linux" 554 | ], 555 | "engines": { 556 | "node": ">=12" 557 | } 558 | }, 559 | "node_modules/@esbuild/linux-riscv64": { 560 | "version": "0.17.19", 561 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", 562 | "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", 563 | "cpu": [ 564 | "riscv64" 565 | ], 566 | "dev": true, 567 | "license": "MIT", 568 | "optional": true, 569 | "os": [ 570 | "linux" 571 | ], 572 | "engines": { 573 | "node": ">=12" 574 | } 575 | }, 576 | "node_modules/@esbuild/linux-s390x": { 577 | "version": "0.17.19", 578 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", 579 | "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", 580 | "cpu": [ 581 | "s390x" 582 | ], 583 | "dev": true, 584 | "license": "MIT", 585 | "optional": true, 586 | "os": [ 587 | "linux" 588 | ], 589 | "engines": { 590 | "node": ">=12" 591 | } 592 | }, 593 | "node_modules/@esbuild/linux-x64": { 594 | "version": "0.17.19", 595 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", 596 | "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", 597 | "cpu": [ 598 | "x64" 599 | ], 600 | "dev": true, 601 | "license": "MIT", 602 | "optional": true, 603 | "os": [ 604 | "linux" 605 | ], 606 | "engines": { 607 | "node": ">=12" 608 | } 609 | }, 610 | "node_modules/@esbuild/netbsd-x64": { 611 | "version": "0.17.19", 612 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", 613 | "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", 614 | "cpu": [ 615 | "x64" 616 | ], 617 | "dev": true, 618 | "license": "MIT", 619 | "optional": true, 620 | "os": [ 621 | "netbsd" 622 | ], 623 | "engines": { 624 | "node": ">=12" 625 | } 626 | }, 627 | "node_modules/@esbuild/openbsd-x64": { 628 | "version": "0.17.19", 629 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", 630 | "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", 631 | "cpu": [ 632 | "x64" 633 | ], 634 | "dev": true, 635 | "license": "MIT", 636 | "optional": true, 637 | "os": [ 638 | "openbsd" 639 | ], 640 | "engines": { 641 | "node": ">=12" 642 | } 643 | }, 644 | "node_modules/@esbuild/sunos-x64": { 645 | "version": "0.17.19", 646 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", 647 | "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", 648 | "cpu": [ 649 | "x64" 650 | ], 651 | "dev": true, 652 | "license": "MIT", 653 | "optional": true, 654 | "os": [ 655 | "sunos" 656 | ], 657 | "engines": { 658 | "node": ">=12" 659 | } 660 | }, 661 | "node_modules/@esbuild/win32-arm64": { 662 | "version": "0.17.19", 663 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", 664 | "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", 665 | "cpu": [ 666 | "arm64" 667 | ], 668 | "dev": true, 669 | "license": "MIT", 670 | "optional": true, 671 | "os": [ 672 | "win32" 673 | ], 674 | "engines": { 675 | "node": ">=12" 676 | } 677 | }, 678 | "node_modules/@esbuild/win32-ia32": { 679 | "version": "0.17.19", 680 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", 681 | "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", 682 | "cpu": [ 683 | "ia32" 684 | ], 685 | "dev": true, 686 | "license": "MIT", 687 | "optional": true, 688 | "os": [ 689 | "win32" 690 | ], 691 | "engines": { 692 | "node": ">=12" 693 | } 694 | }, 695 | "node_modules/@esbuild/win32-x64": { 696 | "version": "0.17.19", 697 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", 698 | "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", 699 | "cpu": [ 700 | "x64" 701 | ], 702 | "dev": true, 703 | "license": "MIT", 704 | "optional": true, 705 | "os": [ 706 | "win32" 707 | ], 708 | "engines": { 709 | "node": ">=12" 710 | } 711 | }, 712 | "node_modules/@fastify/busboy": { 713 | "version": "2.1.1", 714 | "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", 715 | "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", 716 | "dev": true, 717 | "license": "MIT", 718 | "engines": { 719 | "node": ">=14" 720 | } 721 | }, 722 | "node_modules/@hono/node-server": { 723 | "version": "1.13.8", 724 | "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.13.8.tgz", 725 | "integrity": "sha512-fsn8ucecsAXUoVxrUil0m13kOEq4mkX4/4QozCqmY+HpGfKl74OYSn8JcMA8GnG0ClfdRI4/ZSeG7zhFaVg+wg==", 726 | "license": "MIT", 727 | "engines": { 728 | "node": ">=18.14.1" 729 | }, 730 | "peerDependencies": { 731 | "hono": "^4" 732 | } 733 | }, 734 | "node_modules/@img/sharp-darwin-arm64": { 735 | "version": "0.33.5", 736 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", 737 | "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", 738 | "cpu": [ 739 | "arm64" 740 | ], 741 | "dev": true, 742 | "license": "Apache-2.0", 743 | "optional": true, 744 | "os": [ 745 | "darwin" 746 | ], 747 | "engines": { 748 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 749 | }, 750 | "funding": { 751 | "url": "https://opencollective.com/libvips" 752 | }, 753 | "optionalDependencies": { 754 | "@img/sharp-libvips-darwin-arm64": "1.0.4" 755 | } 756 | }, 757 | "node_modules/@img/sharp-darwin-x64": { 758 | "version": "0.33.5", 759 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", 760 | "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", 761 | "cpu": [ 762 | "x64" 763 | ], 764 | "dev": true, 765 | "license": "Apache-2.0", 766 | "optional": true, 767 | "os": [ 768 | "darwin" 769 | ], 770 | "engines": { 771 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 772 | }, 773 | "funding": { 774 | "url": "https://opencollective.com/libvips" 775 | }, 776 | "optionalDependencies": { 777 | "@img/sharp-libvips-darwin-x64": "1.0.4" 778 | } 779 | }, 780 | "node_modules/@img/sharp-libvips-darwin-arm64": { 781 | "version": "1.0.4", 782 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", 783 | "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", 784 | "cpu": [ 785 | "arm64" 786 | ], 787 | "dev": true, 788 | "license": "LGPL-3.0-or-later", 789 | "optional": true, 790 | "os": [ 791 | "darwin" 792 | ], 793 | "funding": { 794 | "url": "https://opencollective.com/libvips" 795 | } 796 | }, 797 | "node_modules/@img/sharp-libvips-darwin-x64": { 798 | "version": "1.0.4", 799 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", 800 | "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", 801 | "cpu": [ 802 | "x64" 803 | ], 804 | "dev": true, 805 | "license": "LGPL-3.0-or-later", 806 | "optional": true, 807 | "os": [ 808 | "darwin" 809 | ], 810 | "funding": { 811 | "url": "https://opencollective.com/libvips" 812 | } 813 | }, 814 | "node_modules/@img/sharp-libvips-linux-arm": { 815 | "version": "1.0.5", 816 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", 817 | "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", 818 | "cpu": [ 819 | "arm" 820 | ], 821 | "dev": true, 822 | "license": "LGPL-3.0-or-later", 823 | "optional": true, 824 | "os": [ 825 | "linux" 826 | ], 827 | "funding": { 828 | "url": "https://opencollective.com/libvips" 829 | } 830 | }, 831 | "node_modules/@img/sharp-libvips-linux-arm64": { 832 | "version": "1.0.4", 833 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", 834 | "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", 835 | "cpu": [ 836 | "arm64" 837 | ], 838 | "dev": true, 839 | "license": "LGPL-3.0-or-later", 840 | "optional": true, 841 | "os": [ 842 | "linux" 843 | ], 844 | "funding": { 845 | "url": "https://opencollective.com/libvips" 846 | } 847 | }, 848 | "node_modules/@img/sharp-libvips-linux-s390x": { 849 | "version": "1.0.4", 850 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", 851 | "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", 852 | "cpu": [ 853 | "s390x" 854 | ], 855 | "dev": true, 856 | "license": "LGPL-3.0-or-later", 857 | "optional": true, 858 | "os": [ 859 | "linux" 860 | ], 861 | "funding": { 862 | "url": "https://opencollective.com/libvips" 863 | } 864 | }, 865 | "node_modules/@img/sharp-libvips-linux-x64": { 866 | "version": "1.0.4", 867 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", 868 | "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", 869 | "cpu": [ 870 | "x64" 871 | ], 872 | "dev": true, 873 | "license": "LGPL-3.0-or-later", 874 | "optional": true, 875 | "os": [ 876 | "linux" 877 | ], 878 | "funding": { 879 | "url": "https://opencollective.com/libvips" 880 | } 881 | }, 882 | "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 883 | "version": "1.0.4", 884 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", 885 | "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", 886 | "cpu": [ 887 | "arm64" 888 | ], 889 | "dev": true, 890 | "license": "LGPL-3.0-or-later", 891 | "optional": true, 892 | "os": [ 893 | "linux" 894 | ], 895 | "funding": { 896 | "url": "https://opencollective.com/libvips" 897 | } 898 | }, 899 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { 900 | "version": "1.0.4", 901 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", 902 | "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", 903 | "cpu": [ 904 | "x64" 905 | ], 906 | "dev": true, 907 | "license": "LGPL-3.0-or-later", 908 | "optional": true, 909 | "os": [ 910 | "linux" 911 | ], 912 | "funding": { 913 | "url": "https://opencollective.com/libvips" 914 | } 915 | }, 916 | "node_modules/@img/sharp-linux-arm": { 917 | "version": "0.33.5", 918 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", 919 | "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", 920 | "cpu": [ 921 | "arm" 922 | ], 923 | "dev": true, 924 | "license": "Apache-2.0", 925 | "optional": true, 926 | "os": [ 927 | "linux" 928 | ], 929 | "engines": { 930 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 931 | }, 932 | "funding": { 933 | "url": "https://opencollective.com/libvips" 934 | }, 935 | "optionalDependencies": { 936 | "@img/sharp-libvips-linux-arm": "1.0.5" 937 | } 938 | }, 939 | "node_modules/@img/sharp-linux-arm64": { 940 | "version": "0.33.5", 941 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", 942 | "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", 943 | "cpu": [ 944 | "arm64" 945 | ], 946 | "dev": true, 947 | "license": "Apache-2.0", 948 | "optional": true, 949 | "os": [ 950 | "linux" 951 | ], 952 | "engines": { 953 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 954 | }, 955 | "funding": { 956 | "url": "https://opencollective.com/libvips" 957 | }, 958 | "optionalDependencies": { 959 | "@img/sharp-libvips-linux-arm64": "1.0.4" 960 | } 961 | }, 962 | "node_modules/@img/sharp-linux-s390x": { 963 | "version": "0.33.5", 964 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", 965 | "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", 966 | "cpu": [ 967 | "s390x" 968 | ], 969 | "dev": true, 970 | "license": "Apache-2.0", 971 | "optional": true, 972 | "os": [ 973 | "linux" 974 | ], 975 | "engines": { 976 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 977 | }, 978 | "funding": { 979 | "url": "https://opencollective.com/libvips" 980 | }, 981 | "optionalDependencies": { 982 | "@img/sharp-libvips-linux-s390x": "1.0.4" 983 | } 984 | }, 985 | "node_modules/@img/sharp-linux-x64": { 986 | "version": "0.33.5", 987 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", 988 | "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", 989 | "cpu": [ 990 | "x64" 991 | ], 992 | "dev": true, 993 | "license": "Apache-2.0", 994 | "optional": true, 995 | "os": [ 996 | "linux" 997 | ], 998 | "engines": { 999 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1000 | }, 1001 | "funding": { 1002 | "url": "https://opencollective.com/libvips" 1003 | }, 1004 | "optionalDependencies": { 1005 | "@img/sharp-libvips-linux-x64": "1.0.4" 1006 | } 1007 | }, 1008 | "node_modules/@img/sharp-linuxmusl-arm64": { 1009 | "version": "0.33.5", 1010 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", 1011 | "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", 1012 | "cpu": [ 1013 | "arm64" 1014 | ], 1015 | "dev": true, 1016 | "license": "Apache-2.0", 1017 | "optional": true, 1018 | "os": [ 1019 | "linux" 1020 | ], 1021 | "engines": { 1022 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1023 | }, 1024 | "funding": { 1025 | "url": "https://opencollective.com/libvips" 1026 | }, 1027 | "optionalDependencies": { 1028 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" 1029 | } 1030 | }, 1031 | "node_modules/@img/sharp-linuxmusl-x64": { 1032 | "version": "0.33.5", 1033 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", 1034 | "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", 1035 | "cpu": [ 1036 | "x64" 1037 | ], 1038 | "dev": true, 1039 | "license": "Apache-2.0", 1040 | "optional": true, 1041 | "os": [ 1042 | "linux" 1043 | ], 1044 | "engines": { 1045 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1046 | }, 1047 | "funding": { 1048 | "url": "https://opencollective.com/libvips" 1049 | }, 1050 | "optionalDependencies": { 1051 | "@img/sharp-libvips-linuxmusl-x64": "1.0.4" 1052 | } 1053 | }, 1054 | "node_modules/@img/sharp-wasm32": { 1055 | "version": "0.33.5", 1056 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", 1057 | "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", 1058 | "cpu": [ 1059 | "wasm32" 1060 | ], 1061 | "dev": true, 1062 | "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 1063 | "optional": true, 1064 | "dependencies": { 1065 | "@emnapi/runtime": "^1.2.0" 1066 | }, 1067 | "engines": { 1068 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1069 | }, 1070 | "funding": { 1071 | "url": "https://opencollective.com/libvips" 1072 | } 1073 | }, 1074 | "node_modules/@img/sharp-win32-ia32": { 1075 | "version": "0.33.5", 1076 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", 1077 | "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", 1078 | "cpu": [ 1079 | "ia32" 1080 | ], 1081 | "dev": true, 1082 | "license": "Apache-2.0 AND LGPL-3.0-or-later", 1083 | "optional": true, 1084 | "os": [ 1085 | "win32" 1086 | ], 1087 | "engines": { 1088 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1089 | }, 1090 | "funding": { 1091 | "url": "https://opencollective.com/libvips" 1092 | } 1093 | }, 1094 | "node_modules/@img/sharp-win32-x64": { 1095 | "version": "0.33.5", 1096 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", 1097 | "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", 1098 | "cpu": [ 1099 | "x64" 1100 | ], 1101 | "dev": true, 1102 | "license": "Apache-2.0 AND LGPL-3.0-or-later", 1103 | "optional": true, 1104 | "os": [ 1105 | "win32" 1106 | ], 1107 | "engines": { 1108 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1109 | }, 1110 | "funding": { 1111 | "url": "https://opencollective.com/libvips" 1112 | } 1113 | }, 1114 | "node_modules/@jridgewell/resolve-uri": { 1115 | "version": "3.1.2", 1116 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1117 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1118 | "dev": true, 1119 | "license": "MIT", 1120 | "engines": { 1121 | "node": ">=6.0.0" 1122 | } 1123 | }, 1124 | "node_modules/@jridgewell/sourcemap-codec": { 1125 | "version": "1.5.0", 1126 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1127 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1128 | "dev": true, 1129 | "license": "MIT" 1130 | }, 1131 | "node_modules/@jridgewell/trace-mapping": { 1132 | "version": "0.3.9", 1133 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", 1134 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", 1135 | "dev": true, 1136 | "license": "MIT", 1137 | "dependencies": { 1138 | "@jridgewell/resolve-uri": "^3.0.3", 1139 | "@jridgewell/sourcemap-codec": "^1.4.10" 1140 | } 1141 | }, 1142 | "node_modules/@puppeteer/browsers": { 1143 | "version": "1.7.0", 1144 | "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.7.0.tgz", 1145 | "integrity": "sha512-sl7zI0IkbQGak/+IE3VEEZab5SSOlI5F6558WvzWGC1n3+C722rfewC1ZIkcF9dsoGSsxhsONoseVlNQG4wWvQ==", 1146 | "license": "Apache-2.0", 1147 | "dependencies": { 1148 | "debug": "4.3.4", 1149 | "extract-zip": "2.0.1", 1150 | "progress": "2.0.3", 1151 | "proxy-agent": "6.3.0", 1152 | "tar-fs": "3.0.4", 1153 | "unbzip2-stream": "1.4.3", 1154 | "yargs": "17.7.1" 1155 | }, 1156 | "bin": { 1157 | "browsers": "lib/cjs/main-cli.js" 1158 | }, 1159 | "engines": { 1160 | "node": ">=16.3.0" 1161 | } 1162 | }, 1163 | "node_modules/@puppeteer/browsers/node_modules/debug": { 1164 | "version": "4.3.4", 1165 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1166 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1167 | "license": "MIT", 1168 | "dependencies": { 1169 | "ms": "2.1.2" 1170 | }, 1171 | "engines": { 1172 | "node": ">=6.0" 1173 | }, 1174 | "peerDependenciesMeta": { 1175 | "supports-color": { 1176 | "optional": true 1177 | } 1178 | } 1179 | }, 1180 | "node_modules/@puppeteer/browsers/node_modules/ms": { 1181 | "version": "2.1.2", 1182 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1183 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1184 | "license": "MIT" 1185 | }, 1186 | "node_modules/@rollup/rollup-android-arm-eabi": { 1187 | "version": "4.34.8", 1188 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz", 1189 | "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==", 1190 | "cpu": [ 1191 | "arm" 1192 | ], 1193 | "dev": true, 1194 | "license": "MIT", 1195 | "optional": true, 1196 | "os": [ 1197 | "android" 1198 | ] 1199 | }, 1200 | "node_modules/@rollup/rollup-android-arm64": { 1201 | "version": "4.34.8", 1202 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz", 1203 | "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==", 1204 | "cpu": [ 1205 | "arm64" 1206 | ], 1207 | "dev": true, 1208 | "license": "MIT", 1209 | "optional": true, 1210 | "os": [ 1211 | "android" 1212 | ] 1213 | }, 1214 | "node_modules/@rollup/rollup-darwin-arm64": { 1215 | "version": "4.34.8", 1216 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", 1217 | "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", 1218 | "cpu": [ 1219 | "arm64" 1220 | ], 1221 | "dev": true, 1222 | "license": "MIT", 1223 | "optional": true, 1224 | "os": [ 1225 | "darwin" 1226 | ] 1227 | }, 1228 | "node_modules/@rollup/rollup-darwin-x64": { 1229 | "version": "4.34.8", 1230 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz", 1231 | "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==", 1232 | "cpu": [ 1233 | "x64" 1234 | ], 1235 | "dev": true, 1236 | "license": "MIT", 1237 | "optional": true, 1238 | "os": [ 1239 | "darwin" 1240 | ] 1241 | }, 1242 | "node_modules/@rollup/rollup-freebsd-arm64": { 1243 | "version": "4.34.8", 1244 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz", 1245 | "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==", 1246 | "cpu": [ 1247 | "arm64" 1248 | ], 1249 | "dev": true, 1250 | "license": "MIT", 1251 | "optional": true, 1252 | "os": [ 1253 | "freebsd" 1254 | ] 1255 | }, 1256 | "node_modules/@rollup/rollup-freebsd-x64": { 1257 | "version": "4.34.8", 1258 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz", 1259 | "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==", 1260 | "cpu": [ 1261 | "x64" 1262 | ], 1263 | "dev": true, 1264 | "license": "MIT", 1265 | "optional": true, 1266 | "os": [ 1267 | "freebsd" 1268 | ] 1269 | }, 1270 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1271 | "version": "4.34.8", 1272 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz", 1273 | "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==", 1274 | "cpu": [ 1275 | "arm" 1276 | ], 1277 | "dev": true, 1278 | "license": "MIT", 1279 | "optional": true, 1280 | "os": [ 1281 | "linux" 1282 | ] 1283 | }, 1284 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1285 | "version": "4.34.8", 1286 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz", 1287 | "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==", 1288 | "cpu": [ 1289 | "arm" 1290 | ], 1291 | "dev": true, 1292 | "license": "MIT", 1293 | "optional": true, 1294 | "os": [ 1295 | "linux" 1296 | ] 1297 | }, 1298 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1299 | "version": "4.34.8", 1300 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz", 1301 | "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==", 1302 | "cpu": [ 1303 | "arm64" 1304 | ], 1305 | "dev": true, 1306 | "license": "MIT", 1307 | "optional": true, 1308 | "os": [ 1309 | "linux" 1310 | ] 1311 | }, 1312 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1313 | "version": "4.34.8", 1314 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz", 1315 | "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==", 1316 | "cpu": [ 1317 | "arm64" 1318 | ], 1319 | "dev": true, 1320 | "license": "MIT", 1321 | "optional": true, 1322 | "os": [ 1323 | "linux" 1324 | ] 1325 | }, 1326 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 1327 | "version": "4.34.8", 1328 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz", 1329 | "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==", 1330 | "cpu": [ 1331 | "loong64" 1332 | ], 1333 | "dev": true, 1334 | "license": "MIT", 1335 | "optional": true, 1336 | "os": [ 1337 | "linux" 1338 | ] 1339 | }, 1340 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1341 | "version": "4.34.8", 1342 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz", 1343 | "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==", 1344 | "cpu": [ 1345 | "ppc64" 1346 | ], 1347 | "dev": true, 1348 | "license": "MIT", 1349 | "optional": true, 1350 | "os": [ 1351 | "linux" 1352 | ] 1353 | }, 1354 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1355 | "version": "4.34.8", 1356 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz", 1357 | "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==", 1358 | "cpu": [ 1359 | "riscv64" 1360 | ], 1361 | "dev": true, 1362 | "license": "MIT", 1363 | "optional": true, 1364 | "os": [ 1365 | "linux" 1366 | ] 1367 | }, 1368 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1369 | "version": "4.34.8", 1370 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz", 1371 | "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==", 1372 | "cpu": [ 1373 | "s390x" 1374 | ], 1375 | "dev": true, 1376 | "license": "MIT", 1377 | "optional": true, 1378 | "os": [ 1379 | "linux" 1380 | ] 1381 | }, 1382 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1383 | "version": "4.34.8", 1384 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz", 1385 | "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==", 1386 | "cpu": [ 1387 | "x64" 1388 | ], 1389 | "dev": true, 1390 | "license": "MIT", 1391 | "optional": true, 1392 | "os": [ 1393 | "linux" 1394 | ] 1395 | }, 1396 | "node_modules/@rollup/rollup-linux-x64-musl": { 1397 | "version": "4.34.8", 1398 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz", 1399 | "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==", 1400 | "cpu": [ 1401 | "x64" 1402 | ], 1403 | "dev": true, 1404 | "license": "MIT", 1405 | "optional": true, 1406 | "os": [ 1407 | "linux" 1408 | ] 1409 | }, 1410 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1411 | "version": "4.34.8", 1412 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz", 1413 | "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==", 1414 | "cpu": [ 1415 | "arm64" 1416 | ], 1417 | "dev": true, 1418 | "license": "MIT", 1419 | "optional": true, 1420 | "os": [ 1421 | "win32" 1422 | ] 1423 | }, 1424 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1425 | "version": "4.34.8", 1426 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz", 1427 | "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==", 1428 | "cpu": [ 1429 | "ia32" 1430 | ], 1431 | "dev": true, 1432 | "license": "MIT", 1433 | "optional": true, 1434 | "os": [ 1435 | "win32" 1436 | ] 1437 | }, 1438 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1439 | "version": "4.34.8", 1440 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz", 1441 | "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==", 1442 | "cpu": [ 1443 | "x64" 1444 | ], 1445 | "dev": true, 1446 | "license": "MIT", 1447 | "optional": true, 1448 | "os": [ 1449 | "win32" 1450 | ] 1451 | }, 1452 | "node_modules/@tootallnate/quickjs-emscripten": { 1453 | "version": "0.23.0", 1454 | "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", 1455 | "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", 1456 | "license": "MIT" 1457 | }, 1458 | "node_modules/@types/estree": { 1459 | "version": "1.0.6", 1460 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1461 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 1462 | "dev": true, 1463 | "license": "MIT" 1464 | }, 1465 | "node_modules/@types/node": { 1466 | "version": "22.13.5", 1467 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz", 1468 | "integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==", 1469 | "license": "MIT", 1470 | "optional": true, 1471 | "dependencies": { 1472 | "undici-types": "~6.20.0" 1473 | } 1474 | }, 1475 | "node_modules/@types/yauzl": { 1476 | "version": "2.10.3", 1477 | "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", 1478 | "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", 1479 | "license": "MIT", 1480 | "optional": true, 1481 | "dependencies": { 1482 | "@types/node": "*" 1483 | } 1484 | }, 1485 | "node_modules/@vitest/expect": { 1486 | "version": "2.1.9", 1487 | "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz", 1488 | "integrity": "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==", 1489 | "dev": true, 1490 | "license": "MIT", 1491 | "dependencies": { 1492 | "@vitest/spy": "2.1.9", 1493 | "@vitest/utils": "2.1.9", 1494 | "chai": "^5.1.2", 1495 | "tinyrainbow": "^1.2.0" 1496 | }, 1497 | "funding": { 1498 | "url": "https://opencollective.com/vitest" 1499 | } 1500 | }, 1501 | "node_modules/@vitest/mocker": { 1502 | "version": "2.1.9", 1503 | "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz", 1504 | "integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==", 1505 | "dev": true, 1506 | "license": "MIT", 1507 | "dependencies": { 1508 | "@vitest/spy": "2.1.9", 1509 | "estree-walker": "^3.0.3", 1510 | "magic-string": "^0.30.12" 1511 | }, 1512 | "funding": { 1513 | "url": "https://opencollective.com/vitest" 1514 | }, 1515 | "peerDependencies": { 1516 | "msw": "^2.4.9", 1517 | "vite": "^5.0.0" 1518 | }, 1519 | "peerDependenciesMeta": { 1520 | "msw": { 1521 | "optional": true 1522 | }, 1523 | "vite": { 1524 | "optional": true 1525 | } 1526 | } 1527 | }, 1528 | "node_modules/@vitest/pretty-format": { 1529 | "version": "2.1.9", 1530 | "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz", 1531 | "integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==", 1532 | "dev": true, 1533 | "license": "MIT", 1534 | "dependencies": { 1535 | "tinyrainbow": "^1.2.0" 1536 | }, 1537 | "funding": { 1538 | "url": "https://opencollective.com/vitest" 1539 | } 1540 | }, 1541 | "node_modules/@vitest/runner": { 1542 | "version": "2.1.9", 1543 | "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz", 1544 | "integrity": "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==", 1545 | "dev": true, 1546 | "license": "MIT", 1547 | "dependencies": { 1548 | "@vitest/utils": "2.1.9", 1549 | "pathe": "^1.1.2" 1550 | }, 1551 | "funding": { 1552 | "url": "https://opencollective.com/vitest" 1553 | } 1554 | }, 1555 | "node_modules/@vitest/snapshot": { 1556 | "version": "2.1.9", 1557 | "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz", 1558 | "integrity": "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==", 1559 | "dev": true, 1560 | "license": "MIT", 1561 | "dependencies": { 1562 | "@vitest/pretty-format": "2.1.9", 1563 | "magic-string": "^0.30.12", 1564 | "pathe": "^1.1.2" 1565 | }, 1566 | "funding": { 1567 | "url": "https://opencollective.com/vitest" 1568 | } 1569 | }, 1570 | "node_modules/@vitest/spy": { 1571 | "version": "2.1.9", 1572 | "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz", 1573 | "integrity": "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==", 1574 | "dev": true, 1575 | "license": "MIT", 1576 | "dependencies": { 1577 | "tinyspy": "^3.0.2" 1578 | }, 1579 | "funding": { 1580 | "url": "https://opencollective.com/vitest" 1581 | } 1582 | }, 1583 | "node_modules/@vitest/utils": { 1584 | "version": "2.1.9", 1585 | "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz", 1586 | "integrity": "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==", 1587 | "dev": true, 1588 | "license": "MIT", 1589 | "dependencies": { 1590 | "@vitest/pretty-format": "2.1.9", 1591 | "loupe": "^3.1.2", 1592 | "tinyrainbow": "^1.2.0" 1593 | }, 1594 | "funding": { 1595 | "url": "https://opencollective.com/vitest" 1596 | } 1597 | }, 1598 | "node_modules/acorn": { 1599 | "version": "8.14.0", 1600 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 1601 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 1602 | "dev": true, 1603 | "license": "MIT", 1604 | "bin": { 1605 | "acorn": "bin/acorn" 1606 | }, 1607 | "engines": { 1608 | "node": ">=0.4.0" 1609 | } 1610 | }, 1611 | "node_modules/acorn-walk": { 1612 | "version": "8.3.2", 1613 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", 1614 | "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", 1615 | "dev": true, 1616 | "license": "MIT", 1617 | "engines": { 1618 | "node": ">=0.4.0" 1619 | } 1620 | }, 1621 | "node_modules/agent-base": { 1622 | "version": "7.1.3", 1623 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", 1624 | "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", 1625 | "license": "MIT", 1626 | "engines": { 1627 | "node": ">= 14" 1628 | } 1629 | }, 1630 | "node_modules/ansi-regex": { 1631 | "version": "5.0.1", 1632 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1633 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1634 | "license": "MIT", 1635 | "engines": { 1636 | "node": ">=8" 1637 | } 1638 | }, 1639 | "node_modules/ansi-styles": { 1640 | "version": "4.3.0", 1641 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1642 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1643 | "license": "MIT", 1644 | "dependencies": { 1645 | "color-convert": "^2.0.1" 1646 | }, 1647 | "engines": { 1648 | "node": ">=8" 1649 | }, 1650 | "funding": { 1651 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1652 | } 1653 | }, 1654 | "node_modules/as-table": { 1655 | "version": "1.0.55", 1656 | "resolved": "https://registry.npmjs.org/as-table/-/as-table-1.0.55.tgz", 1657 | "integrity": "sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==", 1658 | "dev": true, 1659 | "license": "MIT", 1660 | "dependencies": { 1661 | "printable-characters": "^1.0.42" 1662 | } 1663 | }, 1664 | "node_modules/assertion-error": { 1665 | "version": "2.0.1", 1666 | "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", 1667 | "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", 1668 | "dev": true, 1669 | "license": "MIT", 1670 | "engines": { 1671 | "node": ">=12" 1672 | } 1673 | }, 1674 | "node_modules/ast-types": { 1675 | "version": "0.13.4", 1676 | "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", 1677 | "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", 1678 | "license": "MIT", 1679 | "dependencies": { 1680 | "tslib": "^2.0.1" 1681 | }, 1682 | "engines": { 1683 | "node": ">=4" 1684 | } 1685 | }, 1686 | "node_modules/b4a": { 1687 | "version": "1.6.7", 1688 | "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", 1689 | "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", 1690 | "license": "Apache-2.0" 1691 | }, 1692 | "node_modules/bare-events": { 1693 | "version": "2.5.4", 1694 | "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz", 1695 | "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==", 1696 | "license": "Apache-2.0", 1697 | "optional": true 1698 | }, 1699 | "node_modules/base64-js": { 1700 | "version": "1.5.1", 1701 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 1702 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 1703 | "funding": [ 1704 | { 1705 | "type": "github", 1706 | "url": "https://github.com/sponsors/feross" 1707 | }, 1708 | { 1709 | "type": "patreon", 1710 | "url": "https://www.patreon.com/feross" 1711 | }, 1712 | { 1713 | "type": "consulting", 1714 | "url": "https://feross.org/support" 1715 | } 1716 | ], 1717 | "license": "MIT" 1718 | }, 1719 | "node_modules/basic-ftp": { 1720 | "version": "5.0.5", 1721 | "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", 1722 | "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", 1723 | "license": "MIT", 1724 | "engines": { 1725 | "node": ">=10.0.0" 1726 | } 1727 | }, 1728 | "node_modules/birpc": { 1729 | "version": "0.2.14", 1730 | "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.14.tgz", 1731 | "integrity": "sha512-37FHE8rqsYM5JEKCnXFyHpBCzvgHEExwVVTq+nUmloInU7l8ezD1TpOhKpS8oe1DTYFqEK27rFZVKG43oTqXRA==", 1732 | "dev": true, 1733 | "license": "MIT", 1734 | "funding": { 1735 | "url": "https://github.com/sponsors/antfu" 1736 | } 1737 | }, 1738 | "node_modules/blake3-wasm": { 1739 | "version": "2.1.5", 1740 | "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", 1741 | "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", 1742 | "dev": true, 1743 | "license": "MIT" 1744 | }, 1745 | "node_modules/buffer": { 1746 | "version": "5.7.1", 1747 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 1748 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 1749 | "funding": [ 1750 | { 1751 | "type": "github", 1752 | "url": "https://github.com/sponsors/feross" 1753 | }, 1754 | { 1755 | "type": "patreon", 1756 | "url": "https://www.patreon.com/feross" 1757 | }, 1758 | { 1759 | "type": "consulting", 1760 | "url": "https://feross.org/support" 1761 | } 1762 | ], 1763 | "license": "MIT", 1764 | "dependencies": { 1765 | "base64-js": "^1.3.1", 1766 | "ieee754": "^1.1.13" 1767 | } 1768 | }, 1769 | "node_modules/buffer-crc32": { 1770 | "version": "0.2.13", 1771 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 1772 | "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", 1773 | "license": "MIT", 1774 | "engines": { 1775 | "node": "*" 1776 | } 1777 | }, 1778 | "node_modules/cac": { 1779 | "version": "6.7.14", 1780 | "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", 1781 | "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", 1782 | "dev": true, 1783 | "license": "MIT", 1784 | "engines": { 1785 | "node": ">=8" 1786 | } 1787 | }, 1788 | "node_modules/chai": { 1789 | "version": "5.2.0", 1790 | "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", 1791 | "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", 1792 | "dev": true, 1793 | "license": "MIT", 1794 | "dependencies": { 1795 | "assertion-error": "^2.0.1", 1796 | "check-error": "^2.1.1", 1797 | "deep-eql": "^5.0.1", 1798 | "loupe": "^3.1.0", 1799 | "pathval": "^2.0.0" 1800 | }, 1801 | "engines": { 1802 | "node": ">=12" 1803 | } 1804 | }, 1805 | "node_modules/check-error": { 1806 | "version": "2.1.1", 1807 | "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", 1808 | "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", 1809 | "dev": true, 1810 | "license": "MIT", 1811 | "engines": { 1812 | "node": ">= 16" 1813 | } 1814 | }, 1815 | "node_modules/chromium-bidi": { 1816 | "version": "0.4.20", 1817 | "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.20.tgz", 1818 | "integrity": "sha512-ruHgVZFEv00mAQMz1tQjfjdG63jiPWrQPF6HLlX2ucqLqVTJoWngeBEKHaJ6n1swV/HSvgnBNbtTRIlcVyW3Fw==", 1819 | "license": "Apache-2.0", 1820 | "dependencies": { 1821 | "mitt": "3.0.1" 1822 | }, 1823 | "peerDependencies": { 1824 | "devtools-protocol": "*" 1825 | } 1826 | }, 1827 | "node_modules/cjs-module-lexer": { 1828 | "version": "1.4.3", 1829 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", 1830 | "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", 1831 | "dev": true, 1832 | "license": "MIT" 1833 | }, 1834 | "node_modules/cliui": { 1835 | "version": "8.0.1", 1836 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1837 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1838 | "license": "ISC", 1839 | "dependencies": { 1840 | "string-width": "^4.2.0", 1841 | "strip-ansi": "^6.0.1", 1842 | "wrap-ansi": "^7.0.0" 1843 | }, 1844 | "engines": { 1845 | "node": ">=12" 1846 | } 1847 | }, 1848 | "node_modules/color": { 1849 | "version": "4.2.3", 1850 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 1851 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 1852 | "dev": true, 1853 | "license": "MIT", 1854 | "optional": true, 1855 | "dependencies": { 1856 | "color-convert": "^2.0.1", 1857 | "color-string": "^1.9.0" 1858 | }, 1859 | "engines": { 1860 | "node": ">=12.5.0" 1861 | } 1862 | }, 1863 | "node_modules/color-convert": { 1864 | "version": "2.0.1", 1865 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1866 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1867 | "license": "MIT", 1868 | "dependencies": { 1869 | "color-name": "~1.1.4" 1870 | }, 1871 | "engines": { 1872 | "node": ">=7.0.0" 1873 | } 1874 | }, 1875 | "node_modules/color-name": { 1876 | "version": "1.1.4", 1877 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1878 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1879 | "license": "MIT" 1880 | }, 1881 | "node_modules/color-string": { 1882 | "version": "1.9.1", 1883 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 1884 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 1885 | "dev": true, 1886 | "license": "MIT", 1887 | "optional": true, 1888 | "dependencies": { 1889 | "color-name": "^1.0.0", 1890 | "simple-swizzle": "^0.2.2" 1891 | } 1892 | }, 1893 | "node_modules/confbox": { 1894 | "version": "0.1.8", 1895 | "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", 1896 | "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", 1897 | "dev": true, 1898 | "license": "MIT" 1899 | }, 1900 | "node_modules/cookie": { 1901 | "version": "0.5.0", 1902 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 1903 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 1904 | "dev": true, 1905 | "license": "MIT", 1906 | "engines": { 1907 | "node": ">= 0.6" 1908 | } 1909 | }, 1910 | "node_modules/core-js-pure": { 1911 | "version": "3.40.0", 1912 | "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.40.0.tgz", 1913 | "integrity": "sha512-AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==", 1914 | "hasInstallScript": true, 1915 | "license": "MIT", 1916 | "funding": { 1917 | "type": "opencollective", 1918 | "url": "https://opencollective.com/core-js" 1919 | } 1920 | }, 1921 | "node_modules/cross-fetch": { 1922 | "version": "4.0.0", 1923 | "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", 1924 | "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", 1925 | "license": "MIT", 1926 | "dependencies": { 1927 | "node-fetch": "^2.6.12" 1928 | } 1929 | }, 1930 | "node_modules/data-uri-to-buffer": { 1931 | "version": "2.0.2", 1932 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz", 1933 | "integrity": "sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==", 1934 | "dev": true, 1935 | "license": "MIT" 1936 | }, 1937 | "node_modules/debug": { 1938 | "version": "4.4.0", 1939 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1940 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1941 | "license": "MIT", 1942 | "dependencies": { 1943 | "ms": "^2.1.3" 1944 | }, 1945 | "engines": { 1946 | "node": ">=6.0" 1947 | }, 1948 | "peerDependenciesMeta": { 1949 | "supports-color": { 1950 | "optional": true 1951 | } 1952 | } 1953 | }, 1954 | "node_modules/deep-eql": { 1955 | "version": "5.0.2", 1956 | "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", 1957 | "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", 1958 | "dev": true, 1959 | "license": "MIT", 1960 | "engines": { 1961 | "node": ">=6" 1962 | } 1963 | }, 1964 | "node_modules/defu": { 1965 | "version": "6.1.4", 1966 | "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 1967 | "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 1968 | "dev": true, 1969 | "license": "MIT" 1970 | }, 1971 | "node_modules/degenerator": { 1972 | "version": "5.0.1", 1973 | "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", 1974 | "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", 1975 | "license": "MIT", 1976 | "dependencies": { 1977 | "ast-types": "^0.13.4", 1978 | "escodegen": "^2.1.0", 1979 | "esprima": "^4.0.1" 1980 | }, 1981 | "engines": { 1982 | "node": ">= 14" 1983 | } 1984 | }, 1985 | "node_modules/detect-libc": { 1986 | "version": "2.0.3", 1987 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 1988 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 1989 | "dev": true, 1990 | "license": "Apache-2.0", 1991 | "optional": true, 1992 | "engines": { 1993 | "node": ">=8" 1994 | } 1995 | }, 1996 | "node_modules/devalue": { 1997 | "version": "4.3.3", 1998 | "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.3.tgz", 1999 | "integrity": "sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==", 2000 | "dev": true, 2001 | "license": "MIT" 2002 | }, 2003 | "node_modules/devtools-protocol": { 2004 | "version": "0.0.1159816", 2005 | "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1159816.tgz", 2006 | "integrity": "sha512-2cZlHxC5IlgkIWe2pSDmCrDiTzbSJWywjbDDnupOImEBcG31CQgBLV8wWE+5t+C4rimcjHsbzy7CBzf9oFjboA==", 2007 | "license": "BSD-3-Clause" 2008 | }, 2009 | "node_modules/emoji-regex": { 2010 | "version": "8.0.0", 2011 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2012 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2013 | "license": "MIT" 2014 | }, 2015 | "node_modules/end-of-stream": { 2016 | "version": "1.4.4", 2017 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 2018 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 2019 | "license": "MIT", 2020 | "dependencies": { 2021 | "once": "^1.4.0" 2022 | } 2023 | }, 2024 | "node_modules/es-module-lexer": { 2025 | "version": "1.6.0", 2026 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", 2027 | "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", 2028 | "dev": true, 2029 | "license": "MIT" 2030 | }, 2031 | "node_modules/esbuild": { 2032 | "version": "0.17.19", 2033 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", 2034 | "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", 2035 | "dev": true, 2036 | "hasInstallScript": true, 2037 | "license": "MIT", 2038 | "bin": { 2039 | "esbuild": "bin/esbuild" 2040 | }, 2041 | "engines": { 2042 | "node": ">=12" 2043 | }, 2044 | "optionalDependencies": { 2045 | "@esbuild/android-arm": "0.17.19", 2046 | "@esbuild/android-arm64": "0.17.19", 2047 | "@esbuild/android-x64": "0.17.19", 2048 | "@esbuild/darwin-arm64": "0.17.19", 2049 | "@esbuild/darwin-x64": "0.17.19", 2050 | "@esbuild/freebsd-arm64": "0.17.19", 2051 | "@esbuild/freebsd-x64": "0.17.19", 2052 | "@esbuild/linux-arm": "0.17.19", 2053 | "@esbuild/linux-arm64": "0.17.19", 2054 | "@esbuild/linux-ia32": "0.17.19", 2055 | "@esbuild/linux-loong64": "0.17.19", 2056 | "@esbuild/linux-mips64el": "0.17.19", 2057 | "@esbuild/linux-ppc64": "0.17.19", 2058 | "@esbuild/linux-riscv64": "0.17.19", 2059 | "@esbuild/linux-s390x": "0.17.19", 2060 | "@esbuild/linux-x64": "0.17.19", 2061 | "@esbuild/netbsd-x64": "0.17.19", 2062 | "@esbuild/openbsd-x64": "0.17.19", 2063 | "@esbuild/sunos-x64": "0.17.19", 2064 | "@esbuild/win32-arm64": "0.17.19", 2065 | "@esbuild/win32-ia32": "0.17.19", 2066 | "@esbuild/win32-x64": "0.17.19" 2067 | } 2068 | }, 2069 | "node_modules/escalade": { 2070 | "version": "3.2.0", 2071 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2072 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2073 | "license": "MIT", 2074 | "engines": { 2075 | "node": ">=6" 2076 | } 2077 | }, 2078 | "node_modules/escape-string-regexp": { 2079 | "version": "4.0.0", 2080 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2081 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2082 | "dev": true, 2083 | "license": "MIT", 2084 | "engines": { 2085 | "node": ">=10" 2086 | }, 2087 | "funding": { 2088 | "url": "https://github.com/sponsors/sindresorhus" 2089 | } 2090 | }, 2091 | "node_modules/escodegen": { 2092 | "version": "2.1.0", 2093 | "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", 2094 | "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", 2095 | "license": "BSD-2-Clause", 2096 | "dependencies": { 2097 | "esprima": "^4.0.1", 2098 | "estraverse": "^5.2.0", 2099 | "esutils": "^2.0.2" 2100 | }, 2101 | "bin": { 2102 | "escodegen": "bin/escodegen.js", 2103 | "esgenerate": "bin/esgenerate.js" 2104 | }, 2105 | "engines": { 2106 | "node": ">=6.0" 2107 | }, 2108 | "optionalDependencies": { 2109 | "source-map": "~0.6.1" 2110 | } 2111 | }, 2112 | "node_modules/esprima": { 2113 | "version": "4.0.1", 2114 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 2115 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 2116 | "license": "BSD-2-Clause", 2117 | "bin": { 2118 | "esparse": "bin/esparse.js", 2119 | "esvalidate": "bin/esvalidate.js" 2120 | }, 2121 | "engines": { 2122 | "node": ">=4" 2123 | } 2124 | }, 2125 | "node_modules/estraverse": { 2126 | "version": "5.3.0", 2127 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2128 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2129 | "license": "BSD-2-Clause", 2130 | "engines": { 2131 | "node": ">=4.0" 2132 | } 2133 | }, 2134 | "node_modules/estree-walker": { 2135 | "version": "3.0.3", 2136 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 2137 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 2138 | "dev": true, 2139 | "license": "MIT", 2140 | "dependencies": { 2141 | "@types/estree": "^1.0.0" 2142 | } 2143 | }, 2144 | "node_modules/esutils": { 2145 | "version": "2.0.3", 2146 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2147 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2148 | "license": "BSD-2-Clause", 2149 | "engines": { 2150 | "node": ">=0.10.0" 2151 | } 2152 | }, 2153 | "node_modules/exit-hook": { 2154 | "version": "2.2.1", 2155 | "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz", 2156 | "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==", 2157 | "dev": true, 2158 | "license": "MIT", 2159 | "engines": { 2160 | "node": ">=6" 2161 | }, 2162 | "funding": { 2163 | "url": "https://github.com/sponsors/sindresorhus" 2164 | } 2165 | }, 2166 | "node_modules/expect-type": { 2167 | "version": "1.1.0", 2168 | "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", 2169 | "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", 2170 | "dev": true, 2171 | "license": "Apache-2.0", 2172 | "engines": { 2173 | "node": ">=12.0.0" 2174 | } 2175 | }, 2176 | "node_modules/extract-zip": { 2177 | "version": "2.0.1", 2178 | "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", 2179 | "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", 2180 | "license": "BSD-2-Clause", 2181 | "dependencies": { 2182 | "debug": "^4.1.1", 2183 | "get-stream": "^5.1.0", 2184 | "yauzl": "^2.10.0" 2185 | }, 2186 | "bin": { 2187 | "extract-zip": "cli.js" 2188 | }, 2189 | "engines": { 2190 | "node": ">= 10.17.0" 2191 | }, 2192 | "optionalDependencies": { 2193 | "@types/yauzl": "^2.9.1" 2194 | } 2195 | }, 2196 | "node_modules/fast-fifo": { 2197 | "version": "1.3.2", 2198 | "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", 2199 | "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", 2200 | "license": "MIT" 2201 | }, 2202 | "node_modules/fd-slicer": { 2203 | "version": "1.1.0", 2204 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", 2205 | "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", 2206 | "license": "MIT", 2207 | "dependencies": { 2208 | "pend": "~1.2.0" 2209 | } 2210 | }, 2211 | "node_modules/fsevents": { 2212 | "version": "2.3.3", 2213 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2214 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2215 | "dev": true, 2216 | "hasInstallScript": true, 2217 | "license": "MIT", 2218 | "optional": true, 2219 | "os": [ 2220 | "darwin" 2221 | ], 2222 | "engines": { 2223 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2224 | } 2225 | }, 2226 | "node_modules/get-caller-file": { 2227 | "version": "2.0.5", 2228 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 2229 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 2230 | "license": "ISC", 2231 | "engines": { 2232 | "node": "6.* || 8.* || >= 10.*" 2233 | } 2234 | }, 2235 | "node_modules/get-source": { 2236 | "version": "2.0.12", 2237 | "resolved": "https://registry.npmjs.org/get-source/-/get-source-2.0.12.tgz", 2238 | "integrity": "sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==", 2239 | "dev": true, 2240 | "license": "Unlicense", 2241 | "dependencies": { 2242 | "data-uri-to-buffer": "^2.0.0", 2243 | "source-map": "^0.6.1" 2244 | } 2245 | }, 2246 | "node_modules/get-stream": { 2247 | "version": "5.2.0", 2248 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", 2249 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", 2250 | "license": "MIT", 2251 | "dependencies": { 2252 | "pump": "^3.0.0" 2253 | }, 2254 | "engines": { 2255 | "node": ">=8" 2256 | }, 2257 | "funding": { 2258 | "url": "https://github.com/sponsors/sindresorhus" 2259 | } 2260 | }, 2261 | "node_modules/get-uri": { 2262 | "version": "6.0.4", 2263 | "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz", 2264 | "integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==", 2265 | "license": "MIT", 2266 | "dependencies": { 2267 | "basic-ftp": "^5.0.2", 2268 | "data-uri-to-buffer": "^6.0.2", 2269 | "debug": "^4.3.4" 2270 | }, 2271 | "engines": { 2272 | "node": ">= 14" 2273 | } 2274 | }, 2275 | "node_modules/get-uri/node_modules/data-uri-to-buffer": { 2276 | "version": "6.0.2", 2277 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", 2278 | "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", 2279 | "license": "MIT", 2280 | "engines": { 2281 | "node": ">= 14" 2282 | } 2283 | }, 2284 | "node_modules/glob-to-regexp": { 2285 | "version": "0.4.1", 2286 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 2287 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", 2288 | "dev": true, 2289 | "license": "BSD-2-Clause" 2290 | }, 2291 | "node_modules/hono": { 2292 | "version": "4.7.2", 2293 | "resolved": "https://registry.npmjs.org/hono/-/hono-4.7.2.tgz", 2294 | "integrity": "sha512-8V5XxoOF6SI12jkHkzX/6aLBMU5GEF5g387EjVSQipS0DlxWgWGSMeEayY3CRBjtTUQYwLHx9JYouWqKzy2Vng==", 2295 | "license": "MIT", 2296 | "peer": true, 2297 | "engines": { 2298 | "node": ">=16.9.0" 2299 | } 2300 | }, 2301 | "node_modules/http-proxy-agent": { 2302 | "version": "7.0.2", 2303 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", 2304 | "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", 2305 | "license": "MIT", 2306 | "dependencies": { 2307 | "agent-base": "^7.1.0", 2308 | "debug": "^4.3.4" 2309 | }, 2310 | "engines": { 2311 | "node": ">= 14" 2312 | } 2313 | }, 2314 | "node_modules/https-proxy-agent": { 2315 | "version": "7.0.6", 2316 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 2317 | "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 2318 | "license": "MIT", 2319 | "dependencies": { 2320 | "agent-base": "^7.1.2", 2321 | "debug": "4" 2322 | }, 2323 | "engines": { 2324 | "node": ">= 14" 2325 | } 2326 | }, 2327 | "node_modules/ieee754": { 2328 | "version": "1.2.1", 2329 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 2330 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 2331 | "funding": [ 2332 | { 2333 | "type": "github", 2334 | "url": "https://github.com/sponsors/feross" 2335 | }, 2336 | { 2337 | "type": "patreon", 2338 | "url": "https://www.patreon.com/feross" 2339 | }, 2340 | { 2341 | "type": "consulting", 2342 | "url": "https://feross.org/support" 2343 | } 2344 | ], 2345 | "license": "BSD-3-Clause" 2346 | }, 2347 | "node_modules/ip-address": { 2348 | "version": "9.0.5", 2349 | "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", 2350 | "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", 2351 | "license": "MIT", 2352 | "dependencies": { 2353 | "jsbn": "1.1.0", 2354 | "sprintf-js": "^1.1.3" 2355 | }, 2356 | "engines": { 2357 | "node": ">= 12" 2358 | } 2359 | }, 2360 | "node_modules/is-arrayish": { 2361 | "version": "0.3.2", 2362 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 2363 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 2364 | "dev": true, 2365 | "license": "MIT", 2366 | "optional": true 2367 | }, 2368 | "node_modules/is-fullwidth-code-point": { 2369 | "version": "3.0.0", 2370 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2371 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2372 | "license": "MIT", 2373 | "engines": { 2374 | "node": ">=8" 2375 | } 2376 | }, 2377 | "node_modules/js-base64": { 2378 | "version": "3.7.7", 2379 | "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", 2380 | "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==", 2381 | "license": "BSD-3-Clause" 2382 | }, 2383 | "node_modules/jsbn": { 2384 | "version": "1.1.0", 2385 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", 2386 | "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", 2387 | "license": "MIT" 2388 | }, 2389 | "node_modules/loupe": { 2390 | "version": "3.1.3", 2391 | "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz", 2392 | "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==", 2393 | "dev": true, 2394 | "license": "MIT" 2395 | }, 2396 | "node_modules/lru-cache": { 2397 | "version": "7.18.3", 2398 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", 2399 | "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", 2400 | "license": "ISC", 2401 | "engines": { 2402 | "node": ">=12" 2403 | } 2404 | }, 2405 | "node_modules/magic-string": { 2406 | "version": "0.30.17", 2407 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 2408 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 2409 | "dev": true, 2410 | "license": "MIT", 2411 | "dependencies": { 2412 | "@jridgewell/sourcemap-codec": "^1.5.0" 2413 | } 2414 | }, 2415 | "node_modules/mime": { 2416 | "version": "3.0.0", 2417 | "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", 2418 | "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", 2419 | "dev": true, 2420 | "license": "MIT", 2421 | "bin": { 2422 | "mime": "cli.js" 2423 | }, 2424 | "engines": { 2425 | "node": ">=10.0.0" 2426 | } 2427 | }, 2428 | "node_modules/mime-db": { 2429 | "version": "1.52.0", 2430 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2431 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2432 | "license": "MIT", 2433 | "engines": { 2434 | "node": ">= 0.6" 2435 | } 2436 | }, 2437 | "node_modules/mime-types": { 2438 | "version": "2.1.35", 2439 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2440 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2441 | "license": "MIT", 2442 | "dependencies": { 2443 | "mime-db": "1.52.0" 2444 | }, 2445 | "engines": { 2446 | "node": ">= 0.6" 2447 | } 2448 | }, 2449 | "node_modules/mimetext": { 2450 | "version": "3.0.27", 2451 | "resolved": "https://registry.npmjs.org/mimetext/-/mimetext-3.0.27.tgz", 2452 | "integrity": "sha512-mUhWAsZD1N/K6dbN4+a5Yq78OPnYQw1ubOSMasBntsLQ2S7KVNlvDEA8dwpr4a7PszWMzeslKahAprtwYMgaBA==", 2453 | "license": "MIT", 2454 | "dependencies": { 2455 | "@babel/runtime": "^7.26.0", 2456 | "@babel/runtime-corejs3": "^7.26.0", 2457 | "js-base64": "^3.7.7", 2458 | "mime-types": "^2.1.35" 2459 | }, 2460 | "funding": { 2461 | "type": "patreon", 2462 | "url": "https://patreon.com/muratgozel" 2463 | } 2464 | }, 2465 | "node_modules/miniflare": { 2466 | "version": "3.20250204.1", 2467 | "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20250204.1.tgz", 2468 | "integrity": "sha512-B4PQi/Ai4d0ZTWahQwsFe5WAfr1j8ISMYxJZTc56g2/btgbX+Go099LmojAZY/fMRLhIYsglcStW8SeW3f/afA==", 2469 | "dev": true, 2470 | "license": "MIT", 2471 | "dependencies": { 2472 | "@cspotcode/source-map-support": "0.8.1", 2473 | "acorn": "8.14.0", 2474 | "acorn-walk": "8.3.2", 2475 | "exit-hook": "2.2.1", 2476 | "glob-to-regexp": "0.4.1", 2477 | "stoppable": "1.1.0", 2478 | "undici": "^5.28.4", 2479 | "workerd": "1.20250204.0", 2480 | "ws": "8.18.0", 2481 | "youch": "3.2.3", 2482 | "zod": "3.22.3" 2483 | }, 2484 | "bin": { 2485 | "miniflare": "bootstrap.js" 2486 | }, 2487 | "engines": { 2488 | "node": ">=16.13" 2489 | } 2490 | }, 2491 | "node_modules/miniflare/node_modules/zod": { 2492 | "version": "3.22.3", 2493 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz", 2494 | "integrity": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==", 2495 | "dev": true, 2496 | "license": "MIT", 2497 | "funding": { 2498 | "url": "https://github.com/sponsors/colinhacks" 2499 | } 2500 | }, 2501 | "node_modules/mitt": { 2502 | "version": "3.0.1", 2503 | "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", 2504 | "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", 2505 | "license": "MIT" 2506 | }, 2507 | "node_modules/mkdirp-classic": { 2508 | "version": "0.5.3", 2509 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", 2510 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", 2511 | "license": "MIT" 2512 | }, 2513 | "node_modules/mlly": { 2514 | "version": "1.7.4", 2515 | "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz", 2516 | "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==", 2517 | "dev": true, 2518 | "license": "MIT", 2519 | "dependencies": { 2520 | "acorn": "^8.14.0", 2521 | "pathe": "^2.0.1", 2522 | "pkg-types": "^1.3.0", 2523 | "ufo": "^1.5.4" 2524 | } 2525 | }, 2526 | "node_modules/mlly/node_modules/pathe": { 2527 | "version": "2.0.3", 2528 | "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", 2529 | "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", 2530 | "dev": true, 2531 | "license": "MIT" 2532 | }, 2533 | "node_modules/ms": { 2534 | "version": "2.1.3", 2535 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2536 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2537 | "license": "MIT" 2538 | }, 2539 | "node_modules/mustache": { 2540 | "version": "4.2.0", 2541 | "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", 2542 | "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", 2543 | "dev": true, 2544 | "license": "MIT", 2545 | "bin": { 2546 | "mustache": "bin/mustache" 2547 | } 2548 | }, 2549 | "node_modules/nanoid": { 2550 | "version": "3.3.8", 2551 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2552 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2553 | "dev": true, 2554 | "funding": [ 2555 | { 2556 | "type": "github", 2557 | "url": "https://github.com/sponsors/ai" 2558 | } 2559 | ], 2560 | "license": "MIT", 2561 | "bin": { 2562 | "nanoid": "bin/nanoid.cjs" 2563 | }, 2564 | "engines": { 2565 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2566 | } 2567 | }, 2568 | "node_modules/netmask": { 2569 | "version": "2.0.2", 2570 | "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", 2571 | "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", 2572 | "license": "MIT", 2573 | "engines": { 2574 | "node": ">= 0.4.0" 2575 | } 2576 | }, 2577 | "node_modules/node-fetch": { 2578 | "version": "2.7.0", 2579 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2580 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2581 | "license": "MIT", 2582 | "dependencies": { 2583 | "whatwg-url": "^5.0.0" 2584 | }, 2585 | "engines": { 2586 | "node": "4.x || >=6.0.0" 2587 | }, 2588 | "peerDependencies": { 2589 | "encoding": "^0.1.0" 2590 | }, 2591 | "peerDependenciesMeta": { 2592 | "encoding": { 2593 | "optional": true 2594 | } 2595 | } 2596 | }, 2597 | "node_modules/ohash": { 2598 | "version": "1.1.4", 2599 | "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.4.tgz", 2600 | "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==", 2601 | "dev": true, 2602 | "license": "MIT" 2603 | }, 2604 | "node_modules/once": { 2605 | "version": "1.4.0", 2606 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2607 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2608 | "license": "ISC", 2609 | "dependencies": { 2610 | "wrappy": "1" 2611 | } 2612 | }, 2613 | "node_modules/pac-proxy-agent": { 2614 | "version": "7.2.0", 2615 | "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz", 2616 | "integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==", 2617 | "license": "MIT", 2618 | "dependencies": { 2619 | "@tootallnate/quickjs-emscripten": "^0.23.0", 2620 | "agent-base": "^7.1.2", 2621 | "debug": "^4.3.4", 2622 | "get-uri": "^6.0.1", 2623 | "http-proxy-agent": "^7.0.0", 2624 | "https-proxy-agent": "^7.0.6", 2625 | "pac-resolver": "^7.0.1", 2626 | "socks-proxy-agent": "^8.0.5" 2627 | }, 2628 | "engines": { 2629 | "node": ">= 14" 2630 | } 2631 | }, 2632 | "node_modules/pac-resolver": { 2633 | "version": "7.0.1", 2634 | "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", 2635 | "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", 2636 | "license": "MIT", 2637 | "dependencies": { 2638 | "degenerator": "^5.0.0", 2639 | "netmask": "^2.0.2" 2640 | }, 2641 | "engines": { 2642 | "node": ">= 14" 2643 | } 2644 | }, 2645 | "node_modules/path-to-regexp": { 2646 | "version": "6.3.0", 2647 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", 2648 | "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", 2649 | "dev": true, 2650 | "license": "MIT" 2651 | }, 2652 | "node_modules/pathe": { 2653 | "version": "1.1.2", 2654 | "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", 2655 | "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", 2656 | "dev": true, 2657 | "license": "MIT" 2658 | }, 2659 | "node_modules/pathval": { 2660 | "version": "2.0.0", 2661 | "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", 2662 | "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", 2663 | "dev": true, 2664 | "license": "MIT", 2665 | "engines": { 2666 | "node": ">= 14.16" 2667 | } 2668 | }, 2669 | "node_modules/pend": { 2670 | "version": "1.2.0", 2671 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", 2672 | "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", 2673 | "license": "MIT" 2674 | }, 2675 | "node_modules/picocolors": { 2676 | "version": "1.1.1", 2677 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2678 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2679 | "dev": true, 2680 | "license": "ISC" 2681 | }, 2682 | "node_modules/pkg-types": { 2683 | "version": "1.3.1", 2684 | "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz", 2685 | "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==", 2686 | "dev": true, 2687 | "license": "MIT", 2688 | "dependencies": { 2689 | "confbox": "^0.1.8", 2690 | "mlly": "^1.7.4", 2691 | "pathe": "^2.0.1" 2692 | } 2693 | }, 2694 | "node_modules/pkg-types/node_modules/pathe": { 2695 | "version": "2.0.3", 2696 | "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", 2697 | "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", 2698 | "dev": true, 2699 | "license": "MIT" 2700 | }, 2701 | "node_modules/postcss": { 2702 | "version": "8.5.3", 2703 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 2704 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 2705 | "dev": true, 2706 | "funding": [ 2707 | { 2708 | "type": "opencollective", 2709 | "url": "https://opencollective.com/postcss/" 2710 | }, 2711 | { 2712 | "type": "tidelift", 2713 | "url": "https://tidelift.com/funding/github/npm/postcss" 2714 | }, 2715 | { 2716 | "type": "github", 2717 | "url": "https://github.com/sponsors/ai" 2718 | } 2719 | ], 2720 | "license": "MIT", 2721 | "dependencies": { 2722 | "nanoid": "^3.3.8", 2723 | "picocolors": "^1.1.1", 2724 | "source-map-js": "^1.2.1" 2725 | }, 2726 | "engines": { 2727 | "node": "^10 || ^12 || >=14" 2728 | } 2729 | }, 2730 | "node_modules/printable-characters": { 2731 | "version": "1.0.42", 2732 | "resolved": "https://registry.npmjs.org/printable-characters/-/printable-characters-1.0.42.tgz", 2733 | "integrity": "sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==", 2734 | "dev": true, 2735 | "license": "Unlicense" 2736 | }, 2737 | "node_modules/progress": { 2738 | "version": "2.0.3", 2739 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 2740 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", 2741 | "license": "MIT", 2742 | "engines": { 2743 | "node": ">=0.4.0" 2744 | } 2745 | }, 2746 | "node_modules/proxy-agent": { 2747 | "version": "6.3.0", 2748 | "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", 2749 | "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", 2750 | "license": "MIT", 2751 | "dependencies": { 2752 | "agent-base": "^7.0.2", 2753 | "debug": "^4.3.4", 2754 | "http-proxy-agent": "^7.0.0", 2755 | "https-proxy-agent": "^7.0.0", 2756 | "lru-cache": "^7.14.1", 2757 | "pac-proxy-agent": "^7.0.0", 2758 | "proxy-from-env": "^1.1.0", 2759 | "socks-proxy-agent": "^8.0.1" 2760 | }, 2761 | "engines": { 2762 | "node": ">= 14" 2763 | } 2764 | }, 2765 | "node_modules/proxy-from-env": { 2766 | "version": "1.1.0", 2767 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 2768 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 2769 | "license": "MIT" 2770 | }, 2771 | "node_modules/pump": { 2772 | "version": "3.0.2", 2773 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", 2774 | "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", 2775 | "license": "MIT", 2776 | "dependencies": { 2777 | "end-of-stream": "^1.1.0", 2778 | "once": "^1.3.1" 2779 | } 2780 | }, 2781 | "node_modules/regenerator-runtime": { 2782 | "version": "0.14.1", 2783 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 2784 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", 2785 | "license": "MIT" 2786 | }, 2787 | "node_modules/require-directory": { 2788 | "version": "2.1.1", 2789 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2790 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2791 | "license": "MIT", 2792 | "engines": { 2793 | "node": ">=0.10.0" 2794 | } 2795 | }, 2796 | "node_modules/rollup": { 2797 | "version": "4.34.8", 2798 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz", 2799 | "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", 2800 | "dev": true, 2801 | "license": "MIT", 2802 | "dependencies": { 2803 | "@types/estree": "1.0.6" 2804 | }, 2805 | "bin": { 2806 | "rollup": "dist/bin/rollup" 2807 | }, 2808 | "engines": { 2809 | "node": ">=18.0.0", 2810 | "npm": ">=8.0.0" 2811 | }, 2812 | "optionalDependencies": { 2813 | "@rollup/rollup-android-arm-eabi": "4.34.8", 2814 | "@rollup/rollup-android-arm64": "4.34.8", 2815 | "@rollup/rollup-darwin-arm64": "4.34.8", 2816 | "@rollup/rollup-darwin-x64": "4.34.8", 2817 | "@rollup/rollup-freebsd-arm64": "4.34.8", 2818 | "@rollup/rollup-freebsd-x64": "4.34.8", 2819 | "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", 2820 | "@rollup/rollup-linux-arm-musleabihf": "4.34.8", 2821 | "@rollup/rollup-linux-arm64-gnu": "4.34.8", 2822 | "@rollup/rollup-linux-arm64-musl": "4.34.8", 2823 | "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", 2824 | "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", 2825 | "@rollup/rollup-linux-riscv64-gnu": "4.34.8", 2826 | "@rollup/rollup-linux-s390x-gnu": "4.34.8", 2827 | "@rollup/rollup-linux-x64-gnu": "4.34.8", 2828 | "@rollup/rollup-linux-x64-musl": "4.34.8", 2829 | "@rollup/rollup-win32-arm64-msvc": "4.34.8", 2830 | "@rollup/rollup-win32-ia32-msvc": "4.34.8", 2831 | "@rollup/rollup-win32-x64-msvc": "4.34.8", 2832 | "fsevents": "~2.3.2" 2833 | } 2834 | }, 2835 | "node_modules/rollup-plugin-inject": { 2836 | "version": "3.0.2", 2837 | "resolved": "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz", 2838 | "integrity": "sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==", 2839 | "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.", 2840 | "dev": true, 2841 | "license": "MIT", 2842 | "dependencies": { 2843 | "estree-walker": "^0.6.1", 2844 | "magic-string": "^0.25.3", 2845 | "rollup-pluginutils": "^2.8.1" 2846 | } 2847 | }, 2848 | "node_modules/rollup-plugin-inject/node_modules/estree-walker": { 2849 | "version": "0.6.1", 2850 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", 2851 | "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", 2852 | "dev": true, 2853 | "license": "MIT" 2854 | }, 2855 | "node_modules/rollup-plugin-inject/node_modules/magic-string": { 2856 | "version": "0.25.9", 2857 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", 2858 | "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", 2859 | "dev": true, 2860 | "license": "MIT", 2861 | "dependencies": { 2862 | "sourcemap-codec": "^1.4.8" 2863 | } 2864 | }, 2865 | "node_modules/rollup-plugin-node-polyfills": { 2866 | "version": "0.2.1", 2867 | "resolved": "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz", 2868 | "integrity": "sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==", 2869 | "dev": true, 2870 | "license": "MIT", 2871 | "dependencies": { 2872 | "rollup-plugin-inject": "^3.0.0" 2873 | } 2874 | }, 2875 | "node_modules/rollup-pluginutils": { 2876 | "version": "2.8.2", 2877 | "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", 2878 | "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", 2879 | "dev": true, 2880 | "license": "MIT", 2881 | "dependencies": { 2882 | "estree-walker": "^0.6.1" 2883 | } 2884 | }, 2885 | "node_modules/rollup-pluginutils/node_modules/estree-walker": { 2886 | "version": "0.6.1", 2887 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", 2888 | "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", 2889 | "dev": true, 2890 | "license": "MIT" 2891 | }, 2892 | "node_modules/semver": { 2893 | "version": "7.7.1", 2894 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2895 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2896 | "dev": true, 2897 | "license": "ISC", 2898 | "bin": { 2899 | "semver": "bin/semver.js" 2900 | }, 2901 | "engines": { 2902 | "node": ">=10" 2903 | } 2904 | }, 2905 | "node_modules/sharp": { 2906 | "version": "0.33.5", 2907 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", 2908 | "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", 2909 | "dev": true, 2910 | "hasInstallScript": true, 2911 | "license": "Apache-2.0", 2912 | "optional": true, 2913 | "dependencies": { 2914 | "color": "^4.2.3", 2915 | "detect-libc": "^2.0.3", 2916 | "semver": "^7.6.3" 2917 | }, 2918 | "engines": { 2919 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 2920 | }, 2921 | "funding": { 2922 | "url": "https://opencollective.com/libvips" 2923 | }, 2924 | "optionalDependencies": { 2925 | "@img/sharp-darwin-arm64": "0.33.5", 2926 | "@img/sharp-darwin-x64": "0.33.5", 2927 | "@img/sharp-libvips-darwin-arm64": "1.0.4", 2928 | "@img/sharp-libvips-darwin-x64": "1.0.4", 2929 | "@img/sharp-libvips-linux-arm": "1.0.5", 2930 | "@img/sharp-libvips-linux-arm64": "1.0.4", 2931 | "@img/sharp-libvips-linux-s390x": "1.0.4", 2932 | "@img/sharp-libvips-linux-x64": "1.0.4", 2933 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", 2934 | "@img/sharp-libvips-linuxmusl-x64": "1.0.4", 2935 | "@img/sharp-linux-arm": "0.33.5", 2936 | "@img/sharp-linux-arm64": "0.33.5", 2937 | "@img/sharp-linux-s390x": "0.33.5", 2938 | "@img/sharp-linux-x64": "0.33.5", 2939 | "@img/sharp-linuxmusl-arm64": "0.33.5", 2940 | "@img/sharp-linuxmusl-x64": "0.33.5", 2941 | "@img/sharp-wasm32": "0.33.5", 2942 | "@img/sharp-win32-ia32": "0.33.5", 2943 | "@img/sharp-win32-x64": "0.33.5" 2944 | } 2945 | }, 2946 | "node_modules/siginfo": { 2947 | "version": "2.0.0", 2948 | "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", 2949 | "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", 2950 | "dev": true, 2951 | "license": "ISC" 2952 | }, 2953 | "node_modules/simple-swizzle": { 2954 | "version": "0.2.2", 2955 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2956 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 2957 | "dev": true, 2958 | "license": "MIT", 2959 | "optional": true, 2960 | "dependencies": { 2961 | "is-arrayish": "^0.3.1" 2962 | } 2963 | }, 2964 | "node_modules/smart-buffer": { 2965 | "version": "4.2.0", 2966 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", 2967 | "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", 2968 | "license": "MIT", 2969 | "engines": { 2970 | "node": ">= 6.0.0", 2971 | "npm": ">= 3.0.0" 2972 | } 2973 | }, 2974 | "node_modules/socks": { 2975 | "version": "2.8.4", 2976 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz", 2977 | "integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==", 2978 | "license": "MIT", 2979 | "dependencies": { 2980 | "ip-address": "^9.0.5", 2981 | "smart-buffer": "^4.2.0" 2982 | }, 2983 | "engines": { 2984 | "node": ">= 10.0.0", 2985 | "npm": ">= 3.0.0" 2986 | } 2987 | }, 2988 | "node_modules/socks-proxy-agent": { 2989 | "version": "8.0.5", 2990 | "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz", 2991 | "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==", 2992 | "license": "MIT", 2993 | "dependencies": { 2994 | "agent-base": "^7.1.2", 2995 | "debug": "^4.3.4", 2996 | "socks": "^2.8.3" 2997 | }, 2998 | "engines": { 2999 | "node": ">= 14" 3000 | } 3001 | }, 3002 | "node_modules/source-map": { 3003 | "version": "0.6.1", 3004 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3005 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3006 | "devOptional": true, 3007 | "license": "BSD-3-Clause", 3008 | "engines": { 3009 | "node": ">=0.10.0" 3010 | } 3011 | }, 3012 | "node_modules/source-map-js": { 3013 | "version": "1.2.1", 3014 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3015 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3016 | "dev": true, 3017 | "license": "BSD-3-Clause", 3018 | "engines": { 3019 | "node": ">=0.10.0" 3020 | } 3021 | }, 3022 | "node_modules/sourcemap-codec": { 3023 | "version": "1.4.8", 3024 | "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", 3025 | "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", 3026 | "deprecated": "Please use @jridgewell/sourcemap-codec instead", 3027 | "dev": true, 3028 | "license": "MIT" 3029 | }, 3030 | "node_modules/sprintf-js": { 3031 | "version": "1.1.3", 3032 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", 3033 | "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", 3034 | "license": "BSD-3-Clause" 3035 | }, 3036 | "node_modules/stackback": { 3037 | "version": "0.0.2", 3038 | "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", 3039 | "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", 3040 | "dev": true, 3041 | "license": "MIT" 3042 | }, 3043 | "node_modules/stacktracey": { 3044 | "version": "2.1.8", 3045 | "resolved": "https://registry.npmjs.org/stacktracey/-/stacktracey-2.1.8.tgz", 3046 | "integrity": "sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==", 3047 | "dev": true, 3048 | "license": "Unlicense", 3049 | "dependencies": { 3050 | "as-table": "^1.0.36", 3051 | "get-source": "^2.0.12" 3052 | } 3053 | }, 3054 | "node_modules/std-env": { 3055 | "version": "3.8.0", 3056 | "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", 3057 | "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", 3058 | "dev": true, 3059 | "license": "MIT" 3060 | }, 3061 | "node_modules/stoppable": { 3062 | "version": "1.1.0", 3063 | "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", 3064 | "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==", 3065 | "dev": true, 3066 | "license": "MIT", 3067 | "engines": { 3068 | "node": ">=4", 3069 | "npm": ">=6" 3070 | } 3071 | }, 3072 | "node_modules/streamx": { 3073 | "version": "2.22.0", 3074 | "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz", 3075 | "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==", 3076 | "license": "MIT", 3077 | "dependencies": { 3078 | "fast-fifo": "^1.3.2", 3079 | "text-decoder": "^1.1.0" 3080 | }, 3081 | "optionalDependencies": { 3082 | "bare-events": "^2.2.0" 3083 | } 3084 | }, 3085 | "node_modules/string-width": { 3086 | "version": "4.2.3", 3087 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3088 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3089 | "license": "MIT", 3090 | "dependencies": { 3091 | "emoji-regex": "^8.0.0", 3092 | "is-fullwidth-code-point": "^3.0.0", 3093 | "strip-ansi": "^6.0.1" 3094 | }, 3095 | "engines": { 3096 | "node": ">=8" 3097 | } 3098 | }, 3099 | "node_modules/strip-ansi": { 3100 | "version": "6.0.1", 3101 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3102 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3103 | "license": "MIT", 3104 | "dependencies": { 3105 | "ansi-regex": "^5.0.1" 3106 | }, 3107 | "engines": { 3108 | "node": ">=8" 3109 | } 3110 | }, 3111 | "node_modules/tar-fs": { 3112 | "version": "3.0.4", 3113 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", 3114 | "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", 3115 | "license": "MIT", 3116 | "dependencies": { 3117 | "mkdirp-classic": "^0.5.2", 3118 | "pump": "^3.0.0", 3119 | "tar-stream": "^3.1.5" 3120 | } 3121 | }, 3122 | "node_modules/tar-stream": { 3123 | "version": "3.1.7", 3124 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", 3125 | "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", 3126 | "license": "MIT", 3127 | "dependencies": { 3128 | "b4a": "^1.6.4", 3129 | "fast-fifo": "^1.2.0", 3130 | "streamx": "^2.15.0" 3131 | } 3132 | }, 3133 | "node_modules/text-decoder": { 3134 | "version": "1.2.3", 3135 | "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz", 3136 | "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==", 3137 | "license": "Apache-2.0", 3138 | "dependencies": { 3139 | "b4a": "^1.6.4" 3140 | } 3141 | }, 3142 | "node_modules/through": { 3143 | "version": "2.3.8", 3144 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 3145 | "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", 3146 | "license": "MIT" 3147 | }, 3148 | "node_modules/tinybench": { 3149 | "version": "2.9.0", 3150 | "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", 3151 | "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", 3152 | "dev": true, 3153 | "license": "MIT" 3154 | }, 3155 | "node_modules/tinyexec": { 3156 | "version": "0.3.2", 3157 | "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", 3158 | "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", 3159 | "dev": true, 3160 | "license": "MIT" 3161 | }, 3162 | "node_modules/tinypool": { 3163 | "version": "1.0.2", 3164 | "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", 3165 | "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", 3166 | "dev": true, 3167 | "license": "MIT", 3168 | "engines": { 3169 | "node": "^18.0.0 || >=20.0.0" 3170 | } 3171 | }, 3172 | "node_modules/tinyrainbow": { 3173 | "version": "1.2.0", 3174 | "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", 3175 | "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", 3176 | "dev": true, 3177 | "license": "MIT", 3178 | "engines": { 3179 | "node": ">=14.0.0" 3180 | } 3181 | }, 3182 | "node_modules/tinyspy": { 3183 | "version": "3.0.2", 3184 | "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", 3185 | "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", 3186 | "dev": true, 3187 | "license": "MIT", 3188 | "engines": { 3189 | "node": ">=14.0.0" 3190 | } 3191 | }, 3192 | "node_modules/tr46": { 3193 | "version": "0.0.3", 3194 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3195 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 3196 | "license": "MIT" 3197 | }, 3198 | "node_modules/tslib": { 3199 | "version": "2.8.1", 3200 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3201 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3202 | "license": "0BSD" 3203 | }, 3204 | "node_modules/typescript": { 3205 | "version": "5.7.3", 3206 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 3207 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3208 | "dev": true, 3209 | "license": "Apache-2.0", 3210 | "bin": { 3211 | "tsc": "bin/tsc", 3212 | "tsserver": "bin/tsserver" 3213 | }, 3214 | "engines": { 3215 | "node": ">=14.17" 3216 | } 3217 | }, 3218 | "node_modules/ufo": { 3219 | "version": "1.5.4", 3220 | "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", 3221 | "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", 3222 | "dev": true, 3223 | "license": "MIT" 3224 | }, 3225 | "node_modules/unbzip2-stream": { 3226 | "version": "1.4.3", 3227 | "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", 3228 | "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", 3229 | "license": "MIT", 3230 | "dependencies": { 3231 | "buffer": "^5.2.1", 3232 | "through": "^2.3.8" 3233 | } 3234 | }, 3235 | "node_modules/undici": { 3236 | "version": "5.28.5", 3237 | "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.5.tgz", 3238 | "integrity": "sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA==", 3239 | "dev": true, 3240 | "license": "MIT", 3241 | "dependencies": { 3242 | "@fastify/busboy": "^2.0.0" 3243 | }, 3244 | "engines": { 3245 | "node": ">=14.0" 3246 | } 3247 | }, 3248 | "node_modules/undici-types": { 3249 | "version": "6.20.0", 3250 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 3251 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 3252 | "license": "MIT", 3253 | "optional": true 3254 | }, 3255 | "node_modules/unenv": { 3256 | "version": "2.0.0-rc.1", 3257 | "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.1.tgz", 3258 | "integrity": "sha512-PU5fb40H8X149s117aB4ytbORcCvlASdtF97tfls4BPIyj4PeVxvpSuy1jAptqYHqB0vb2w2sHvzM0XWcp2OKg==", 3259 | "dev": true, 3260 | "license": "MIT", 3261 | "dependencies": { 3262 | "defu": "^6.1.4", 3263 | "mlly": "^1.7.4", 3264 | "ohash": "^1.1.4", 3265 | "pathe": "^1.1.2", 3266 | "ufo": "^1.5.4" 3267 | } 3268 | }, 3269 | "node_modules/vite": { 3270 | "version": "5.4.14", 3271 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz", 3272 | "integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==", 3273 | "dev": true, 3274 | "license": "MIT", 3275 | "dependencies": { 3276 | "esbuild": "^0.21.3", 3277 | "postcss": "^8.4.43", 3278 | "rollup": "^4.20.0" 3279 | }, 3280 | "bin": { 3281 | "vite": "bin/vite.js" 3282 | }, 3283 | "engines": { 3284 | "node": "^18.0.0 || >=20.0.0" 3285 | }, 3286 | "funding": { 3287 | "url": "https://github.com/vitejs/vite?sponsor=1" 3288 | }, 3289 | "optionalDependencies": { 3290 | "fsevents": "~2.3.3" 3291 | }, 3292 | "peerDependencies": { 3293 | "@types/node": "^18.0.0 || >=20.0.0", 3294 | "less": "*", 3295 | "lightningcss": "^1.21.0", 3296 | "sass": "*", 3297 | "sass-embedded": "*", 3298 | "stylus": "*", 3299 | "sugarss": "*", 3300 | "terser": "^5.4.0" 3301 | }, 3302 | "peerDependenciesMeta": { 3303 | "@types/node": { 3304 | "optional": true 3305 | }, 3306 | "less": { 3307 | "optional": true 3308 | }, 3309 | "lightningcss": { 3310 | "optional": true 3311 | }, 3312 | "sass": { 3313 | "optional": true 3314 | }, 3315 | "sass-embedded": { 3316 | "optional": true 3317 | }, 3318 | "stylus": { 3319 | "optional": true 3320 | }, 3321 | "sugarss": { 3322 | "optional": true 3323 | }, 3324 | "terser": { 3325 | "optional": true 3326 | } 3327 | } 3328 | }, 3329 | "node_modules/vite-node": { 3330 | "version": "2.1.9", 3331 | "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz", 3332 | "integrity": "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==", 3333 | "dev": true, 3334 | "license": "MIT", 3335 | "dependencies": { 3336 | "cac": "^6.7.14", 3337 | "debug": "^4.3.7", 3338 | "es-module-lexer": "^1.5.4", 3339 | "pathe": "^1.1.2", 3340 | "vite": "^5.0.0" 3341 | }, 3342 | "bin": { 3343 | "vite-node": "vite-node.mjs" 3344 | }, 3345 | "engines": { 3346 | "node": "^18.0.0 || >=20.0.0" 3347 | }, 3348 | "funding": { 3349 | "url": "https://opencollective.com/vitest" 3350 | } 3351 | }, 3352 | "node_modules/vite/node_modules/@esbuild/android-arm": { 3353 | "version": "0.21.5", 3354 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 3355 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 3356 | "cpu": [ 3357 | "arm" 3358 | ], 3359 | "dev": true, 3360 | "license": "MIT", 3361 | "optional": true, 3362 | "os": [ 3363 | "android" 3364 | ], 3365 | "engines": { 3366 | "node": ">=12" 3367 | } 3368 | }, 3369 | "node_modules/vite/node_modules/@esbuild/android-arm64": { 3370 | "version": "0.21.5", 3371 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 3372 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 3373 | "cpu": [ 3374 | "arm64" 3375 | ], 3376 | "dev": true, 3377 | "license": "MIT", 3378 | "optional": true, 3379 | "os": [ 3380 | "android" 3381 | ], 3382 | "engines": { 3383 | "node": ">=12" 3384 | } 3385 | }, 3386 | "node_modules/vite/node_modules/@esbuild/android-x64": { 3387 | "version": "0.21.5", 3388 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 3389 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 3390 | "cpu": [ 3391 | "x64" 3392 | ], 3393 | "dev": true, 3394 | "license": "MIT", 3395 | "optional": true, 3396 | "os": [ 3397 | "android" 3398 | ], 3399 | "engines": { 3400 | "node": ">=12" 3401 | } 3402 | }, 3403 | "node_modules/vite/node_modules/@esbuild/darwin-arm64": { 3404 | "version": "0.21.5", 3405 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 3406 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 3407 | "cpu": [ 3408 | "arm64" 3409 | ], 3410 | "dev": true, 3411 | "license": "MIT", 3412 | "optional": true, 3413 | "os": [ 3414 | "darwin" 3415 | ], 3416 | "engines": { 3417 | "node": ">=12" 3418 | } 3419 | }, 3420 | "node_modules/vite/node_modules/@esbuild/darwin-x64": { 3421 | "version": "0.21.5", 3422 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 3423 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 3424 | "cpu": [ 3425 | "x64" 3426 | ], 3427 | "dev": true, 3428 | "license": "MIT", 3429 | "optional": true, 3430 | "os": [ 3431 | "darwin" 3432 | ], 3433 | "engines": { 3434 | "node": ">=12" 3435 | } 3436 | }, 3437 | "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { 3438 | "version": "0.21.5", 3439 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 3440 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 3441 | "cpu": [ 3442 | "arm64" 3443 | ], 3444 | "dev": true, 3445 | "license": "MIT", 3446 | "optional": true, 3447 | "os": [ 3448 | "freebsd" 3449 | ], 3450 | "engines": { 3451 | "node": ">=12" 3452 | } 3453 | }, 3454 | "node_modules/vite/node_modules/@esbuild/freebsd-x64": { 3455 | "version": "0.21.5", 3456 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 3457 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 3458 | "cpu": [ 3459 | "x64" 3460 | ], 3461 | "dev": true, 3462 | "license": "MIT", 3463 | "optional": true, 3464 | "os": [ 3465 | "freebsd" 3466 | ], 3467 | "engines": { 3468 | "node": ">=12" 3469 | } 3470 | }, 3471 | "node_modules/vite/node_modules/@esbuild/linux-arm": { 3472 | "version": "0.21.5", 3473 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 3474 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 3475 | "cpu": [ 3476 | "arm" 3477 | ], 3478 | "dev": true, 3479 | "license": "MIT", 3480 | "optional": true, 3481 | "os": [ 3482 | "linux" 3483 | ], 3484 | "engines": { 3485 | "node": ">=12" 3486 | } 3487 | }, 3488 | "node_modules/vite/node_modules/@esbuild/linux-arm64": { 3489 | "version": "0.21.5", 3490 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 3491 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 3492 | "cpu": [ 3493 | "arm64" 3494 | ], 3495 | "dev": true, 3496 | "license": "MIT", 3497 | "optional": true, 3498 | "os": [ 3499 | "linux" 3500 | ], 3501 | "engines": { 3502 | "node": ">=12" 3503 | } 3504 | }, 3505 | "node_modules/vite/node_modules/@esbuild/linux-ia32": { 3506 | "version": "0.21.5", 3507 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 3508 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 3509 | "cpu": [ 3510 | "ia32" 3511 | ], 3512 | "dev": true, 3513 | "license": "MIT", 3514 | "optional": true, 3515 | "os": [ 3516 | "linux" 3517 | ], 3518 | "engines": { 3519 | "node": ">=12" 3520 | } 3521 | }, 3522 | "node_modules/vite/node_modules/@esbuild/linux-loong64": { 3523 | "version": "0.21.5", 3524 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 3525 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 3526 | "cpu": [ 3527 | "loong64" 3528 | ], 3529 | "dev": true, 3530 | "license": "MIT", 3531 | "optional": true, 3532 | "os": [ 3533 | "linux" 3534 | ], 3535 | "engines": { 3536 | "node": ">=12" 3537 | } 3538 | }, 3539 | "node_modules/vite/node_modules/@esbuild/linux-mips64el": { 3540 | "version": "0.21.5", 3541 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 3542 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 3543 | "cpu": [ 3544 | "mips64el" 3545 | ], 3546 | "dev": true, 3547 | "license": "MIT", 3548 | "optional": true, 3549 | "os": [ 3550 | "linux" 3551 | ], 3552 | "engines": { 3553 | "node": ">=12" 3554 | } 3555 | }, 3556 | "node_modules/vite/node_modules/@esbuild/linux-ppc64": { 3557 | "version": "0.21.5", 3558 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 3559 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 3560 | "cpu": [ 3561 | "ppc64" 3562 | ], 3563 | "dev": true, 3564 | "license": "MIT", 3565 | "optional": true, 3566 | "os": [ 3567 | "linux" 3568 | ], 3569 | "engines": { 3570 | "node": ">=12" 3571 | } 3572 | }, 3573 | "node_modules/vite/node_modules/@esbuild/linux-riscv64": { 3574 | "version": "0.21.5", 3575 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 3576 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 3577 | "cpu": [ 3578 | "riscv64" 3579 | ], 3580 | "dev": true, 3581 | "license": "MIT", 3582 | "optional": true, 3583 | "os": [ 3584 | "linux" 3585 | ], 3586 | "engines": { 3587 | "node": ">=12" 3588 | } 3589 | }, 3590 | "node_modules/vite/node_modules/@esbuild/linux-s390x": { 3591 | "version": "0.21.5", 3592 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 3593 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 3594 | "cpu": [ 3595 | "s390x" 3596 | ], 3597 | "dev": true, 3598 | "license": "MIT", 3599 | "optional": true, 3600 | "os": [ 3601 | "linux" 3602 | ], 3603 | "engines": { 3604 | "node": ">=12" 3605 | } 3606 | }, 3607 | "node_modules/vite/node_modules/@esbuild/linux-x64": { 3608 | "version": "0.21.5", 3609 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 3610 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 3611 | "cpu": [ 3612 | "x64" 3613 | ], 3614 | "dev": true, 3615 | "license": "MIT", 3616 | "optional": true, 3617 | "os": [ 3618 | "linux" 3619 | ], 3620 | "engines": { 3621 | "node": ">=12" 3622 | } 3623 | }, 3624 | "node_modules/vite/node_modules/@esbuild/netbsd-x64": { 3625 | "version": "0.21.5", 3626 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 3627 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 3628 | "cpu": [ 3629 | "x64" 3630 | ], 3631 | "dev": true, 3632 | "license": "MIT", 3633 | "optional": true, 3634 | "os": [ 3635 | "netbsd" 3636 | ], 3637 | "engines": { 3638 | "node": ">=12" 3639 | } 3640 | }, 3641 | "node_modules/vite/node_modules/@esbuild/openbsd-x64": { 3642 | "version": "0.21.5", 3643 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 3644 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 3645 | "cpu": [ 3646 | "x64" 3647 | ], 3648 | "dev": true, 3649 | "license": "MIT", 3650 | "optional": true, 3651 | "os": [ 3652 | "openbsd" 3653 | ], 3654 | "engines": { 3655 | "node": ">=12" 3656 | } 3657 | }, 3658 | "node_modules/vite/node_modules/@esbuild/sunos-x64": { 3659 | "version": "0.21.5", 3660 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 3661 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 3662 | "cpu": [ 3663 | "x64" 3664 | ], 3665 | "dev": true, 3666 | "license": "MIT", 3667 | "optional": true, 3668 | "os": [ 3669 | "sunos" 3670 | ], 3671 | "engines": { 3672 | "node": ">=12" 3673 | } 3674 | }, 3675 | "node_modules/vite/node_modules/@esbuild/win32-arm64": { 3676 | "version": "0.21.5", 3677 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 3678 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 3679 | "cpu": [ 3680 | "arm64" 3681 | ], 3682 | "dev": true, 3683 | "license": "MIT", 3684 | "optional": true, 3685 | "os": [ 3686 | "win32" 3687 | ], 3688 | "engines": { 3689 | "node": ">=12" 3690 | } 3691 | }, 3692 | "node_modules/vite/node_modules/@esbuild/win32-ia32": { 3693 | "version": "0.21.5", 3694 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 3695 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 3696 | "cpu": [ 3697 | "ia32" 3698 | ], 3699 | "dev": true, 3700 | "license": "MIT", 3701 | "optional": true, 3702 | "os": [ 3703 | "win32" 3704 | ], 3705 | "engines": { 3706 | "node": ">=12" 3707 | } 3708 | }, 3709 | "node_modules/vite/node_modules/@esbuild/win32-x64": { 3710 | "version": "0.21.5", 3711 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 3712 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 3713 | "cpu": [ 3714 | "x64" 3715 | ], 3716 | "dev": true, 3717 | "license": "MIT", 3718 | "optional": true, 3719 | "os": [ 3720 | "win32" 3721 | ], 3722 | "engines": { 3723 | "node": ">=12" 3724 | } 3725 | }, 3726 | "node_modules/vite/node_modules/esbuild": { 3727 | "version": "0.21.5", 3728 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 3729 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 3730 | "dev": true, 3731 | "hasInstallScript": true, 3732 | "license": "MIT", 3733 | "bin": { 3734 | "esbuild": "bin/esbuild" 3735 | }, 3736 | "engines": { 3737 | "node": ">=12" 3738 | }, 3739 | "optionalDependencies": { 3740 | "@esbuild/aix-ppc64": "0.21.5", 3741 | "@esbuild/android-arm": "0.21.5", 3742 | "@esbuild/android-arm64": "0.21.5", 3743 | "@esbuild/android-x64": "0.21.5", 3744 | "@esbuild/darwin-arm64": "0.21.5", 3745 | "@esbuild/darwin-x64": "0.21.5", 3746 | "@esbuild/freebsd-arm64": "0.21.5", 3747 | "@esbuild/freebsd-x64": "0.21.5", 3748 | "@esbuild/linux-arm": "0.21.5", 3749 | "@esbuild/linux-arm64": "0.21.5", 3750 | "@esbuild/linux-ia32": "0.21.5", 3751 | "@esbuild/linux-loong64": "0.21.5", 3752 | "@esbuild/linux-mips64el": "0.21.5", 3753 | "@esbuild/linux-ppc64": "0.21.5", 3754 | "@esbuild/linux-riscv64": "0.21.5", 3755 | "@esbuild/linux-s390x": "0.21.5", 3756 | "@esbuild/linux-x64": "0.21.5", 3757 | "@esbuild/netbsd-x64": "0.21.5", 3758 | "@esbuild/openbsd-x64": "0.21.5", 3759 | "@esbuild/sunos-x64": "0.21.5", 3760 | "@esbuild/win32-arm64": "0.21.5", 3761 | "@esbuild/win32-ia32": "0.21.5", 3762 | "@esbuild/win32-x64": "0.21.5" 3763 | } 3764 | }, 3765 | "node_modules/vitest": { 3766 | "version": "2.1.9", 3767 | "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz", 3768 | "integrity": "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==", 3769 | "dev": true, 3770 | "license": "MIT", 3771 | "dependencies": { 3772 | "@vitest/expect": "2.1.9", 3773 | "@vitest/mocker": "2.1.9", 3774 | "@vitest/pretty-format": "^2.1.9", 3775 | "@vitest/runner": "2.1.9", 3776 | "@vitest/snapshot": "2.1.9", 3777 | "@vitest/spy": "2.1.9", 3778 | "@vitest/utils": "2.1.9", 3779 | "chai": "^5.1.2", 3780 | "debug": "^4.3.7", 3781 | "expect-type": "^1.1.0", 3782 | "magic-string": "^0.30.12", 3783 | "pathe": "^1.1.2", 3784 | "std-env": "^3.8.0", 3785 | "tinybench": "^2.9.0", 3786 | "tinyexec": "^0.3.1", 3787 | "tinypool": "^1.0.1", 3788 | "tinyrainbow": "^1.2.0", 3789 | "vite": "^5.0.0", 3790 | "vite-node": "2.1.9", 3791 | "why-is-node-running": "^2.3.0" 3792 | }, 3793 | "bin": { 3794 | "vitest": "vitest.mjs" 3795 | }, 3796 | "engines": { 3797 | "node": "^18.0.0 || >=20.0.0" 3798 | }, 3799 | "funding": { 3800 | "url": "https://opencollective.com/vitest" 3801 | }, 3802 | "peerDependencies": { 3803 | "@edge-runtime/vm": "*", 3804 | "@types/node": "^18.0.0 || >=20.0.0", 3805 | "@vitest/browser": "2.1.9", 3806 | "@vitest/ui": "2.1.9", 3807 | "happy-dom": "*", 3808 | "jsdom": "*" 3809 | }, 3810 | "peerDependenciesMeta": { 3811 | "@edge-runtime/vm": { 3812 | "optional": true 3813 | }, 3814 | "@types/node": { 3815 | "optional": true 3816 | }, 3817 | "@vitest/browser": { 3818 | "optional": true 3819 | }, 3820 | "@vitest/ui": { 3821 | "optional": true 3822 | }, 3823 | "happy-dom": { 3824 | "optional": true 3825 | }, 3826 | "jsdom": { 3827 | "optional": true 3828 | } 3829 | } 3830 | }, 3831 | "node_modules/webidl-conversions": { 3832 | "version": "3.0.1", 3833 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3834 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3835 | "license": "BSD-2-Clause" 3836 | }, 3837 | "node_modules/whatwg-url": { 3838 | "version": "5.0.0", 3839 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3840 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3841 | "license": "MIT", 3842 | "dependencies": { 3843 | "tr46": "~0.0.3", 3844 | "webidl-conversions": "^3.0.0" 3845 | } 3846 | }, 3847 | "node_modules/why-is-node-running": { 3848 | "version": "2.3.0", 3849 | "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", 3850 | "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", 3851 | "dev": true, 3852 | "license": "MIT", 3853 | "dependencies": { 3854 | "siginfo": "^2.0.0", 3855 | "stackback": "0.0.2" 3856 | }, 3857 | "bin": { 3858 | "why-is-node-running": "cli.js" 3859 | }, 3860 | "engines": { 3861 | "node": ">=8" 3862 | } 3863 | }, 3864 | "node_modules/workerd": { 3865 | "version": "1.20250204.0", 3866 | "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20250204.0.tgz", 3867 | "integrity": "sha512-zcKufjVFsQMiD3/acg1Ix00HIMCkXCrDxQXYRDn/1AIz3QQGkmbVDwcUk1Ki2jBUoXmBCMsJdycRucgMVEypWg==", 3868 | "dev": true, 3869 | "hasInstallScript": true, 3870 | "license": "Apache-2.0", 3871 | "bin": { 3872 | "workerd": "bin/workerd" 3873 | }, 3874 | "engines": { 3875 | "node": ">=16" 3876 | }, 3877 | "optionalDependencies": { 3878 | "@cloudflare/workerd-darwin-64": "1.20250204.0", 3879 | "@cloudflare/workerd-darwin-arm64": "1.20250204.0", 3880 | "@cloudflare/workerd-linux-64": "1.20250204.0", 3881 | "@cloudflare/workerd-linux-arm64": "1.20250204.0", 3882 | "@cloudflare/workerd-windows-64": "1.20250204.0" 3883 | } 3884 | }, 3885 | "node_modules/wrangler": { 3886 | "version": "3.110.0", 3887 | "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-3.110.0.tgz", 3888 | "integrity": "sha512-ldTaxtcYozSHo8QRcxTQUckO9C7zSZgG0/AMCqFLdKK7fYLFPWEwmbnh+gxzlxzWEMfa8fV/5NtR0k2bCBxAoA==", 3889 | "dev": true, 3890 | "license": "MIT OR Apache-2.0", 3891 | "dependencies": { 3892 | "@cloudflare/kv-asset-handler": "0.3.4", 3893 | "@esbuild-plugins/node-globals-polyfill": "0.2.3", 3894 | "@esbuild-plugins/node-modules-polyfill": "0.2.2", 3895 | "blake3-wasm": "2.1.5", 3896 | "esbuild": "0.17.19", 3897 | "miniflare": "3.20250214.1", 3898 | "path-to-regexp": "6.3.0", 3899 | "unenv": "2.0.0-rc.1", 3900 | "workerd": "1.20250214.0" 3901 | }, 3902 | "bin": { 3903 | "wrangler": "bin/wrangler.js", 3904 | "wrangler2": "bin/wrangler.js" 3905 | }, 3906 | "engines": { 3907 | "node": ">=16.17.0" 3908 | }, 3909 | "optionalDependencies": { 3910 | "fsevents": "~2.3.2", 3911 | "sharp": "^0.33.5" 3912 | }, 3913 | "peerDependencies": { 3914 | "@cloudflare/workers-types": "^4.20250214.0" 3915 | }, 3916 | "peerDependenciesMeta": { 3917 | "@cloudflare/workers-types": { 3918 | "optional": true 3919 | } 3920 | } 3921 | }, 3922 | "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-64": { 3923 | "version": "1.20250214.0", 3924 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20250214.0.tgz", 3925 | "integrity": "sha512-cDvvedWDc5zrgDnuXe2qYcz/TwBvzmweO55C7XpPuAWJ9Oqxv81PkdekYxD8mH989aQ/GI5YD0Fe6fDYlM+T3Q==", 3926 | "cpu": [ 3927 | "x64" 3928 | ], 3929 | "dev": true, 3930 | "license": "Apache-2.0", 3931 | "optional": true, 3932 | "os": [ 3933 | "darwin" 3934 | ], 3935 | "engines": { 3936 | "node": ">=16" 3937 | } 3938 | }, 3939 | "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-arm64": { 3940 | "version": "1.20250214.0", 3941 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20250214.0.tgz", 3942 | "integrity": "sha512-NytCvRveVzu0mRKo+tvZo3d/gCUway3B2ZVqSi/TS6NXDGBYIJo7g6s3BnTLS74kgyzeDOjhu9j/RBJBS809qw==", 3943 | "cpu": [ 3944 | "arm64" 3945 | ], 3946 | "dev": true, 3947 | "license": "Apache-2.0", 3948 | "optional": true, 3949 | "os": [ 3950 | "darwin" 3951 | ], 3952 | "engines": { 3953 | "node": ">=16" 3954 | } 3955 | }, 3956 | "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-64": { 3957 | "version": "1.20250214.0", 3958 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20250214.0.tgz", 3959 | "integrity": "sha512-pQ7+aHNHj8SiYEs4d/6cNoimE5xGeCMfgU1yfDFtA9YGN9Aj2BITZgOWPec+HW7ZkOy9oWlNrO6EvVjGgB4tbQ==", 3960 | "cpu": [ 3961 | "x64" 3962 | ], 3963 | "dev": true, 3964 | "license": "Apache-2.0", 3965 | "optional": true, 3966 | "os": [ 3967 | "linux" 3968 | ], 3969 | "engines": { 3970 | "node": ">=16" 3971 | } 3972 | }, 3973 | "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-arm64": { 3974 | "version": "1.20250214.0", 3975 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20250214.0.tgz", 3976 | "integrity": "sha512-Vhlfah6Yd9ny1npNQjNgElLIjR6OFdEbuR3LCfbLDCwzWEBFhIf7yC+Tpp/a0Hq7kLz3sLdktaP7xl3PJhyOjA==", 3977 | "cpu": [ 3978 | "arm64" 3979 | ], 3980 | "dev": true, 3981 | "license": "Apache-2.0", 3982 | "optional": true, 3983 | "os": [ 3984 | "linux" 3985 | ], 3986 | "engines": { 3987 | "node": ">=16" 3988 | } 3989 | }, 3990 | "node_modules/wrangler/node_modules/@cloudflare/workerd-windows-64": { 3991 | "version": "1.20250214.0", 3992 | "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20250214.0.tgz", 3993 | "integrity": "sha512-GMwMyFbkjBKjYJoKDhGX8nuL4Gqe3IbVnVWf2Q6086CValyIknupk5J6uQWGw2EBU3RGO3x4trDXT5WphQJZDQ==", 3994 | "cpu": [ 3995 | "x64" 3996 | ], 3997 | "dev": true, 3998 | "license": "Apache-2.0", 3999 | "optional": true, 4000 | "os": [ 4001 | "win32" 4002 | ], 4003 | "engines": { 4004 | "node": ">=16" 4005 | } 4006 | }, 4007 | "node_modules/wrangler/node_modules/miniflare": { 4008 | "version": "3.20250214.1", 4009 | "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-3.20250214.1.tgz", 4010 | "integrity": "sha512-NE66QV+2n9ZndaP5jgPlcVref3Arvizb+l2QqhgeXtKM5Orhi8UU2mijoiN3mHEUexKaBES2S1VubT4LDPqkxQ==", 4011 | "dev": true, 4012 | "license": "MIT", 4013 | "dependencies": { 4014 | "@cspotcode/source-map-support": "0.8.1", 4015 | "acorn": "8.14.0", 4016 | "acorn-walk": "8.3.2", 4017 | "exit-hook": "2.2.1", 4018 | "glob-to-regexp": "0.4.1", 4019 | "stoppable": "1.1.0", 4020 | "undici": "^5.28.5", 4021 | "workerd": "1.20250214.0", 4022 | "ws": "8.18.0", 4023 | "youch": "3.2.3", 4024 | "zod": "3.22.3" 4025 | }, 4026 | "bin": { 4027 | "miniflare": "bootstrap.js" 4028 | }, 4029 | "engines": { 4030 | "node": ">=16.13" 4031 | } 4032 | }, 4033 | "node_modules/wrangler/node_modules/workerd": { 4034 | "version": "1.20250214.0", 4035 | "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20250214.0.tgz", 4036 | "integrity": "sha512-QWcqXZLiMpV12wiaVnb3nLmfs/g4ZsFQq2mX85z546r3AX4CTIkXl0VP50W3CwqLADej3PGYiRDOTelDOwVG1g==", 4037 | "dev": true, 4038 | "hasInstallScript": true, 4039 | "license": "Apache-2.0", 4040 | "bin": { 4041 | "workerd": "bin/workerd" 4042 | }, 4043 | "engines": { 4044 | "node": ">=16" 4045 | }, 4046 | "optionalDependencies": { 4047 | "@cloudflare/workerd-darwin-64": "1.20250214.0", 4048 | "@cloudflare/workerd-darwin-arm64": "1.20250214.0", 4049 | "@cloudflare/workerd-linux-64": "1.20250214.0", 4050 | "@cloudflare/workerd-linux-arm64": "1.20250214.0", 4051 | "@cloudflare/workerd-windows-64": "1.20250214.0" 4052 | } 4053 | }, 4054 | "node_modules/wrangler/node_modules/zod": { 4055 | "version": "3.22.3", 4056 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz", 4057 | "integrity": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==", 4058 | "dev": true, 4059 | "license": "MIT", 4060 | "funding": { 4061 | "url": "https://github.com/sponsors/colinhacks" 4062 | } 4063 | }, 4064 | "node_modules/wrap-ansi": { 4065 | "version": "7.0.0", 4066 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4067 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4068 | "license": "MIT", 4069 | "dependencies": { 4070 | "ansi-styles": "^4.0.0", 4071 | "string-width": "^4.1.0", 4072 | "strip-ansi": "^6.0.0" 4073 | }, 4074 | "engines": { 4075 | "node": ">=10" 4076 | }, 4077 | "funding": { 4078 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4079 | } 4080 | }, 4081 | "node_modules/wrappy": { 4082 | "version": "1.0.2", 4083 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4084 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4085 | "license": "ISC" 4086 | }, 4087 | "node_modules/ws": { 4088 | "version": "8.18.0", 4089 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", 4090 | "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", 4091 | "dev": true, 4092 | "license": "MIT", 4093 | "engines": { 4094 | "node": ">=10.0.0" 4095 | }, 4096 | "peerDependencies": { 4097 | "bufferutil": "^4.0.1", 4098 | "utf-8-validate": ">=5.0.2" 4099 | }, 4100 | "peerDependenciesMeta": { 4101 | "bufferutil": { 4102 | "optional": true 4103 | }, 4104 | "utf-8-validate": { 4105 | "optional": true 4106 | } 4107 | } 4108 | }, 4109 | "node_modules/y18n": { 4110 | "version": "5.0.8", 4111 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 4112 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 4113 | "license": "ISC", 4114 | "engines": { 4115 | "node": ">=10" 4116 | } 4117 | }, 4118 | "node_modules/yargs": { 4119 | "version": "17.7.1", 4120 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", 4121 | "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", 4122 | "license": "MIT", 4123 | "dependencies": { 4124 | "cliui": "^8.0.1", 4125 | "escalade": "^3.1.1", 4126 | "get-caller-file": "^2.0.5", 4127 | "require-directory": "^2.1.1", 4128 | "string-width": "^4.2.3", 4129 | "y18n": "^5.0.5", 4130 | "yargs-parser": "^21.1.1" 4131 | }, 4132 | "engines": { 4133 | "node": ">=12" 4134 | } 4135 | }, 4136 | "node_modules/yargs-parser": { 4137 | "version": "21.1.1", 4138 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4139 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4140 | "license": "ISC", 4141 | "engines": { 4142 | "node": ">=12" 4143 | } 4144 | }, 4145 | "node_modules/yauzl": { 4146 | "version": "2.10.0", 4147 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", 4148 | "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", 4149 | "license": "MIT", 4150 | "dependencies": { 4151 | "buffer-crc32": "~0.2.3", 4152 | "fd-slicer": "~1.1.0" 4153 | } 4154 | }, 4155 | "node_modules/youch": { 4156 | "version": "3.2.3", 4157 | "resolved": "https://registry.npmjs.org/youch/-/youch-3.2.3.tgz", 4158 | "integrity": "sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw==", 4159 | "dev": true, 4160 | "license": "MIT", 4161 | "dependencies": { 4162 | "cookie": "^0.5.0", 4163 | "mustache": "^4.2.0", 4164 | "stacktracey": "^2.1.8" 4165 | } 4166 | }, 4167 | "node_modules/zod": { 4168 | "version": "3.24.2", 4169 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", 4170 | "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", 4171 | "dev": true, 4172 | "license": "MIT", 4173 | "funding": { 4174 | "url": "https://github.com/sponsors/colinhacks" 4175 | } 4176 | } 4177 | } 4178 | } 4179 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacker-news-email-worker", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "deploy": "wrangler deploy", 7 | "dev": "wrangler dev", 8 | "start": "wrangler dev", 9 | "test": "vitest", 10 | "cf-typegen": "wrangler types" 11 | }, 12 | "devDependencies": { 13 | "@cloudflare/vitest-pool-workers": "^0.6.4", 14 | "@cloudflare/workers-types": "^4.20250224.0", 15 | "typescript": "^5.5.2", 16 | "vitest": "~2.1.9", 17 | "wrangler": "^3.110.0" 18 | }, 19 | "dependencies": { 20 | "@cloudflare/puppeteer": "^0.0.14", 21 | "@hono/node-server": "^1.13.8", 22 | "mimetext": "^3.0.27" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Hono } from 'hono'; 2 | import puppeteer from "@cloudflare/puppeteer"; 3 | import { serveStatic } from '@hono/node-server/serve-static'; 4 | import { EmailMessage } from "cloudflare:email"; 5 | import { createMimeMessage } from "mimetext"; 6 | 7 | interface Env { 8 | MYBROWSER: any; 9 | BUCKET: any; 10 | BROWSERDO: any; 11 | AI: any; 12 | SEB: any; 13 | } 14 | 15 | const KEEP_BROWSER_ALIVE_IN_SECONDS = 60; 16 | 17 | export class BrowserDo { 18 | private browser: any; 19 | private keptAliveInSeconds: number; 20 | private storage: any; 21 | 22 | constructor(private env: Env, state: any) { 23 | this.keptAliveInSeconds = 0; 24 | this.storage = state?.storage; 25 | this.env = env; 26 | } 27 | 28 | async fetch(request: Request) { 29 | if (!this.browser || !this.browser.isConnected()) { 30 | try { 31 | // Initialize the browser using the BROWSER binding 32 | this.browser = await puppeteer.launch(this.env.MYBROWSER); 33 | } catch (e: any) { 34 | return new Response(JSON.stringify({ error: e.message }), { status: 500 }); 35 | } 36 | } 37 | return new Response(JSON.stringify({ status: 'ok' })); 38 | } 39 | 40 | async initBrowser() { 41 | if (!this.browser || !this.browser.isConnected()) { 42 | console.log(`Browser Manager: Starting new instance`); 43 | try { 44 | // Initialize the browser using the BROWSER binding 45 | this.browser = await puppeteer.launch(this.env.MYBROWSER); 46 | } catch (e) { 47 | console.log(`Browser Manager: Could not start browser instance. Error: ${e}`); 48 | throw e; 49 | } 50 | } 51 | return this.browser; 52 | } 53 | 54 | async alarm() { 55 | this.keptAliveInSeconds += 10; 56 | 57 | // Extend browser DO life 58 | if (this.keptAliveInSeconds < KEEP_BROWSER_ALIVE_IN_SECONDS) { 59 | console.log( 60 | `Browser DO: has been kept alive for ${this.keptAliveInSeconds} seconds. Extending lifespan.`, 61 | ); 62 | await this.storage.setAlarm(Date.now() + 10 * 1000); 63 | } else { 64 | console.log( 65 | `Browser DO: exceeded life of ${KEEP_BROWSER_ALIVE_IN_SECONDS}s.`, 66 | ); 67 | if (this.browser) { 68 | console.log(`Closing browser.`); 69 | await this.browser.close(); 70 | } 71 | } 72 | } 73 | 74 | async cleanup() { 75 | if (this.browser) { 76 | console.log('Closing browser.'); 77 | await this.browser.close(); 78 | } 79 | } 80 | } 81 | 82 | const app = new Hono<{ Bindings: Env }>(); 83 | 84 | // Serve the / HTML form 85 | app.get('/', serveStatic({ root: './assets' })); 86 | 87 | // Handle the analysis with GET 88 | app.get('/', async (c) => { 89 | const tone = c.req.query('tone'); 90 | const url = "https://news.ycombinator.com"; 91 | 92 | try { 93 | // Initialize browser and get stories 94 | const browserManager = new BrowserDo(c.env, { storage: null }); 95 | const browser = await browserManager.initBrowser(); 96 | const page = await browser.newPage(); 97 | await page.goto(url); 98 | 99 | const topStories = await page.evaluate(() => { 100 | const stories: { title: string; link: string }[] = []; 101 | const storyElements = document.querySelectorAll('.athing'); 102 | 103 | storyElements.forEach((story) => { 104 | const titleElement = story.querySelector('.titleline a') as HTMLAnchorElement | null; 105 | const title = titleElement?.innerText.trim(); 106 | const link = titleElement?.href; 107 | 108 | if (title && link) { 109 | stories.push({ title, link }); 110 | } 111 | }); 112 | 113 | return stories.slice(0, 10); 114 | }); 115 | 116 | await page.close(); 117 | 118 | // Only generate AI analysis if a tone is selected 119 | let aiContent = ''; 120 | if (tone) { 121 | try { 122 | const storiesForAnalysis = topStories 123 | .map((story: { title: string }, index: number) => `${index + 1}. ${story.title}`) 124 | .join('\n'); 125 | 126 | let systemPrompt; 127 | if (tone === 'tedlasso') { 128 | systemPrompt = "You are Ted Lasso, the optimistic football coach. With your characteristic warmth, folksy wisdom, and endless optimism, analyze and summarize these Hacker News stories. Use Ted Lasso-style metaphors, reference biscuits, football (soccer), and keep it believe-ingly positive!"; 129 | } else if (tone === 'stephena') { 130 | systemPrompt = "You are Stephen A. Smith, the passionate sports commentator. With your signature dramatic flair and strong opinions, analyze and summarize these Hacker News stories. Use your catchphrases, dramatic pauses (marked with ...), and bold declarations. Stay BLASPHEMOUS!"; 131 | } 132 | 133 | const analysisMessages = [ 134 | { role: "system", content: systemPrompt }, 135 | { role: "user", content: "Analyze these top Hacker News stories and provide a brief, engaging summary:\n\n" + storiesForAnalysis } 136 | ]; 137 | 138 | const analysisResponse = await c.env.AI.run("@cf/meta/llama-3.3-70b-instruct-fp8-fast", 139 | { 140 | messages: analysisMessages, 141 | max_tokens: 2048, 142 | temperature: 0.7, 143 | }, 144 | { 145 | gateway: { 146 | id: "hn-browser-email", 147 | skipCache: false, 148 | cacheTtl: 3360, 149 | }, 150 | } 151 | ); 152 | 153 | aiContent = (analysisResponse?.text || 154 | analysisResponse?.response || 155 | analysisResponse?.content || 156 | 'Analysis failed to generate.') 157 | .toString() 158 | .replace(/&/g, '&') 159 | .replace(//g, '>') 161 | .replace(/"/g, '"') 162 | .replace(/'/g, '''); 163 | 164 | } catch (aiError) { 165 | console.error('AI Analysis Error:', aiError); 166 | aiContent = 'Failed to generate AI analysis.'; 167 | } 168 | } 169 | 170 | const resultHtml = ` 171 | 172 | 173 |
174 |This is a Cloudflare Worker that emails me the top 10 Hacker News stories and an analysis/summary of them using Cloudflare Email, Workers AI, AI Gateway, and Browser Rendering. On this page, you can select a tone to analyze the stories:
277 | 278 |${line}
`).join('')}