├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── eslint.config.js ├── package-lock.json ├── package.json ├── src ├── cli.js └── index.js └── test ├── fixtures ├── 404.html ├── about │ └── index.html ├── blog │ ├── events │ │ ├── event-1.html │ │ └── event-2.html │ ├── index.html │ ├── mixed-1.html │ ├── mixed-2.html │ └── news │ │ ├── post-1.html │ │ ├── post-2.html │ │ └── post-3.html ├── hello.html ├── index.html ├── media │ ├── cats.jpg │ ├── dogs.png │ ├── index.html │ └── unknown.xyz └── noindex │ ├── not-indexed-2.html │ └── not-indexed.html └── spec.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: zerodevx 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | temp 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": false, 6 | "singleQuote": true, 7 | "trailingComma": "none", 8 | "proseWrap": "always" 9 | } 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ISC License 2 | 3 | Copyright (c) 2019-2025, Jason Lee 4 | 5 | Permission to use, copy, modify, and/or distribute this software for any 6 | purpose with or without fee is hereby granted, provided that the above 7 | copyright notice and this permission notice appear in all copies. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![npm (tag)](https://img.shields.io/npm/v/static-sitemap-cli/latest)](https://www.npmjs.com/package/static-sitemap-cli) 2 | [![npm](https://img.shields.io/npm/dm/static-sitemap-cli)](https://www.npmjs.com/package/static-sitemap-cli) 3 | 4 | # static-sitemap-cli 5 | 6 | > CLI to generate XML sitemaps for static sites from local filesystem. 7 | 8 | Quick and easy CLI to generate [XML](https://www.sitemaps.org/protocol.html) or 9 | [TXT](https://developers.google.com/search/docs/advanced/sitemaps/build-sitemap#text) sitemaps by 10 | searching your local filesystem for `.html` files. Automatically exclude files containing the 11 | `noindex` meta. Can also be used as a Node module. 12 | 13 | **NOTE:** This is the V2 branch. If you're looking for the older version, see the 14 | [V1 branch](https://github.com/zerodevx/static-sitemap-cli/tree/v1). V2 contains **breaking 15 | changes**. Find out what changed on the 16 | [releases](https://github.com/zerodevx/static-sitemap-cli/releases) page. 17 | 18 | ## Install 19 | 20 | ``` 21 | $ npm i -g static-sitemap-cli 22 | ``` 23 | 24 | ## Usage 25 | 26 | ``` 27 | $ sscli -b https://example.com -r public 28 | ``` 29 | 30 | This trawls the `public/` directory for files matching `**/*.html`, then parses each file for the 31 | `noindex` robots meta tag - excluding that file if the tag exists - and finally generates both 32 | `sitemap.xml` and `sitemap.txt` into the `public/` root. 33 | 34 | See below for more usage [examples](#examples). 35 | 36 | ## Options 37 | 38 | ``` 39 | Usage: sscli [options] 40 | 41 | CLI to generate XML sitemaps for static sites from local filesystem 42 | 43 | Options: 44 | -b, --base base URL (required) 45 | -r, --root root working directory (default: ".") 46 | -m, --match globs to match (default: ["**/*.html"]) 47 | -i, --ignore globs to ignore (default: ["404.html"]) 48 | -c, --changefreq comma-separated glob-changefreq pairs 49 | -p, --priority comma-separated glob-priority pairs 50 | --no-robots do not parse html files for noindex meta 51 | --concurrent concurrent number of html parsing ops (default: 32) 52 | --no-clean do not use clean URLs 53 | --slash add trailing slash to all URLs 54 | -f, --format sitemap format (choices: "xml", "txt", "both", default: "both") 55 | -o, --stdout output sitemap to stdout instead 56 | -v, --verbose be more verbose 57 | -V, --version output the version number 58 | -h, --help display help for command 59 | ``` 60 | 61 | #### HTML parsing 62 | 63 | By default, all matched `.html` files are piped through a fast 64 | [HTML parser](https://github.com/fb55/htmlparser2) to detect if the `noindex` 65 | [meta tag](https://developers.google.com/search/docs/advanced/crawling/block-indexing#meta-tag) is 66 | set - typically in the form of `` - in which case that file 67 | is excluded from the generated sitemap. To disable this behaviour, pass option `--no-robots`. 68 | 69 | For better performance, file reads are streamed in `1kb` chunks, and parsing stops immediately when 70 | either the `noindex` meta, or the `` closing tag, is detected (the `` is not parsed). 71 | This operation is performed concurrently with an 72 | [async pool](https://github.com/rxaviers/async-pool) limit of 32. The limit can be tweaked using the 73 | `--concurrent` option. 74 | 75 | #### Clean URLs 76 | 77 | Hides the `.html` file extension in sitemaps like so: 78 | 79 | ``` 80 | ./rootDir/index.html -> https://example.com/ 81 | ./rootDor/foo/index.html -> https://example.com/foo 82 | ./rootDor/foo/bar.html -> https://example.com/foo/bar 83 | ``` 84 | 85 | Enabled by default; pass option `--no-clean` to disable. 86 | 87 | #### Trailing slashes 88 | 89 | Adds a trailing slash to all URLs like so: 90 | 91 | ``` 92 | ./rootDir/index.html -> https://example.com/ 93 | ./rootDir/foo/index.html -> https://example.com/foo/ 94 | ./rootDir/foo/bar.html -> https://example.com/foo/bar/ 95 | ``` 96 | 97 | Disabled by default; pass option `--slash` to enable. 98 | 99 | **NOTE:** Cannot be used together with `--no-clean`. Also, trailing slashes are 100 | [always added](https://github.com/zerodevx/static-sitemap-cli/tree/v1#to-slash-or-not-to-slash) to 101 | root domains. 102 | 103 | #### Match or ignore files 104 | 105 | The `-m` and `-i` flags allow multiple entries. By default, they are set to the `["**/*.html"]` and 106 | `["404.html"]` respectively. Change the glob patterns to suit your use-case like so: 107 | 108 | ``` 109 | $ sscli ... -m '**/*.{html,jpg,png}' -i '404.html' 'ignore/**' 'this/other/specific/file.html' 110 | ``` 111 | 112 | #### Glob-[*] pairs 113 | 114 | The `-c` and `-p` flags allow multiple entries and accept `glob-*` pairs as input. A `glob-*` pair 115 | is a comma-separated pair of `,`. For example, a glob-changefreq pair may look like 116 | this: 117 | 118 | ``` 119 | $ sscli ... -c '**,weekly' 'events/**,daily' 120 | ``` 121 | 122 | Latter entries override the former. In the above example, paths matching `events/**` have a `daily` 123 | changefreq, while the rest are set to `weekly`. 124 | 125 | #### Using a config file 126 | 127 | Options can be passed through the `sscli` property in `package.json`, or through a `.ssclirc` JSON 128 | file, or through other [standard conventions](https://github.com/davidtheclark/cosmiconfig). 129 | 130 | ## Examples 131 | 132 | #### Dry-run sitemap entries 133 | 134 | ``` 135 | $ sscli -b https://x.com -f txt -o 136 | ``` 137 | 138 | #### Generate XML sitemap to another path 139 | 140 | ``` 141 | $ sscli -b https://x.com -r dist -f xml -o > www/sm.xml 142 | ``` 143 | 144 | #### Get subset of a directory 145 | 146 | ``` 147 | $ sscli -b https://x.com/foo -r dist/foo -f xml -o > dist/sitemap.xml 148 | ``` 149 | 150 | #### Generate TXT sitemap for image assets 151 | 152 | ``` 153 | $ sscli -b https://x.com -r dist -m '**/*.{jpg,jpeg,gif,png,bmp,webp,svg}' -f txt 154 | ``` 155 | 156 | ## Programmatic Use 157 | 158 | `static-sitemap-cli` can also be used as a Node module. 159 | 160 | ```js 161 | import { 162 | generateUrls, 163 | generateXmlSitemap, 164 | generateTxtSitemap 165 | } from 'static-sitemap-cli' 166 | 167 | const options = { 168 | base: 'https://x.com', 169 | root: 'path/to/root', 170 | match: ['**/*html'], 171 | ignore: ['404.html'], 172 | changefreq: [], 173 | priority: [], 174 | robots: true, 175 | concurrent: 32, 176 | clean: true, 177 | slash: false 178 | } 179 | 180 | generateUrls(options).then((urls) => { 181 | const xmlString = generateXmlSitemap(urls) 182 | const txtString = generateTxtSitemap(urls) 183 | ... 184 | }) 185 | ``` 186 | 187 | Using the XML sitemap generator by itself: 188 | 189 | ```js 190 | import { generateXmlSitemap } from 'static-sitemap-cli' 191 | 192 | const urls = [ 193 | { loc: 'https://x.com/', lastmod: '2022-02-22' }, 194 | { loc: 'https://x.com/about', lastmod: '2022-02-22' }, 195 | ... 196 | ] 197 | 198 | const xml = generateXmlSitemap(urls) 199 | ``` 200 | 201 | ## Development 202 | 203 | Standard Github [contribution workflow](https://github.com/firstcontributions/first-contributions) 204 | applies. 205 | 206 | #### Tests 207 | 208 | Test specs are at `test/spec.js`. To run the tests: 209 | 210 | ``` 211 | $ npm run test 212 | ``` 213 | 214 | ## License 215 | 216 | ISC 217 | 218 | ## Changelog 219 | 220 | Changes are logged in the [releases](https://github.com/zerodevx/static-sitemap-cli/releases) page. 221 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import prettier from 'eslint-config-prettier' 3 | import globals from 'globals' 4 | 5 | /** @type {import('eslint').Linter.Config[]} */ 6 | export default [ 7 | js.configs.recommended, 8 | prettier, 9 | { 10 | languageOptions: { 11 | globals: globals.node 12 | }, 13 | rules: { 14 | 'no-tabs': 'error', 15 | 'no-unexpected-multiline': 'error' 16 | } 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "static-sitemap-cli", 3 | "version": "2.2.6", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "static-sitemap-cli", 9 | "version": "2.2.6", 10 | "license": "ISC", 11 | "dependencies": { 12 | "commander": "^13.1.0", 13 | "cosmiconfig": "^9.0.0", 14 | "fast-glob": "^3.3.3", 15 | "htmlparser2": "^10.0.0", 16 | "js2xmlparser": "^5.0.0", 17 | "micromatch": "^4.0.8", 18 | "tiny-async-pool": "^2.1.0" 19 | }, 20 | "bin": { 21 | "sscli": "src/cli.js", 22 | "static-sitemap-cli": "src/cli.js" 23 | }, 24 | "devDependencies": { 25 | "@eslint/js": "^9.5.0", 26 | "ava": "^6.2.0", 27 | "eslint": "^9.19.0", 28 | "eslint-config-prettier": "^10.0.1", 29 | "execa": "^9.5.2", 30 | "globals": "^15.14.0", 31 | "prettier": "^3.4.2" 32 | }, 33 | "engines": { 34 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 35 | } 36 | }, 37 | "node_modules/@babel/code-frame": { 38 | "version": "7.26.2", 39 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 40 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 41 | "license": "MIT", 42 | "dependencies": { 43 | "@babel/helper-validator-identifier": "^7.25.9", 44 | "js-tokens": "^4.0.0", 45 | "picocolors": "^1.0.0" 46 | }, 47 | "engines": { 48 | "node": ">=6.9.0" 49 | } 50 | }, 51 | "node_modules/@babel/helper-validator-identifier": { 52 | "version": "7.25.9", 53 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 54 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 55 | "license": "MIT", 56 | "engines": { 57 | "node": ">=6.9.0" 58 | } 59 | }, 60 | "node_modules/@eslint-community/eslint-utils": { 61 | "version": "4.4.1", 62 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 63 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 64 | "dev": true, 65 | "license": "MIT", 66 | "dependencies": { 67 | "eslint-visitor-keys": "^3.4.3" 68 | }, 69 | "engines": { 70 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 71 | }, 72 | "funding": { 73 | "url": "https://opencollective.com/eslint" 74 | }, 75 | "peerDependencies": { 76 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 77 | } 78 | }, 79 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 80 | "version": "3.4.3", 81 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 82 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 83 | "dev": true, 84 | "license": "Apache-2.0", 85 | "engines": { 86 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 87 | }, 88 | "funding": { 89 | "url": "https://opencollective.com/eslint" 90 | } 91 | }, 92 | "node_modules/@eslint-community/regexpp": { 93 | "version": "4.12.1", 94 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 95 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 96 | "dev": true, 97 | "license": "MIT", 98 | "engines": { 99 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 100 | } 101 | }, 102 | "node_modules/@eslint/config-array": { 103 | "version": "0.19.1", 104 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", 105 | "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", 106 | "dev": true, 107 | "license": "Apache-2.0", 108 | "dependencies": { 109 | "@eslint/object-schema": "^2.1.5", 110 | "debug": "^4.3.1", 111 | "minimatch": "^3.1.2" 112 | }, 113 | "engines": { 114 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 115 | } 116 | }, 117 | "node_modules/@eslint/core": { 118 | "version": "0.10.0", 119 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", 120 | "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", 121 | "dev": true, 122 | "license": "Apache-2.0", 123 | "dependencies": { 124 | "@types/json-schema": "^7.0.15" 125 | }, 126 | "engines": { 127 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 128 | } 129 | }, 130 | "node_modules/@eslint/eslintrc": { 131 | "version": "3.2.0", 132 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 133 | "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 134 | "dev": true, 135 | "license": "MIT", 136 | "dependencies": { 137 | "ajv": "^6.12.4", 138 | "debug": "^4.3.2", 139 | "espree": "^10.0.1", 140 | "globals": "^14.0.0", 141 | "ignore": "^5.2.0", 142 | "import-fresh": "^3.2.1", 143 | "js-yaml": "^4.1.0", 144 | "minimatch": "^3.1.2", 145 | "strip-json-comments": "^3.1.1" 146 | }, 147 | "engines": { 148 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 149 | }, 150 | "funding": { 151 | "url": "https://opencollective.com/eslint" 152 | } 153 | }, 154 | "node_modules/@eslint/eslintrc/node_modules/globals": { 155 | "version": "14.0.0", 156 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 157 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 158 | "dev": true, 159 | "license": "MIT", 160 | "engines": { 161 | "node": ">=18" 162 | }, 163 | "funding": { 164 | "url": "https://github.com/sponsors/sindresorhus" 165 | } 166 | }, 167 | "node_modules/@eslint/js": { 168 | "version": "9.19.0", 169 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.19.0.tgz", 170 | "integrity": "sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==", 171 | "dev": true, 172 | "license": "MIT", 173 | "engines": { 174 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 175 | } 176 | }, 177 | "node_modules/@eslint/object-schema": { 178 | "version": "2.1.5", 179 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", 180 | "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", 181 | "dev": true, 182 | "license": "Apache-2.0", 183 | "engines": { 184 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 185 | } 186 | }, 187 | "node_modules/@eslint/plugin-kit": { 188 | "version": "0.2.5", 189 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz", 190 | "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", 191 | "dev": true, 192 | "license": "Apache-2.0", 193 | "dependencies": { 194 | "@eslint/core": "^0.10.0", 195 | "levn": "^0.4.1" 196 | }, 197 | "engines": { 198 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 199 | } 200 | }, 201 | "node_modules/@humanfs/core": { 202 | "version": "0.19.1", 203 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 204 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 205 | "dev": true, 206 | "license": "Apache-2.0", 207 | "engines": { 208 | "node": ">=18.18.0" 209 | } 210 | }, 211 | "node_modules/@humanfs/node": { 212 | "version": "0.16.6", 213 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 214 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 215 | "dev": true, 216 | "license": "Apache-2.0", 217 | "dependencies": { 218 | "@humanfs/core": "^0.19.1", 219 | "@humanwhocodes/retry": "^0.3.0" 220 | }, 221 | "engines": { 222 | "node": ">=18.18.0" 223 | } 224 | }, 225 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 226 | "version": "0.3.1", 227 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 228 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 229 | "dev": true, 230 | "license": "Apache-2.0", 231 | "engines": { 232 | "node": ">=18.18" 233 | }, 234 | "funding": { 235 | "type": "github", 236 | "url": "https://github.com/sponsors/nzakas" 237 | } 238 | }, 239 | "node_modules/@humanwhocodes/module-importer": { 240 | "version": "1.0.1", 241 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 242 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 243 | "dev": true, 244 | "license": "Apache-2.0", 245 | "engines": { 246 | "node": ">=12.22" 247 | }, 248 | "funding": { 249 | "type": "github", 250 | "url": "https://github.com/sponsors/nzakas" 251 | } 252 | }, 253 | "node_modules/@humanwhocodes/retry": { 254 | "version": "0.4.1", 255 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 256 | "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 257 | "dev": true, 258 | "license": "Apache-2.0", 259 | "engines": { 260 | "node": ">=18.18" 261 | }, 262 | "funding": { 263 | "type": "github", 264 | "url": "https://github.com/sponsors/nzakas" 265 | } 266 | }, 267 | "node_modules/@isaacs/cliui": { 268 | "version": "8.0.2", 269 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 270 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 271 | "dev": true, 272 | "license": "ISC", 273 | "dependencies": { 274 | "string-width": "^5.1.2", 275 | "string-width-cjs": "npm:string-width@^4.2.0", 276 | "strip-ansi": "^7.0.1", 277 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 278 | "wrap-ansi": "^8.1.0", 279 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 280 | }, 281 | "engines": { 282 | "node": ">=12" 283 | } 284 | }, 285 | "node_modules/@isaacs/cliui/node_modules/emoji-regex": { 286 | "version": "9.2.2", 287 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 288 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 289 | "dev": true, 290 | "license": "MIT" 291 | }, 292 | "node_modules/@isaacs/cliui/node_modules/string-width": { 293 | "version": "5.1.2", 294 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 295 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 296 | "dev": true, 297 | "license": "MIT", 298 | "dependencies": { 299 | "eastasianwidth": "^0.2.0", 300 | "emoji-regex": "^9.2.2", 301 | "strip-ansi": "^7.0.1" 302 | }, 303 | "engines": { 304 | "node": ">=12" 305 | }, 306 | "funding": { 307 | "url": "https://github.com/sponsors/sindresorhus" 308 | } 309 | }, 310 | "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { 311 | "version": "8.1.0", 312 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 313 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 314 | "dev": true, 315 | "license": "MIT", 316 | "dependencies": { 317 | "ansi-styles": "^6.1.0", 318 | "string-width": "^5.0.1", 319 | "strip-ansi": "^7.0.1" 320 | }, 321 | "engines": { 322 | "node": ">=12" 323 | }, 324 | "funding": { 325 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 326 | } 327 | }, 328 | "node_modules/@isaacs/fs-minipass": { 329 | "version": "4.0.1", 330 | "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 331 | "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 332 | "dev": true, 333 | "license": "ISC", 334 | "dependencies": { 335 | "minipass": "^7.0.4" 336 | }, 337 | "engines": { 338 | "node": ">=18.0.0" 339 | } 340 | }, 341 | "node_modules/@mapbox/node-pre-gyp": { 342 | "version": "2.0.0", 343 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz", 344 | "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==", 345 | "dev": true, 346 | "license": "BSD-3-Clause", 347 | "dependencies": { 348 | "consola": "^3.2.3", 349 | "detect-libc": "^2.0.0", 350 | "https-proxy-agent": "^7.0.5", 351 | "node-fetch": "^2.6.7", 352 | "nopt": "^8.0.0", 353 | "semver": "^7.5.3", 354 | "tar": "^7.4.0" 355 | }, 356 | "bin": { 357 | "node-pre-gyp": "bin/node-pre-gyp" 358 | }, 359 | "engines": { 360 | "node": ">=18" 361 | } 362 | }, 363 | "node_modules/@nodelib/fs.scandir": { 364 | "version": "2.1.5", 365 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 366 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 367 | "license": "MIT", 368 | "dependencies": { 369 | "@nodelib/fs.stat": "2.0.5", 370 | "run-parallel": "^1.1.9" 371 | }, 372 | "engines": { 373 | "node": ">= 8" 374 | } 375 | }, 376 | "node_modules/@nodelib/fs.stat": { 377 | "version": "2.0.5", 378 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 379 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 380 | "license": "MIT", 381 | "engines": { 382 | "node": ">= 8" 383 | } 384 | }, 385 | "node_modules/@nodelib/fs.walk": { 386 | "version": "1.2.8", 387 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 388 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 389 | "license": "MIT", 390 | "dependencies": { 391 | "@nodelib/fs.scandir": "2.1.5", 392 | "fastq": "^1.6.0" 393 | }, 394 | "engines": { 395 | "node": ">= 8" 396 | } 397 | }, 398 | "node_modules/@pkgjs/parseargs": { 399 | "version": "0.11.0", 400 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 401 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 402 | "dev": true, 403 | "license": "MIT", 404 | "optional": true, 405 | "engines": { 406 | "node": ">=14" 407 | } 408 | }, 409 | "node_modules/@rollup/pluginutils": { 410 | "version": "5.1.4", 411 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", 412 | "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", 413 | "dev": true, 414 | "license": "MIT", 415 | "dependencies": { 416 | "@types/estree": "^1.0.0", 417 | "estree-walker": "^2.0.2", 418 | "picomatch": "^4.0.2" 419 | }, 420 | "engines": { 421 | "node": ">=14.0.0" 422 | }, 423 | "peerDependencies": { 424 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 425 | }, 426 | "peerDependenciesMeta": { 427 | "rollup": { 428 | "optional": true 429 | } 430 | } 431 | }, 432 | "node_modules/@sec-ant/readable-stream": { 433 | "version": "0.4.1", 434 | "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", 435 | "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", 436 | "dev": true, 437 | "license": "MIT" 438 | }, 439 | "node_modules/@sindresorhus/merge-streams": { 440 | "version": "4.0.0", 441 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", 442 | "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", 443 | "dev": true, 444 | "license": "MIT", 445 | "engines": { 446 | "node": ">=18" 447 | }, 448 | "funding": { 449 | "url": "https://github.com/sponsors/sindresorhus" 450 | } 451 | }, 452 | "node_modules/@types/estree": { 453 | "version": "1.0.6", 454 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 455 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 456 | "dev": true, 457 | "license": "MIT" 458 | }, 459 | "node_modules/@types/json-schema": { 460 | "version": "7.0.15", 461 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 462 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 463 | "dev": true, 464 | "license": "MIT" 465 | }, 466 | "node_modules/@vercel/nft": { 467 | "version": "0.27.10", 468 | "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.10.tgz", 469 | "integrity": "sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==", 470 | "dev": true, 471 | "license": "MIT", 472 | "dependencies": { 473 | "@mapbox/node-pre-gyp": "^2.0.0-rc.0", 474 | "@rollup/pluginutils": "^5.1.3", 475 | "acorn": "^8.6.0", 476 | "acorn-import-attributes": "^1.9.5", 477 | "async-sema": "^3.1.1", 478 | "bindings": "^1.4.0", 479 | "estree-walker": "2.0.2", 480 | "glob": "^7.1.3", 481 | "graceful-fs": "^4.2.9", 482 | "node-gyp-build": "^4.2.2", 483 | "picomatch": "^4.0.2", 484 | "resolve-from": "^5.0.0" 485 | }, 486 | "bin": { 487 | "nft": "out/cli.js" 488 | }, 489 | "engines": { 490 | "node": ">=16" 491 | } 492 | }, 493 | "node_modules/abbrev": { 494 | "version": "3.0.0", 495 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz", 496 | "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==", 497 | "dev": true, 498 | "license": "ISC", 499 | "engines": { 500 | "node": "^18.17.0 || >=20.5.0" 501 | } 502 | }, 503 | "node_modules/acorn": { 504 | "version": "8.14.0", 505 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 506 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 507 | "dev": true, 508 | "license": "MIT", 509 | "bin": { 510 | "acorn": "bin/acorn" 511 | }, 512 | "engines": { 513 | "node": ">=0.4.0" 514 | } 515 | }, 516 | "node_modules/acorn-import-attributes": { 517 | "version": "1.9.5", 518 | "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", 519 | "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", 520 | "dev": true, 521 | "license": "MIT", 522 | "peerDependencies": { 523 | "acorn": "^8" 524 | } 525 | }, 526 | "node_modules/acorn-jsx": { 527 | "version": "5.3.2", 528 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 529 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 530 | "dev": true, 531 | "license": "MIT", 532 | "peerDependencies": { 533 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 534 | } 535 | }, 536 | "node_modules/acorn-walk": { 537 | "version": "8.3.4", 538 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", 539 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", 540 | "dev": true, 541 | "license": "MIT", 542 | "dependencies": { 543 | "acorn": "^8.11.0" 544 | }, 545 | "engines": { 546 | "node": ">=0.4.0" 547 | } 548 | }, 549 | "node_modules/agent-base": { 550 | "version": "7.1.3", 551 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", 552 | "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", 553 | "dev": true, 554 | "license": "MIT", 555 | "engines": { 556 | "node": ">= 14" 557 | } 558 | }, 559 | "node_modules/ajv": { 560 | "version": "6.12.6", 561 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 562 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 563 | "dev": true, 564 | "license": "MIT", 565 | "dependencies": { 566 | "fast-deep-equal": "^3.1.1", 567 | "fast-json-stable-stringify": "^2.0.0", 568 | "json-schema-traverse": "^0.4.1", 569 | "uri-js": "^4.2.2" 570 | }, 571 | "funding": { 572 | "type": "github", 573 | "url": "https://github.com/sponsors/epoberezkin" 574 | } 575 | }, 576 | "node_modules/ansi-regex": { 577 | "version": "6.1.0", 578 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 579 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 580 | "dev": true, 581 | "license": "MIT", 582 | "engines": { 583 | "node": ">=12" 584 | }, 585 | "funding": { 586 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 587 | } 588 | }, 589 | "node_modules/ansi-styles": { 590 | "version": "6.2.1", 591 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 592 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 593 | "dev": true, 594 | "license": "MIT", 595 | "engines": { 596 | "node": ">=12" 597 | }, 598 | "funding": { 599 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 600 | } 601 | }, 602 | "node_modules/argparse": { 603 | "version": "2.0.1", 604 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 605 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 606 | "license": "Python-2.0" 607 | }, 608 | "node_modules/array-find-index": { 609 | "version": "1.0.2", 610 | "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", 611 | "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", 612 | "dev": true, 613 | "license": "MIT", 614 | "engines": { 615 | "node": ">=0.10.0" 616 | } 617 | }, 618 | "node_modules/arrgv": { 619 | "version": "1.0.2", 620 | "resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", 621 | "integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", 622 | "dev": true, 623 | "license": "MIT", 624 | "engines": { 625 | "node": ">=8.0.0" 626 | } 627 | }, 628 | "node_modules/arrify": { 629 | "version": "3.0.0", 630 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz", 631 | "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==", 632 | "dev": true, 633 | "license": "MIT", 634 | "engines": { 635 | "node": ">=12" 636 | }, 637 | "funding": { 638 | "url": "https://github.com/sponsors/sindresorhus" 639 | } 640 | }, 641 | "node_modules/async-sema": { 642 | "version": "3.1.1", 643 | "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", 644 | "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", 645 | "dev": true, 646 | "license": "MIT" 647 | }, 648 | "node_modules/ava": { 649 | "version": "6.2.0", 650 | "resolved": "https://registry.npmjs.org/ava/-/ava-6.2.0.tgz", 651 | "integrity": "sha512-+GZk5PbyepjiO/68hzCZCUepQOQauKfNnI7sA4JukBTg97jD7E+tDKEA7OhGOGr6EorNNMM9+jqvgHVOTOzG4w==", 652 | "dev": true, 653 | "license": "MIT", 654 | "dependencies": { 655 | "@vercel/nft": "^0.27.5", 656 | "acorn": "^8.13.0", 657 | "acorn-walk": "^8.3.4", 658 | "ansi-styles": "^6.2.1", 659 | "arrgv": "^1.0.2", 660 | "arrify": "^3.0.0", 661 | "callsites": "^4.2.0", 662 | "cbor": "^9.0.2", 663 | "chalk": "^5.3.0", 664 | "chunkd": "^2.0.1", 665 | "ci-info": "^4.0.0", 666 | "ci-parallel-vars": "^1.0.1", 667 | "cli-truncate": "^4.0.0", 668 | "code-excerpt": "^4.0.0", 669 | "common-path-prefix": "^3.0.0", 670 | "concordance": "^5.0.4", 671 | "currently-unhandled": "^0.4.1", 672 | "debug": "^4.3.7", 673 | "emittery": "^1.0.3", 674 | "figures": "^6.1.0", 675 | "globby": "^14.0.2", 676 | "ignore-by-default": "^2.1.0", 677 | "indent-string": "^5.0.0", 678 | "is-plain-object": "^5.0.0", 679 | "is-promise": "^4.0.0", 680 | "matcher": "^5.0.0", 681 | "memoize": "^10.0.0", 682 | "ms": "^2.1.3", 683 | "p-map": "^7.0.2", 684 | "package-config": "^5.0.0", 685 | "picomatch": "^4.0.2", 686 | "plur": "^5.1.0", 687 | "pretty-ms": "^9.1.0", 688 | "resolve-cwd": "^3.0.0", 689 | "stack-utils": "^2.0.6", 690 | "strip-ansi": "^7.1.0", 691 | "supertap": "^3.0.1", 692 | "temp-dir": "^3.0.0", 693 | "write-file-atomic": "^6.0.0", 694 | "yargs": "^17.7.2" 695 | }, 696 | "bin": { 697 | "ava": "entrypoints/cli.mjs" 698 | }, 699 | "engines": { 700 | "node": "^18.18 || ^20.8 || ^22 || >=23" 701 | }, 702 | "peerDependencies": { 703 | "@ava/typescript": "*" 704 | }, 705 | "peerDependenciesMeta": { 706 | "@ava/typescript": { 707 | "optional": true 708 | } 709 | } 710 | }, 711 | "node_modules/balanced-match": { 712 | "version": "1.0.2", 713 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 714 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 715 | "dev": true, 716 | "license": "MIT" 717 | }, 718 | "node_modules/bindings": { 719 | "version": "1.5.0", 720 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 721 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 722 | "dev": true, 723 | "license": "MIT", 724 | "dependencies": { 725 | "file-uri-to-path": "1.0.0" 726 | } 727 | }, 728 | "node_modules/blueimp-md5": { 729 | "version": "2.19.0", 730 | "resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz", 731 | "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==", 732 | "dev": true, 733 | "license": "MIT" 734 | }, 735 | "node_modules/brace-expansion": { 736 | "version": "1.1.11", 737 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 738 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 739 | "dev": true, 740 | "license": "MIT", 741 | "dependencies": { 742 | "balanced-match": "^1.0.0", 743 | "concat-map": "0.0.1" 744 | } 745 | }, 746 | "node_modules/braces": { 747 | "version": "3.0.3", 748 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 749 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 750 | "license": "MIT", 751 | "dependencies": { 752 | "fill-range": "^7.1.1" 753 | }, 754 | "engines": { 755 | "node": ">=8" 756 | } 757 | }, 758 | "node_modules/callsites": { 759 | "version": "4.2.0", 760 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-4.2.0.tgz", 761 | "integrity": "sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==", 762 | "dev": true, 763 | "license": "MIT", 764 | "engines": { 765 | "node": ">=12.20" 766 | }, 767 | "funding": { 768 | "url": "https://github.com/sponsors/sindresorhus" 769 | } 770 | }, 771 | "node_modules/cbor": { 772 | "version": "9.0.2", 773 | "resolved": "https://registry.npmjs.org/cbor/-/cbor-9.0.2.tgz", 774 | "integrity": "sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==", 775 | "dev": true, 776 | "license": "MIT", 777 | "dependencies": { 778 | "nofilter": "^3.1.0" 779 | }, 780 | "engines": { 781 | "node": ">=16" 782 | } 783 | }, 784 | "node_modules/chalk": { 785 | "version": "5.4.1", 786 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 787 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 788 | "dev": true, 789 | "license": "MIT", 790 | "engines": { 791 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 792 | }, 793 | "funding": { 794 | "url": "https://github.com/chalk/chalk?sponsor=1" 795 | } 796 | }, 797 | "node_modules/chownr": { 798 | "version": "3.0.0", 799 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 800 | "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 801 | "dev": true, 802 | "license": "BlueOak-1.0.0", 803 | "engines": { 804 | "node": ">=18" 805 | } 806 | }, 807 | "node_modules/chunkd": { 808 | "version": "2.0.1", 809 | "resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", 810 | "integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", 811 | "dev": true, 812 | "license": "MIT" 813 | }, 814 | "node_modules/ci-info": { 815 | "version": "4.1.0", 816 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz", 817 | "integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==", 818 | "dev": true, 819 | "funding": [ 820 | { 821 | "type": "github", 822 | "url": "https://github.com/sponsors/sibiraj-s" 823 | } 824 | ], 825 | "license": "MIT", 826 | "engines": { 827 | "node": ">=8" 828 | } 829 | }, 830 | "node_modules/ci-parallel-vars": { 831 | "version": "1.0.1", 832 | "resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.1.tgz", 833 | "integrity": "sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==", 834 | "dev": true, 835 | "license": "MIT" 836 | }, 837 | "node_modules/cli-truncate": { 838 | "version": "4.0.0", 839 | "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", 840 | "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", 841 | "dev": true, 842 | "license": "MIT", 843 | "dependencies": { 844 | "slice-ansi": "^5.0.0", 845 | "string-width": "^7.0.0" 846 | }, 847 | "engines": { 848 | "node": ">=18" 849 | }, 850 | "funding": { 851 | "url": "https://github.com/sponsors/sindresorhus" 852 | } 853 | }, 854 | "node_modules/cliui": { 855 | "version": "8.0.1", 856 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 857 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 858 | "dev": true, 859 | "license": "ISC", 860 | "dependencies": { 861 | "string-width": "^4.2.0", 862 | "strip-ansi": "^6.0.1", 863 | "wrap-ansi": "^7.0.0" 864 | }, 865 | "engines": { 866 | "node": ">=12" 867 | } 868 | }, 869 | "node_modules/cliui/node_modules/ansi-regex": { 870 | "version": "5.0.1", 871 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 872 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 873 | "dev": true, 874 | "license": "MIT", 875 | "engines": { 876 | "node": ">=8" 877 | } 878 | }, 879 | "node_modules/cliui/node_modules/emoji-regex": { 880 | "version": "8.0.0", 881 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 882 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 883 | "dev": true, 884 | "license": "MIT" 885 | }, 886 | "node_modules/cliui/node_modules/is-fullwidth-code-point": { 887 | "version": "3.0.0", 888 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 889 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 890 | "dev": true, 891 | "license": "MIT", 892 | "engines": { 893 | "node": ">=8" 894 | } 895 | }, 896 | "node_modules/cliui/node_modules/string-width": { 897 | "version": "4.2.3", 898 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 899 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 900 | "dev": true, 901 | "license": "MIT", 902 | "dependencies": { 903 | "emoji-regex": "^8.0.0", 904 | "is-fullwidth-code-point": "^3.0.0", 905 | "strip-ansi": "^6.0.1" 906 | }, 907 | "engines": { 908 | "node": ">=8" 909 | } 910 | }, 911 | "node_modules/cliui/node_modules/strip-ansi": { 912 | "version": "6.0.1", 913 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 914 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 915 | "dev": true, 916 | "license": "MIT", 917 | "dependencies": { 918 | "ansi-regex": "^5.0.1" 919 | }, 920 | "engines": { 921 | "node": ">=8" 922 | } 923 | }, 924 | "node_modules/code-excerpt": { 925 | "version": "4.0.0", 926 | "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-4.0.0.tgz", 927 | "integrity": "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==", 928 | "dev": true, 929 | "license": "MIT", 930 | "dependencies": { 931 | "convert-to-spaces": "^2.0.1" 932 | }, 933 | "engines": { 934 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 935 | } 936 | }, 937 | "node_modules/color-convert": { 938 | "version": "2.0.1", 939 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 940 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 941 | "dev": true, 942 | "license": "MIT", 943 | "dependencies": { 944 | "color-name": "~1.1.4" 945 | }, 946 | "engines": { 947 | "node": ">=7.0.0" 948 | } 949 | }, 950 | "node_modules/color-name": { 951 | "version": "1.1.4", 952 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 953 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 954 | "dev": true, 955 | "license": "MIT" 956 | }, 957 | "node_modules/commander": { 958 | "version": "13.1.0", 959 | "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz", 960 | "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==", 961 | "license": "MIT", 962 | "engines": { 963 | "node": ">=18" 964 | } 965 | }, 966 | "node_modules/common-path-prefix": { 967 | "version": "3.0.0", 968 | "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", 969 | "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", 970 | "dev": true, 971 | "license": "ISC" 972 | }, 973 | "node_modules/concat-map": { 974 | "version": "0.0.1", 975 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 976 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 977 | "dev": true, 978 | "license": "MIT" 979 | }, 980 | "node_modules/concordance": { 981 | "version": "5.0.4", 982 | "resolved": "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz", 983 | "integrity": "sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==", 984 | "dev": true, 985 | "license": "ISC", 986 | "dependencies": { 987 | "date-time": "^3.1.0", 988 | "esutils": "^2.0.3", 989 | "fast-diff": "^1.2.0", 990 | "js-string-escape": "^1.0.1", 991 | "lodash": "^4.17.15", 992 | "md5-hex": "^3.0.1", 993 | "semver": "^7.3.2", 994 | "well-known-symbols": "^2.0.0" 995 | }, 996 | "engines": { 997 | "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" 998 | } 999 | }, 1000 | "node_modules/consola": { 1001 | "version": "3.4.0", 1002 | "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", 1003 | "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", 1004 | "dev": true, 1005 | "license": "MIT", 1006 | "engines": { 1007 | "node": "^14.18.0 || >=16.10.0" 1008 | } 1009 | }, 1010 | "node_modules/convert-to-spaces": { 1011 | "version": "2.0.1", 1012 | "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz", 1013 | "integrity": "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==", 1014 | "dev": true, 1015 | "license": "MIT", 1016 | "engines": { 1017 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1018 | } 1019 | }, 1020 | "node_modules/cosmiconfig": { 1021 | "version": "9.0.0", 1022 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", 1023 | "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", 1024 | "license": "MIT", 1025 | "dependencies": { 1026 | "env-paths": "^2.2.1", 1027 | "import-fresh": "^3.3.0", 1028 | "js-yaml": "^4.1.0", 1029 | "parse-json": "^5.2.0" 1030 | }, 1031 | "engines": { 1032 | "node": ">=14" 1033 | }, 1034 | "funding": { 1035 | "url": "https://github.com/sponsors/d-fischer" 1036 | }, 1037 | "peerDependencies": { 1038 | "typescript": ">=4.9.5" 1039 | }, 1040 | "peerDependenciesMeta": { 1041 | "typescript": { 1042 | "optional": true 1043 | } 1044 | } 1045 | }, 1046 | "node_modules/cross-spawn": { 1047 | "version": "7.0.6", 1048 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1049 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1050 | "dev": true, 1051 | "license": "MIT", 1052 | "dependencies": { 1053 | "path-key": "^3.1.0", 1054 | "shebang-command": "^2.0.0", 1055 | "which": "^2.0.1" 1056 | }, 1057 | "engines": { 1058 | "node": ">= 8" 1059 | } 1060 | }, 1061 | "node_modules/currently-unhandled": { 1062 | "version": "0.4.1", 1063 | "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", 1064 | "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", 1065 | "dev": true, 1066 | "license": "MIT", 1067 | "dependencies": { 1068 | "array-find-index": "^1.0.1" 1069 | }, 1070 | "engines": { 1071 | "node": ">=0.10.0" 1072 | } 1073 | }, 1074 | "node_modules/date-time": { 1075 | "version": "3.1.0", 1076 | "resolved": "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz", 1077 | "integrity": "sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==", 1078 | "dev": true, 1079 | "license": "MIT", 1080 | "dependencies": { 1081 | "time-zone": "^1.0.0" 1082 | }, 1083 | "engines": { 1084 | "node": ">=6" 1085 | } 1086 | }, 1087 | "node_modules/debug": { 1088 | "version": "4.4.0", 1089 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1090 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1091 | "dev": true, 1092 | "license": "MIT", 1093 | "dependencies": { 1094 | "ms": "^2.1.3" 1095 | }, 1096 | "engines": { 1097 | "node": ">=6.0" 1098 | }, 1099 | "peerDependenciesMeta": { 1100 | "supports-color": { 1101 | "optional": true 1102 | } 1103 | } 1104 | }, 1105 | "node_modules/deep-is": { 1106 | "version": "0.1.4", 1107 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1108 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1109 | "dev": true, 1110 | "license": "MIT" 1111 | }, 1112 | "node_modules/detect-libc": { 1113 | "version": "2.0.3", 1114 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 1115 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 1116 | "dev": true, 1117 | "license": "Apache-2.0", 1118 | "engines": { 1119 | "node": ">=8" 1120 | } 1121 | }, 1122 | "node_modules/dom-serializer": { 1123 | "version": "2.0.0", 1124 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 1125 | "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 1126 | "license": "MIT", 1127 | "dependencies": { 1128 | "domelementtype": "^2.3.0", 1129 | "domhandler": "^5.0.2", 1130 | "entities": "^4.2.0" 1131 | }, 1132 | "funding": { 1133 | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 1134 | } 1135 | }, 1136 | "node_modules/domelementtype": { 1137 | "version": "2.3.0", 1138 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 1139 | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 1140 | "funding": [ 1141 | { 1142 | "type": "github", 1143 | "url": "https://github.com/sponsors/fb55" 1144 | } 1145 | ], 1146 | "license": "BSD-2-Clause" 1147 | }, 1148 | "node_modules/domhandler": { 1149 | "version": "5.0.3", 1150 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 1151 | "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 1152 | "license": "BSD-2-Clause", 1153 | "dependencies": { 1154 | "domelementtype": "^2.3.0" 1155 | }, 1156 | "engines": { 1157 | "node": ">= 4" 1158 | }, 1159 | "funding": { 1160 | "url": "https://github.com/fb55/domhandler?sponsor=1" 1161 | } 1162 | }, 1163 | "node_modules/domutils": { 1164 | "version": "3.2.2", 1165 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", 1166 | "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", 1167 | "license": "BSD-2-Clause", 1168 | "dependencies": { 1169 | "dom-serializer": "^2.0.0", 1170 | "domelementtype": "^2.3.0", 1171 | "domhandler": "^5.0.3" 1172 | }, 1173 | "funding": { 1174 | "url": "https://github.com/fb55/domutils?sponsor=1" 1175 | } 1176 | }, 1177 | "node_modules/eastasianwidth": { 1178 | "version": "0.2.0", 1179 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1180 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1181 | "dev": true, 1182 | "license": "MIT" 1183 | }, 1184 | "node_modules/emittery": { 1185 | "version": "1.0.3", 1186 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.3.tgz", 1187 | "integrity": "sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==", 1188 | "dev": true, 1189 | "license": "MIT", 1190 | "engines": { 1191 | "node": ">=14.16" 1192 | }, 1193 | "funding": { 1194 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1195 | } 1196 | }, 1197 | "node_modules/emoji-regex": { 1198 | "version": "10.4.0", 1199 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", 1200 | "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", 1201 | "dev": true, 1202 | "license": "MIT" 1203 | }, 1204 | "node_modules/entities": { 1205 | "version": "4.5.0", 1206 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1207 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1208 | "license": "BSD-2-Clause", 1209 | "engines": { 1210 | "node": ">=0.12" 1211 | }, 1212 | "funding": { 1213 | "url": "https://github.com/fb55/entities?sponsor=1" 1214 | } 1215 | }, 1216 | "node_modules/env-paths": { 1217 | "version": "2.2.1", 1218 | "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", 1219 | "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", 1220 | "license": "MIT", 1221 | "engines": { 1222 | "node": ">=6" 1223 | } 1224 | }, 1225 | "node_modules/error-ex": { 1226 | "version": "1.3.2", 1227 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1228 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1229 | "license": "MIT", 1230 | "dependencies": { 1231 | "is-arrayish": "^0.2.1" 1232 | } 1233 | }, 1234 | "node_modules/escalade": { 1235 | "version": "3.2.0", 1236 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1237 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1238 | "dev": true, 1239 | "license": "MIT", 1240 | "engines": { 1241 | "node": ">=6" 1242 | } 1243 | }, 1244 | "node_modules/escape-string-regexp": { 1245 | "version": "4.0.0", 1246 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1247 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1248 | "dev": true, 1249 | "license": "MIT", 1250 | "engines": { 1251 | "node": ">=10" 1252 | }, 1253 | "funding": { 1254 | "url": "https://github.com/sponsors/sindresorhus" 1255 | } 1256 | }, 1257 | "node_modules/eslint": { 1258 | "version": "9.19.0", 1259 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.19.0.tgz", 1260 | "integrity": "sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==", 1261 | "dev": true, 1262 | "license": "MIT", 1263 | "dependencies": { 1264 | "@eslint-community/eslint-utils": "^4.2.0", 1265 | "@eslint-community/regexpp": "^4.12.1", 1266 | "@eslint/config-array": "^0.19.0", 1267 | "@eslint/core": "^0.10.0", 1268 | "@eslint/eslintrc": "^3.2.0", 1269 | "@eslint/js": "9.19.0", 1270 | "@eslint/plugin-kit": "^0.2.5", 1271 | "@humanfs/node": "^0.16.6", 1272 | "@humanwhocodes/module-importer": "^1.0.1", 1273 | "@humanwhocodes/retry": "^0.4.1", 1274 | "@types/estree": "^1.0.6", 1275 | "@types/json-schema": "^7.0.15", 1276 | "ajv": "^6.12.4", 1277 | "chalk": "^4.0.0", 1278 | "cross-spawn": "^7.0.6", 1279 | "debug": "^4.3.2", 1280 | "escape-string-regexp": "^4.0.0", 1281 | "eslint-scope": "^8.2.0", 1282 | "eslint-visitor-keys": "^4.2.0", 1283 | "espree": "^10.3.0", 1284 | "esquery": "^1.5.0", 1285 | "esutils": "^2.0.2", 1286 | "fast-deep-equal": "^3.1.3", 1287 | "file-entry-cache": "^8.0.0", 1288 | "find-up": "^5.0.0", 1289 | "glob-parent": "^6.0.2", 1290 | "ignore": "^5.2.0", 1291 | "imurmurhash": "^0.1.4", 1292 | "is-glob": "^4.0.0", 1293 | "json-stable-stringify-without-jsonify": "^1.0.1", 1294 | "lodash.merge": "^4.6.2", 1295 | "minimatch": "^3.1.2", 1296 | "natural-compare": "^1.4.0", 1297 | "optionator": "^0.9.3" 1298 | }, 1299 | "bin": { 1300 | "eslint": "bin/eslint.js" 1301 | }, 1302 | "engines": { 1303 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1304 | }, 1305 | "funding": { 1306 | "url": "https://eslint.org/donate" 1307 | }, 1308 | "peerDependencies": { 1309 | "jiti": "*" 1310 | }, 1311 | "peerDependenciesMeta": { 1312 | "jiti": { 1313 | "optional": true 1314 | } 1315 | } 1316 | }, 1317 | "node_modules/eslint-config-prettier": { 1318 | "version": "10.0.1", 1319 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.0.1.tgz", 1320 | "integrity": "sha512-lZBts941cyJyeaooiKxAtzoPHTN+GbQTJFAIdQbRhA4/8whaAraEh47Whw/ZFfrjNSnlAxqfm9i0XVAEkULjCw==", 1321 | "dev": true, 1322 | "license": "MIT", 1323 | "bin": { 1324 | "eslint-config-prettier": "build/bin/cli.js" 1325 | }, 1326 | "peerDependencies": { 1327 | "eslint": ">=7.0.0" 1328 | } 1329 | }, 1330 | "node_modules/eslint-scope": { 1331 | "version": "8.2.0", 1332 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1333 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1334 | "dev": true, 1335 | "license": "BSD-2-Clause", 1336 | "dependencies": { 1337 | "esrecurse": "^4.3.0", 1338 | "estraverse": "^5.2.0" 1339 | }, 1340 | "engines": { 1341 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1342 | }, 1343 | "funding": { 1344 | "url": "https://opencollective.com/eslint" 1345 | } 1346 | }, 1347 | "node_modules/eslint-visitor-keys": { 1348 | "version": "4.2.0", 1349 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1350 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1351 | "dev": true, 1352 | "license": "Apache-2.0", 1353 | "engines": { 1354 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1355 | }, 1356 | "funding": { 1357 | "url": "https://opencollective.com/eslint" 1358 | } 1359 | }, 1360 | "node_modules/eslint/node_modules/ansi-styles": { 1361 | "version": "4.3.0", 1362 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1363 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1364 | "dev": true, 1365 | "license": "MIT", 1366 | "dependencies": { 1367 | "color-convert": "^2.0.1" 1368 | }, 1369 | "engines": { 1370 | "node": ">=8" 1371 | }, 1372 | "funding": { 1373 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1374 | } 1375 | }, 1376 | "node_modules/eslint/node_modules/chalk": { 1377 | "version": "4.1.2", 1378 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1379 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1380 | "dev": true, 1381 | "license": "MIT", 1382 | "dependencies": { 1383 | "ansi-styles": "^4.1.0", 1384 | "supports-color": "^7.1.0" 1385 | }, 1386 | "engines": { 1387 | "node": ">=10" 1388 | }, 1389 | "funding": { 1390 | "url": "https://github.com/chalk/chalk?sponsor=1" 1391 | } 1392 | }, 1393 | "node_modules/espree": { 1394 | "version": "10.3.0", 1395 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1396 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1397 | "dev": true, 1398 | "license": "BSD-2-Clause", 1399 | "dependencies": { 1400 | "acorn": "^8.14.0", 1401 | "acorn-jsx": "^5.3.2", 1402 | "eslint-visitor-keys": "^4.2.0" 1403 | }, 1404 | "engines": { 1405 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1406 | }, 1407 | "funding": { 1408 | "url": "https://opencollective.com/eslint" 1409 | } 1410 | }, 1411 | "node_modules/esprima": { 1412 | "version": "4.0.1", 1413 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1414 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1415 | "dev": true, 1416 | "license": "BSD-2-Clause", 1417 | "bin": { 1418 | "esparse": "bin/esparse.js", 1419 | "esvalidate": "bin/esvalidate.js" 1420 | }, 1421 | "engines": { 1422 | "node": ">=4" 1423 | } 1424 | }, 1425 | "node_modules/esquery": { 1426 | "version": "1.6.0", 1427 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1428 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1429 | "dev": true, 1430 | "license": "BSD-3-Clause", 1431 | "dependencies": { 1432 | "estraverse": "^5.1.0" 1433 | }, 1434 | "engines": { 1435 | "node": ">=0.10" 1436 | } 1437 | }, 1438 | "node_modules/esrecurse": { 1439 | "version": "4.3.0", 1440 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1441 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1442 | "dev": true, 1443 | "license": "BSD-2-Clause", 1444 | "dependencies": { 1445 | "estraverse": "^5.2.0" 1446 | }, 1447 | "engines": { 1448 | "node": ">=4.0" 1449 | } 1450 | }, 1451 | "node_modules/estraverse": { 1452 | "version": "5.3.0", 1453 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1454 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1455 | "dev": true, 1456 | "license": "BSD-2-Clause", 1457 | "engines": { 1458 | "node": ">=4.0" 1459 | } 1460 | }, 1461 | "node_modules/estree-walker": { 1462 | "version": "2.0.2", 1463 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1464 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1465 | "dev": true, 1466 | "license": "MIT" 1467 | }, 1468 | "node_modules/esutils": { 1469 | "version": "2.0.3", 1470 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1471 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1472 | "dev": true, 1473 | "license": "BSD-2-Clause", 1474 | "engines": { 1475 | "node": ">=0.10.0" 1476 | } 1477 | }, 1478 | "node_modules/execa": { 1479 | "version": "9.5.2", 1480 | "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", 1481 | "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", 1482 | "dev": true, 1483 | "license": "MIT", 1484 | "dependencies": { 1485 | "@sindresorhus/merge-streams": "^4.0.0", 1486 | "cross-spawn": "^7.0.3", 1487 | "figures": "^6.1.0", 1488 | "get-stream": "^9.0.0", 1489 | "human-signals": "^8.0.0", 1490 | "is-plain-obj": "^4.1.0", 1491 | "is-stream": "^4.0.1", 1492 | "npm-run-path": "^6.0.0", 1493 | "pretty-ms": "^9.0.0", 1494 | "signal-exit": "^4.1.0", 1495 | "strip-final-newline": "^4.0.0", 1496 | "yoctocolors": "^2.0.0" 1497 | }, 1498 | "engines": { 1499 | "node": "^18.19.0 || >=20.5.0" 1500 | }, 1501 | "funding": { 1502 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1503 | } 1504 | }, 1505 | "node_modules/fast-deep-equal": { 1506 | "version": "3.1.3", 1507 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1508 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1509 | "dev": true, 1510 | "license": "MIT" 1511 | }, 1512 | "node_modules/fast-diff": { 1513 | "version": "1.3.0", 1514 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1515 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1516 | "dev": true, 1517 | "license": "Apache-2.0" 1518 | }, 1519 | "node_modules/fast-glob": { 1520 | "version": "3.3.3", 1521 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1522 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1523 | "license": "MIT", 1524 | "dependencies": { 1525 | "@nodelib/fs.stat": "^2.0.2", 1526 | "@nodelib/fs.walk": "^1.2.3", 1527 | "glob-parent": "^5.1.2", 1528 | "merge2": "^1.3.0", 1529 | "micromatch": "^4.0.8" 1530 | }, 1531 | "engines": { 1532 | "node": ">=8.6.0" 1533 | } 1534 | }, 1535 | "node_modules/fast-glob/node_modules/glob-parent": { 1536 | "version": "5.1.2", 1537 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1538 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1539 | "license": "ISC", 1540 | "dependencies": { 1541 | "is-glob": "^4.0.1" 1542 | }, 1543 | "engines": { 1544 | "node": ">= 6" 1545 | } 1546 | }, 1547 | "node_modules/fast-json-stable-stringify": { 1548 | "version": "2.1.0", 1549 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1550 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1551 | "dev": true, 1552 | "license": "MIT" 1553 | }, 1554 | "node_modules/fast-levenshtein": { 1555 | "version": "2.0.6", 1556 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1557 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1558 | "dev": true, 1559 | "license": "MIT" 1560 | }, 1561 | "node_modules/fastq": { 1562 | "version": "1.18.0", 1563 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", 1564 | "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", 1565 | "license": "ISC", 1566 | "dependencies": { 1567 | "reusify": "^1.0.4" 1568 | } 1569 | }, 1570 | "node_modules/figures": { 1571 | "version": "6.1.0", 1572 | "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", 1573 | "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", 1574 | "dev": true, 1575 | "license": "MIT", 1576 | "dependencies": { 1577 | "is-unicode-supported": "^2.0.0" 1578 | }, 1579 | "engines": { 1580 | "node": ">=18" 1581 | }, 1582 | "funding": { 1583 | "url": "https://github.com/sponsors/sindresorhus" 1584 | } 1585 | }, 1586 | "node_modules/file-entry-cache": { 1587 | "version": "8.0.0", 1588 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1589 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1590 | "dev": true, 1591 | "license": "MIT", 1592 | "dependencies": { 1593 | "flat-cache": "^4.0.0" 1594 | }, 1595 | "engines": { 1596 | "node": ">=16.0.0" 1597 | } 1598 | }, 1599 | "node_modules/file-uri-to-path": { 1600 | "version": "1.0.0", 1601 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 1602 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 1603 | "dev": true, 1604 | "license": "MIT" 1605 | }, 1606 | "node_modules/fill-range": { 1607 | "version": "7.1.1", 1608 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1609 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1610 | "license": "MIT", 1611 | "dependencies": { 1612 | "to-regex-range": "^5.0.1" 1613 | }, 1614 | "engines": { 1615 | "node": ">=8" 1616 | } 1617 | }, 1618 | "node_modules/find-up": { 1619 | "version": "5.0.0", 1620 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1621 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1622 | "dev": true, 1623 | "license": "MIT", 1624 | "dependencies": { 1625 | "locate-path": "^6.0.0", 1626 | "path-exists": "^4.0.0" 1627 | }, 1628 | "engines": { 1629 | "node": ">=10" 1630 | }, 1631 | "funding": { 1632 | "url": "https://github.com/sponsors/sindresorhus" 1633 | } 1634 | }, 1635 | "node_modules/find-up-simple": { 1636 | "version": "1.0.0", 1637 | "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", 1638 | "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", 1639 | "dev": true, 1640 | "license": "MIT", 1641 | "engines": { 1642 | "node": ">=18" 1643 | }, 1644 | "funding": { 1645 | "url": "https://github.com/sponsors/sindresorhus" 1646 | } 1647 | }, 1648 | "node_modules/flat-cache": { 1649 | "version": "4.0.1", 1650 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1651 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1652 | "dev": true, 1653 | "license": "MIT", 1654 | "dependencies": { 1655 | "flatted": "^3.2.9", 1656 | "keyv": "^4.5.4" 1657 | }, 1658 | "engines": { 1659 | "node": ">=16" 1660 | } 1661 | }, 1662 | "node_modules/flatted": { 1663 | "version": "3.3.2", 1664 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1665 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1666 | "dev": true, 1667 | "license": "ISC" 1668 | }, 1669 | "node_modules/foreground-child": { 1670 | "version": "3.3.0", 1671 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 1672 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1673 | "dev": true, 1674 | "license": "ISC", 1675 | "dependencies": { 1676 | "cross-spawn": "^7.0.0", 1677 | "signal-exit": "^4.0.1" 1678 | }, 1679 | "engines": { 1680 | "node": ">=14" 1681 | }, 1682 | "funding": { 1683 | "url": "https://github.com/sponsors/isaacs" 1684 | } 1685 | }, 1686 | "node_modules/fs.realpath": { 1687 | "version": "1.0.0", 1688 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1689 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1690 | "dev": true, 1691 | "license": "ISC" 1692 | }, 1693 | "node_modules/get-caller-file": { 1694 | "version": "2.0.5", 1695 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1696 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1697 | "dev": true, 1698 | "license": "ISC", 1699 | "engines": { 1700 | "node": "6.* || 8.* || >= 10.*" 1701 | } 1702 | }, 1703 | "node_modules/get-east-asian-width": { 1704 | "version": "1.3.0", 1705 | "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", 1706 | "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", 1707 | "dev": true, 1708 | "license": "MIT", 1709 | "engines": { 1710 | "node": ">=18" 1711 | }, 1712 | "funding": { 1713 | "url": "https://github.com/sponsors/sindresorhus" 1714 | } 1715 | }, 1716 | "node_modules/get-stream": { 1717 | "version": "9.0.1", 1718 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", 1719 | "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", 1720 | "dev": true, 1721 | "license": "MIT", 1722 | "dependencies": { 1723 | "@sec-ant/readable-stream": "^0.4.1", 1724 | "is-stream": "^4.0.1" 1725 | }, 1726 | "engines": { 1727 | "node": ">=18" 1728 | }, 1729 | "funding": { 1730 | "url": "https://github.com/sponsors/sindresorhus" 1731 | } 1732 | }, 1733 | "node_modules/glob": { 1734 | "version": "7.2.3", 1735 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1736 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1737 | "deprecated": "Glob versions prior to v9 are no longer supported", 1738 | "dev": true, 1739 | "license": "ISC", 1740 | "dependencies": { 1741 | "fs.realpath": "^1.0.0", 1742 | "inflight": "^1.0.4", 1743 | "inherits": "2", 1744 | "minimatch": "^3.1.1", 1745 | "once": "^1.3.0", 1746 | "path-is-absolute": "^1.0.0" 1747 | }, 1748 | "engines": { 1749 | "node": "*" 1750 | }, 1751 | "funding": { 1752 | "url": "https://github.com/sponsors/isaacs" 1753 | } 1754 | }, 1755 | "node_modules/glob-parent": { 1756 | "version": "6.0.2", 1757 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1758 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1759 | "dev": true, 1760 | "license": "ISC", 1761 | "dependencies": { 1762 | "is-glob": "^4.0.3" 1763 | }, 1764 | "engines": { 1765 | "node": ">=10.13.0" 1766 | } 1767 | }, 1768 | "node_modules/globals": { 1769 | "version": "15.14.0", 1770 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.14.0.tgz", 1771 | "integrity": "sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==", 1772 | "dev": true, 1773 | "license": "MIT", 1774 | "engines": { 1775 | "node": ">=18" 1776 | }, 1777 | "funding": { 1778 | "url": "https://github.com/sponsors/sindresorhus" 1779 | } 1780 | }, 1781 | "node_modules/globby": { 1782 | "version": "14.0.2", 1783 | "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", 1784 | "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", 1785 | "dev": true, 1786 | "license": "MIT", 1787 | "dependencies": { 1788 | "@sindresorhus/merge-streams": "^2.1.0", 1789 | "fast-glob": "^3.3.2", 1790 | "ignore": "^5.2.4", 1791 | "path-type": "^5.0.0", 1792 | "slash": "^5.1.0", 1793 | "unicorn-magic": "^0.1.0" 1794 | }, 1795 | "engines": { 1796 | "node": ">=18" 1797 | }, 1798 | "funding": { 1799 | "url": "https://github.com/sponsors/sindresorhus" 1800 | } 1801 | }, 1802 | "node_modules/globby/node_modules/@sindresorhus/merge-streams": { 1803 | "version": "2.3.0", 1804 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", 1805 | "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", 1806 | "dev": true, 1807 | "license": "MIT", 1808 | "engines": { 1809 | "node": ">=18" 1810 | }, 1811 | "funding": { 1812 | "url": "https://github.com/sponsors/sindresorhus" 1813 | } 1814 | }, 1815 | "node_modules/graceful-fs": { 1816 | "version": "4.2.11", 1817 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1818 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1819 | "dev": true, 1820 | "license": "ISC" 1821 | }, 1822 | "node_modules/has-flag": { 1823 | "version": "4.0.0", 1824 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1825 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1826 | "dev": true, 1827 | "license": "MIT", 1828 | "engines": { 1829 | "node": ">=8" 1830 | } 1831 | }, 1832 | "node_modules/htmlparser2": { 1833 | "version": "10.0.0", 1834 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", 1835 | "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", 1836 | "funding": [ 1837 | "https://github.com/fb55/htmlparser2?sponsor=1", 1838 | { 1839 | "type": "github", 1840 | "url": "https://github.com/sponsors/fb55" 1841 | } 1842 | ], 1843 | "license": "MIT", 1844 | "dependencies": { 1845 | "domelementtype": "^2.3.0", 1846 | "domhandler": "^5.0.3", 1847 | "domutils": "^3.2.1", 1848 | "entities": "^6.0.0" 1849 | } 1850 | }, 1851 | "node_modules/htmlparser2/node_modules/entities": { 1852 | "version": "6.0.0", 1853 | "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", 1854 | "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", 1855 | "license": "BSD-2-Clause", 1856 | "engines": { 1857 | "node": ">=0.12" 1858 | }, 1859 | "funding": { 1860 | "url": "https://github.com/fb55/entities?sponsor=1" 1861 | } 1862 | }, 1863 | "node_modules/https-proxy-agent": { 1864 | "version": "7.0.6", 1865 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 1866 | "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 1867 | "dev": true, 1868 | "license": "MIT", 1869 | "dependencies": { 1870 | "agent-base": "^7.1.2", 1871 | "debug": "4" 1872 | }, 1873 | "engines": { 1874 | "node": ">= 14" 1875 | } 1876 | }, 1877 | "node_modules/human-signals": { 1878 | "version": "8.0.0", 1879 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz", 1880 | "integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==", 1881 | "dev": true, 1882 | "license": "Apache-2.0", 1883 | "engines": { 1884 | "node": ">=18.18.0" 1885 | } 1886 | }, 1887 | "node_modules/ignore": { 1888 | "version": "5.3.2", 1889 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1890 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1891 | "dev": true, 1892 | "license": "MIT", 1893 | "engines": { 1894 | "node": ">= 4" 1895 | } 1896 | }, 1897 | "node_modules/ignore-by-default": { 1898 | "version": "2.1.0", 1899 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-2.1.0.tgz", 1900 | "integrity": "sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==", 1901 | "dev": true, 1902 | "license": "ISC", 1903 | "engines": { 1904 | "node": ">=10 <11 || >=12 <13 || >=14" 1905 | } 1906 | }, 1907 | "node_modules/import-fresh": { 1908 | "version": "3.3.0", 1909 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1910 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1911 | "license": "MIT", 1912 | "dependencies": { 1913 | "parent-module": "^1.0.0", 1914 | "resolve-from": "^4.0.0" 1915 | }, 1916 | "engines": { 1917 | "node": ">=6" 1918 | }, 1919 | "funding": { 1920 | "url": "https://github.com/sponsors/sindresorhus" 1921 | } 1922 | }, 1923 | "node_modules/import-fresh/node_modules/resolve-from": { 1924 | "version": "4.0.0", 1925 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1926 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1927 | "license": "MIT", 1928 | "engines": { 1929 | "node": ">=4" 1930 | } 1931 | }, 1932 | "node_modules/imurmurhash": { 1933 | "version": "0.1.4", 1934 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1935 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1936 | "dev": true, 1937 | "license": "MIT", 1938 | "engines": { 1939 | "node": ">=0.8.19" 1940 | } 1941 | }, 1942 | "node_modules/indent-string": { 1943 | "version": "5.0.0", 1944 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", 1945 | "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", 1946 | "dev": true, 1947 | "license": "MIT", 1948 | "engines": { 1949 | "node": ">=12" 1950 | }, 1951 | "funding": { 1952 | "url": "https://github.com/sponsors/sindresorhus" 1953 | } 1954 | }, 1955 | "node_modules/inflight": { 1956 | "version": "1.0.6", 1957 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1958 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1959 | "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.", 1960 | "dev": true, 1961 | "license": "ISC", 1962 | "dependencies": { 1963 | "once": "^1.3.0", 1964 | "wrappy": "1" 1965 | } 1966 | }, 1967 | "node_modules/inherits": { 1968 | "version": "2.0.4", 1969 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1970 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1971 | "dev": true, 1972 | "license": "ISC" 1973 | }, 1974 | "node_modules/irregular-plurals": { 1975 | "version": "3.5.0", 1976 | "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", 1977 | "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", 1978 | "dev": true, 1979 | "license": "MIT", 1980 | "engines": { 1981 | "node": ">=8" 1982 | } 1983 | }, 1984 | "node_modules/is-arrayish": { 1985 | "version": "0.2.1", 1986 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1987 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1988 | "license": "MIT" 1989 | }, 1990 | "node_modules/is-extglob": { 1991 | "version": "2.1.1", 1992 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1993 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1994 | "license": "MIT", 1995 | "engines": { 1996 | "node": ">=0.10.0" 1997 | } 1998 | }, 1999 | "node_modules/is-fullwidth-code-point": { 2000 | "version": "4.0.0", 2001 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", 2002 | "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", 2003 | "dev": true, 2004 | "license": "MIT", 2005 | "engines": { 2006 | "node": ">=12" 2007 | }, 2008 | "funding": { 2009 | "url": "https://github.com/sponsors/sindresorhus" 2010 | } 2011 | }, 2012 | "node_modules/is-glob": { 2013 | "version": "4.0.3", 2014 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2015 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2016 | "license": "MIT", 2017 | "dependencies": { 2018 | "is-extglob": "^2.1.1" 2019 | }, 2020 | "engines": { 2021 | "node": ">=0.10.0" 2022 | } 2023 | }, 2024 | "node_modules/is-number": { 2025 | "version": "7.0.0", 2026 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2027 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2028 | "license": "MIT", 2029 | "engines": { 2030 | "node": ">=0.12.0" 2031 | } 2032 | }, 2033 | "node_modules/is-plain-obj": { 2034 | "version": "4.1.0", 2035 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 2036 | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 2037 | "dev": true, 2038 | "license": "MIT", 2039 | "engines": { 2040 | "node": ">=12" 2041 | }, 2042 | "funding": { 2043 | "url": "https://github.com/sponsors/sindresorhus" 2044 | } 2045 | }, 2046 | "node_modules/is-plain-object": { 2047 | "version": "5.0.0", 2048 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", 2049 | "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", 2050 | "dev": true, 2051 | "license": "MIT", 2052 | "engines": { 2053 | "node": ">=0.10.0" 2054 | } 2055 | }, 2056 | "node_modules/is-promise": { 2057 | "version": "4.0.0", 2058 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", 2059 | "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", 2060 | "dev": true, 2061 | "license": "MIT" 2062 | }, 2063 | "node_modules/is-stream": { 2064 | "version": "4.0.1", 2065 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", 2066 | "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", 2067 | "dev": true, 2068 | "license": "MIT", 2069 | "engines": { 2070 | "node": ">=18" 2071 | }, 2072 | "funding": { 2073 | "url": "https://github.com/sponsors/sindresorhus" 2074 | } 2075 | }, 2076 | "node_modules/is-unicode-supported": { 2077 | "version": "2.1.0", 2078 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", 2079 | "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", 2080 | "dev": true, 2081 | "license": "MIT", 2082 | "engines": { 2083 | "node": ">=18" 2084 | }, 2085 | "funding": { 2086 | "url": "https://github.com/sponsors/sindresorhus" 2087 | } 2088 | }, 2089 | "node_modules/isexe": { 2090 | "version": "2.0.0", 2091 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2092 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2093 | "dev": true, 2094 | "license": "ISC" 2095 | }, 2096 | "node_modules/jackspeak": { 2097 | "version": "3.4.3", 2098 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 2099 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 2100 | "dev": true, 2101 | "license": "BlueOak-1.0.0", 2102 | "dependencies": { 2103 | "@isaacs/cliui": "^8.0.2" 2104 | }, 2105 | "funding": { 2106 | "url": "https://github.com/sponsors/isaacs" 2107 | }, 2108 | "optionalDependencies": { 2109 | "@pkgjs/parseargs": "^0.11.0" 2110 | } 2111 | }, 2112 | "node_modules/js-string-escape": { 2113 | "version": "1.0.1", 2114 | "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", 2115 | "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==", 2116 | "dev": true, 2117 | "license": "MIT", 2118 | "engines": { 2119 | "node": ">= 0.8" 2120 | } 2121 | }, 2122 | "node_modules/js-tokens": { 2123 | "version": "4.0.0", 2124 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2125 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2126 | "license": "MIT" 2127 | }, 2128 | "node_modules/js-yaml": { 2129 | "version": "4.1.0", 2130 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2131 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2132 | "license": "MIT", 2133 | "dependencies": { 2134 | "argparse": "^2.0.1" 2135 | }, 2136 | "bin": { 2137 | "js-yaml": "bin/js-yaml.js" 2138 | } 2139 | }, 2140 | "node_modules/js2xmlparser": { 2141 | "version": "5.0.0", 2142 | "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-5.0.0.tgz", 2143 | "integrity": "sha512-ckXs0Fzd6icWurbeAXuqo+3Mhq2m8pOPygsQjTPh8K5UWgKaUgDSHrdDxAfexmT11xvBKOQ6sgYwPkYc5RW/bg==", 2144 | "license": "Apache-2.0", 2145 | "dependencies": { 2146 | "xmlcreate": "^2.0.4" 2147 | } 2148 | }, 2149 | "node_modules/json-buffer": { 2150 | "version": "3.0.1", 2151 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2152 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2153 | "dev": true, 2154 | "license": "MIT" 2155 | }, 2156 | "node_modules/json-parse-even-better-errors": { 2157 | "version": "2.3.1", 2158 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2159 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2160 | "license": "MIT" 2161 | }, 2162 | "node_modules/json-schema-traverse": { 2163 | "version": "0.4.1", 2164 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2165 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2166 | "dev": true, 2167 | "license": "MIT" 2168 | }, 2169 | "node_modules/json-stable-stringify-without-jsonify": { 2170 | "version": "1.0.1", 2171 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2172 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2173 | "dev": true, 2174 | "license": "MIT" 2175 | }, 2176 | "node_modules/keyv": { 2177 | "version": "4.5.4", 2178 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2179 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2180 | "dev": true, 2181 | "license": "MIT", 2182 | "dependencies": { 2183 | "json-buffer": "3.0.1" 2184 | } 2185 | }, 2186 | "node_modules/levn": { 2187 | "version": "0.4.1", 2188 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2189 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2190 | "dev": true, 2191 | "license": "MIT", 2192 | "dependencies": { 2193 | "prelude-ls": "^1.2.1", 2194 | "type-check": "~0.4.0" 2195 | }, 2196 | "engines": { 2197 | "node": ">= 0.8.0" 2198 | } 2199 | }, 2200 | "node_modules/lines-and-columns": { 2201 | "version": "1.2.4", 2202 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2203 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2204 | "license": "MIT" 2205 | }, 2206 | "node_modules/load-json-file": { 2207 | "version": "7.0.1", 2208 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", 2209 | "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", 2210 | "dev": true, 2211 | "license": "MIT", 2212 | "engines": { 2213 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2214 | }, 2215 | "funding": { 2216 | "url": "https://github.com/sponsors/sindresorhus" 2217 | } 2218 | }, 2219 | "node_modules/locate-path": { 2220 | "version": "6.0.0", 2221 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2222 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2223 | "dev": true, 2224 | "license": "MIT", 2225 | "dependencies": { 2226 | "p-locate": "^5.0.0" 2227 | }, 2228 | "engines": { 2229 | "node": ">=10" 2230 | }, 2231 | "funding": { 2232 | "url": "https://github.com/sponsors/sindresorhus" 2233 | } 2234 | }, 2235 | "node_modules/lodash": { 2236 | "version": "4.17.21", 2237 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2238 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2239 | "dev": true, 2240 | "license": "MIT" 2241 | }, 2242 | "node_modules/lodash.merge": { 2243 | "version": "4.6.2", 2244 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2245 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2246 | "dev": true, 2247 | "license": "MIT" 2248 | }, 2249 | "node_modules/lru-cache": { 2250 | "version": "10.4.3", 2251 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2252 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 2253 | "dev": true, 2254 | "license": "ISC" 2255 | }, 2256 | "node_modules/matcher": { 2257 | "version": "5.0.0", 2258 | "resolved": "https://registry.npmjs.org/matcher/-/matcher-5.0.0.tgz", 2259 | "integrity": "sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==", 2260 | "dev": true, 2261 | "license": "MIT", 2262 | "dependencies": { 2263 | "escape-string-regexp": "^5.0.0" 2264 | }, 2265 | "engines": { 2266 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2267 | }, 2268 | "funding": { 2269 | "url": "https://github.com/sponsors/sindresorhus" 2270 | } 2271 | }, 2272 | "node_modules/matcher/node_modules/escape-string-regexp": { 2273 | "version": "5.0.0", 2274 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", 2275 | "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", 2276 | "dev": true, 2277 | "license": "MIT", 2278 | "engines": { 2279 | "node": ">=12" 2280 | }, 2281 | "funding": { 2282 | "url": "https://github.com/sponsors/sindresorhus" 2283 | } 2284 | }, 2285 | "node_modules/md5-hex": { 2286 | "version": "3.0.1", 2287 | "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", 2288 | "integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", 2289 | "dev": true, 2290 | "license": "MIT", 2291 | "dependencies": { 2292 | "blueimp-md5": "^2.10.0" 2293 | }, 2294 | "engines": { 2295 | "node": ">=8" 2296 | } 2297 | }, 2298 | "node_modules/memoize": { 2299 | "version": "10.0.0", 2300 | "resolved": "https://registry.npmjs.org/memoize/-/memoize-10.0.0.tgz", 2301 | "integrity": "sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==", 2302 | "dev": true, 2303 | "license": "MIT", 2304 | "dependencies": { 2305 | "mimic-function": "^5.0.0" 2306 | }, 2307 | "engines": { 2308 | "node": ">=18" 2309 | }, 2310 | "funding": { 2311 | "url": "https://github.com/sindresorhus/memoize?sponsor=1" 2312 | } 2313 | }, 2314 | "node_modules/merge2": { 2315 | "version": "1.4.1", 2316 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2317 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2318 | "license": "MIT", 2319 | "engines": { 2320 | "node": ">= 8" 2321 | } 2322 | }, 2323 | "node_modules/micromatch": { 2324 | "version": "4.0.8", 2325 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2326 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2327 | "license": "MIT", 2328 | "dependencies": { 2329 | "braces": "^3.0.3", 2330 | "picomatch": "^2.3.1" 2331 | }, 2332 | "engines": { 2333 | "node": ">=8.6" 2334 | } 2335 | }, 2336 | "node_modules/micromatch/node_modules/picomatch": { 2337 | "version": "2.3.1", 2338 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2339 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2340 | "license": "MIT", 2341 | "engines": { 2342 | "node": ">=8.6" 2343 | }, 2344 | "funding": { 2345 | "url": "https://github.com/sponsors/jonschlinkert" 2346 | } 2347 | }, 2348 | "node_modules/mimic-function": { 2349 | "version": "5.0.1", 2350 | "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", 2351 | "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", 2352 | "dev": true, 2353 | "license": "MIT", 2354 | "engines": { 2355 | "node": ">=18" 2356 | }, 2357 | "funding": { 2358 | "url": "https://github.com/sponsors/sindresorhus" 2359 | } 2360 | }, 2361 | "node_modules/minimatch": { 2362 | "version": "3.1.2", 2363 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2364 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2365 | "dev": true, 2366 | "license": "ISC", 2367 | "dependencies": { 2368 | "brace-expansion": "^1.1.7" 2369 | }, 2370 | "engines": { 2371 | "node": "*" 2372 | } 2373 | }, 2374 | "node_modules/minipass": { 2375 | "version": "7.1.2", 2376 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2377 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2378 | "dev": true, 2379 | "license": "ISC", 2380 | "engines": { 2381 | "node": ">=16 || 14 >=14.17" 2382 | } 2383 | }, 2384 | "node_modules/minizlib": { 2385 | "version": "3.0.1", 2386 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", 2387 | "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", 2388 | "dev": true, 2389 | "license": "MIT", 2390 | "dependencies": { 2391 | "minipass": "^7.0.4", 2392 | "rimraf": "^5.0.5" 2393 | }, 2394 | "engines": { 2395 | "node": ">= 18" 2396 | } 2397 | }, 2398 | "node_modules/mkdirp": { 2399 | "version": "3.0.1", 2400 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", 2401 | "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", 2402 | "dev": true, 2403 | "license": "MIT", 2404 | "bin": { 2405 | "mkdirp": "dist/cjs/src/bin.js" 2406 | }, 2407 | "engines": { 2408 | "node": ">=10" 2409 | }, 2410 | "funding": { 2411 | "url": "https://github.com/sponsors/isaacs" 2412 | } 2413 | }, 2414 | "node_modules/ms": { 2415 | "version": "2.1.3", 2416 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2417 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2418 | "dev": true, 2419 | "license": "MIT" 2420 | }, 2421 | "node_modules/natural-compare": { 2422 | "version": "1.4.0", 2423 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2424 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2425 | "dev": true, 2426 | "license": "MIT" 2427 | }, 2428 | "node_modules/node-fetch": { 2429 | "version": "2.7.0", 2430 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2431 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2432 | "dev": true, 2433 | "license": "MIT", 2434 | "dependencies": { 2435 | "whatwg-url": "^5.0.0" 2436 | }, 2437 | "engines": { 2438 | "node": "4.x || >=6.0.0" 2439 | }, 2440 | "peerDependencies": { 2441 | "encoding": "^0.1.0" 2442 | }, 2443 | "peerDependenciesMeta": { 2444 | "encoding": { 2445 | "optional": true 2446 | } 2447 | } 2448 | }, 2449 | "node_modules/node-gyp-build": { 2450 | "version": "4.8.4", 2451 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", 2452 | "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", 2453 | "dev": true, 2454 | "license": "MIT", 2455 | "bin": { 2456 | "node-gyp-build": "bin.js", 2457 | "node-gyp-build-optional": "optional.js", 2458 | "node-gyp-build-test": "build-test.js" 2459 | } 2460 | }, 2461 | "node_modules/nofilter": { 2462 | "version": "3.1.0", 2463 | "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", 2464 | "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", 2465 | "dev": true, 2466 | "license": "MIT", 2467 | "engines": { 2468 | "node": ">=12.19" 2469 | } 2470 | }, 2471 | "node_modules/nopt": { 2472 | "version": "8.1.0", 2473 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", 2474 | "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", 2475 | "dev": true, 2476 | "license": "ISC", 2477 | "dependencies": { 2478 | "abbrev": "^3.0.0" 2479 | }, 2480 | "bin": { 2481 | "nopt": "bin/nopt.js" 2482 | }, 2483 | "engines": { 2484 | "node": "^18.17.0 || >=20.5.0" 2485 | } 2486 | }, 2487 | "node_modules/npm-run-path": { 2488 | "version": "6.0.0", 2489 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", 2490 | "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", 2491 | "dev": true, 2492 | "license": "MIT", 2493 | "dependencies": { 2494 | "path-key": "^4.0.0", 2495 | "unicorn-magic": "^0.3.0" 2496 | }, 2497 | "engines": { 2498 | "node": ">=18" 2499 | }, 2500 | "funding": { 2501 | "url": "https://github.com/sponsors/sindresorhus" 2502 | } 2503 | }, 2504 | "node_modules/npm-run-path/node_modules/path-key": { 2505 | "version": "4.0.0", 2506 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 2507 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 2508 | "dev": true, 2509 | "license": "MIT", 2510 | "engines": { 2511 | "node": ">=12" 2512 | }, 2513 | "funding": { 2514 | "url": "https://github.com/sponsors/sindresorhus" 2515 | } 2516 | }, 2517 | "node_modules/npm-run-path/node_modules/unicorn-magic": { 2518 | "version": "0.3.0", 2519 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", 2520 | "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", 2521 | "dev": true, 2522 | "license": "MIT", 2523 | "engines": { 2524 | "node": ">=18" 2525 | }, 2526 | "funding": { 2527 | "url": "https://github.com/sponsors/sindresorhus" 2528 | } 2529 | }, 2530 | "node_modules/once": { 2531 | "version": "1.4.0", 2532 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2533 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2534 | "dev": true, 2535 | "license": "ISC", 2536 | "dependencies": { 2537 | "wrappy": "1" 2538 | } 2539 | }, 2540 | "node_modules/optionator": { 2541 | "version": "0.9.4", 2542 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2543 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2544 | "dev": true, 2545 | "license": "MIT", 2546 | "dependencies": { 2547 | "deep-is": "^0.1.3", 2548 | "fast-levenshtein": "^2.0.6", 2549 | "levn": "^0.4.1", 2550 | "prelude-ls": "^1.2.1", 2551 | "type-check": "^0.4.0", 2552 | "word-wrap": "^1.2.5" 2553 | }, 2554 | "engines": { 2555 | "node": ">= 0.8.0" 2556 | } 2557 | }, 2558 | "node_modules/p-limit": { 2559 | "version": "3.1.0", 2560 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2561 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2562 | "dev": true, 2563 | "license": "MIT", 2564 | "dependencies": { 2565 | "yocto-queue": "^0.1.0" 2566 | }, 2567 | "engines": { 2568 | "node": ">=10" 2569 | }, 2570 | "funding": { 2571 | "url": "https://github.com/sponsors/sindresorhus" 2572 | } 2573 | }, 2574 | "node_modules/p-locate": { 2575 | "version": "5.0.0", 2576 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2577 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2578 | "dev": true, 2579 | "license": "MIT", 2580 | "dependencies": { 2581 | "p-limit": "^3.0.2" 2582 | }, 2583 | "engines": { 2584 | "node": ">=10" 2585 | }, 2586 | "funding": { 2587 | "url": "https://github.com/sponsors/sindresorhus" 2588 | } 2589 | }, 2590 | "node_modules/p-map": { 2591 | "version": "7.0.3", 2592 | "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", 2593 | "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", 2594 | "dev": true, 2595 | "license": "MIT", 2596 | "engines": { 2597 | "node": ">=18" 2598 | }, 2599 | "funding": { 2600 | "url": "https://github.com/sponsors/sindresorhus" 2601 | } 2602 | }, 2603 | "node_modules/package-config": { 2604 | "version": "5.0.0", 2605 | "resolved": "https://registry.npmjs.org/package-config/-/package-config-5.0.0.tgz", 2606 | "integrity": "sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==", 2607 | "dev": true, 2608 | "license": "MIT", 2609 | "dependencies": { 2610 | "find-up-simple": "^1.0.0", 2611 | "load-json-file": "^7.0.1" 2612 | }, 2613 | "engines": { 2614 | "node": ">=18" 2615 | }, 2616 | "funding": { 2617 | "url": "https://github.com/sponsors/sindresorhus" 2618 | } 2619 | }, 2620 | "node_modules/package-json-from-dist": { 2621 | "version": "1.0.1", 2622 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2623 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 2624 | "dev": true, 2625 | "license": "BlueOak-1.0.0" 2626 | }, 2627 | "node_modules/parent-module": { 2628 | "version": "1.0.1", 2629 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2630 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2631 | "license": "MIT", 2632 | "dependencies": { 2633 | "callsites": "^3.0.0" 2634 | }, 2635 | "engines": { 2636 | "node": ">=6" 2637 | } 2638 | }, 2639 | "node_modules/parent-module/node_modules/callsites": { 2640 | "version": "3.1.0", 2641 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2642 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2643 | "license": "MIT", 2644 | "engines": { 2645 | "node": ">=6" 2646 | } 2647 | }, 2648 | "node_modules/parse-json": { 2649 | "version": "5.2.0", 2650 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 2651 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 2652 | "license": "MIT", 2653 | "dependencies": { 2654 | "@babel/code-frame": "^7.0.0", 2655 | "error-ex": "^1.3.1", 2656 | "json-parse-even-better-errors": "^2.3.0", 2657 | "lines-and-columns": "^1.1.6" 2658 | }, 2659 | "engines": { 2660 | "node": ">=8" 2661 | }, 2662 | "funding": { 2663 | "url": "https://github.com/sponsors/sindresorhus" 2664 | } 2665 | }, 2666 | "node_modules/parse-ms": { 2667 | "version": "4.0.0", 2668 | "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", 2669 | "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", 2670 | "dev": true, 2671 | "license": "MIT", 2672 | "engines": { 2673 | "node": ">=18" 2674 | }, 2675 | "funding": { 2676 | "url": "https://github.com/sponsors/sindresorhus" 2677 | } 2678 | }, 2679 | "node_modules/path-exists": { 2680 | "version": "4.0.0", 2681 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2682 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2683 | "dev": true, 2684 | "license": "MIT", 2685 | "engines": { 2686 | "node": ">=8" 2687 | } 2688 | }, 2689 | "node_modules/path-is-absolute": { 2690 | "version": "1.0.1", 2691 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2692 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2693 | "dev": true, 2694 | "license": "MIT", 2695 | "engines": { 2696 | "node": ">=0.10.0" 2697 | } 2698 | }, 2699 | "node_modules/path-key": { 2700 | "version": "3.1.1", 2701 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2702 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2703 | "dev": true, 2704 | "license": "MIT", 2705 | "engines": { 2706 | "node": ">=8" 2707 | } 2708 | }, 2709 | "node_modules/path-scurry": { 2710 | "version": "1.11.1", 2711 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2712 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2713 | "dev": true, 2714 | "license": "BlueOak-1.0.0", 2715 | "dependencies": { 2716 | "lru-cache": "^10.2.0", 2717 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2718 | }, 2719 | "engines": { 2720 | "node": ">=16 || 14 >=14.18" 2721 | }, 2722 | "funding": { 2723 | "url": "https://github.com/sponsors/isaacs" 2724 | } 2725 | }, 2726 | "node_modules/path-type": { 2727 | "version": "5.0.0", 2728 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", 2729 | "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", 2730 | "dev": true, 2731 | "license": "MIT", 2732 | "engines": { 2733 | "node": ">=12" 2734 | }, 2735 | "funding": { 2736 | "url": "https://github.com/sponsors/sindresorhus" 2737 | } 2738 | }, 2739 | "node_modules/picocolors": { 2740 | "version": "1.1.1", 2741 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2742 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2743 | "license": "ISC" 2744 | }, 2745 | "node_modules/picomatch": { 2746 | "version": "4.0.2", 2747 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 2748 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 2749 | "dev": true, 2750 | "license": "MIT", 2751 | "engines": { 2752 | "node": ">=12" 2753 | }, 2754 | "funding": { 2755 | "url": "https://github.com/sponsors/jonschlinkert" 2756 | } 2757 | }, 2758 | "node_modules/plur": { 2759 | "version": "5.1.0", 2760 | "resolved": "https://registry.npmjs.org/plur/-/plur-5.1.0.tgz", 2761 | "integrity": "sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==", 2762 | "dev": true, 2763 | "license": "MIT", 2764 | "dependencies": { 2765 | "irregular-plurals": "^3.3.0" 2766 | }, 2767 | "engines": { 2768 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2769 | }, 2770 | "funding": { 2771 | "url": "https://github.com/sponsors/sindresorhus" 2772 | } 2773 | }, 2774 | "node_modules/prelude-ls": { 2775 | "version": "1.2.1", 2776 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2777 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2778 | "dev": true, 2779 | "license": "MIT", 2780 | "engines": { 2781 | "node": ">= 0.8.0" 2782 | } 2783 | }, 2784 | "node_modules/prettier": { 2785 | "version": "3.4.2", 2786 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", 2787 | "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", 2788 | "dev": true, 2789 | "license": "MIT", 2790 | "bin": { 2791 | "prettier": "bin/prettier.cjs" 2792 | }, 2793 | "engines": { 2794 | "node": ">=14" 2795 | }, 2796 | "funding": { 2797 | "url": "https://github.com/prettier/prettier?sponsor=1" 2798 | } 2799 | }, 2800 | "node_modules/pretty-ms": { 2801 | "version": "9.2.0", 2802 | "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", 2803 | "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", 2804 | "dev": true, 2805 | "license": "MIT", 2806 | "dependencies": { 2807 | "parse-ms": "^4.0.0" 2808 | }, 2809 | "engines": { 2810 | "node": ">=18" 2811 | }, 2812 | "funding": { 2813 | "url": "https://github.com/sponsors/sindresorhus" 2814 | } 2815 | }, 2816 | "node_modules/punycode": { 2817 | "version": "2.3.1", 2818 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2819 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2820 | "dev": true, 2821 | "license": "MIT", 2822 | "engines": { 2823 | "node": ">=6" 2824 | } 2825 | }, 2826 | "node_modules/queue-microtask": { 2827 | "version": "1.2.3", 2828 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2829 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2830 | "funding": [ 2831 | { 2832 | "type": "github", 2833 | "url": "https://github.com/sponsors/feross" 2834 | }, 2835 | { 2836 | "type": "patreon", 2837 | "url": "https://www.patreon.com/feross" 2838 | }, 2839 | { 2840 | "type": "consulting", 2841 | "url": "https://feross.org/support" 2842 | } 2843 | ], 2844 | "license": "MIT" 2845 | }, 2846 | "node_modules/require-directory": { 2847 | "version": "2.1.1", 2848 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2849 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2850 | "dev": true, 2851 | "license": "MIT", 2852 | "engines": { 2853 | "node": ">=0.10.0" 2854 | } 2855 | }, 2856 | "node_modules/resolve-cwd": { 2857 | "version": "3.0.0", 2858 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 2859 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 2860 | "dev": true, 2861 | "license": "MIT", 2862 | "dependencies": { 2863 | "resolve-from": "^5.0.0" 2864 | }, 2865 | "engines": { 2866 | "node": ">=8" 2867 | } 2868 | }, 2869 | "node_modules/resolve-from": { 2870 | "version": "5.0.0", 2871 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 2872 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 2873 | "dev": true, 2874 | "license": "MIT", 2875 | "engines": { 2876 | "node": ">=8" 2877 | } 2878 | }, 2879 | "node_modules/reusify": { 2880 | "version": "1.0.4", 2881 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2882 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2883 | "license": "MIT", 2884 | "engines": { 2885 | "iojs": ">=1.0.0", 2886 | "node": ">=0.10.0" 2887 | } 2888 | }, 2889 | "node_modules/rimraf": { 2890 | "version": "5.0.10", 2891 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", 2892 | "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", 2893 | "dev": true, 2894 | "license": "ISC", 2895 | "dependencies": { 2896 | "glob": "^10.3.7" 2897 | }, 2898 | "bin": { 2899 | "rimraf": "dist/esm/bin.mjs" 2900 | }, 2901 | "funding": { 2902 | "url": "https://github.com/sponsors/isaacs" 2903 | } 2904 | }, 2905 | "node_modules/rimraf/node_modules/brace-expansion": { 2906 | "version": "2.0.1", 2907 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2908 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2909 | "dev": true, 2910 | "license": "MIT", 2911 | "dependencies": { 2912 | "balanced-match": "^1.0.0" 2913 | } 2914 | }, 2915 | "node_modules/rimraf/node_modules/glob": { 2916 | "version": "10.4.5", 2917 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 2918 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 2919 | "dev": true, 2920 | "license": "ISC", 2921 | "dependencies": { 2922 | "foreground-child": "^3.1.0", 2923 | "jackspeak": "^3.1.2", 2924 | "minimatch": "^9.0.4", 2925 | "minipass": "^7.1.2", 2926 | "package-json-from-dist": "^1.0.0", 2927 | "path-scurry": "^1.11.1" 2928 | }, 2929 | "bin": { 2930 | "glob": "dist/esm/bin.mjs" 2931 | }, 2932 | "funding": { 2933 | "url": "https://github.com/sponsors/isaacs" 2934 | } 2935 | }, 2936 | "node_modules/rimraf/node_modules/minimatch": { 2937 | "version": "9.0.5", 2938 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2939 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2940 | "dev": true, 2941 | "license": "ISC", 2942 | "dependencies": { 2943 | "brace-expansion": "^2.0.1" 2944 | }, 2945 | "engines": { 2946 | "node": ">=16 || 14 >=14.17" 2947 | }, 2948 | "funding": { 2949 | "url": "https://github.com/sponsors/isaacs" 2950 | } 2951 | }, 2952 | "node_modules/run-parallel": { 2953 | "version": "1.2.0", 2954 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2955 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2956 | "funding": [ 2957 | { 2958 | "type": "github", 2959 | "url": "https://github.com/sponsors/feross" 2960 | }, 2961 | { 2962 | "type": "patreon", 2963 | "url": "https://www.patreon.com/feross" 2964 | }, 2965 | { 2966 | "type": "consulting", 2967 | "url": "https://feross.org/support" 2968 | } 2969 | ], 2970 | "license": "MIT", 2971 | "dependencies": { 2972 | "queue-microtask": "^1.2.2" 2973 | } 2974 | }, 2975 | "node_modules/semver": { 2976 | "version": "7.6.3", 2977 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2978 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2979 | "dev": true, 2980 | "license": "ISC", 2981 | "bin": { 2982 | "semver": "bin/semver.js" 2983 | }, 2984 | "engines": { 2985 | "node": ">=10" 2986 | } 2987 | }, 2988 | "node_modules/serialize-error": { 2989 | "version": "7.0.1", 2990 | "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", 2991 | "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", 2992 | "dev": true, 2993 | "license": "MIT", 2994 | "dependencies": { 2995 | "type-fest": "^0.13.1" 2996 | }, 2997 | "engines": { 2998 | "node": ">=10" 2999 | }, 3000 | "funding": { 3001 | "url": "https://github.com/sponsors/sindresorhus" 3002 | } 3003 | }, 3004 | "node_modules/shebang-command": { 3005 | "version": "2.0.0", 3006 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3007 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3008 | "dev": true, 3009 | "license": "MIT", 3010 | "dependencies": { 3011 | "shebang-regex": "^3.0.0" 3012 | }, 3013 | "engines": { 3014 | "node": ">=8" 3015 | } 3016 | }, 3017 | "node_modules/shebang-regex": { 3018 | "version": "3.0.0", 3019 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3020 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3021 | "dev": true, 3022 | "license": "MIT", 3023 | "engines": { 3024 | "node": ">=8" 3025 | } 3026 | }, 3027 | "node_modules/signal-exit": { 3028 | "version": "4.1.0", 3029 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3030 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3031 | "dev": true, 3032 | "license": "ISC", 3033 | "engines": { 3034 | "node": ">=14" 3035 | }, 3036 | "funding": { 3037 | "url": "https://github.com/sponsors/isaacs" 3038 | } 3039 | }, 3040 | "node_modules/slash": { 3041 | "version": "5.1.0", 3042 | "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 3043 | "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 3044 | "dev": true, 3045 | "license": "MIT", 3046 | "engines": { 3047 | "node": ">=14.16" 3048 | }, 3049 | "funding": { 3050 | "url": "https://github.com/sponsors/sindresorhus" 3051 | } 3052 | }, 3053 | "node_modules/slice-ansi": { 3054 | "version": "5.0.0", 3055 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", 3056 | "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", 3057 | "dev": true, 3058 | "license": "MIT", 3059 | "dependencies": { 3060 | "ansi-styles": "^6.0.0", 3061 | "is-fullwidth-code-point": "^4.0.0" 3062 | }, 3063 | "engines": { 3064 | "node": ">=12" 3065 | }, 3066 | "funding": { 3067 | "url": "https://github.com/chalk/slice-ansi?sponsor=1" 3068 | } 3069 | }, 3070 | "node_modules/sprintf-js": { 3071 | "version": "1.0.3", 3072 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3073 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3074 | "dev": true, 3075 | "license": "BSD-3-Clause" 3076 | }, 3077 | "node_modules/stack-utils": { 3078 | "version": "2.0.6", 3079 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3080 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3081 | "dev": true, 3082 | "license": "MIT", 3083 | "dependencies": { 3084 | "escape-string-regexp": "^2.0.0" 3085 | }, 3086 | "engines": { 3087 | "node": ">=10" 3088 | } 3089 | }, 3090 | "node_modules/stack-utils/node_modules/escape-string-regexp": { 3091 | "version": "2.0.0", 3092 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 3093 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 3094 | "dev": true, 3095 | "license": "MIT", 3096 | "engines": { 3097 | "node": ">=8" 3098 | } 3099 | }, 3100 | "node_modules/string-width": { 3101 | "version": "7.2.0", 3102 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", 3103 | "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", 3104 | "dev": true, 3105 | "license": "MIT", 3106 | "dependencies": { 3107 | "emoji-regex": "^10.3.0", 3108 | "get-east-asian-width": "^1.0.0", 3109 | "strip-ansi": "^7.1.0" 3110 | }, 3111 | "engines": { 3112 | "node": ">=18" 3113 | }, 3114 | "funding": { 3115 | "url": "https://github.com/sponsors/sindresorhus" 3116 | } 3117 | }, 3118 | "node_modules/string-width-cjs": { 3119 | "name": "string-width", 3120 | "version": "4.2.3", 3121 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3122 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3123 | "dev": true, 3124 | "license": "MIT", 3125 | "dependencies": { 3126 | "emoji-regex": "^8.0.0", 3127 | "is-fullwidth-code-point": "^3.0.0", 3128 | "strip-ansi": "^6.0.1" 3129 | }, 3130 | "engines": { 3131 | "node": ">=8" 3132 | } 3133 | }, 3134 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 3135 | "version": "5.0.1", 3136 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3137 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3138 | "dev": true, 3139 | "license": "MIT", 3140 | "engines": { 3141 | "node": ">=8" 3142 | } 3143 | }, 3144 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3145 | "version": "8.0.0", 3146 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3147 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3148 | "dev": true, 3149 | "license": "MIT" 3150 | }, 3151 | "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { 3152 | "version": "3.0.0", 3153 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3154 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3155 | "dev": true, 3156 | "license": "MIT", 3157 | "engines": { 3158 | "node": ">=8" 3159 | } 3160 | }, 3161 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 3162 | "version": "6.0.1", 3163 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3164 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3165 | "dev": true, 3166 | "license": "MIT", 3167 | "dependencies": { 3168 | "ansi-regex": "^5.0.1" 3169 | }, 3170 | "engines": { 3171 | "node": ">=8" 3172 | } 3173 | }, 3174 | "node_modules/strip-ansi": { 3175 | "version": "7.1.0", 3176 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3177 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3178 | "dev": true, 3179 | "license": "MIT", 3180 | "dependencies": { 3181 | "ansi-regex": "^6.0.1" 3182 | }, 3183 | "engines": { 3184 | "node": ">=12" 3185 | }, 3186 | "funding": { 3187 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3188 | } 3189 | }, 3190 | "node_modules/strip-ansi-cjs": { 3191 | "name": "strip-ansi", 3192 | "version": "6.0.1", 3193 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3194 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3195 | "dev": true, 3196 | "license": "MIT", 3197 | "dependencies": { 3198 | "ansi-regex": "^5.0.1" 3199 | }, 3200 | "engines": { 3201 | "node": ">=8" 3202 | } 3203 | }, 3204 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3205 | "version": "5.0.1", 3206 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3207 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3208 | "dev": true, 3209 | "license": "MIT", 3210 | "engines": { 3211 | "node": ">=8" 3212 | } 3213 | }, 3214 | "node_modules/strip-final-newline": { 3215 | "version": "4.0.0", 3216 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", 3217 | "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", 3218 | "dev": true, 3219 | "license": "MIT", 3220 | "engines": { 3221 | "node": ">=18" 3222 | }, 3223 | "funding": { 3224 | "url": "https://github.com/sponsors/sindresorhus" 3225 | } 3226 | }, 3227 | "node_modules/strip-json-comments": { 3228 | "version": "3.1.1", 3229 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3230 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3231 | "dev": true, 3232 | "license": "MIT", 3233 | "engines": { 3234 | "node": ">=8" 3235 | }, 3236 | "funding": { 3237 | "url": "https://github.com/sponsors/sindresorhus" 3238 | } 3239 | }, 3240 | "node_modules/supertap": { 3241 | "version": "3.0.1", 3242 | "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", 3243 | "integrity": "sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==", 3244 | "dev": true, 3245 | "license": "MIT", 3246 | "dependencies": { 3247 | "indent-string": "^5.0.0", 3248 | "js-yaml": "^3.14.1", 3249 | "serialize-error": "^7.0.1", 3250 | "strip-ansi": "^7.0.1" 3251 | }, 3252 | "engines": { 3253 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3254 | } 3255 | }, 3256 | "node_modules/supertap/node_modules/argparse": { 3257 | "version": "1.0.10", 3258 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 3259 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 3260 | "dev": true, 3261 | "license": "MIT", 3262 | "dependencies": { 3263 | "sprintf-js": "~1.0.2" 3264 | } 3265 | }, 3266 | "node_modules/supertap/node_modules/js-yaml": { 3267 | "version": "3.14.1", 3268 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 3269 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 3270 | "dev": true, 3271 | "license": "MIT", 3272 | "dependencies": { 3273 | "argparse": "^1.0.7", 3274 | "esprima": "^4.0.0" 3275 | }, 3276 | "bin": { 3277 | "js-yaml": "bin/js-yaml.js" 3278 | } 3279 | }, 3280 | "node_modules/supports-color": { 3281 | "version": "7.2.0", 3282 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3283 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3284 | "dev": true, 3285 | "license": "MIT", 3286 | "dependencies": { 3287 | "has-flag": "^4.0.0" 3288 | }, 3289 | "engines": { 3290 | "node": ">=8" 3291 | } 3292 | }, 3293 | "node_modules/tar": { 3294 | "version": "7.4.3", 3295 | "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", 3296 | "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", 3297 | "dev": true, 3298 | "license": "ISC", 3299 | "dependencies": { 3300 | "@isaacs/fs-minipass": "^4.0.0", 3301 | "chownr": "^3.0.0", 3302 | "minipass": "^7.1.2", 3303 | "minizlib": "^3.0.1", 3304 | "mkdirp": "^3.0.1", 3305 | "yallist": "^5.0.0" 3306 | }, 3307 | "engines": { 3308 | "node": ">=18" 3309 | } 3310 | }, 3311 | "node_modules/temp-dir": { 3312 | "version": "3.0.0", 3313 | "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", 3314 | "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", 3315 | "dev": true, 3316 | "license": "MIT", 3317 | "engines": { 3318 | "node": ">=14.16" 3319 | } 3320 | }, 3321 | "node_modules/time-zone": { 3322 | "version": "1.0.0", 3323 | "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", 3324 | "integrity": "sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==", 3325 | "dev": true, 3326 | "license": "MIT", 3327 | "engines": { 3328 | "node": ">=4" 3329 | } 3330 | }, 3331 | "node_modules/tiny-async-pool": { 3332 | "version": "2.1.0", 3333 | "resolved": "https://registry.npmjs.org/tiny-async-pool/-/tiny-async-pool-2.1.0.tgz", 3334 | "integrity": "sha512-ltAHPh/9k0STRQqaoUX52NH4ZQYAJz24ZAEwf1Zm+HYg3l9OXTWeqWKyYsHu40wF/F0rxd2N2bk5sLvX2qlSvg==", 3335 | "license": "MIT" 3336 | }, 3337 | "node_modules/to-regex-range": { 3338 | "version": "5.0.1", 3339 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3340 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3341 | "license": "MIT", 3342 | "dependencies": { 3343 | "is-number": "^7.0.0" 3344 | }, 3345 | "engines": { 3346 | "node": ">=8.0" 3347 | } 3348 | }, 3349 | "node_modules/tr46": { 3350 | "version": "0.0.3", 3351 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3352 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 3353 | "dev": true, 3354 | "license": "MIT" 3355 | }, 3356 | "node_modules/type-check": { 3357 | "version": "0.4.0", 3358 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3359 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3360 | "dev": true, 3361 | "license": "MIT", 3362 | "dependencies": { 3363 | "prelude-ls": "^1.2.1" 3364 | }, 3365 | "engines": { 3366 | "node": ">= 0.8.0" 3367 | } 3368 | }, 3369 | "node_modules/type-fest": { 3370 | "version": "0.13.1", 3371 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", 3372 | "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", 3373 | "dev": true, 3374 | "license": "(MIT OR CC0-1.0)", 3375 | "engines": { 3376 | "node": ">=10" 3377 | }, 3378 | "funding": { 3379 | "url": "https://github.com/sponsors/sindresorhus" 3380 | } 3381 | }, 3382 | "node_modules/unicorn-magic": { 3383 | "version": "0.1.0", 3384 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 3385 | "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 3386 | "dev": true, 3387 | "license": "MIT", 3388 | "engines": { 3389 | "node": ">=18" 3390 | }, 3391 | "funding": { 3392 | "url": "https://github.com/sponsors/sindresorhus" 3393 | } 3394 | }, 3395 | "node_modules/uri-js": { 3396 | "version": "4.4.1", 3397 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3398 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3399 | "dev": true, 3400 | "license": "BSD-2-Clause", 3401 | "dependencies": { 3402 | "punycode": "^2.1.0" 3403 | } 3404 | }, 3405 | "node_modules/webidl-conversions": { 3406 | "version": "3.0.1", 3407 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3408 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3409 | "dev": true, 3410 | "license": "BSD-2-Clause" 3411 | }, 3412 | "node_modules/well-known-symbols": { 3413 | "version": "2.0.0", 3414 | "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", 3415 | "integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", 3416 | "dev": true, 3417 | "license": "ISC", 3418 | "engines": { 3419 | "node": ">=6" 3420 | } 3421 | }, 3422 | "node_modules/whatwg-url": { 3423 | "version": "5.0.0", 3424 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3425 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3426 | "dev": true, 3427 | "license": "MIT", 3428 | "dependencies": { 3429 | "tr46": "~0.0.3", 3430 | "webidl-conversions": "^3.0.0" 3431 | } 3432 | }, 3433 | "node_modules/which": { 3434 | "version": "2.0.2", 3435 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3436 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3437 | "dev": true, 3438 | "license": "ISC", 3439 | "dependencies": { 3440 | "isexe": "^2.0.0" 3441 | }, 3442 | "bin": { 3443 | "node-which": "bin/node-which" 3444 | }, 3445 | "engines": { 3446 | "node": ">= 8" 3447 | } 3448 | }, 3449 | "node_modules/word-wrap": { 3450 | "version": "1.2.5", 3451 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3452 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3453 | "dev": true, 3454 | "license": "MIT", 3455 | "engines": { 3456 | "node": ">=0.10.0" 3457 | } 3458 | }, 3459 | "node_modules/wrap-ansi": { 3460 | "version": "7.0.0", 3461 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3462 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3463 | "dev": true, 3464 | "license": "MIT", 3465 | "dependencies": { 3466 | "ansi-styles": "^4.0.0", 3467 | "string-width": "^4.1.0", 3468 | "strip-ansi": "^6.0.0" 3469 | }, 3470 | "engines": { 3471 | "node": ">=10" 3472 | }, 3473 | "funding": { 3474 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3475 | } 3476 | }, 3477 | "node_modules/wrap-ansi-cjs": { 3478 | "name": "wrap-ansi", 3479 | "version": "7.0.0", 3480 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3481 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3482 | "dev": true, 3483 | "license": "MIT", 3484 | "dependencies": { 3485 | "ansi-styles": "^4.0.0", 3486 | "string-width": "^4.1.0", 3487 | "strip-ansi": "^6.0.0" 3488 | }, 3489 | "engines": { 3490 | "node": ">=10" 3491 | }, 3492 | "funding": { 3493 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3494 | } 3495 | }, 3496 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3497 | "version": "5.0.1", 3498 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3499 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3500 | "dev": true, 3501 | "license": "MIT", 3502 | "engines": { 3503 | "node": ">=8" 3504 | } 3505 | }, 3506 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 3507 | "version": "4.3.0", 3508 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3509 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3510 | "dev": true, 3511 | "license": "MIT", 3512 | "dependencies": { 3513 | "color-convert": "^2.0.1" 3514 | }, 3515 | "engines": { 3516 | "node": ">=8" 3517 | }, 3518 | "funding": { 3519 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3520 | } 3521 | }, 3522 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3523 | "version": "8.0.0", 3524 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3525 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3526 | "dev": true, 3527 | "license": "MIT" 3528 | }, 3529 | "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { 3530 | "version": "3.0.0", 3531 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3532 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3533 | "dev": true, 3534 | "license": "MIT", 3535 | "engines": { 3536 | "node": ">=8" 3537 | } 3538 | }, 3539 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3540 | "version": "4.2.3", 3541 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3542 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3543 | "dev": true, 3544 | "license": "MIT", 3545 | "dependencies": { 3546 | "emoji-regex": "^8.0.0", 3547 | "is-fullwidth-code-point": "^3.0.0", 3548 | "strip-ansi": "^6.0.1" 3549 | }, 3550 | "engines": { 3551 | "node": ">=8" 3552 | } 3553 | }, 3554 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3555 | "version": "6.0.1", 3556 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3557 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3558 | "dev": true, 3559 | "license": "MIT", 3560 | "dependencies": { 3561 | "ansi-regex": "^5.0.1" 3562 | }, 3563 | "engines": { 3564 | "node": ">=8" 3565 | } 3566 | }, 3567 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 3568 | "version": "5.0.1", 3569 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3570 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3571 | "dev": true, 3572 | "license": "MIT", 3573 | "engines": { 3574 | "node": ">=8" 3575 | } 3576 | }, 3577 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3578 | "version": "4.3.0", 3579 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3580 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3581 | "dev": true, 3582 | "license": "MIT", 3583 | "dependencies": { 3584 | "color-convert": "^2.0.1" 3585 | }, 3586 | "engines": { 3587 | "node": ">=8" 3588 | }, 3589 | "funding": { 3590 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3591 | } 3592 | }, 3593 | "node_modules/wrap-ansi/node_modules/emoji-regex": { 3594 | "version": "8.0.0", 3595 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3596 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3597 | "dev": true, 3598 | "license": "MIT" 3599 | }, 3600 | "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { 3601 | "version": "3.0.0", 3602 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3603 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3604 | "dev": true, 3605 | "license": "MIT", 3606 | "engines": { 3607 | "node": ">=8" 3608 | } 3609 | }, 3610 | "node_modules/wrap-ansi/node_modules/string-width": { 3611 | "version": "4.2.3", 3612 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3613 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3614 | "dev": true, 3615 | "license": "MIT", 3616 | "dependencies": { 3617 | "emoji-regex": "^8.0.0", 3618 | "is-fullwidth-code-point": "^3.0.0", 3619 | "strip-ansi": "^6.0.1" 3620 | }, 3621 | "engines": { 3622 | "node": ">=8" 3623 | } 3624 | }, 3625 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 3626 | "version": "6.0.1", 3627 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3628 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3629 | "dev": true, 3630 | "license": "MIT", 3631 | "dependencies": { 3632 | "ansi-regex": "^5.0.1" 3633 | }, 3634 | "engines": { 3635 | "node": ">=8" 3636 | } 3637 | }, 3638 | "node_modules/wrappy": { 3639 | "version": "1.0.2", 3640 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3641 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3642 | "dev": true, 3643 | "license": "ISC" 3644 | }, 3645 | "node_modules/write-file-atomic": { 3646 | "version": "6.0.0", 3647 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-6.0.0.tgz", 3648 | "integrity": "sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==", 3649 | "dev": true, 3650 | "license": "ISC", 3651 | "dependencies": { 3652 | "imurmurhash": "^0.1.4", 3653 | "signal-exit": "^4.0.1" 3654 | }, 3655 | "engines": { 3656 | "node": "^18.17.0 || >=20.5.0" 3657 | } 3658 | }, 3659 | "node_modules/xmlcreate": { 3660 | "version": "2.0.4", 3661 | "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", 3662 | "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", 3663 | "license": "Apache-2.0" 3664 | }, 3665 | "node_modules/y18n": { 3666 | "version": "5.0.8", 3667 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3668 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3669 | "dev": true, 3670 | "license": "ISC", 3671 | "engines": { 3672 | "node": ">=10" 3673 | } 3674 | }, 3675 | "node_modules/yallist": { 3676 | "version": "5.0.0", 3677 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 3678 | "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 3679 | "dev": true, 3680 | "license": "BlueOak-1.0.0", 3681 | "engines": { 3682 | "node": ">=18" 3683 | } 3684 | }, 3685 | "node_modules/yargs": { 3686 | "version": "17.7.2", 3687 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3688 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3689 | "dev": true, 3690 | "license": "MIT", 3691 | "dependencies": { 3692 | "cliui": "^8.0.1", 3693 | "escalade": "^3.1.1", 3694 | "get-caller-file": "^2.0.5", 3695 | "require-directory": "^2.1.1", 3696 | "string-width": "^4.2.3", 3697 | "y18n": "^5.0.5", 3698 | "yargs-parser": "^21.1.1" 3699 | }, 3700 | "engines": { 3701 | "node": ">=12" 3702 | } 3703 | }, 3704 | "node_modules/yargs-parser": { 3705 | "version": "21.1.1", 3706 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3707 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3708 | "dev": true, 3709 | "license": "ISC", 3710 | "engines": { 3711 | "node": ">=12" 3712 | } 3713 | }, 3714 | "node_modules/yargs/node_modules/ansi-regex": { 3715 | "version": "5.0.1", 3716 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3717 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3718 | "dev": true, 3719 | "license": "MIT", 3720 | "engines": { 3721 | "node": ">=8" 3722 | } 3723 | }, 3724 | "node_modules/yargs/node_modules/emoji-regex": { 3725 | "version": "8.0.0", 3726 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3727 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3728 | "dev": true, 3729 | "license": "MIT" 3730 | }, 3731 | "node_modules/yargs/node_modules/is-fullwidth-code-point": { 3732 | "version": "3.0.0", 3733 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 3734 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 3735 | "dev": true, 3736 | "license": "MIT", 3737 | "engines": { 3738 | "node": ">=8" 3739 | } 3740 | }, 3741 | "node_modules/yargs/node_modules/string-width": { 3742 | "version": "4.2.3", 3743 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3744 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3745 | "dev": true, 3746 | "license": "MIT", 3747 | "dependencies": { 3748 | "emoji-regex": "^8.0.0", 3749 | "is-fullwidth-code-point": "^3.0.0", 3750 | "strip-ansi": "^6.0.1" 3751 | }, 3752 | "engines": { 3753 | "node": ">=8" 3754 | } 3755 | }, 3756 | "node_modules/yargs/node_modules/strip-ansi": { 3757 | "version": "6.0.1", 3758 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3759 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3760 | "dev": true, 3761 | "license": "MIT", 3762 | "dependencies": { 3763 | "ansi-regex": "^5.0.1" 3764 | }, 3765 | "engines": { 3766 | "node": ">=8" 3767 | } 3768 | }, 3769 | "node_modules/yocto-queue": { 3770 | "version": "0.1.0", 3771 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3772 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3773 | "dev": true, 3774 | "license": "MIT", 3775 | "engines": { 3776 | "node": ">=10" 3777 | }, 3778 | "funding": { 3779 | "url": "https://github.com/sponsors/sindresorhus" 3780 | } 3781 | }, 3782 | "node_modules/yoctocolors": { 3783 | "version": "2.1.1", 3784 | "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", 3785 | "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", 3786 | "dev": true, 3787 | "license": "MIT", 3788 | "engines": { 3789 | "node": ">=18" 3790 | }, 3791 | "funding": { 3792 | "url": "https://github.com/sponsors/sindresorhus" 3793 | } 3794 | } 3795 | } 3796 | } 3797 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "static-sitemap-cli", 3 | "version": "2.2.7", 4 | "description": "CLI to generate XML sitemaps for static sites from local filesystem", 5 | "author": "Jason Lee ", 6 | "type": "module", 7 | "exports": "./src/index.js", 8 | "bin": { 9 | "static-sitemap-cli": "./src/cli.js", 10 | "sscli": "./src/cli.js" 11 | }, 12 | "scripts": { 13 | "format": "prettier --write .", 14 | "lint": "eslint", 15 | "test": "prettier --check . && eslint && ava && npx publint" 16 | }, 17 | "dependencies": { 18 | "commander": "^13.1.0", 19 | "cosmiconfig": "^9.0.0", 20 | "fast-glob": "^3.3.3", 21 | "htmlparser2": "^10.0.0", 22 | "js2xmlparser": "^5.0.0", 23 | "micromatch": "^4.0.8", 24 | "tiny-async-pool": "^2.1.0" 25 | }, 26 | "devDependencies": { 27 | "@eslint/js": "^9.5.0", 28 | "ava": "^6.2.0", 29 | "eslint": "^9.19.0", 30 | "eslint-config-prettier": "^10.0.1", 31 | "execa": "^9.5.2", 32 | "globals": "^15.14.0", 33 | "prettier": "^3.4.2" 34 | }, 35 | "engines": { 36 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 37 | }, 38 | "files": [ 39 | "src/" 40 | ], 41 | "license": "ISC", 42 | "homepage": "https://npmjs.com/package/static-sitemap-cli", 43 | "repository": "github:zerodevx/static-sitemap-cli", 44 | "keywords": [ 45 | "sscli", 46 | "sitemap", 47 | "static-site", 48 | "sitemap-generator", 49 | "filesystem", 50 | "xml", 51 | "txt", 52 | "cli" 53 | ] 54 | } 55 | -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import { program, Option } from 'commander' 3 | import { cosmiconfig } from 'cosmiconfig' 4 | import { promises as fs } from 'node:fs' 5 | import nodepath from 'node:path' 6 | import { run, log } from './index.js' 7 | 8 | const { version } = JSON.parse( 9 | await fs.readFile(new URL('../package.json', import.meta.url), 'utf8') 10 | ) 11 | 12 | const conf = (await cosmiconfig('sscli').search()) || { config: {} } 13 | 14 | program 15 | .name('sscli') 16 | .description('CLI to generate XML sitemaps for static sites from local filesystem') 17 | .option('-b, --base ', 'base URL (required)') 18 | .option('-r, --root ', 'root working directory', '.') 19 | .option('-m, --match ', 'globs to match', ['**/*.html']) 20 | .option('-i, --ignore ', 'globs to ignore', ['404.html']) 21 | .option('-c, --changefreq ', 'comma-separated glob-changefreq pairs') 22 | .option('-p, --priority ', 'comma-separated glob-priority pairs') 23 | .option('--no-robots', 'do not parse html files for noindex meta') 24 | .option('--concurrent ', 'concurrent number of html parsing ops', 32) 25 | .option('--no-clean', 'do not use clean URLs') 26 | .option('--slash', 'add trailing slash to all URLs') 27 | .addOption( 28 | new Option('-f, --format ', 'sitemap format') 29 | .choices(['xml', 'txt', 'both']) 30 | .default('both') 31 | ) 32 | .option('-o, --stdout', 'output sitemap to stdout instead') 33 | .option('-v, --verbose', 'be more verbose') 34 | .version(version) 35 | .addOption(new Option('--debug').hideHelp()) 36 | .parse() 37 | 38 | const opts = { ...program.opts(), ...conf.config } 39 | 40 | if (opts.verbose && conf.filepath) { 41 | log(`found config in ${nodepath.relative(process.cwd(), conf.filepath)}`) 42 | } 43 | 44 | if (!opts.base) { 45 | program.error(`Error: required option '-b, --base ' not specified`) 46 | } 47 | 48 | try { 49 | opts.base = new URL(opts.base).href 50 | } catch { 51 | program.error('Error: base is not a valid URL') 52 | } 53 | if (!opts.base.endsWith('/')) opts.base += '/' 54 | 55 | if (opts.changefreq && opts.changefreq.length) { 56 | const frequencies = ['always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'] 57 | for (let i of opts.changefreq) { 58 | i = i.split(',') 59 | if (i.length !== 2 || !frequencies.includes(i[1])) { 60 | program.error('Error: glob-changefreq pairs malformed') 61 | } 62 | } 63 | } 64 | 65 | if (opts.priority && opts.priority.length) { 66 | const err = () => program.error('Error: glob-priority pairs malformed') 67 | for (let i of opts.priority) { 68 | i = i.split(',') 69 | if (i.length !== 2) err() 70 | const f = parseFloat(i[1]) 71 | if (isNaN(f) || f < 0 || f > 1) err() 72 | } 73 | } 74 | 75 | if (!opts.clean && opts.slash) { 76 | program.error(`Error: can't add trailing slash to unclean urls`) 77 | } 78 | 79 | if (opts.debug) { 80 | console.warn(opts) 81 | process.exit() 82 | } 83 | 84 | try { 85 | await run(opts) 86 | } catch (err) { 87 | if (err.message === 'NO_MATCHES') program.error(`Error: no matches found`) 88 | console.error(err) 89 | process.exit(1) 90 | } 91 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import fastglob from 'fast-glob' 2 | import micromatch from 'micromatch' 3 | import js2xmlparser from 'js2xmlparser' 4 | import { WritableStream } from 'htmlparser2/WritableStream' 5 | import pool from 'tiny-async-pool' 6 | import nodepath from 'node:path' 7 | import { createReadStream, promises as fs } from 'node:fs' 8 | 9 | function log(msg) { 10 | console.warn('\x1b[36m%s\x1b[0m', `[sscli] ${msg}`) 11 | } 12 | 13 | async function getFiles({ root, match, ignore, verbose }) { 14 | const files = await fastglob(match, { cwd: root, stats: true, ignore }) 15 | if (!files.length) { 16 | throw new Error('NO_MATCHES') 17 | } 18 | if (verbose) { 19 | log(`matched ${files.length} files`) 20 | for (const f of files) log(`~ ${f.path}`) 21 | } 22 | return files 23 | } 24 | 25 | function detectNoindex(path) { 26 | return new Promise((resolve) => { 27 | let noindex 28 | const parser = new WritableStream({ 29 | onopentag(tag, { name, content }) { 30 | if (tag === 'meta' && name === 'robots' && content.includes('noindex')) { 31 | noindex = true 32 | parser.end() 33 | } 34 | }, 35 | onclosetag(tag) { 36 | if (tag === 'head') parser.end() 37 | } 38 | }) 39 | createReadStream(path, { highWaterMark: 1024 }) 40 | .pipe(parser) 41 | .on('finish', () => resolve(noindex)) 42 | }) 43 | } 44 | 45 | async function transformUrl( 46 | { path, stats: { mtime } }, 47 | { root, base, changefreq, priority, robots, clean, slash, verbose } 48 | ) { 49 | if ( 50 | robots && 51 | nodepath.extname(path) === '.html' && 52 | (await detectNoindex(nodepath.join(root, path))) 53 | ) { 54 | if (verbose) log(`noindex: ${path}`) 55 | return 56 | } 57 | let url = base + path.split(nodepath.sep).join('/') 58 | if (clean) { 59 | if (url.slice(-11) === '/index.html') url = url.slice(0, -11) 60 | else if (url.slice(-5) === '.html') url = url.slice(0, -5) 61 | if (slash || url.split('/').length === 3) url += '/' 62 | } 63 | const check = (pairs, tagname) => { 64 | for (let a = pairs.length - 1; a >= 0; a--) { 65 | const p = pairs[a].split(',') 66 | if (micromatch.isMatch(path, p[0])) return { [tagname]: p[1] } 67 | } 68 | } 69 | return { 70 | loc: url, 71 | lastmod: mtime.toISOString(), 72 | ...(changefreq && changefreq.length && check(changefreq, 'changefreq')), 73 | ...(priority && priority.length && check(priority, 'priority')) 74 | } 75 | } 76 | 77 | async function generateUrls(opts) { 78 | const files = await getFiles(opts) 79 | const iterator = (f) => transformUrl(f, opts) 80 | const urls = [] 81 | for await (const i of pool(opts.concurrent, files, iterator)) { 82 | if (i) urls.push(i) 83 | } 84 | return urls.sort(({ loc: a }, { loc: b }) => { 85 | const depth = (url) => url.split('/').length 86 | if (depth(a) === depth(b)) { 87 | return a < b ? -1 : 1 88 | } else { 89 | return depth(a) < depth(b) ? -1 : 1 90 | } 91 | }) 92 | } 93 | 94 | function generateTxtSitemap(urls) { 95 | let output = '' 96 | for (let a = 0; a < urls.length; a++) { 97 | output += urls[a].loc 98 | if (a < urls.length - 1) output += '\n' 99 | } 100 | return output 101 | } 102 | 103 | function generateXmlSitemap(urls) { 104 | return js2xmlparser.parse( 105 | 'urlset', 106 | { 107 | '@': { xmlns: 'http://www.sitemaps.org/schemas/sitemap/0.9' }, 108 | url: [urls] 109 | }, 110 | { 111 | declaration: { encoding: 'UTF-8' }, 112 | format: { doubleQuotes: true } 113 | } 114 | ) 115 | } 116 | 117 | async function run(opts) { 118 | const urls = await generateUrls(opts) 119 | const generate = async (format) => { 120 | const output = format === 'xml' ? generateXmlSitemap(urls) : generateTxtSitemap(urls) 121 | if (opts.stdout) console.log(output) 122 | else { 123 | await fs.writeFile(nodepath.join(opts.root, `sitemap.${format}`), `${output}\n`, 'utf-8') 124 | if (opts.verbose) log(`successfully generated sitemap.${format} at ${opts.root}`) 125 | } 126 | } 127 | if (['txt', 'both'].includes(opts.format)) await generate('txt') 128 | if (['xml', 'both'].includes(opts.format)) await generate('xml') 129 | } 130 | 131 | export { 132 | run, 133 | log, 134 | getFiles, 135 | detectNoindex, 136 | transformUrl, 137 | generateUrls, 138 | generateTxtSitemap, 139 | generateXmlSitemap 140 | } 141 | -------------------------------------------------------------------------------- /test/fixtures/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/404.html -------------------------------------------------------------------------------- /test/fixtures/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/about/index.html -------------------------------------------------------------------------------- /test/fixtures/blog/events/event-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/events/event-1.html -------------------------------------------------------------------------------- /test/fixtures/blog/events/event-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/events/event-2.html -------------------------------------------------------------------------------- /test/fixtures/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/index.html -------------------------------------------------------------------------------- /test/fixtures/blog/mixed-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/mixed-1.html -------------------------------------------------------------------------------- /test/fixtures/blog/mixed-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/mixed-2.html -------------------------------------------------------------------------------- /test/fixtures/blog/news/post-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/news/post-1.html -------------------------------------------------------------------------------- /test/fixtures/blog/news/post-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/news/post-2.html -------------------------------------------------------------------------------- /test/fixtures/blog/news/post-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/blog/news/post-3.html -------------------------------------------------------------------------------- /test/fixtures/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/hello.html -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/media/cats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/media/cats.jpg -------------------------------------------------------------------------------- /test/fixtures/media/dogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/media/dogs.png -------------------------------------------------------------------------------- /test/fixtures/media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/media/index.html -------------------------------------------------------------------------------- /test/fixtures/media/unknown.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerodevx/static-sitemap-cli/5fe24d37666371c8115a99468735cd964034b05c/test/fixtures/media/unknown.xyz -------------------------------------------------------------------------------- /test/fixtures/noindex/not-indexed-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/fixtures/noindex/not-indexed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- 1 | import test from 'ava' 2 | import { execaSync } from 'execa' 3 | import { fileURLToPath } from 'node:url' 4 | import path from 'node:path' 5 | import fs from 'node:fs' 6 | 7 | const __testdir = path.dirname(fileURLToPath(import.meta.url)) 8 | const run = (root, ...args) => 9 | execaSync('node', [ 10 | path.join(__testdir, '..', 'src', 'cli.js'), 11 | '-b', 12 | 'https://x.com', 13 | '-r', 14 | path.join(__testdir, ...root.split('/')), 15 | ...args 16 | ]) 17 | 18 | test('basic sitemaps', (t) => { 19 | run('fixtures') 20 | const p = path.join(__testdir, 'fixtures', 'sitemap') 21 | const xml = fs.readFileSync(`${p}.xml`, 'utf-8') 22 | t.true(xml.includes('')) 23 | t.true(xml.includes('')) 24 | t.true(xml.includes('https://x.com/')) 25 | t.true(xml.includes('https://x.com/hello')) 26 | t.true(xml.includes('https://x.com/about')) 27 | t.true(xml.includes('https://x.com/blog')) 28 | t.true(xml.includes('https://x.com/blog/mixed-2')) 29 | t.true(xml.includes('https://x.com/blog/events/event-1')) 30 | t.true(xml.includes('https://x.com/media')) 31 | t.is(xml.slice(-1), '\n') 32 | t.not(xml.slice(-2), '\n\n') 33 | t.false(xml.includes('.html')) 34 | t.false(xml.includes('https://x.com/noindex')) 35 | t.false(xml.includes('404')) 36 | fs.unlinkSync(`${p}.xml`) 37 | 38 | const txt = fs.readFileSync(`${p}.txt`, 'utf-8') 39 | t.true(txt.includes('https://x.com/')) 40 | t.true(txt.includes('https://x.com/hello')) 41 | t.true(txt.includes('https://x.com/about')) 42 | t.true(txt.includes('https://x.com/blog')) 43 | t.true(txt.includes('https://x.com/blog/mixed-2')) 44 | t.true(txt.includes('https://x.com/blog/events/event-1')) 45 | t.is(txt.slice(-1), '\n') 46 | t.not(txt.slice(-2), '\n\n') 47 | fs.unlinkSync(`${p}.txt`) 48 | }) 49 | 50 | test('ignore some files', (t) => { 51 | const { stdout } = run('fixtures', '-o', '-f', 'txt', '-i', 'blog/events/**', 'blog/mixed-1.html') 52 | t.false(stdout.includes('https://x.com/blog/events')) 53 | t.false(stdout.includes('https://x.com/blog/mixed-1')) 54 | t.true(stdout.includes('https://x.com/blog/mixed-2')) 55 | }) 56 | 57 | test('changefreq works', (t) => { 58 | const { stdout } = run('fixtures', '-o', '-f', 'xml', '-c', 'about/index.html,daily') 59 | t.true(stdout.includes('daily')) 60 | }) 61 | 62 | test('priority works', (t) => { 63 | const { stdout } = run('fixtures', '-o', '-f', 'xml', '-p', 'blog/**,0', 'blog/news/**,0.9') 64 | t.true(stdout.includes('00.9 { 69 | const { stdout } = run('fixtures', '-o', '-f', 'xml', '--no-clean') 70 | t.true(stdout.includes('https://x.com/index.html')) 71 | t.true(stdout.includes('https://x.com/blog/news/post-2.html')) 72 | }) 73 | 74 | test('trailing slash', (t) => { 75 | const { stdout } = run('fixtures', '-o', '-f', 'xml', '--slash') 76 | t.true(stdout.includes('https://x.com/')) 77 | t.true(stdout.includes('https://x.com/hello/')) 78 | t.true(stdout.includes('https://x.com/blog/mixed-1/')) 79 | }) 80 | 81 | test('can disable robots check', (t) => { 82 | const { stdout } = run('fixtures', '-o', '-f', 'xml', '--no-robots') 83 | t.true(stdout.includes('https://x.com/noindex/not-indexed')) 84 | t.true(stdout.includes('https://x.com/noindex/not-indexed-2')) 85 | }) 86 | 87 | test('match media assets', (t) => { 88 | const { stdout } = run('fixtures', '-m', '**/*.{jpg,png}', '-o', '-f', 'txt') 89 | t.is(stdout, 'https://x.com/media/cats.jpg\nhttps://x.com/media/dogs.png') 90 | }) 91 | 92 | test('output not malformed if base is non-root', (t) => { 93 | const run2 = (root, ...args) => 94 | execaSync('node', [ 95 | path.join(__testdir, '..', 'src', 'cli.js'), 96 | '-b', 97 | 'https://x.com/foo', 98 | '-r', 99 | path.join(__testdir, ...root.split('/')), 100 | ...args 101 | ]) 102 | const { stdout } = run2('fixtures/about', '-o', '-f', 'txt') 103 | t.is(stdout, 'https://x.com/foo') 104 | const { stdout: stdout2 } = run2('fixtures/about', '-o', '-f', 'txt', '--slash') 105 | t.is(stdout2, 'https://x.com/foo/') 106 | }) 107 | 108 | test('package.json has correct dependencies', (t) => { 109 | const pkg = JSON.parse(fs.readFileSync(path.join(__testdir, '..', 'package.json'), 'utf-8')) 110 | const dependencies = Object.keys(pkg.dependencies) 111 | t.deepEqual(dependencies, [ 112 | 'commander', 113 | 'cosmiconfig', 114 | 'fast-glob', 115 | 'htmlparser2', 116 | 'js2xmlparser', 117 | 'micromatch', 118 | 'tiny-async-pool' 119 | ]) 120 | }) 121 | --------------------------------------------------------------------------------