├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── image-color.js ├── package-lock.json ├── package.json └── test ├── test.jpg └── test.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | insert_final_newline = true 7 | trim_trailing_whitespace = true 8 | charset = utf-8 9 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Node Unit Tests 2 | on: 3 | push: 4 | branches-ignore: 5 | - "gh-pages" 6 | jobs: 7 | build: 8 | runs-on: ${{ matrix.os }} 9 | strategy: 10 | matrix: 11 | os: ["ubuntu-latest", "macos-latest", "windows-latest"] 12 | node: ["18", "20", "22"] 13 | name: Node.js ${{ matrix.node }} on ${{ matrix.os }} 14 | steps: 15 | - uses: actions/checkout@v4 16 | - name: Setup node 17 | uses: actions/setup-node@v4 18 | with: 19 | node-version: ${{ matrix.node }} 20 | # cache: npm 21 | - run: npm install 22 | - run: npm test 23 | env: 24 | YARN_GPG: no 25 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Publish Release to npm 2 | on: 3 | release: 4 | types: [published] 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | permissions: 9 | contents: read 10 | id-token: write 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: actions/setup-node@v4 14 | with: 15 | node-version: "20" 16 | registry-url: 'https://registry.npmjs.org' 17 | - run: npm install 18 | - run: npm test 19 | - if: ${{ github.event.release.tag_name != '' && env.NPM_PUBLISH_TAG != '' }} 20 | run: npm publish --provenance --access=public --tag=${{ env.NPM_PUBLISH_TAG }} 21 | env: 22 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 23 | NPM_PUBLISH_TAG: ${{ contains(github.event.release.tag_name, '-beta.') && 'beta' || 'latest' }} 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | .env 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .github 3 | .cache 4 | .env 5 | .editorconfig 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Zach Leatherman @zachleat 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `@11ty/image-color` 2 | 3 | A small utility to efficiently extract color information from images (with a memoization and a disk-cache). Requires Node 18 or newer. 4 | 5 | ## Installation 6 | 7 | Install from [npm: `@11ty/image-color`](https://www.npmjs.com/package/@11ty/image-color): 8 | 9 | ```sh 10 | npm install @11ty/image-color 11 | ``` 12 | 13 | Based on the great work of [`get-pixels`](https://www.npmjs.com/package/get-pixels/) (via the [`@zachleat/get-pixels` fork](https://github.com/zachleat/get-pixels)) and [`extract-colors`](https://www.npmjs.com/package/extract-colors). 14 | 15 | ## Usage 16 | 17 | ```js 18 | import { getImageColors } from "@11ty/image-color"; 19 | 20 | // Returns an array of color objects 21 | let colors = await getImageColors("./sample.jpg"); 22 | 23 | // Works with local or remote images 24 | // let colors = await getImageColors("https://example.com/sample.jpg"); 25 | 26 | // Get oklch string values 27 | colors.map(c => c.background); 28 | 29 | // Get hex values 30 | colors.map(c => c.colorjs.toString({format: "hex"})); 31 | 32 | // Filter colors based on Lightness value 33 | colors.filter(c => c.colorjs.oklch.l > .1); 34 | 35 | // Sort Lightest colors first 36 | colors.sort((a, b) => { 37 | return b.colorjs.oklch.l - a.colorjs.oklch.l; 38 | }) 39 | ``` 40 | 41 | Learn more about [color.js Color objects](https://colorjs.io/docs/the-color-object). 42 | 43 | ### Returns 44 | 45 | An array of colors in the image, with the following properties: 46 | 47 | ```js 48 | [{ 49 | background, // oklch color string (you probably want this) 50 | foreground, // accessible color for text on top 51 | 52 | colorjs, // colorjs.io Color object 53 | 54 | mode, // one of "dark" or "light", based on WCAG21 contrast versus #000 or #fff 55 | contrast: { 56 | light, // WCAG21 contrast color (number) versus white (#fff) (4.5+ is good) 57 | dark, // WCAG21 contrast color (number) versus black (#000) (4.5+ is good) 58 | }, 59 | 60 | toString(), // returns same as `background` 61 | }] 62 | ``` 63 | 64 | Learn more about [color.js Color objects](https://colorjs.io/docs/the-color-object). 65 | -------------------------------------------------------------------------------- /image-color.js: -------------------------------------------------------------------------------- 1 | import memoize from "memoize"; 2 | import PQueue from 'p-queue'; 3 | import Color from "colorjs.io"; 4 | import debugUtil from "debug"; 5 | import { PNG } from "pngjs"; 6 | import ndarray from "ndarray"; 7 | import { extractColors } from "extract-colors"; 8 | import Cache from "@11ty/eleventy-fetch"; 9 | import Image from "@11ty/eleventy-img"; 10 | 11 | const debug = debugUtil("Eleventy:ImageColor"); 12 | const queue = new PQueue({ concurrency: 10 }); 13 | 14 | queue.on("active", () => { 15 | debug("Size: %o Pending: %o", queue.size, queue.pending); 16 | }); 17 | 18 | export async function getImage(source) { 19 | return Image(source, { 20 | // PNG is important here 21 | formats: ["png"], 22 | widths: [50], 23 | dryRun: true, 24 | }); 25 | } 26 | 27 | // Thanks to `get-pixels` https://www.npmjs.com/package/get-pixels 28 | async function handlePNG(data) { 29 | var png = new PNG(); 30 | return new Promise((resolve, reject) => { 31 | png.parse(data, function(err, img_data) { 32 | if(err) { 33 | reject(err); 34 | } else { 35 | resolve(ndarray(new Uint8Array(img_data.data), 36 | [img_data.width|0, img_data.height|0, 4], 37 | [4, 4*img_data.width|0, 1], 38 | 0)) 39 | } 40 | }) 41 | }) 42 | } 43 | 44 | // just for backwards compat, doesn’t use disk cache or memoization layer or concurrency queue 45 | export async function getColors(source) { 46 | let stats = await getImage(source); 47 | debug("Image fetched: %o", source); 48 | 49 | return getColorsFromBuffer(stats.png[0].buffer); 50 | } 51 | 52 | async function getColorsFromBuffer(buffer) { 53 | let pixels = await handlePNG(buffer); 54 | let data = [...pixels.data]; 55 | let [width, height] = pixels.shape; 56 | 57 | let colors = await extractColors({ data, width, height }); 58 | 59 | return colors.map(colorData => { 60 | let c = new Color(colorData.hex); 61 | 62 | let contrastDark = c.contrast("#000", "WCAG21"); 63 | let contrastLight = c.contrast("#fff", "WCAG21"); 64 | 65 | let alternate; 66 | let mode = "unknown"; 67 | if(contrastDark > 4.5) { 68 | // contrasts well with #000 69 | alternate = "#000"; // text is black 70 | mode = "light"; 71 | } else if(contrastLight > 4.5) { 72 | // contrasts well with #fff 73 | alternate = "#fff"; // text is white 74 | mode = "dark"; 75 | } 76 | 77 | return { 78 | colorjs: c, 79 | original: colorData.hex, 80 | background: ""+c.to("oklch"), 81 | foreground: alternate, 82 | 83 | mode, 84 | contrast: { 85 | light: contrastLight, 86 | dark: contrastDark, 87 | }, 88 | 89 | toString() { 90 | return ""+c.to("oklch"); 91 | } 92 | } 93 | }).filter(entry => Boolean(entry)); 94 | } 95 | 96 | export function getQueuedFunction(options = {}) { 97 | return memoize(async function(source) { 98 | debug("Fetching: %o", source); 99 | 100 | // This *needs* to be outside of Cache so it doesn’t have conflicting concurrency queues. 101 | let stats = await getImage(source); 102 | debug("Image fetched: %o", source); 103 | 104 | let buffer = stats.png[0].buffer; 105 | 106 | // Add to concurrency queue 107 | return queue.add(() => Cache(async () => { 108 | return getColorsFromBuffer(buffer); 109 | }, Object.assign({ 110 | type: "json", 111 | duration: "1d", 112 | requestId: `11ty/image-color/${source}`, 113 | }, options.cacheOptions)).then(colors => { 114 | // Color instances are not JSON-friendly 115 | for(let c of colors) { 116 | c.colorjs = new Color(c.original); 117 | } 118 | 119 | return colors; 120 | })); 121 | }); 122 | } 123 | 124 | let fn = getQueuedFunction(); 125 | let rawFn = getQueuedFunction({ cacheOptions: { dryRun: true } }); 126 | 127 | export function getImageColors(source) { 128 | return fn(source); 129 | } 130 | 131 | // no disk cache, but keep in-memory memoize (will read from disk if available!) 132 | export function getImageColorsRaw(source) { 133 | return rawFn(source); 134 | } 135 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@11ty/image-color", 3 | "version": "1.0.5", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "@11ty/image-color", 9 | "version": "1.0.5", 10 | "license": "MIT", 11 | "dependencies": { 12 | "@11ty/eleventy-fetch": "^5.0.2", 13 | "@11ty/eleventy-img": "^6.0.1", 14 | "colorjs.io": "^0.5.2", 15 | "debug": "^4.4.0", 16 | "extract-colors": "^4.2.0", 17 | "memoize": "^10.1.0", 18 | "ndarray": "^1.0.19", 19 | "p-queue": "^8.1.0", 20 | "pngjs": "^7.0.0" 21 | }, 22 | "devDependencies": { 23 | "ava": "^6.2.0" 24 | }, 25 | "engines": { 26 | "node": ">=18" 27 | }, 28 | "funding": { 29 | "type": "opencollective", 30 | "url": "https://opencollective.com/11ty" 31 | } 32 | }, 33 | "node_modules/@11ty/eleventy-fetch": { 34 | "version": "5.0.2", 35 | "resolved": "https://registry.npmjs.org/@11ty/eleventy-fetch/-/eleventy-fetch-5.0.2.tgz", 36 | "integrity": "sha512-yu7oZ5iv7zvFDawSYcN19cz7ddJB7OXPGZ47z/MzYmLa2LkpJm0KnZW2xGwpKvVrXd+tyb96ts6AqlkJT/ibwQ==", 37 | "license": "MIT", 38 | "dependencies": { 39 | "@rgrove/parse-xml": "^4.2.0", 40 | "debug": "^4.3.7", 41 | "flat-cache": "^6.1.1", 42 | "graceful-fs": "^4.2.11", 43 | "p-queue": "6.6.2" 44 | }, 45 | "engines": { 46 | "node": ">=18" 47 | }, 48 | "funding": { 49 | "type": "opencollective", 50 | "url": "https://opencollective.com/11ty" 51 | } 52 | }, 53 | "node_modules/@11ty/eleventy-fetch/node_modules/eventemitter3": { 54 | "version": "4.0.7", 55 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", 56 | "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", 57 | "license": "MIT" 58 | }, 59 | "node_modules/@11ty/eleventy-fetch/node_modules/p-queue": { 60 | "version": "6.6.2", 61 | "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", 62 | "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", 63 | "license": "MIT", 64 | "dependencies": { 65 | "eventemitter3": "^4.0.4", 66 | "p-timeout": "^3.2.0" 67 | }, 68 | "engines": { 69 | "node": ">=8" 70 | }, 71 | "funding": { 72 | "url": "https://github.com/sponsors/sindresorhus" 73 | } 74 | }, 75 | "node_modules/@11ty/eleventy-fetch/node_modules/p-timeout": { 76 | "version": "3.2.0", 77 | "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", 78 | "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", 79 | "license": "MIT", 80 | "dependencies": { 81 | "p-finally": "^1.0.0" 82 | }, 83 | "engines": { 84 | "node": ">=8" 85 | } 86 | }, 87 | "node_modules/@11ty/eleventy-img": { 88 | "version": "6.0.1", 89 | "resolved": "https://registry.npmjs.org/@11ty/eleventy-img/-/eleventy-img-6.0.1.tgz", 90 | "integrity": "sha512-Ktr1C42cu7rHR7M0lT+JfMjWaOIwS2rXqzrXkNfKAEljgJxCPVg2vsWr5iyPBg2IL7OY8ipPCr5jbovMAz6B9w==", 91 | "license": "MIT", 92 | "dependencies": { 93 | "@11ty/eleventy-fetch": "^5.0.2", 94 | "@11ty/eleventy-utils": "^2.0.0", 95 | "brotli-size": "^4.0.0", 96 | "debug": "^4.4.0", 97 | "entities": "^6.0.0", 98 | "image-size": "^1.2.0", 99 | "p-queue": "^6.6.2", 100 | "sharp": "^0.33.5" 101 | }, 102 | "engines": { 103 | "node": ">=18" 104 | }, 105 | "funding": { 106 | "type": "opencollective", 107 | "url": "https://opencollective.com/11ty" 108 | } 109 | }, 110 | "node_modules/@11ty/eleventy-img/node_modules/eventemitter3": { 111 | "version": "4.0.7", 112 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", 113 | "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", 114 | "license": "MIT" 115 | }, 116 | "node_modules/@11ty/eleventy-img/node_modules/p-queue": { 117 | "version": "6.6.2", 118 | "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", 119 | "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", 120 | "license": "MIT", 121 | "dependencies": { 122 | "eventemitter3": "^4.0.4", 123 | "p-timeout": "^3.2.0" 124 | }, 125 | "engines": { 126 | "node": ">=8" 127 | }, 128 | "funding": { 129 | "url": "https://github.com/sponsors/sindresorhus" 130 | } 131 | }, 132 | "node_modules/@11ty/eleventy-img/node_modules/p-timeout": { 133 | "version": "3.2.0", 134 | "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", 135 | "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", 136 | "license": "MIT", 137 | "dependencies": { 138 | "p-finally": "^1.0.0" 139 | }, 140 | "engines": { 141 | "node": ">=8" 142 | } 143 | }, 144 | "node_modules/@11ty/eleventy-utils": { 145 | "version": "2.0.1", 146 | "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-2.0.1.tgz", 147 | "integrity": "sha512-hicG0vPyqfLvgHJQLtoh3XAj6wUbLX4yY2se8bQLdhCIcxK46mt4zDpgcrYVP3Sjx4HPifQOdwRfOEECoUcyXQ==", 148 | "license": "MIT", 149 | "engines": { 150 | "node": ">=18" 151 | }, 152 | "funding": { 153 | "type": "opencollective", 154 | "url": "https://opencollective.com/11ty" 155 | } 156 | }, 157 | "node_modules/@emnapi/runtime": { 158 | "version": "1.3.1", 159 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", 160 | "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", 161 | "license": "MIT", 162 | "optional": true, 163 | "dependencies": { 164 | "tslib": "^2.4.0" 165 | } 166 | }, 167 | "node_modules/@img/sharp-darwin-arm64": { 168 | "version": "0.33.5", 169 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", 170 | "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", 171 | "cpu": [ 172 | "arm64" 173 | ], 174 | "license": "Apache-2.0", 175 | "optional": true, 176 | "os": [ 177 | "darwin" 178 | ], 179 | "engines": { 180 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 181 | }, 182 | "funding": { 183 | "url": "https://opencollective.com/libvips" 184 | }, 185 | "optionalDependencies": { 186 | "@img/sharp-libvips-darwin-arm64": "1.0.4" 187 | } 188 | }, 189 | "node_modules/@img/sharp-darwin-x64": { 190 | "version": "0.33.5", 191 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", 192 | "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", 193 | "cpu": [ 194 | "x64" 195 | ], 196 | "license": "Apache-2.0", 197 | "optional": true, 198 | "os": [ 199 | "darwin" 200 | ], 201 | "engines": { 202 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 203 | }, 204 | "funding": { 205 | "url": "https://opencollective.com/libvips" 206 | }, 207 | "optionalDependencies": { 208 | "@img/sharp-libvips-darwin-x64": "1.0.4" 209 | } 210 | }, 211 | "node_modules/@img/sharp-libvips-darwin-arm64": { 212 | "version": "1.0.4", 213 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", 214 | "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", 215 | "cpu": [ 216 | "arm64" 217 | ], 218 | "license": "LGPL-3.0-or-later", 219 | "optional": true, 220 | "os": [ 221 | "darwin" 222 | ], 223 | "funding": { 224 | "url": "https://opencollective.com/libvips" 225 | } 226 | }, 227 | "node_modules/@img/sharp-libvips-darwin-x64": { 228 | "version": "1.0.4", 229 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", 230 | "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", 231 | "cpu": [ 232 | "x64" 233 | ], 234 | "license": "LGPL-3.0-or-later", 235 | "optional": true, 236 | "os": [ 237 | "darwin" 238 | ], 239 | "funding": { 240 | "url": "https://opencollective.com/libvips" 241 | } 242 | }, 243 | "node_modules/@img/sharp-libvips-linux-arm": { 244 | "version": "1.0.5", 245 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", 246 | "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", 247 | "cpu": [ 248 | "arm" 249 | ], 250 | "license": "LGPL-3.0-or-later", 251 | "optional": true, 252 | "os": [ 253 | "linux" 254 | ], 255 | "funding": { 256 | "url": "https://opencollective.com/libvips" 257 | } 258 | }, 259 | "node_modules/@img/sharp-libvips-linux-arm64": { 260 | "version": "1.0.4", 261 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", 262 | "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", 263 | "cpu": [ 264 | "arm64" 265 | ], 266 | "license": "LGPL-3.0-or-later", 267 | "optional": true, 268 | "os": [ 269 | "linux" 270 | ], 271 | "funding": { 272 | "url": "https://opencollective.com/libvips" 273 | } 274 | }, 275 | "node_modules/@img/sharp-libvips-linux-s390x": { 276 | "version": "1.0.4", 277 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", 278 | "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", 279 | "cpu": [ 280 | "s390x" 281 | ], 282 | "license": "LGPL-3.0-or-later", 283 | "optional": true, 284 | "os": [ 285 | "linux" 286 | ], 287 | "funding": { 288 | "url": "https://opencollective.com/libvips" 289 | } 290 | }, 291 | "node_modules/@img/sharp-libvips-linux-x64": { 292 | "version": "1.0.4", 293 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", 294 | "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", 295 | "cpu": [ 296 | "x64" 297 | ], 298 | "license": "LGPL-3.0-or-later", 299 | "optional": true, 300 | "os": [ 301 | "linux" 302 | ], 303 | "funding": { 304 | "url": "https://opencollective.com/libvips" 305 | } 306 | }, 307 | "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 308 | "version": "1.0.4", 309 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", 310 | "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", 311 | "cpu": [ 312 | "arm64" 313 | ], 314 | "license": "LGPL-3.0-or-later", 315 | "optional": true, 316 | "os": [ 317 | "linux" 318 | ], 319 | "funding": { 320 | "url": "https://opencollective.com/libvips" 321 | } 322 | }, 323 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { 324 | "version": "1.0.4", 325 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", 326 | "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", 327 | "cpu": [ 328 | "x64" 329 | ], 330 | "license": "LGPL-3.0-or-later", 331 | "optional": true, 332 | "os": [ 333 | "linux" 334 | ], 335 | "funding": { 336 | "url": "https://opencollective.com/libvips" 337 | } 338 | }, 339 | "node_modules/@img/sharp-linux-arm": { 340 | "version": "0.33.5", 341 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", 342 | "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", 343 | "cpu": [ 344 | "arm" 345 | ], 346 | "license": "Apache-2.0", 347 | "optional": true, 348 | "os": [ 349 | "linux" 350 | ], 351 | "engines": { 352 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 353 | }, 354 | "funding": { 355 | "url": "https://opencollective.com/libvips" 356 | }, 357 | "optionalDependencies": { 358 | "@img/sharp-libvips-linux-arm": "1.0.5" 359 | } 360 | }, 361 | "node_modules/@img/sharp-linux-arm64": { 362 | "version": "0.33.5", 363 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", 364 | "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", 365 | "cpu": [ 366 | "arm64" 367 | ], 368 | "license": "Apache-2.0", 369 | "optional": true, 370 | "os": [ 371 | "linux" 372 | ], 373 | "engines": { 374 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 375 | }, 376 | "funding": { 377 | "url": "https://opencollective.com/libvips" 378 | }, 379 | "optionalDependencies": { 380 | "@img/sharp-libvips-linux-arm64": "1.0.4" 381 | } 382 | }, 383 | "node_modules/@img/sharp-linux-s390x": { 384 | "version": "0.33.5", 385 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", 386 | "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", 387 | "cpu": [ 388 | "s390x" 389 | ], 390 | "license": "Apache-2.0", 391 | "optional": true, 392 | "os": [ 393 | "linux" 394 | ], 395 | "engines": { 396 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 397 | }, 398 | "funding": { 399 | "url": "https://opencollective.com/libvips" 400 | }, 401 | "optionalDependencies": { 402 | "@img/sharp-libvips-linux-s390x": "1.0.4" 403 | } 404 | }, 405 | "node_modules/@img/sharp-linux-x64": { 406 | "version": "0.33.5", 407 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", 408 | "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", 409 | "cpu": [ 410 | "x64" 411 | ], 412 | "license": "Apache-2.0", 413 | "optional": true, 414 | "os": [ 415 | "linux" 416 | ], 417 | "engines": { 418 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 419 | }, 420 | "funding": { 421 | "url": "https://opencollective.com/libvips" 422 | }, 423 | "optionalDependencies": { 424 | "@img/sharp-libvips-linux-x64": "1.0.4" 425 | } 426 | }, 427 | "node_modules/@img/sharp-linuxmusl-arm64": { 428 | "version": "0.33.5", 429 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", 430 | "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", 431 | "cpu": [ 432 | "arm64" 433 | ], 434 | "license": "Apache-2.0", 435 | "optional": true, 436 | "os": [ 437 | "linux" 438 | ], 439 | "engines": { 440 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 441 | }, 442 | "funding": { 443 | "url": "https://opencollective.com/libvips" 444 | }, 445 | "optionalDependencies": { 446 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" 447 | } 448 | }, 449 | "node_modules/@img/sharp-linuxmusl-x64": { 450 | "version": "0.33.5", 451 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", 452 | "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", 453 | "cpu": [ 454 | "x64" 455 | ], 456 | "license": "Apache-2.0", 457 | "optional": true, 458 | "os": [ 459 | "linux" 460 | ], 461 | "engines": { 462 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 463 | }, 464 | "funding": { 465 | "url": "https://opencollective.com/libvips" 466 | }, 467 | "optionalDependencies": { 468 | "@img/sharp-libvips-linuxmusl-x64": "1.0.4" 469 | } 470 | }, 471 | "node_modules/@img/sharp-wasm32": { 472 | "version": "0.33.5", 473 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", 474 | "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", 475 | "cpu": [ 476 | "wasm32" 477 | ], 478 | "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 479 | "optional": true, 480 | "dependencies": { 481 | "@emnapi/runtime": "^1.2.0" 482 | }, 483 | "engines": { 484 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 485 | }, 486 | "funding": { 487 | "url": "https://opencollective.com/libvips" 488 | } 489 | }, 490 | "node_modules/@img/sharp-win32-ia32": { 491 | "version": "0.33.5", 492 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", 493 | "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", 494 | "cpu": [ 495 | "ia32" 496 | ], 497 | "license": "Apache-2.0 AND LGPL-3.0-or-later", 498 | "optional": true, 499 | "os": [ 500 | "win32" 501 | ], 502 | "engines": { 503 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 504 | }, 505 | "funding": { 506 | "url": "https://opencollective.com/libvips" 507 | } 508 | }, 509 | "node_modules/@img/sharp-win32-x64": { 510 | "version": "0.33.5", 511 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", 512 | "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", 513 | "cpu": [ 514 | "x64" 515 | ], 516 | "license": "Apache-2.0 AND LGPL-3.0-or-later", 517 | "optional": true, 518 | "os": [ 519 | "win32" 520 | ], 521 | "engines": { 522 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 523 | }, 524 | "funding": { 525 | "url": "https://opencollective.com/libvips" 526 | } 527 | }, 528 | "node_modules/@isaacs/cliui": { 529 | "version": "8.0.2", 530 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 531 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 532 | "dev": true, 533 | "license": "ISC", 534 | "dependencies": { 535 | "string-width": "^5.1.2", 536 | "string-width-cjs": "npm:string-width@^4.2.0", 537 | "strip-ansi": "^7.0.1", 538 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 539 | "wrap-ansi": "^8.1.0", 540 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 541 | }, 542 | "engines": { 543 | "node": ">=12" 544 | } 545 | }, 546 | "node_modules/@isaacs/cliui/node_modules/emoji-regex": { 547 | "version": "9.2.2", 548 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 549 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 550 | "dev": true, 551 | "license": "MIT" 552 | }, 553 | "node_modules/@isaacs/cliui/node_modules/string-width": { 554 | "version": "5.1.2", 555 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 556 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 557 | "dev": true, 558 | "license": "MIT", 559 | "dependencies": { 560 | "eastasianwidth": "^0.2.0", 561 | "emoji-regex": "^9.2.2", 562 | "strip-ansi": "^7.0.1" 563 | }, 564 | "engines": { 565 | "node": ">=12" 566 | }, 567 | "funding": { 568 | "url": "https://github.com/sponsors/sindresorhus" 569 | } 570 | }, 571 | "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { 572 | "version": "8.1.0", 573 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 574 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 575 | "dev": true, 576 | "license": "MIT", 577 | "dependencies": { 578 | "ansi-styles": "^6.1.0", 579 | "string-width": "^5.0.1", 580 | "strip-ansi": "^7.0.1" 581 | }, 582 | "engines": { 583 | "node": ">=12" 584 | }, 585 | "funding": { 586 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 587 | } 588 | }, 589 | "node_modules/@isaacs/fs-minipass": { 590 | "version": "4.0.1", 591 | "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 592 | "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 593 | "dev": true, 594 | "license": "ISC", 595 | "dependencies": { 596 | "minipass": "^7.0.4" 597 | }, 598 | "engines": { 599 | "node": ">=18.0.0" 600 | } 601 | }, 602 | "node_modules/@keyv/serialize": { 603 | "version": "1.0.3", 604 | "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.3.tgz", 605 | "integrity": "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==", 606 | "license": "MIT", 607 | "dependencies": { 608 | "buffer": "^6.0.3" 609 | } 610 | }, 611 | "node_modules/@mapbox/node-pre-gyp": { 612 | "version": "2.0.0", 613 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz", 614 | "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==", 615 | "dev": true, 616 | "license": "BSD-3-Clause", 617 | "dependencies": { 618 | "consola": "^3.2.3", 619 | "detect-libc": "^2.0.0", 620 | "https-proxy-agent": "^7.0.5", 621 | "node-fetch": "^2.6.7", 622 | "nopt": "^8.0.0", 623 | "semver": "^7.5.3", 624 | "tar": "^7.4.0" 625 | }, 626 | "bin": { 627 | "node-pre-gyp": "bin/node-pre-gyp" 628 | }, 629 | "engines": { 630 | "node": ">=18" 631 | } 632 | }, 633 | "node_modules/@nodelib/fs.scandir": { 634 | "version": "2.1.5", 635 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 636 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 637 | "dev": true, 638 | "license": "MIT", 639 | "dependencies": { 640 | "@nodelib/fs.stat": "2.0.5", 641 | "run-parallel": "^1.1.9" 642 | }, 643 | "engines": { 644 | "node": ">= 8" 645 | } 646 | }, 647 | "node_modules/@nodelib/fs.stat": { 648 | "version": "2.0.5", 649 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 650 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 651 | "dev": true, 652 | "license": "MIT", 653 | "engines": { 654 | "node": ">= 8" 655 | } 656 | }, 657 | "node_modules/@nodelib/fs.walk": { 658 | "version": "1.2.8", 659 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 660 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 661 | "dev": true, 662 | "license": "MIT", 663 | "dependencies": { 664 | "@nodelib/fs.scandir": "2.1.5", 665 | "fastq": "^1.6.0" 666 | }, 667 | "engines": { 668 | "node": ">= 8" 669 | } 670 | }, 671 | "node_modules/@pkgjs/parseargs": { 672 | "version": "0.11.0", 673 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 674 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 675 | "dev": true, 676 | "license": "MIT", 677 | "optional": true, 678 | "engines": { 679 | "node": ">=14" 680 | } 681 | }, 682 | "node_modules/@rgrove/parse-xml": { 683 | "version": "4.2.0", 684 | "resolved": "https://registry.npmjs.org/@rgrove/parse-xml/-/parse-xml-4.2.0.tgz", 685 | "integrity": "sha512-UuBOt7BOsKVOkFXRe4Ypd/lADuNIfqJXv8GvHqtXaTYXPPKkj2nS2zPllVsrtRjcomDhIJVBnZwfmlI222WH8g==", 686 | "license": "ISC", 687 | "engines": { 688 | "node": ">=14.0.0" 689 | } 690 | }, 691 | "node_modules/@rollup/pluginutils": { 692 | "version": "5.1.4", 693 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", 694 | "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", 695 | "dev": true, 696 | "license": "MIT", 697 | "dependencies": { 698 | "@types/estree": "^1.0.0", 699 | "estree-walker": "^2.0.2", 700 | "picomatch": "^4.0.2" 701 | }, 702 | "engines": { 703 | "node": ">=14.0.0" 704 | }, 705 | "peerDependencies": { 706 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 707 | }, 708 | "peerDependenciesMeta": { 709 | "rollup": { 710 | "optional": true 711 | } 712 | } 713 | }, 714 | "node_modules/@sindresorhus/merge-streams": { 715 | "version": "2.3.0", 716 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", 717 | "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", 718 | "dev": true, 719 | "license": "MIT", 720 | "engines": { 721 | "node": ">=18" 722 | }, 723 | "funding": { 724 | "url": "https://github.com/sponsors/sindresorhus" 725 | } 726 | }, 727 | "node_modules/@types/estree": { 728 | "version": "1.0.6", 729 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 730 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 731 | "dev": true, 732 | "license": "MIT" 733 | }, 734 | "node_modules/@vercel/nft": { 735 | "version": "0.27.10", 736 | "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz", 737 | "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==", 738 | "dev": true, 739 | "license": "MIT", 740 | "dependencies": { 741 | "@mapbox/node-pre-gyp": "^2.0.0-rc.0", 742 | "@rollup/pluginutils": "^5.1.3", 743 | "acorn": "^8.6.0", 744 | "acorn-import-attributes": "^1.9.5", 745 | "async-sema": "^3.1.1", 746 | "bindings": "^1.4.0", 747 | "estree-walker": "2.0.2", 748 | "glob": "^7.1.3", 749 | "graceful-fs": "^4.2.9", 750 | "node-gyp-build": "^4.2.2", 751 | "picomatch": "^4.0.2", 752 | "resolve-from": "^5.0.0" 753 | }, 754 | "bin": { 755 | "nft": "out/cli.js" 756 | }, 757 | "engines": { 758 | "node": ">=16" 759 | } 760 | }, 761 | "node_modules/abbrev": { 762 | "version": "3.0.0", 763 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz", 764 | "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==", 765 | "dev": true, 766 | "license": "ISC", 767 | "engines": { 768 | "node": "^18.17.0 || >=20.5.0" 769 | } 770 | }, 771 | "node_modules/acorn": { 772 | "version": "8.14.0", 773 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 774 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 775 | "dev": true, 776 | "license": "MIT", 777 | "bin": { 778 | "acorn": "bin/acorn" 779 | }, 780 | "engines": { 781 | "node": ">=0.4.0" 782 | } 783 | }, 784 | "node_modules/acorn-import-attributes": { 785 | "version": "1.9.5", 786 | "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", 787 | "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", 788 | "dev": true, 789 | "license": "MIT", 790 | "peerDependencies": { 791 | "acorn": "^8" 792 | } 793 | }, 794 | "node_modules/acorn-walk": { 795 | "version": "8.3.4", 796 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", 797 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", 798 | "dev": true, 799 | "license": "MIT", 800 | "dependencies": { 801 | "acorn": "^8.11.0" 802 | }, 803 | "engines": { 804 | "node": ">=0.4.0" 805 | } 806 | }, 807 | "node_modules/agent-base": { 808 | "version": "7.1.3", 809 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", 810 | "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", 811 | "dev": true, 812 | "license": "MIT", 813 | "engines": { 814 | "node": ">= 14" 815 | } 816 | }, 817 | "node_modules/ansi-regex": { 818 | "version": "6.1.0", 819 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 820 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 821 | "dev": true, 822 | "license": "MIT", 823 | "engines": { 824 | "node": ">=12" 825 | }, 826 | "funding": { 827 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 828 | } 829 | }, 830 | "node_modules/ansi-styles": { 831 | "version": "6.2.1", 832 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 833 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 834 | "dev": true, 835 | "license": "MIT", 836 | "engines": { 837 | "node": ">=12" 838 | }, 839 | "funding": { 840 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 841 | } 842 | }, 843 | "node_modules/argparse": { 844 | "version": "1.0.10", 845 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 846 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 847 | "dev": true, 848 | "license": "MIT", 849 | "dependencies": { 850 | "sprintf-js": "~1.0.2" 851 | } 852 | }, 853 | "node_modules/array-find-index": { 854 | "version": "1.0.2", 855 | "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", 856 | "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", 857 | "dev": true, 858 | "license": "MIT", 859 | "engines": { 860 | "node": ">=0.10.0" 861 | } 862 | }, 863 | "node_modules/arrgv": { 864 | "version": "1.0.2", 865 | "resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", 866 | "integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", 867 | "dev": true, 868 | "license": "MIT", 869 | "engines": { 870 | "node": ">=8.0.0" 871 | } 872 | }, 873 | "node_modules/arrify": { 874 | "version": "3.0.0", 875 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz", 876 | "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==", 877 | "dev": true, 878 | "license": "MIT", 879 | "engines": { 880 | "node": ">=12" 881 | }, 882 | "funding": { 883 | "url": "https://github.com/sponsors/sindresorhus" 884 | } 885 | }, 886 | "node_modules/async-sema": { 887 | "version": "3.1.1", 888 | "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", 889 | "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", 890 | "dev": true, 891 | "license": "MIT" 892 | }, 893 | "node_modules/ava": { 894 | "version": "6.2.0", 895 | "resolved": "https://registry.npmjs.org/ava/-/ava-6.2.0.tgz", 896 | "integrity": "sha512-+GZk5PbyepjiO/68hzCZCUepQOQauKfNnI7sA4JukBTg97jD7E+tDKEA7OhGOGr6EorNNMM9+jqvgHVOTOzG4w==", 897 | "dev": true, 898 | "license": "MIT", 899 | "dependencies": { 900 | "@vercel/nft": "^0.27.5", 901 | "acorn": "^8.13.0", 902 | "acorn-walk": "^8.3.4", 903 | "ansi-styles": "^6.2.1", 904 | "arrgv": "^1.0.2", 905 | "arrify": "^3.0.0", 906 | "callsites": "^4.2.0", 907 | "cbor": "^9.0.2", 908 | "chalk": "^5.3.0", 909 | "chunkd": "^2.0.1", 910 | "ci-info": "^4.0.0", 911 | "ci-parallel-vars": "^1.0.1", 912 | "cli-truncate": "^4.0.0", 913 | "code-excerpt": "^4.0.0", 914 | "common-path-prefix": "^3.0.0", 915 | "concordance": "^5.0.4", 916 | "currently-unhandled": "^0.4.1", 917 | "debug": "^4.3.7", 918 | "emittery": "^1.0.3", 919 | "figures": "^6.1.0", 920 | "globby": "^14.0.2", 921 | "ignore-by-default": "^2.1.0", 922 | "indent-string": "^5.0.0", 923 | "is-plain-object": "^5.0.0", 924 | "is-promise": "^4.0.0", 925 | "matcher": "^5.0.0", 926 | "memoize": "^10.0.0", 927 | "ms": "^2.1.3", 928 | "p-map": "^7.0.2", 929 | "package-config": "^5.0.0", 930 | "picomatch": "^4.0.2", 931 | "plur": "^5.1.0", 932 | "pretty-ms": "^9.1.0", 933 | "resolve-cwd": "^3.0.0", 934 | "stack-utils": "^2.0.6", 935 | "strip-ansi": "^7.1.0", 936 | "supertap": "^3.0.1", 937 | "temp-dir": "^3.0.0", 938 | "write-file-atomic": "^6.0.0", 939 | "yargs": "^17.7.2" 940 | }, 941 | "bin": { 942 | "ava": "entrypoints/cli.mjs" 943 | }, 944 | "engines": { 945 | "node": "^18.18 || ^20.8 || ^22 || >=23" 946 | }, 947 | "peerDependencies": { 948 | "@ava/typescript": "*" 949 | }, 950 | "peerDependenciesMeta": { 951 | "@ava/typescript": { 952 | "optional": true 953 | } 954 | } 955 | }, 956 | "node_modules/balanced-match": { 957 | "version": "1.0.2", 958 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 959 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 960 | "dev": true, 961 | "license": "MIT" 962 | }, 963 | "node_modules/base64-js": { 964 | "version": "1.5.1", 965 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 966 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 967 | "funding": [ 968 | { 969 | "type": "github", 970 | "url": "https://github.com/sponsors/feross" 971 | }, 972 | { 973 | "type": "patreon", 974 | "url": "https://www.patreon.com/feross" 975 | }, 976 | { 977 | "type": "consulting", 978 | "url": "https://feross.org/support" 979 | } 980 | ], 981 | "license": "MIT" 982 | }, 983 | "node_modules/bindings": { 984 | "version": "1.5.0", 985 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 986 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 987 | "dev": true, 988 | "license": "MIT", 989 | "dependencies": { 990 | "file-uri-to-path": "1.0.0" 991 | } 992 | }, 993 | "node_modules/blueimp-md5": { 994 | "version": "2.19.0", 995 | "resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz", 996 | "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==", 997 | "dev": true, 998 | "license": "MIT" 999 | }, 1000 | "node_modules/brace-expansion": { 1001 | "version": "1.1.11", 1002 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1003 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1004 | "dev": true, 1005 | "license": "MIT", 1006 | "dependencies": { 1007 | "balanced-match": "^1.0.0", 1008 | "concat-map": "0.0.1" 1009 | } 1010 | }, 1011 | "node_modules/braces": { 1012 | "version": "3.0.3", 1013 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1014 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1015 | "dev": true, 1016 | "license": "MIT", 1017 | "dependencies": { 1018 | "fill-range": "^7.1.1" 1019 | }, 1020 | "engines": { 1021 | "node": ">=8" 1022 | } 1023 | }, 1024 | "node_modules/brotli-size": { 1025 | "version": "4.0.0", 1026 | "resolved": "https://registry.npmjs.org/brotli-size/-/brotli-size-4.0.0.tgz", 1027 | "integrity": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==", 1028 | "license": "MIT", 1029 | "dependencies": { 1030 | "duplexer": "0.1.1" 1031 | }, 1032 | "engines": { 1033 | "node": ">= 10.16.0" 1034 | } 1035 | }, 1036 | "node_modules/buffer": { 1037 | "version": "6.0.3", 1038 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 1039 | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 1040 | "funding": [ 1041 | { 1042 | "type": "github", 1043 | "url": "https://github.com/sponsors/feross" 1044 | }, 1045 | { 1046 | "type": "patreon", 1047 | "url": "https://www.patreon.com/feross" 1048 | }, 1049 | { 1050 | "type": "consulting", 1051 | "url": "https://feross.org/support" 1052 | } 1053 | ], 1054 | "license": "MIT", 1055 | "dependencies": { 1056 | "base64-js": "^1.3.1", 1057 | "ieee754": "^1.2.1" 1058 | } 1059 | }, 1060 | "node_modules/cacheable": { 1061 | "version": "1.8.8", 1062 | "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.8.tgz", 1063 | "integrity": "sha512-OE1/jlarWxROUIpd0qGBSKFLkNsotY8pt4GeiVErUYh/NUeTNrT+SBksUgllQv4m6a0W/VZsLuiHb88maavqEw==", 1064 | "license": "MIT", 1065 | "dependencies": { 1066 | "hookified": "^1.7.0", 1067 | "keyv": "^5.2.3" 1068 | } 1069 | }, 1070 | "node_modules/callsites": { 1071 | "version": "4.2.0", 1072 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-4.2.0.tgz", 1073 | "integrity": "sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==", 1074 | "dev": true, 1075 | "license": "MIT", 1076 | "engines": { 1077 | "node": ">=12.20" 1078 | }, 1079 | "funding": { 1080 | "url": "https://github.com/sponsors/sindresorhus" 1081 | } 1082 | }, 1083 | "node_modules/cbor": { 1084 | "version": "9.0.2", 1085 | "resolved": "https://registry.npmjs.org/cbor/-/cbor-9.0.2.tgz", 1086 | "integrity": "sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==", 1087 | "dev": true, 1088 | "license": "MIT", 1089 | "dependencies": { 1090 | "nofilter": "^3.1.0" 1091 | }, 1092 | "engines": { 1093 | "node": ">=16" 1094 | } 1095 | }, 1096 | "node_modules/chalk": { 1097 | "version": "5.4.1", 1098 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 1099 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 1100 | "dev": true, 1101 | "license": "MIT", 1102 | "engines": { 1103 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 1104 | }, 1105 | "funding": { 1106 | "url": "https://github.com/chalk/chalk?sponsor=1" 1107 | } 1108 | }, 1109 | "node_modules/chownr": { 1110 | "version": "3.0.0", 1111 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 1112 | "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 1113 | "dev": true, 1114 | "license": "BlueOak-1.0.0", 1115 | "engines": { 1116 | "node": ">=18" 1117 | } 1118 | }, 1119 | "node_modules/chunkd": { 1120 | "version": "2.0.1", 1121 | "resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", 1122 | "integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", 1123 | "dev": true, 1124 | "license": "MIT" 1125 | }, 1126 | "node_modules/ci-info": { 1127 | "version": "4.1.0", 1128 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz", 1129 | "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==", 1130 | "dev": true, 1131 | "funding": [ 1132 | { 1133 | "type": "github", 1134 | "url": "https://github.com/sponsors/sibiraj-s" 1135 | } 1136 | ], 1137 | "license": "MIT", 1138 | "engines": { 1139 | "node": ">=8" 1140 | } 1141 | }, 1142 | "node_modules/ci-parallel-vars": { 1143 | "version": "1.0.1", 1144 | "resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.1.tgz", 1145 | "integrity": "sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==", 1146 | "dev": true, 1147 | "license": "MIT" 1148 | }, 1149 | "node_modules/cli-truncate": { 1150 | "version": "4.0.0", 1151 | "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", 1152 | "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", 1153 | "dev": true, 1154 | "license": "MIT", 1155 | "dependencies": { 1156 | "slice-ansi": "^5.0.0", 1157 | "string-width": "^7.0.0" 1158 | }, 1159 | "engines": { 1160 | "node": ">=18" 1161 | }, 1162 | "funding": { 1163 | "url": "https://github.com/sponsors/sindresorhus" 1164 | } 1165 | }, 1166 | "node_modules/cliui": { 1167 | "version": "8.0.1", 1168 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1169 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1170 | "dev": true, 1171 | "license": "ISC", 1172 | "dependencies": { 1173 | "string-width": "^4.2.0", 1174 | "strip-ansi": "^6.0.1", 1175 | "wrap-ansi": "^7.0.0" 1176 | }, 1177 | "engines": { 1178 | "node": ">=12" 1179 | } 1180 | }, 1181 | "node_modules/cliui/node_modules/ansi-regex": { 1182 | "version": "5.0.1", 1183 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1184 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1185 | "dev": true, 1186 | "license": "MIT", 1187 | "engines": { 1188 | "node": ">=8" 1189 | } 1190 | }, 1191 | "node_modules/cliui/node_modules/emoji-regex": { 1192 | "version": "8.0.0", 1193 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1194 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1195 | "dev": true, 1196 | "license": "MIT" 1197 | }, 1198 | "node_modules/cliui/node_modules/is-fullwidth-code-point": { 1199 | "version": "3.0.0", 1200 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1201 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1202 | "dev": true, 1203 | "license": "MIT", 1204 | "engines": { 1205 | "node": ">=8" 1206 | } 1207 | }, 1208 | "node_modules/cliui/node_modules/string-width": { 1209 | "version": "4.2.3", 1210 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1211 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1212 | "dev": true, 1213 | "license": "MIT", 1214 | "dependencies": { 1215 | "emoji-regex": "^8.0.0", 1216 | "is-fullwidth-code-point": "^3.0.0", 1217 | "strip-ansi": "^6.0.1" 1218 | }, 1219 | "engines": { 1220 | "node": ">=8" 1221 | } 1222 | }, 1223 | "node_modules/cliui/node_modules/strip-ansi": { 1224 | "version": "6.0.1", 1225 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1226 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1227 | "dev": true, 1228 | "license": "MIT", 1229 | "dependencies": { 1230 | "ansi-regex": "^5.0.1" 1231 | }, 1232 | "engines": { 1233 | "node": ">=8" 1234 | } 1235 | }, 1236 | "node_modules/code-excerpt": { 1237 | "version": "4.0.0", 1238 | "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-4.0.0.tgz", 1239 | "integrity": "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==", 1240 | "dev": true, 1241 | "license": "MIT", 1242 | "dependencies": { 1243 | "convert-to-spaces": "^2.0.1" 1244 | }, 1245 | "engines": { 1246 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1247 | } 1248 | }, 1249 | "node_modules/color": { 1250 | "version": "4.2.3", 1251 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 1252 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 1253 | "license": "MIT", 1254 | "dependencies": { 1255 | "color-convert": "^2.0.1", 1256 | "color-string": "^1.9.0" 1257 | }, 1258 | "engines": { 1259 | "node": ">=12.5.0" 1260 | } 1261 | }, 1262 | "node_modules/color-convert": { 1263 | "version": "2.0.1", 1264 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1265 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1266 | "license": "MIT", 1267 | "dependencies": { 1268 | "color-name": "~1.1.4" 1269 | }, 1270 | "engines": { 1271 | "node": ">=7.0.0" 1272 | } 1273 | }, 1274 | "node_modules/color-name": { 1275 | "version": "1.1.4", 1276 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1277 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1278 | "license": "MIT" 1279 | }, 1280 | "node_modules/color-string": { 1281 | "version": "1.9.1", 1282 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 1283 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 1284 | "license": "MIT", 1285 | "dependencies": { 1286 | "color-name": "^1.0.0", 1287 | "simple-swizzle": "^0.2.2" 1288 | } 1289 | }, 1290 | "node_modules/colorjs.io": { 1291 | "version": "0.5.2", 1292 | "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", 1293 | "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", 1294 | "license": "MIT" 1295 | }, 1296 | "node_modules/common-path-prefix": { 1297 | "version": "3.0.0", 1298 | "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", 1299 | "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", 1300 | "dev": true, 1301 | "license": "ISC" 1302 | }, 1303 | "node_modules/concat-map": { 1304 | "version": "0.0.1", 1305 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1306 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1307 | "dev": true, 1308 | "license": "MIT" 1309 | }, 1310 | "node_modules/concordance": { 1311 | "version": "5.0.4", 1312 | "resolved": "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz", 1313 | "integrity": "sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==", 1314 | "dev": true, 1315 | "license": "ISC", 1316 | "dependencies": { 1317 | "date-time": "^3.1.0", 1318 | "esutils": "^2.0.3", 1319 | "fast-diff": "^1.2.0", 1320 | "js-string-escape": "^1.0.1", 1321 | "lodash": "^4.17.15", 1322 | "md5-hex": "^3.0.1", 1323 | "semver": "^7.3.2", 1324 | "well-known-symbols": "^2.0.0" 1325 | }, 1326 | "engines": { 1327 | "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" 1328 | } 1329 | }, 1330 | "node_modules/consola": { 1331 | "version": "3.4.0", 1332 | "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", 1333 | "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", 1334 | "dev": true, 1335 | "license": "MIT", 1336 | "engines": { 1337 | "node": "^14.18.0 || >=16.10.0" 1338 | } 1339 | }, 1340 | "node_modules/convert-to-spaces": { 1341 | "version": "2.0.1", 1342 | "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz", 1343 | "integrity": "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==", 1344 | "dev": true, 1345 | "license": "MIT", 1346 | "engines": { 1347 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1348 | } 1349 | }, 1350 | "node_modules/cross-spawn": { 1351 | "version": "7.0.6", 1352 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1353 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1354 | "dev": true, 1355 | "license": "MIT", 1356 | "dependencies": { 1357 | "path-key": "^3.1.0", 1358 | "shebang-command": "^2.0.0", 1359 | "which": "^2.0.1" 1360 | }, 1361 | "engines": { 1362 | "node": ">= 8" 1363 | } 1364 | }, 1365 | "node_modules/currently-unhandled": { 1366 | "version": "0.4.1", 1367 | "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", 1368 | "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", 1369 | "dev": true, 1370 | "license": "MIT", 1371 | "dependencies": { 1372 | "array-find-index": "^1.0.1" 1373 | }, 1374 | "engines": { 1375 | "node": ">=0.10.0" 1376 | } 1377 | }, 1378 | "node_modules/date-time": { 1379 | "version": "3.1.0", 1380 | "resolved": "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz", 1381 | "integrity": "sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==", 1382 | "dev": true, 1383 | "license": "MIT", 1384 | "dependencies": { 1385 | "time-zone": "^1.0.0" 1386 | }, 1387 | "engines": { 1388 | "node": ">=6" 1389 | } 1390 | }, 1391 | "node_modules/debug": { 1392 | "version": "4.4.0", 1393 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1394 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1395 | "license": "MIT", 1396 | "dependencies": { 1397 | "ms": "^2.1.3" 1398 | }, 1399 | "engines": { 1400 | "node": ">=6.0" 1401 | }, 1402 | "peerDependenciesMeta": { 1403 | "supports-color": { 1404 | "optional": true 1405 | } 1406 | } 1407 | }, 1408 | "node_modules/detect-libc": { 1409 | "version": "2.0.3", 1410 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 1411 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 1412 | "license": "Apache-2.0", 1413 | "engines": { 1414 | "node": ">=8" 1415 | } 1416 | }, 1417 | "node_modules/duplexer": { 1418 | "version": "0.1.1", 1419 | "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", 1420 | "integrity": "sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==" 1421 | }, 1422 | "node_modules/eastasianwidth": { 1423 | "version": "0.2.0", 1424 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1425 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1426 | "dev": true, 1427 | "license": "MIT" 1428 | }, 1429 | "node_modules/emittery": { 1430 | "version": "1.1.0", 1431 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.1.0.tgz", 1432 | "integrity": "sha512-rsX7ktqARv/6UQDgMaLfIqUWAEzzbCQiVh7V9rhDXp6c37yoJcks12NVD+XPkgl4AEavmNhVfrhGoqYwIsMYYA==", 1433 | "dev": true, 1434 | "license": "MIT", 1435 | "engines": { 1436 | "node": ">=14.16" 1437 | }, 1438 | "funding": { 1439 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1440 | } 1441 | }, 1442 | "node_modules/emoji-regex": { 1443 | "version": "10.4.0", 1444 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", 1445 | "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", 1446 | "dev": true, 1447 | "license": "MIT" 1448 | }, 1449 | "node_modules/entities": { 1450 | "version": "6.0.0", 1451 | "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", 1452 | "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", 1453 | "license": "BSD-2-Clause", 1454 | "engines": { 1455 | "node": ">=0.12" 1456 | }, 1457 | "funding": { 1458 | "url": "https://github.com/fb55/entities?sponsor=1" 1459 | } 1460 | }, 1461 | "node_modules/escalade": { 1462 | "version": "3.2.0", 1463 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1464 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1465 | "dev": true, 1466 | "license": "MIT", 1467 | "engines": { 1468 | "node": ">=6" 1469 | } 1470 | }, 1471 | "node_modules/escape-string-regexp": { 1472 | "version": "5.0.0", 1473 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 1474 | "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 1475 | "dev": true, 1476 | "license": "MIT", 1477 | "engines": { 1478 | "node": ">=12" 1479 | }, 1480 | "funding": { 1481 | "url": "https://github.com/sponsors/sindresorhus" 1482 | } 1483 | }, 1484 | "node_modules/esprima": { 1485 | "version": "4.0.1", 1486 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1487 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1488 | "dev": true, 1489 | "license": "BSD-2-Clause", 1490 | "bin": { 1491 | "esparse": "bin/esparse.js", 1492 | "esvalidate": "bin/esvalidate.js" 1493 | }, 1494 | "engines": { 1495 | "node": ">=4" 1496 | } 1497 | }, 1498 | "node_modules/estree-walker": { 1499 | "version": "2.0.2", 1500 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1501 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1502 | "dev": true, 1503 | "license": "MIT" 1504 | }, 1505 | "node_modules/esutils": { 1506 | "version": "2.0.3", 1507 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1508 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1509 | "dev": true, 1510 | "license": "BSD-2-Clause", 1511 | "engines": { 1512 | "node": ">=0.10.0" 1513 | } 1514 | }, 1515 | "node_modules/eventemitter3": { 1516 | "version": "5.0.1", 1517 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", 1518 | "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", 1519 | "license": "MIT" 1520 | }, 1521 | "node_modules/extract-colors": { 1522 | "version": "4.2.0", 1523 | "resolved": "https://registry.npmjs.org/extract-colors/-/extract-colors-4.2.0.tgz", 1524 | "integrity": "sha512-+0X1EMDSea/upbny8RMEoBZdB0in6yiWFVDNZy2d/ehXINRCly+PXC8gp7enSJomeB9dhD7Sud4jzROStuHOJA==", 1525 | "license": "MIT" 1526 | }, 1527 | "node_modules/fast-diff": { 1528 | "version": "1.3.0", 1529 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1530 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1531 | "dev": true, 1532 | "license": "Apache-2.0" 1533 | }, 1534 | "node_modules/fast-glob": { 1535 | "version": "3.3.3", 1536 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1537 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1538 | "dev": true, 1539 | "license": "MIT", 1540 | "dependencies": { 1541 | "@nodelib/fs.stat": "^2.0.2", 1542 | "@nodelib/fs.walk": "^1.2.3", 1543 | "glob-parent": "^5.1.2", 1544 | "merge2": "^1.3.0", 1545 | "micromatch": "^4.0.8" 1546 | }, 1547 | "engines": { 1548 | "node": ">=8.6.0" 1549 | } 1550 | }, 1551 | "node_modules/fastq": { 1552 | "version": "1.19.1", 1553 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 1554 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 1555 | "dev": true, 1556 | "license": "ISC", 1557 | "dependencies": { 1558 | "reusify": "^1.0.4" 1559 | } 1560 | }, 1561 | "node_modules/figures": { 1562 | "version": "6.1.0", 1563 | "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", 1564 | "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", 1565 | "dev": true, 1566 | "license": "MIT", 1567 | "dependencies": { 1568 | "is-unicode-supported": "^2.0.0" 1569 | }, 1570 | "engines": { 1571 | "node": ">=18" 1572 | }, 1573 | "funding": { 1574 | "url": "https://github.com/sponsors/sindresorhus" 1575 | } 1576 | }, 1577 | "node_modules/file-uri-to-path": { 1578 | "version": "1.0.0", 1579 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 1580 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 1581 | "dev": true, 1582 | "license": "MIT" 1583 | }, 1584 | "node_modules/fill-range": { 1585 | "version": "7.1.1", 1586 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1587 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1588 | "dev": true, 1589 | "license": "MIT", 1590 | "dependencies": { 1591 | "to-regex-range": "^5.0.1" 1592 | }, 1593 | "engines": { 1594 | "node": ">=8" 1595 | } 1596 | }, 1597 | "node_modules/find-up-simple": { 1598 | "version": "1.0.0", 1599 | "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", 1600 | "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", 1601 | "dev": true, 1602 | "license": "MIT", 1603 | "engines": { 1604 | "node": ">=18" 1605 | }, 1606 | "funding": { 1607 | "url": "https://github.com/sponsors/sindresorhus" 1608 | } 1609 | }, 1610 | "node_modules/flat-cache": { 1611 | "version": "6.1.6", 1612 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.6.tgz", 1613 | "integrity": "sha512-F+CKgSwp0pzLx67u+Zy1aCueVWFAHWbXepvXlZ+bWVTaASbm5SyCnSJ80Fp1ePEmS57wU+Bf6cx6525qtMZ4lQ==", 1614 | "license": "MIT", 1615 | "dependencies": { 1616 | "cacheable": "^1.8.8", 1617 | "flatted": "^3.3.2", 1618 | "hookified": "^1.7.0" 1619 | } 1620 | }, 1621 | "node_modules/flatted": { 1622 | "version": "3.3.3", 1623 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1624 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1625 | "license": "ISC" 1626 | }, 1627 | "node_modules/foreground-child": { 1628 | "version": "3.3.1", 1629 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", 1630 | "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", 1631 | "dev": true, 1632 | "license": "ISC", 1633 | "dependencies": { 1634 | "cross-spawn": "^7.0.6", 1635 | "signal-exit": "^4.0.1" 1636 | }, 1637 | "engines": { 1638 | "node": ">=14" 1639 | }, 1640 | "funding": { 1641 | "url": "https://github.com/sponsors/isaacs" 1642 | } 1643 | }, 1644 | "node_modules/fs.realpath": { 1645 | "version": "1.0.0", 1646 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1647 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1648 | "dev": true, 1649 | "license": "ISC" 1650 | }, 1651 | "node_modules/get-caller-file": { 1652 | "version": "2.0.5", 1653 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1654 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1655 | "dev": true, 1656 | "license": "ISC", 1657 | "engines": { 1658 | "node": "6.* || 8.* || >= 10.*" 1659 | } 1660 | }, 1661 | "node_modules/get-east-asian-width": { 1662 | "version": "1.3.0", 1663 | "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", 1664 | "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", 1665 | "dev": true, 1666 | "license": "MIT", 1667 | "engines": { 1668 | "node": ">=18" 1669 | }, 1670 | "funding": { 1671 | "url": "https://github.com/sponsors/sindresorhus" 1672 | } 1673 | }, 1674 | "node_modules/glob": { 1675 | "version": "7.2.3", 1676 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1677 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1678 | "deprecated": "Glob versions prior to v9 are no longer supported", 1679 | "dev": true, 1680 | "license": "ISC", 1681 | "dependencies": { 1682 | "fs.realpath": "^1.0.0", 1683 | "inflight": "^1.0.4", 1684 | "inherits": "2", 1685 | "minimatch": "^3.1.1", 1686 | "once": "^1.3.0", 1687 | "path-is-absolute": "^1.0.0" 1688 | }, 1689 | "engines": { 1690 | "node": "*" 1691 | }, 1692 | "funding": { 1693 | "url": "https://github.com/sponsors/isaacs" 1694 | } 1695 | }, 1696 | "node_modules/glob-parent": { 1697 | "version": "5.1.2", 1698 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1699 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1700 | "dev": true, 1701 | "license": "ISC", 1702 | "dependencies": { 1703 | "is-glob": "^4.0.1" 1704 | }, 1705 | "engines": { 1706 | "node": ">= 6" 1707 | } 1708 | }, 1709 | "node_modules/globby": { 1710 | "version": "14.1.0", 1711 | "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", 1712 | "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", 1713 | "dev": true, 1714 | "license": "MIT", 1715 | "dependencies": { 1716 | "@sindresorhus/merge-streams": "^2.1.0", 1717 | "fast-glob": "^3.3.3", 1718 | "ignore": "^7.0.3", 1719 | "path-type": "^6.0.0", 1720 | "slash": "^5.1.0", 1721 | "unicorn-magic": "^0.3.0" 1722 | }, 1723 | "engines": { 1724 | "node": ">=18" 1725 | }, 1726 | "funding": { 1727 | "url": "https://github.com/sponsors/sindresorhus" 1728 | } 1729 | }, 1730 | "node_modules/graceful-fs": { 1731 | "version": "4.2.11", 1732 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1733 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1734 | "license": "ISC" 1735 | }, 1736 | "node_modules/hookified": { 1737 | "version": "1.7.1", 1738 | "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.1.tgz", 1739 | "integrity": "sha512-OXcdHsXeOiD7OJ5zvWj8Oy/6RCdLwntAX+wUrfemNcMGn6sux4xbEHi2QXwqePYhjQ/yvxxq2MvCRirdlHscBw==", 1740 | "license": "MIT" 1741 | }, 1742 | "node_modules/https-proxy-agent": { 1743 | "version": "7.0.6", 1744 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 1745 | "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 1746 | "dev": true, 1747 | "license": "MIT", 1748 | "dependencies": { 1749 | "agent-base": "^7.1.2", 1750 | "debug": "4" 1751 | }, 1752 | "engines": { 1753 | "node": ">= 14" 1754 | } 1755 | }, 1756 | "node_modules/ieee754": { 1757 | "version": "1.2.1", 1758 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1759 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1760 | "funding": [ 1761 | { 1762 | "type": "github", 1763 | "url": "https://github.com/sponsors/feross" 1764 | }, 1765 | { 1766 | "type": "patreon", 1767 | "url": "https://www.patreon.com/feross" 1768 | }, 1769 | { 1770 | "type": "consulting", 1771 | "url": "https://feross.org/support" 1772 | } 1773 | ], 1774 | "license": "BSD-3-Clause" 1775 | }, 1776 | "node_modules/ignore": { 1777 | "version": "7.0.3", 1778 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", 1779 | "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", 1780 | "dev": true, 1781 | "license": "MIT", 1782 | "engines": { 1783 | "node": ">= 4" 1784 | } 1785 | }, 1786 | "node_modules/ignore-by-default": { 1787 | "version": "2.1.0", 1788 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-2.1.0.tgz", 1789 | "integrity": "sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==", 1790 | "dev": true, 1791 | "license": "ISC", 1792 | "engines": { 1793 | "node": ">=10 <11 || >=12 <13 || >=14" 1794 | } 1795 | }, 1796 | "node_modules/image-size": { 1797 | "version": "1.2.0", 1798 | "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz", 1799 | "integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==", 1800 | "license": "MIT", 1801 | "dependencies": { 1802 | "queue": "6.0.2" 1803 | }, 1804 | "bin": { 1805 | "image-size": "bin/image-size.js" 1806 | }, 1807 | "engines": { 1808 | "node": ">=16.x" 1809 | } 1810 | }, 1811 | "node_modules/imurmurhash": { 1812 | "version": "0.1.4", 1813 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1814 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1815 | "dev": true, 1816 | "license": "MIT", 1817 | "engines": { 1818 | "node": ">=0.8.19" 1819 | } 1820 | }, 1821 | "node_modules/indent-string": { 1822 | "version": "5.0.0", 1823 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", 1824 | "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", 1825 | "dev": true, 1826 | "license": "MIT", 1827 | "engines": { 1828 | "node": ">=12" 1829 | }, 1830 | "funding": { 1831 | "url": "https://github.com/sponsors/sindresorhus" 1832 | } 1833 | }, 1834 | "node_modules/inflight": { 1835 | "version": "1.0.6", 1836 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1837 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1838 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1839 | "dev": true, 1840 | "license": "ISC", 1841 | "dependencies": { 1842 | "once": "^1.3.0", 1843 | "wrappy": "1" 1844 | } 1845 | }, 1846 | "node_modules/inherits": { 1847 | "version": "2.0.4", 1848 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1849 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1850 | "license": "ISC" 1851 | }, 1852 | "node_modules/iota-array": { 1853 | "version": "1.0.0", 1854 | "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", 1855 | "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==", 1856 | "license": "MIT" 1857 | }, 1858 | "node_modules/irregular-plurals": { 1859 | "version": "3.5.0", 1860 | "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", 1861 | "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", 1862 | "dev": true, 1863 | "license": "MIT", 1864 | "engines": { 1865 | "node": ">=8" 1866 | } 1867 | }, 1868 | "node_modules/is-arrayish": { 1869 | "version": "0.3.2", 1870 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1871 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 1872 | "license": "MIT" 1873 | }, 1874 | "node_modules/is-buffer": { 1875 | "version": "1.1.6", 1876 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 1877 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", 1878 | "license": "MIT" 1879 | }, 1880 | "node_modules/is-extglob": { 1881 | "version": "2.1.1", 1882 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1883 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1884 | "dev": true, 1885 | "license": "MIT", 1886 | "engines": { 1887 | "node": ">=0.10.0" 1888 | } 1889 | }, 1890 | "node_modules/is-fullwidth-code-point": { 1891 | "version": "4.0.0", 1892 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", 1893 | "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", 1894 | "dev": true, 1895 | "license": "MIT", 1896 | "engines": { 1897 | "node": ">=12" 1898 | }, 1899 | "funding": { 1900 | "url": "https://github.com/sponsors/sindresorhus" 1901 | } 1902 | }, 1903 | "node_modules/is-glob": { 1904 | "version": "4.0.3", 1905 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1906 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1907 | "dev": true, 1908 | "license": "MIT", 1909 | "dependencies": { 1910 | "is-extglob": "^2.1.1" 1911 | }, 1912 | "engines": { 1913 | "node": ">=0.10.0" 1914 | } 1915 | }, 1916 | "node_modules/is-number": { 1917 | "version": "7.0.0", 1918 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1919 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1920 | "dev": true, 1921 | "license": "MIT", 1922 | "engines": { 1923 | "node": ">=0.12.0" 1924 | } 1925 | }, 1926 | "node_modules/is-plain-object": { 1927 | "version": "5.0.0", 1928 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", 1929 | "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", 1930 | "dev": true, 1931 | "license": "MIT", 1932 | "engines": { 1933 | "node": ">=0.10.0" 1934 | } 1935 | }, 1936 | "node_modules/is-promise": { 1937 | "version": "4.0.0", 1938 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", 1939 | "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", 1940 | "dev": true, 1941 | "license": "MIT" 1942 | }, 1943 | "node_modules/is-unicode-supported": { 1944 | "version": "2.1.0", 1945 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", 1946 | "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", 1947 | "dev": true, 1948 | "license": "MIT", 1949 | "engines": { 1950 | "node": ">=18" 1951 | }, 1952 | "funding": { 1953 | "url": "https://github.com/sponsors/sindresorhus" 1954 | } 1955 | }, 1956 | "node_modules/isexe": { 1957 | "version": "2.0.0", 1958 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1959 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1960 | "dev": true, 1961 | "license": "ISC" 1962 | }, 1963 | "node_modules/jackspeak": { 1964 | "version": "3.4.3", 1965 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 1966 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 1967 | "dev": true, 1968 | "license": "BlueOak-1.0.0", 1969 | "dependencies": { 1970 | "@isaacs/cliui": "^8.0.2" 1971 | }, 1972 | "funding": { 1973 | "url": "https://github.com/sponsors/isaacs" 1974 | }, 1975 | "optionalDependencies": { 1976 | "@pkgjs/parseargs": "^0.11.0" 1977 | } 1978 | }, 1979 | "node_modules/js-string-escape": { 1980 | "version": "1.0.1", 1981 | "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", 1982 | "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==", 1983 | "dev": true, 1984 | "license": "MIT", 1985 | "engines": { 1986 | "node": ">= 0.8" 1987 | } 1988 | }, 1989 | "node_modules/js-yaml": { 1990 | "version": "3.14.1", 1991 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 1992 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 1993 | "dev": true, 1994 | "license": "MIT", 1995 | "dependencies": { 1996 | "argparse": "^1.0.7", 1997 | "esprima": "^4.0.0" 1998 | }, 1999 | "bin": { 2000 | "js-yaml": "bin/js-yaml.js" 2001 | } 2002 | }, 2003 | "node_modules/keyv": { 2004 | "version": "5.2.3", 2005 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz", 2006 | "integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==", 2007 | "license": "MIT", 2008 | "dependencies": { 2009 | "@keyv/serialize": "^1.0.2" 2010 | } 2011 | }, 2012 | "node_modules/load-json-file": { 2013 | "version": "7.0.1", 2014 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", 2015 | "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", 2016 | "dev": true, 2017 | "license": "MIT", 2018 | "engines": { 2019 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2020 | }, 2021 | "funding": { 2022 | "url": "https://github.com/sponsors/sindresorhus" 2023 | } 2024 | }, 2025 | "node_modules/lodash": { 2026 | "version": "4.17.21", 2027 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2028 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2029 | "dev": true, 2030 | "license": "MIT" 2031 | }, 2032 | "node_modules/lru-cache": { 2033 | "version": "10.4.3", 2034 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2035 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 2036 | "dev": true, 2037 | "license": "ISC" 2038 | }, 2039 | "node_modules/matcher": { 2040 | "version": "5.0.0", 2041 | "resolved": "https://registry.npmjs.org/matcher/-/matcher-5.0.0.tgz", 2042 | "integrity": "sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==", 2043 | "dev": true, 2044 | "license": "MIT", 2045 | "dependencies": { 2046 | "escape-string-regexp": "^5.0.0" 2047 | }, 2048 | "engines": { 2049 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2050 | }, 2051 | "funding": { 2052 | "url": "https://github.com/sponsors/sindresorhus" 2053 | } 2054 | }, 2055 | "node_modules/md5-hex": { 2056 | "version": "3.0.1", 2057 | "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", 2058 | "integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", 2059 | "dev": true, 2060 | "license": "MIT", 2061 | "dependencies": { 2062 | "blueimp-md5": "^2.10.0" 2063 | }, 2064 | "engines": { 2065 | "node": ">=8" 2066 | } 2067 | }, 2068 | "node_modules/memoize": { 2069 | "version": "10.1.0", 2070 | "resolved": "https://registry.npmjs.org/memoize/-/memoize-10.1.0.tgz", 2071 | "integrity": "sha512-MMbFhJzh4Jlg/poq1si90XRlTZRDHVqdlz2mPyGJ6kqMpyHUyVpDd5gpFAvVehW64+RA1eKE9Yt8aSLY7w2Kgg==", 2072 | "license": "MIT", 2073 | "dependencies": { 2074 | "mimic-function": "^5.0.1" 2075 | }, 2076 | "engines": { 2077 | "node": ">=18" 2078 | }, 2079 | "funding": { 2080 | "url": "https://github.com/sindresorhus/memoize?sponsor=1" 2081 | } 2082 | }, 2083 | "node_modules/merge2": { 2084 | "version": "1.4.1", 2085 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2086 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2087 | "dev": true, 2088 | "license": "MIT", 2089 | "engines": { 2090 | "node": ">= 8" 2091 | } 2092 | }, 2093 | "node_modules/micromatch": { 2094 | "version": "4.0.8", 2095 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2096 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2097 | "dev": true, 2098 | "license": "MIT", 2099 | "dependencies": { 2100 | "braces": "^3.0.3", 2101 | "picomatch": "^2.3.1" 2102 | }, 2103 | "engines": { 2104 | "node": ">=8.6" 2105 | } 2106 | }, 2107 | "node_modules/micromatch/node_modules/picomatch": { 2108 | "version": "2.3.1", 2109 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2110 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2111 | "dev": true, 2112 | "license": "MIT", 2113 | "engines": { 2114 | "node": ">=8.6" 2115 | }, 2116 | "funding": { 2117 | "url": "https://github.com/sponsors/jonschlinkert" 2118 | } 2119 | }, 2120 | "node_modules/mimic-function": { 2121 | "version": "5.0.1", 2122 | "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", 2123 | "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", 2124 | "license": "MIT", 2125 | "engines": { 2126 | "node": ">=18" 2127 | }, 2128 | "funding": { 2129 | "url": "https://github.com/sponsors/sindresorhus" 2130 | } 2131 | }, 2132 | "node_modules/minimatch": { 2133 | "version": "3.1.2", 2134 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2135 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2136 | "dev": true, 2137 | "license": "ISC", 2138 | "dependencies": { 2139 | "brace-expansion": "^1.1.7" 2140 | }, 2141 | "engines": { 2142 | "node": "*" 2143 | } 2144 | }, 2145 | "node_modules/minipass": { 2146 | "version": "7.1.2", 2147 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2148 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2149 | "dev": true, 2150 | "license": "ISC", 2151 | "engines": { 2152 | "node": ">=16 || 14 >=14.17" 2153 | } 2154 | }, 2155 | "node_modules/minizlib": { 2156 | "version": "3.0.1", 2157 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", 2158 | "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", 2159 | "dev": true, 2160 | "license": "MIT", 2161 | "dependencies": { 2162 | "minipass": "^7.0.4", 2163 | "rimraf": "^5.0.5" 2164 | }, 2165 | "engines": { 2166 | "node": ">= 18" 2167 | } 2168 | }, 2169 | "node_modules/mkdirp": { 2170 | "version": "3.0.1", 2171 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", 2172 | "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", 2173 | "dev": true, 2174 | "license": "MIT", 2175 | "bin": { 2176 | "mkdirp": "dist/cjs/src/bin.js" 2177 | }, 2178 | "engines": { 2179 | "node": ">=10" 2180 | }, 2181 | "funding": { 2182 | "url": "https://github.com/sponsors/isaacs" 2183 | } 2184 | }, 2185 | "node_modules/ms": { 2186 | "version": "2.1.3", 2187 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2188 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2189 | "license": "MIT" 2190 | }, 2191 | "node_modules/ndarray": { 2192 | "version": "1.0.19", 2193 | "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", 2194 | "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", 2195 | "license": "MIT", 2196 | "dependencies": { 2197 | "iota-array": "^1.0.0", 2198 | "is-buffer": "^1.0.2" 2199 | } 2200 | }, 2201 | "node_modules/node-fetch": { 2202 | "version": "2.7.0", 2203 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2204 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2205 | "dev": true, 2206 | "license": "MIT", 2207 | "dependencies": { 2208 | "whatwg-url": "^5.0.0" 2209 | }, 2210 | "engines": { 2211 | "node": "4.x || >=6.0.0" 2212 | }, 2213 | "peerDependencies": { 2214 | "encoding": "^0.1.0" 2215 | }, 2216 | "peerDependenciesMeta": { 2217 | "encoding": { 2218 | "optional": true 2219 | } 2220 | } 2221 | }, 2222 | "node_modules/node-gyp-build": { 2223 | "version": "4.8.4", 2224 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", 2225 | "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", 2226 | "dev": true, 2227 | "license": "MIT", 2228 | "bin": { 2229 | "node-gyp-build": "bin.js", 2230 | "node-gyp-build-optional": "optional.js", 2231 | "node-gyp-build-test": "build-test.js" 2232 | } 2233 | }, 2234 | "node_modules/nofilter": { 2235 | "version": "3.1.0", 2236 | "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", 2237 | "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", 2238 | "dev": true, 2239 | "license": "MIT", 2240 | "engines": { 2241 | "node": ">=12.19" 2242 | } 2243 | }, 2244 | "node_modules/nopt": { 2245 | "version": "8.1.0", 2246 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", 2247 | "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", 2248 | "dev": true, 2249 | "license": "ISC", 2250 | "dependencies": { 2251 | "abbrev": "^3.0.0" 2252 | }, 2253 | "bin": { 2254 | "nopt": "bin/nopt.js" 2255 | }, 2256 | "engines": { 2257 | "node": "^18.17.0 || >=20.5.0" 2258 | } 2259 | }, 2260 | "node_modules/once": { 2261 | "version": "1.4.0", 2262 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2263 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2264 | "dev": true, 2265 | "license": "ISC", 2266 | "dependencies": { 2267 | "wrappy": "1" 2268 | } 2269 | }, 2270 | "node_modules/p-finally": { 2271 | "version": "1.0.0", 2272 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 2273 | "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", 2274 | "license": "MIT", 2275 | "engines": { 2276 | "node": ">=4" 2277 | } 2278 | }, 2279 | "node_modules/p-map": { 2280 | "version": "7.0.3", 2281 | "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", 2282 | "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", 2283 | "dev": true, 2284 | "license": "MIT", 2285 | "engines": { 2286 | "node": ">=18" 2287 | }, 2288 | "funding": { 2289 | "url": "https://github.com/sponsors/sindresorhus" 2290 | } 2291 | }, 2292 | "node_modules/p-queue": { 2293 | "version": "8.1.0", 2294 | "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz", 2295 | "integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==", 2296 | "license": "MIT", 2297 | "dependencies": { 2298 | "eventemitter3": "^5.0.1", 2299 | "p-timeout": "^6.1.2" 2300 | }, 2301 | "engines": { 2302 | "node": ">=18" 2303 | }, 2304 | "funding": { 2305 | "url": "https://github.com/sponsors/sindresorhus" 2306 | } 2307 | }, 2308 | "node_modules/p-timeout": { 2309 | "version": "6.1.4", 2310 | "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", 2311 | "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", 2312 | "license": "MIT", 2313 | "engines": { 2314 | "node": ">=14.16" 2315 | }, 2316 | "funding": { 2317 | "url": "https://github.com/sponsors/sindresorhus" 2318 | } 2319 | }, 2320 | "node_modules/package-config": { 2321 | "version": "5.0.0", 2322 | "resolved": "https://registry.npmjs.org/package-config/-/package-config-5.0.0.tgz", 2323 | "integrity": "sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==", 2324 | "dev": true, 2325 | "license": "MIT", 2326 | "dependencies": { 2327 | "find-up-simple": "^1.0.0", 2328 | "load-json-file": "^7.0.1" 2329 | }, 2330 | "engines": { 2331 | "node": ">=18" 2332 | }, 2333 | "funding": { 2334 | "url": "https://github.com/sponsors/sindresorhus" 2335 | } 2336 | }, 2337 | "node_modules/package-json-from-dist": { 2338 | "version": "1.0.1", 2339 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2340 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 2341 | "dev": true, 2342 | "license": "BlueOak-1.0.0" 2343 | }, 2344 | "node_modules/parse-ms": { 2345 | "version": "4.0.0", 2346 | "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", 2347 | "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", 2348 | "dev": true, 2349 | "license": "MIT", 2350 | "engines": { 2351 | "node": ">=18" 2352 | }, 2353 | "funding": { 2354 | "url": "https://github.com/sponsors/sindresorhus" 2355 | } 2356 | }, 2357 | "node_modules/path-is-absolute": { 2358 | "version": "1.0.1", 2359 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2360 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2361 | "dev": true, 2362 | "license": "MIT", 2363 | "engines": { 2364 | "node": ">=0.10.0" 2365 | } 2366 | }, 2367 | "node_modules/path-key": { 2368 | "version": "3.1.1", 2369 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2370 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2371 | "dev": true, 2372 | "license": "MIT", 2373 | "engines": { 2374 | "node": ">=8" 2375 | } 2376 | }, 2377 | "node_modules/path-scurry": { 2378 | "version": "1.11.1", 2379 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2380 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2381 | "dev": true, 2382 | "license": "BlueOak-1.0.0", 2383 | "dependencies": { 2384 | "lru-cache": "^10.2.0", 2385 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2386 | }, 2387 | "engines": { 2388 | "node": ">=16 || 14 >=14.18" 2389 | }, 2390 | "funding": { 2391 | "url": "https://github.com/sponsors/isaacs" 2392 | } 2393 | }, 2394 | "node_modules/path-type": { 2395 | "version": "6.0.0", 2396 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", 2397 | "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", 2398 | "dev": true, 2399 | "license": "MIT", 2400 | "engines": { 2401 | "node": ">=18" 2402 | }, 2403 | "funding": { 2404 | "url": "https://github.com/sponsors/sindresorhus" 2405 | } 2406 | }, 2407 | "node_modules/picomatch": { 2408 | "version": "4.0.2", 2409 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 2410 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 2411 | "dev": true, 2412 | "license": "MIT", 2413 | "engines": { 2414 | "node": ">=12" 2415 | }, 2416 | "funding": { 2417 | "url": "https://github.com/sponsors/jonschlinkert" 2418 | } 2419 | }, 2420 | "node_modules/plur": { 2421 | "version": "5.1.0", 2422 | "resolved": "https://registry.npmjs.org/plur/-/plur-5.1.0.tgz", 2423 | "integrity": "sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==", 2424 | "dev": true, 2425 | "license": "MIT", 2426 | "dependencies": { 2427 | "irregular-plurals": "^3.3.0" 2428 | }, 2429 | "engines": { 2430 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2431 | }, 2432 | "funding": { 2433 | "url": "https://github.com/sponsors/sindresorhus" 2434 | } 2435 | }, 2436 | "node_modules/pngjs": { 2437 | "version": "7.0.0", 2438 | "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-7.0.0.tgz", 2439 | "integrity": "sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==", 2440 | "license": "MIT", 2441 | "engines": { 2442 | "node": ">=14.19.0" 2443 | } 2444 | }, 2445 | "node_modules/pretty-ms": { 2446 | "version": "9.2.0", 2447 | "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", 2448 | "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", 2449 | "dev": true, 2450 | "license": "MIT", 2451 | "dependencies": { 2452 | "parse-ms": "^4.0.0" 2453 | }, 2454 | "engines": { 2455 | "node": ">=18" 2456 | }, 2457 | "funding": { 2458 | "url": "https://github.com/sponsors/sindresorhus" 2459 | } 2460 | }, 2461 | "node_modules/queue": { 2462 | "version": "6.0.2", 2463 | "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", 2464 | "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", 2465 | "license": "MIT", 2466 | "dependencies": { 2467 | "inherits": "~2.0.3" 2468 | } 2469 | }, 2470 | "node_modules/queue-microtask": { 2471 | "version": "1.2.3", 2472 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2473 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2474 | "dev": true, 2475 | "funding": [ 2476 | { 2477 | "type": "github", 2478 | "url": "https://github.com/sponsors/feross" 2479 | }, 2480 | { 2481 | "type": "patreon", 2482 | "url": "https://www.patreon.com/feross" 2483 | }, 2484 | { 2485 | "type": "consulting", 2486 | "url": "https://feross.org/support" 2487 | } 2488 | ], 2489 | "license": "MIT" 2490 | }, 2491 | "node_modules/require-directory": { 2492 | "version": "2.1.1", 2493 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2494 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2495 | "dev": true, 2496 | "license": "MIT", 2497 | "engines": { 2498 | "node": ">=0.10.0" 2499 | } 2500 | }, 2501 | "node_modules/resolve-cwd": { 2502 | "version": "3.0.0", 2503 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 2504 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 2505 | "dev": true, 2506 | "license": "MIT", 2507 | "dependencies": { 2508 | "resolve-from": "^5.0.0" 2509 | }, 2510 | "engines": { 2511 | "node": ">=8" 2512 | } 2513 | }, 2514 | "node_modules/resolve-from": { 2515 | "version": "5.0.0", 2516 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 2517 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 2518 | "dev": true, 2519 | "license": "MIT", 2520 | "engines": { 2521 | "node": ">=8" 2522 | } 2523 | }, 2524 | "node_modules/reusify": { 2525 | "version": "1.1.0", 2526 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 2527 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 2528 | "dev": true, 2529 | "license": "MIT", 2530 | "engines": { 2531 | "iojs": ">=1.0.0", 2532 | "node": ">=0.10.0" 2533 | } 2534 | }, 2535 | "node_modules/rimraf": { 2536 | "version": "5.0.10", 2537 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", 2538 | "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", 2539 | "dev": true, 2540 | "license": "ISC", 2541 | "dependencies": { 2542 | "glob": "^10.3.7" 2543 | }, 2544 | "bin": { 2545 | "rimraf": "dist/esm/bin.mjs" 2546 | }, 2547 | "funding": { 2548 | "url": "https://github.com/sponsors/isaacs" 2549 | } 2550 | }, 2551 | "node_modules/rimraf/node_modules/brace-expansion": { 2552 | "version": "2.0.1", 2553 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2554 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2555 | "dev": true, 2556 | "license": "MIT", 2557 | "dependencies": { 2558 | "balanced-match": "^1.0.0" 2559 | } 2560 | }, 2561 | "node_modules/rimraf/node_modules/glob": { 2562 | "version": "10.4.5", 2563 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 2564 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 2565 | "dev": true, 2566 | "license": "ISC", 2567 | "dependencies": { 2568 | "foreground-child": "^3.1.0", 2569 | "jackspeak": "^3.1.2", 2570 | "minimatch": "^9.0.4", 2571 | "minipass": "^7.1.2", 2572 | "package-json-from-dist": "^1.0.0", 2573 | "path-scurry": "^1.11.1" 2574 | }, 2575 | "bin": { 2576 | "glob": "dist/esm/bin.mjs" 2577 | }, 2578 | "funding": { 2579 | "url": "https://github.com/sponsors/isaacs" 2580 | } 2581 | }, 2582 | "node_modules/rimraf/node_modules/minimatch": { 2583 | "version": "9.0.5", 2584 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2585 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2586 | "dev": true, 2587 | "license": "ISC", 2588 | "dependencies": { 2589 | "brace-expansion": "^2.0.1" 2590 | }, 2591 | "engines": { 2592 | "node": ">=16 || 14 >=14.17" 2593 | }, 2594 | "funding": { 2595 | "url": "https://github.com/sponsors/isaacs" 2596 | } 2597 | }, 2598 | "node_modules/run-parallel": { 2599 | "version": "1.2.0", 2600 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2601 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2602 | "dev": true, 2603 | "funding": [ 2604 | { 2605 | "type": "github", 2606 | "url": "https://github.com/sponsors/feross" 2607 | }, 2608 | { 2609 | "type": "patreon", 2610 | "url": "https://www.patreon.com/feross" 2611 | }, 2612 | { 2613 | "type": "consulting", 2614 | "url": "https://feross.org/support" 2615 | } 2616 | ], 2617 | "license": "MIT", 2618 | "dependencies": { 2619 | "queue-microtask": "^1.2.2" 2620 | } 2621 | }, 2622 | "node_modules/semver": { 2623 | "version": "7.7.1", 2624 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2625 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2626 | "license": "ISC", 2627 | "bin": { 2628 | "semver": "bin/semver.js" 2629 | }, 2630 | "engines": { 2631 | "node": ">=10" 2632 | } 2633 | }, 2634 | "node_modules/serialize-error": { 2635 | "version": "7.0.1", 2636 | "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", 2637 | "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", 2638 | "dev": true, 2639 | "license": "MIT", 2640 | "dependencies": { 2641 | "type-fest": "^0.13.1" 2642 | }, 2643 | "engines": { 2644 | "node": ">=10" 2645 | }, 2646 | "funding": { 2647 | "url": "https://github.com/sponsors/sindresorhus" 2648 | } 2649 | }, 2650 | "node_modules/sharp": { 2651 | "version": "0.33.5", 2652 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", 2653 | "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", 2654 | "hasInstallScript": true, 2655 | "license": "Apache-2.0", 2656 | "dependencies": { 2657 | "color": "^4.2.3", 2658 | "detect-libc": "^2.0.3", 2659 | "semver": "^7.6.3" 2660 | }, 2661 | "engines": { 2662 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 2663 | }, 2664 | "funding": { 2665 | "url": "https://opencollective.com/libvips" 2666 | }, 2667 | "optionalDependencies": { 2668 | "@img/sharp-darwin-arm64": "0.33.5", 2669 | "@img/sharp-darwin-x64": "0.33.5", 2670 | "@img/sharp-libvips-darwin-arm64": "1.0.4", 2671 | "@img/sharp-libvips-darwin-x64": "1.0.4", 2672 | "@img/sharp-libvips-linux-arm": "1.0.5", 2673 | "@img/sharp-libvips-linux-arm64": "1.0.4", 2674 | "@img/sharp-libvips-linux-s390x": "1.0.4", 2675 | "@img/sharp-libvips-linux-x64": "1.0.4", 2676 | "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", 2677 | "@img/sharp-libvips-linuxmusl-x64": "1.0.4", 2678 | "@img/sharp-linux-arm": "0.33.5", 2679 | "@img/sharp-linux-arm64": "0.33.5", 2680 | "@img/sharp-linux-s390x": "0.33.5", 2681 | "@img/sharp-linux-x64": "0.33.5", 2682 | "@img/sharp-linuxmusl-arm64": "0.33.5", 2683 | "@img/sharp-linuxmusl-x64": "0.33.5", 2684 | "@img/sharp-wasm32": "0.33.5", 2685 | "@img/sharp-win32-ia32": "0.33.5", 2686 | "@img/sharp-win32-x64": "0.33.5" 2687 | } 2688 | }, 2689 | "node_modules/shebang-command": { 2690 | "version": "2.0.0", 2691 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2692 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2693 | "dev": true, 2694 | "license": "MIT", 2695 | "dependencies": { 2696 | "shebang-regex": "^3.0.0" 2697 | }, 2698 | "engines": { 2699 | "node": ">=8" 2700 | } 2701 | }, 2702 | "node_modules/shebang-regex": { 2703 | "version": "3.0.0", 2704 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2705 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2706 | "dev": true, 2707 | "license": "MIT", 2708 | "engines": { 2709 | "node": ">=8" 2710 | } 2711 | }, 2712 | "node_modules/signal-exit": { 2713 | "version": "4.1.0", 2714 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2715 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2716 | "dev": true, 2717 | "license": "ISC", 2718 | "engines": { 2719 | "node": ">=14" 2720 | }, 2721 | "funding": { 2722 | "url": "https://github.com/sponsors/isaacs" 2723 | } 2724 | }, 2725 | "node_modules/simple-swizzle": { 2726 | "version": "0.2.2", 2727 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2728 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 2729 | "license": "MIT", 2730 | "dependencies": { 2731 | "is-arrayish": "^0.3.1" 2732 | } 2733 | }, 2734 | "node_modules/slash": { 2735 | "version": "5.1.0", 2736 | "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 2737 | "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 2738 | "dev": true, 2739 | "license": "MIT", 2740 | "engines": { 2741 | "node": ">=14.16" 2742 | }, 2743 | "funding": { 2744 | "url": "https://github.com/sponsors/sindresorhus" 2745 | } 2746 | }, 2747 | "node_modules/slice-ansi": { 2748 | "version": "5.0.0", 2749 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", 2750 | "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", 2751 | "dev": true, 2752 | "license": "MIT", 2753 | "dependencies": { 2754 | "ansi-styles": "^6.0.0", 2755 | "is-fullwidth-code-point": "^4.0.0" 2756 | }, 2757 | "engines": { 2758 | "node": ">=12" 2759 | }, 2760 | "funding": { 2761 | "url": "https://github.com/chalk/slice-ansi?sponsor=1" 2762 | } 2763 | }, 2764 | "node_modules/sprintf-js": { 2765 | "version": "1.0.3", 2766 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 2767 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 2768 | "dev": true, 2769 | "license": "BSD-3-Clause" 2770 | }, 2771 | "node_modules/stack-utils": { 2772 | "version": "2.0.6", 2773 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 2774 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 2775 | "dev": true, 2776 | "license": "MIT", 2777 | "dependencies": { 2778 | "escape-string-regexp": "^2.0.0" 2779 | }, 2780 | "engines": { 2781 | "node": ">=10" 2782 | } 2783 | }, 2784 | "node_modules/stack-utils/node_modules/escape-string-regexp": { 2785 | "version": "2.0.0", 2786 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 2787 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 2788 | "dev": true, 2789 | "license": "MIT", 2790 | "engines": { 2791 | "node": ">=8" 2792 | } 2793 | }, 2794 | "node_modules/string-width": { 2795 | "version": "7.2.0", 2796 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", 2797 | "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", 2798 | "dev": true, 2799 | "license": "MIT", 2800 | "dependencies": { 2801 | "emoji-regex": "^10.3.0", 2802 | "get-east-asian-width": "^1.0.0", 2803 | "strip-ansi": "^7.1.0" 2804 | }, 2805 | "engines": { 2806 | "node": ">=18" 2807 | }, 2808 | "funding": { 2809 | "url": "https://github.com/sponsors/sindresorhus" 2810 | } 2811 | }, 2812 | "node_modules/string-width-cjs": { 2813 | "name": "string-width", 2814 | "version": "4.2.3", 2815 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2816 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2817 | "dev": true, 2818 | "license": "MIT", 2819 | "dependencies": { 2820 | "emoji-regex": "^8.0.0", 2821 | "is-fullwidth-code-point": "^3.0.0", 2822 | "strip-ansi": "^6.0.1" 2823 | }, 2824 | "engines": { 2825 | "node": ">=8" 2826 | } 2827 | }, 2828 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 2829 | "version": "5.0.1", 2830 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2831 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2832 | "dev": true, 2833 | "license": "MIT", 2834 | "engines": { 2835 | "node": ">=8" 2836 | } 2837 | }, 2838 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 2839 | "version": "8.0.0", 2840 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2841 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2842 | "dev": true, 2843 | "license": "MIT" 2844 | }, 2845 | "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { 2846 | "version": "3.0.0", 2847 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2848 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2849 | "dev": true, 2850 | "license": "MIT", 2851 | "engines": { 2852 | "node": ">=8" 2853 | } 2854 | }, 2855 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 2856 | "version": "6.0.1", 2857 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2858 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2859 | "dev": true, 2860 | "license": "MIT", 2861 | "dependencies": { 2862 | "ansi-regex": "^5.0.1" 2863 | }, 2864 | "engines": { 2865 | "node": ">=8" 2866 | } 2867 | }, 2868 | "node_modules/strip-ansi": { 2869 | "version": "7.1.0", 2870 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2871 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2872 | "dev": true, 2873 | "license": "MIT", 2874 | "dependencies": { 2875 | "ansi-regex": "^6.0.1" 2876 | }, 2877 | "engines": { 2878 | "node": ">=12" 2879 | }, 2880 | "funding": { 2881 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2882 | } 2883 | }, 2884 | "node_modules/strip-ansi-cjs": { 2885 | "name": "strip-ansi", 2886 | "version": "6.0.1", 2887 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2888 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2889 | "dev": true, 2890 | "license": "MIT", 2891 | "dependencies": { 2892 | "ansi-regex": "^5.0.1" 2893 | }, 2894 | "engines": { 2895 | "node": ">=8" 2896 | } 2897 | }, 2898 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 2899 | "version": "5.0.1", 2900 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2901 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2902 | "dev": true, 2903 | "license": "MIT", 2904 | "engines": { 2905 | "node": ">=8" 2906 | } 2907 | }, 2908 | "node_modules/supertap": { 2909 | "version": "3.0.1", 2910 | "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", 2911 | "integrity": "sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==", 2912 | "dev": true, 2913 | "license": "MIT", 2914 | "dependencies": { 2915 | "indent-string": "^5.0.0", 2916 | "js-yaml": "^3.14.1", 2917 | "serialize-error": "^7.0.1", 2918 | "strip-ansi": "^7.0.1" 2919 | }, 2920 | "engines": { 2921 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2922 | } 2923 | }, 2924 | "node_modules/tar": { 2925 | "version": "7.4.3", 2926 | "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", 2927 | "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", 2928 | "dev": true, 2929 | "license": "ISC", 2930 | "dependencies": { 2931 | "@isaacs/fs-minipass": "^4.0.0", 2932 | "chownr": "^3.0.0", 2933 | "minipass": "^7.1.2", 2934 | "minizlib": "^3.0.1", 2935 | "mkdirp": "^3.0.1", 2936 | "yallist": "^5.0.0" 2937 | }, 2938 | "engines": { 2939 | "node": ">=18" 2940 | } 2941 | }, 2942 | "node_modules/temp-dir": { 2943 | "version": "3.0.0", 2944 | "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", 2945 | "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", 2946 | "dev": true, 2947 | "license": "MIT", 2948 | "engines": { 2949 | "node": ">=14.16" 2950 | } 2951 | }, 2952 | "node_modules/time-zone": { 2953 | "version": "1.0.0", 2954 | "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", 2955 | "integrity": "sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==", 2956 | "dev": true, 2957 | "license": "MIT", 2958 | "engines": { 2959 | "node": ">=4" 2960 | } 2961 | }, 2962 | "node_modules/to-regex-range": { 2963 | "version": "5.0.1", 2964 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2965 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2966 | "dev": true, 2967 | "license": "MIT", 2968 | "dependencies": { 2969 | "is-number": "^7.0.0" 2970 | }, 2971 | "engines": { 2972 | "node": ">=8.0" 2973 | } 2974 | }, 2975 | "node_modules/tr46": { 2976 | "version": "0.0.3", 2977 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 2978 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 2979 | "dev": true, 2980 | "license": "MIT" 2981 | }, 2982 | "node_modules/tslib": { 2983 | "version": "2.8.1", 2984 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 2985 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 2986 | "license": "0BSD", 2987 | "optional": true 2988 | }, 2989 | "node_modules/type-fest": { 2990 | "version": "0.13.1", 2991 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", 2992 | "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", 2993 | "dev": true, 2994 | "license": "(MIT OR CC0-1.0)", 2995 | "engines": { 2996 | "node": ">=10" 2997 | }, 2998 | "funding": { 2999 | "url": "https://github.com/sponsors/sindresorhus" 3000 | } 3001 | }, 3002 | "node_modules/unicorn-magic": { 3003 | "version": "0.3.0", 3004 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", 3005 | "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", 3006 | "dev": true, 3007 | "license": "MIT", 3008 | "engines": { 3009 | "node": ">=18" 3010 | }, 3011 | "funding": { 3012 | "url": "https://github.com/sponsors/sindresorhus" 3013 | } 3014 | }, 3015 | "node_modules/webidl-conversions": { 3016 | "version": "3.0.1", 3017 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3018 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3019 | "dev": true, 3020 | "license": "BSD-2-Clause" 3021 | }, 3022 | "node_modules/well-known-symbols": { 3023 | "version": "2.0.0", 3024 | "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", 3025 | "integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", 3026 | "dev": true, 3027 | "license": "ISC", 3028 | "engines": { 3029 | "node": ">=6" 3030 | } 3031 | }, 3032 | "node_modules/whatwg-url": { 3033 | "version": "5.0.0", 3034 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3035 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3036 | "dev": true, 3037 | "license": "MIT", 3038 | "dependencies": { 3039 | "tr46": "~0.0.3", 3040 | "webidl-conversions": "^3.0.0" 3041 | } 3042 | }, 3043 | "node_modules/which": { 3044 | "version": "2.0.2", 3045 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3046 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3047 | "dev": true, 3048 | "license": "ISC", 3049 | "dependencies": { 3050 | "isexe": "^2.0.0" 3051 | }, 3052 | "bin": { 3053 | "node-which": "bin/node-which" 3054 | }, 3055 | "engines": { 3056 | "node": ">= 8" 3057 | } 3058 | }, 3059 | "node_modules/wrap-ansi": { 3060 | "version": "7.0.0", 3061 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3062 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3063 | "dev": true, 3064 | "license": "MIT", 3065 | "dependencies": { 3066 | "ansi-styles": "^4.0.0", 3067 | "string-width": "^4.1.0", 3068 | "strip-ansi": "^6.0.0" 3069 | }, 3070 | "engines": { 3071 | "node": ">=10" 3072 | }, 3073 | "funding": { 3074 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3075 | } 3076 | }, 3077 | "node_modules/wrap-ansi-cjs": { 3078 | "name": "wrap-ansi", 3079 | "version": "7.0.0", 3080 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3081 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3082 | "dev": true, 3083 | "license": "MIT", 3084 | "dependencies": { 3085 | "ansi-styles": "^4.0.0", 3086 | "string-width": "^4.1.0", 3087 | "strip-ansi": "^6.0.0" 3088 | }, 3089 | "engines": { 3090 | "node": ">=10" 3091 | }, 3092 | "funding": { 3093 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3094 | } 3095 | }, 3096 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3097 | "version": "5.0.1", 3098 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3099 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3100 | "dev": true, 3101 | "license": "MIT", 3102 | "engines": { 3103 | "node": ">=8" 3104 | } 3105 | }, 3106 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 3107 | "version": "4.3.0", 3108 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3109 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3110 | "dev": true, 3111 | "license": "MIT", 3112 | "dependencies": { 3113 | "color-convert": "^2.0.1" 3114 | }, 3115 | "engines": { 3116 | "node": ">=8" 3117 | }, 3118 | "funding": { 3119 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3120 | } 3121 | }, 3122 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3123 | "version": "8.0.0", 3124 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3125 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3126 | "dev": true, 3127 | "license": "MIT" 3128 | }, 3129 | "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { 3130 | "version": "3.0.0", 3131 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3132 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3133 | "dev": true, 3134 | "license": "MIT", 3135 | "engines": { 3136 | "node": ">=8" 3137 | } 3138 | }, 3139 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3140 | "version": "4.2.3", 3141 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3142 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3143 | "dev": true, 3144 | "license": "MIT", 3145 | "dependencies": { 3146 | "emoji-regex": "^8.0.0", 3147 | "is-fullwidth-code-point": "^3.0.0", 3148 | "strip-ansi": "^6.0.1" 3149 | }, 3150 | "engines": { 3151 | "node": ">=8" 3152 | } 3153 | }, 3154 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3155 | "version": "6.0.1", 3156 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3157 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3158 | "dev": true, 3159 | "license": "MIT", 3160 | "dependencies": { 3161 | "ansi-regex": "^5.0.1" 3162 | }, 3163 | "engines": { 3164 | "node": ">=8" 3165 | } 3166 | }, 3167 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 3168 | "version": "5.0.1", 3169 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3170 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3171 | "dev": true, 3172 | "license": "MIT", 3173 | "engines": { 3174 | "node": ">=8" 3175 | } 3176 | }, 3177 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3178 | "version": "4.3.0", 3179 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3180 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3181 | "dev": true, 3182 | "license": "MIT", 3183 | "dependencies": { 3184 | "color-convert": "^2.0.1" 3185 | }, 3186 | "engines": { 3187 | "node": ">=8" 3188 | }, 3189 | "funding": { 3190 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3191 | } 3192 | }, 3193 | "node_modules/wrap-ansi/node_modules/emoji-regex": { 3194 | "version": "8.0.0", 3195 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3196 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3197 | "dev": true, 3198 | "license": "MIT" 3199 | }, 3200 | "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { 3201 | "version": "3.0.0", 3202 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3203 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3204 | "dev": true, 3205 | "license": "MIT", 3206 | "engines": { 3207 | "node": ">=8" 3208 | } 3209 | }, 3210 | "node_modules/wrap-ansi/node_modules/string-width": { 3211 | "version": "4.2.3", 3212 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3213 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3214 | "dev": true, 3215 | "license": "MIT", 3216 | "dependencies": { 3217 | "emoji-regex": "^8.0.0", 3218 | "is-fullwidth-code-point": "^3.0.0", 3219 | "strip-ansi": "^6.0.1" 3220 | }, 3221 | "engines": { 3222 | "node": ">=8" 3223 | } 3224 | }, 3225 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 3226 | "version": "6.0.1", 3227 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3228 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3229 | "dev": true, 3230 | "license": "MIT", 3231 | "dependencies": { 3232 | "ansi-regex": "^5.0.1" 3233 | }, 3234 | "engines": { 3235 | "node": ">=8" 3236 | } 3237 | }, 3238 | "node_modules/wrappy": { 3239 | "version": "1.0.2", 3240 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3241 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3242 | "dev": true, 3243 | "license": "ISC" 3244 | }, 3245 | "node_modules/write-file-atomic": { 3246 | "version": "6.0.0", 3247 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-6.0.0.tgz", 3248 | "integrity": "sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==", 3249 | "dev": true, 3250 | "license": "ISC", 3251 | "dependencies": { 3252 | "imurmurhash": "^0.1.4", 3253 | "signal-exit": "^4.0.1" 3254 | }, 3255 | "engines": { 3256 | "node": "^18.17.0 || >=20.5.0" 3257 | } 3258 | }, 3259 | "node_modules/y18n": { 3260 | "version": "5.0.8", 3261 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3262 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3263 | "dev": true, 3264 | "license": "ISC", 3265 | "engines": { 3266 | "node": ">=10" 3267 | } 3268 | }, 3269 | "node_modules/yallist": { 3270 | "version": "5.0.0", 3271 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 3272 | "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 3273 | "dev": true, 3274 | "license": "BlueOak-1.0.0", 3275 | "engines": { 3276 | "node": ">=18" 3277 | } 3278 | }, 3279 | "node_modules/yargs": { 3280 | "version": "17.7.2", 3281 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3282 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3283 | "dev": true, 3284 | "license": "MIT", 3285 | "dependencies": { 3286 | "cliui": "^8.0.1", 3287 | "escalade": "^3.1.1", 3288 | "get-caller-file": "^2.0.5", 3289 | "require-directory": "^2.1.1", 3290 | "string-width": "^4.2.3", 3291 | "y18n": "^5.0.5", 3292 | "yargs-parser": "^21.1.1" 3293 | }, 3294 | "engines": { 3295 | "node": ">=12" 3296 | } 3297 | }, 3298 | "node_modules/yargs-parser": { 3299 | "version": "21.1.1", 3300 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3301 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3302 | "dev": true, 3303 | "license": "ISC", 3304 | "engines": { 3305 | "node": ">=12" 3306 | } 3307 | }, 3308 | "node_modules/yargs/node_modules/ansi-regex": { 3309 | "version": "5.0.1", 3310 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3311 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3312 | "dev": true, 3313 | "license": "MIT", 3314 | "engines": { 3315 | "node": ">=8" 3316 | } 3317 | }, 3318 | "node_modules/yargs/node_modules/emoji-regex": { 3319 | "version": "8.0.0", 3320 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3321 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3322 | "dev": true, 3323 | "license": "MIT" 3324 | }, 3325 | "node_modules/yargs/node_modules/is-fullwidth-code-point": { 3326 | "version": "3.0.0", 3327 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3328 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3329 | "dev": true, 3330 | "license": "MIT", 3331 | "engines": { 3332 | "node": ">=8" 3333 | } 3334 | }, 3335 | "node_modules/yargs/node_modules/string-width": { 3336 | "version": "4.2.3", 3337 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3338 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3339 | "dev": true, 3340 | "license": "MIT", 3341 | "dependencies": { 3342 | "emoji-regex": "^8.0.0", 3343 | "is-fullwidth-code-point": "^3.0.0", 3344 | "strip-ansi": "^6.0.1" 3345 | }, 3346 | "engines": { 3347 | "node": ">=8" 3348 | } 3349 | }, 3350 | "node_modules/yargs/node_modules/strip-ansi": { 3351 | "version": "6.0.1", 3352 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3353 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3354 | "dev": true, 3355 | "license": "MIT", 3356 | "dependencies": { 3357 | "ansi-regex": "^5.0.1" 3358 | }, 3359 | "engines": { 3360 | "node": ">=8" 3361 | } 3362 | } 3363 | } 3364 | } 3365 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@11ty/image-color", 3 | "version": "1.0.6", 4 | "description": "Small utility to efficiently fetch the colors from an image.", 5 | "type": "module", 6 | "main": "image-color.js", 7 | "engines": { 8 | "node": ">=18" 9 | }, 10 | "scripts": { 11 | "test": "npx ava" 12 | }, 13 | "publishConfig": { 14 | "access": "public" 15 | }, 16 | "funding": { 17 | "type": "opencollective", 18 | "url": "https://opencollective.com/11ty" 19 | }, 20 | "author": "Zach Leatherman (https://zachleat.com/)", 21 | "license": "MIT", 22 | "repository": { 23 | "type": "git", 24 | "url": "git://github.com/11ty/image-color.git" 25 | }, 26 | "bugs": "https://github.com/11ty/image-color/issues", 27 | "dependencies": { 28 | "@11ty/eleventy-fetch": "^5.0.2", 29 | "@11ty/eleventy-img": "^6.0.1", 30 | "colorjs.io": "^0.5.2", 31 | "debug": "^4.4.0", 32 | "extract-colors": "^4.2.0", 33 | "memoize": "^10.1.0", 34 | "ndarray": "^1.0.19", 35 | "p-queue": "^8.1.0", 36 | "pngjs": "^7.0.0" 37 | }, 38 | "devDependencies": { 39 | "ava": "^6.2.0" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /test/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/image-color/d844721143c73a298ae19be4c46c5df3d5780856/test/test.jpg -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | import test from "ava"; 2 | import Color from "colorjs.io"; 3 | // getImageColors persists to disk, getImageColorsRaw does not 4 | import { getImageColors, getImageColorsRaw } from "../image-color.js"; 5 | 6 | // https://unsplash.com/photos/a-tall-building-with-a-sky-background-I5eKsDa8iwY 7 | test("Tall building", async t => { 8 | let colors = await getImageColorsRaw("./test/test.jpg"); 9 | t.deepEqual(colors.map(c => c.colorjs.toString({format: "hex"})), ["#305e5a", "#94a7b4", "#e0dee1", "#021a1e"]); 10 | }); 11 | 12 | test("Tall building (original prop)", async t => { 13 | let colors = await getImageColorsRaw("./test/test.jpg"); 14 | t.deepEqual(colors.map(c => c.original), ["#305e5a", "#94a7b4", "#e0dee1", "#021a1e"]); 15 | }); 16 | 17 | test("Prop check", async t => { 18 | let colors = await getImageColorsRaw("./test/test.jpg"); 19 | t.true(colors[0].colorjs instanceof Color); 20 | t.is(typeof colors[0].background, "string"); 21 | t.is(typeof colors[0].contrast.dark, "number"); 22 | t.is(typeof colors[0].contrast.light, "number"); 23 | t.is(typeof colors[0].foreground, "string"); 24 | t.is(typeof colors[0].mode, "string"); 25 | t.true(["dark", "light"].includes(colors[0].mode)); 26 | t.is(typeof colors[0].original, "string"); 27 | t.true(colors[0].toString().startsWith("oklch(")); 28 | t.deepEqual(Object.keys(colors[0]).sort(), ["background", "colorjs", "contrast", "foreground", "mode", "original", "toString"]); 29 | }); 30 | 31 | test("toString()", async t => { 32 | let colors = await getImageColorsRaw("./test/test.jpg"); 33 | t.deepEqual(colors.map(c => ""+c), [ 34 | "oklch(44.796% 0.05118 188.19)", 35 | "oklch(71.786% 0.02854 237.76)", 36 | "oklch(90.302% 0.00457 314.8)", 37 | "oklch(20.059% 0.03184 209.56)", 38 | ]); 39 | }); 40 | 41 | test("Filtering", async t => { 42 | let colors = await getImageColorsRaw("./test/test.jpg"); 43 | t.deepEqual(colors.filter(c => { 44 | return c.colorjs.oklch.l > .1 && c.colorjs.oklch.l < .9; 45 | }).map(c => c.original), ["#305e5a", "#94a7b4", "#021a1e"]); 46 | }); 47 | 48 | test("Memoization (raw)", async t => { 49 | let colors1 = getImageColorsRaw("./test/test.jpg"); 50 | let colors2 = getImageColorsRaw("./test/test.jpg"); 51 | t.is(colors1, colors2); 52 | 53 | let results = await Promise.all([colors1, colors2]); 54 | t.is(results[0], results[1]); 55 | }); 56 | 57 | test("Memoization", async t => { 58 | let colors1 = getImageColors("./test/test.jpg"); 59 | let colors2 = getImageColors("./test/test.jpg"); 60 | t.is(colors1, colors2); 61 | 62 | let results = await Promise.all([colors1, colors2]); 63 | t.is(results[0], results[1]); 64 | }); 65 | --------------------------------------------------------------------------------