├── .editorconfig ├── .eleventy.js ├── .eleventyignore ├── .eslintrc.js ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── demo ├── array_config │ ├── .eleventy.js │ ├── assets │ │ ├── svg_general │ │ │ └── placeholder-thumb.svg │ │ ├── svg_home │ │ │ └── placeholder-feature.svg │ │ └── svg_profile │ │ │ └── placeholder-slider.svg │ ├── custom-shortcode.js │ ├── demo-11ty.11ty.js │ ├── demo-handlebars.hbs │ ├── demo-liquid.liquid │ ├── demo-nunjucks.njk │ ├── index.njk │ ├── package.json │ └── yarn.lock ├── basic │ ├── .eleventy.js │ ├── assets │ │ └── svg │ │ │ ├── placeholder-feature.svg │ │ │ ├── placeholder-slider.svg │ │ │ └── placeholder-thumb.svg │ ├── custom-shortcode.js │ ├── demo-11ty.11ty.js │ ├── demo-handlebars.hbs │ ├── demo-liquid.liquid │ ├── demo-nunjucks.njk │ ├── index.njk │ ├── package.json │ └── yarn.lock ├── custom_spriteconfig │ ├── .eleventy.js │ ├── assets │ │ └── svg │ │ │ ├── placeholder-feature.svg │ │ │ ├── placeholder-slider.svg │ │ │ └── placeholder-thumb.svg │ ├── custom-shortcode.js │ ├── demo-11ty.11ty.js │ ├── demo-handlebars.hbs │ ├── demo-liquid.liquid │ ├── demo-nunjucks.njk │ ├── index.njk │ ├── package.json │ └── yarn.lock ├── file_output │ ├── .eleventy.js │ ├── assets │ │ └── svg │ │ │ ├── placeholder-feature.svg │ │ │ ├── placeholder-slider.svg │ │ │ └── placeholder-thumb.svg │ ├── demo-11ty.11ty.js │ ├── demo-handlebars.hbs │ ├── demo-liquid.liquid │ ├── demo-nunjucks.njk │ ├── index.njk │ ├── package.json │ └── yarn.lock └── subdir │ ├── .eleventy.js │ ├── assets │ └── svg │ │ ├── placeholder-thumb.svg │ │ ├── sub_dir_1 │ │ └── placeholder-feature.svg │ │ └── sub_dir_2 │ │ └── sub_sub_dir_2 │ │ └── placeholder slider.svg │ ├── custom-shortcode.js │ ├── demo-11ty.11ty.js │ ├── demo-handlebars.hbs │ ├── demo-liquid.liquid │ ├── demo-nunjucks.njk │ ├── index.njk │ ├── package.json │ └── yarn.lock ├── package-lock.json ├── package.json ├── src ├── SVGSprite.js ├── lib-utils.js └── options.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | charset = utf-8 10 | -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- 1 | const SVGSprite = require("./src/SVGSprite"); 2 | const lodash = require('lodash'); 3 | 4 | let idCounter = 0; 5 | 6 | module.exports = (eleventyConfig, pluginConfig = [{}]) => { 7 | if (!Array.isArray(pluginConfig)) { 8 | pluginConfig = [pluginConfig]; 9 | } 10 | 11 | svgSpriteShortcodeList = []; 12 | 13 | for (options of pluginConfig) { 14 | if (!options.path) { 15 | throw new Error("[eleventy-plugin-svg-sprite] path must be specified in plugin options"); 16 | } 17 | 18 | let defaultOptions = require("./src/options"); 19 | let config = lodash.merge(defaultOptions, options); 20 | 21 | // Debug statement to log config after merge 22 | // const util = require('util') 23 | // console.log(util.inspect(config, {showHidden: false, depth: null, colors: true})) 24 | 25 | if (svgSpriteShortcodeList.includes(config.svgSpriteShortcode)) { 26 | throw new Error("[eleventy-plugin-svg-sprite] illegal to have duplicate svgSpriteShortcode in config list"); 27 | } 28 | svgSpriteShortcodeList.push(config.svgSpriteShortcode); 29 | 30 | let svgSpriteInstance = new SVGSprite(config); 31 | eleventyConfig.on('beforeBuild', async () => { await svgSpriteInstance.compile(); }); 32 | 33 | eleventyConfig.addShortcode(config.svgSpriteShortcode, () => { return svgSpriteInstance.getSvgSprite(config.svgSpriteShortcode); }); 34 | 35 | eleventyConfig.addShortcode(config.svgShortcode, (name, classes, desc) => { 36 | if (!name) { 37 | throw new Error("[eleventy-plugin-svg-sprite] name of SVG must be specified"); 38 | } 39 | const nameAttr = name; 40 | const classesAttr = `${config.globalClasses} ${classes || config.defaultClasses}`; 41 | // "desc" is required for accessibility and Lighthouse validations 42 | const descAttr = desc || `${nameAttr} icon`; 43 | // a unique id is generated so that the svg references the correct description in aria-labelledby 44 | const uniqueID = (idCounter++).toString(36); 45 | 46 | return ` 47 | ${descAttr} 48 | 49 | `; 50 | }); 51 | } 52 | }; 53 | -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | es6: true, 4 | node: true 5 | }, 6 | extends: "eslint:recommended", 7 | parserOptions: { 8 | sourceType: "module", 9 | ecmaVersion: 2017 10 | }, 11 | rules: { 12 | indent: ["error", 2], 13 | "linebreak-style": ["error", "unix"], 14 | quotes: ["error", "double"], 15 | semi: ["error", "always"] 16 | } 17 | }; 18 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2 3 | updates: 4 | - package-ecosystem: "github-actions" # See documentation for possible values 5 | directory: "/" # Location of package manifests 6 | schedule: 7 | interval: "weekly" 8 | groups: 9 | minor-and-patch: 10 | applies-to: version-updates 11 | update-types: 12 | - "minor" 13 | - "patch" 14 | 15 | - package-ecosystem: "npm" # See documentation for possible values 16 | directory: "/" # Location of package manifests 17 | schedule: 18 | interval: "weekly" 19 | groups: 20 | minor-and-patch: 21 | applies-to: version-updates 22 | update-types: 23 | - "minor" 24 | - "patch" 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | _site/ 3 | *~ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Patrick Chong @patrickxchong 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # eleventy-plugin-svg-sprite 2 | 3 | A high performance [Eleventy](https://github.com/11ty/eleventy) universal plugin that compiles a directory of SVG files into a single SVG Sprite and adds shortcodes to embed SVG Sprite and SVG content in Eleventy templates. 4 | 5 | The SVG Sprite is compiled once in Eleventy's [beforeBuild](https://www.11ty.dev/docs/events/#beforebuild) hook and is only recompiled when an SVG file is added/modified in the directory. No more slow rebuilding issues where SVG sprites are recompiled for every page! Uses [svg-sprite](https://github.com/svg-sprite/svg-sprite) under the hood. 6 | 7 | ## Installation 8 | 9 | Available on [npm](https://www.npmjs.com/package/eleventy-plugin-svg-sprite). 10 | 11 | ```bash 12 | npm install eleventy-plugin-svg-sprite --save-dev 13 | # OR 14 | yarn add eleventy-plugin-svg-sprite --dev 15 | ``` 16 | 17 | Open up your Eleventy config file (probably `.eleventy.js`) and add the plugin: 18 | 19 | ```js 20 | const svgSprite = require("eleventy-plugin-svg-sprite"); 21 | 22 | module.exports = function (eleventyConfig) { 23 | eleventyConfig.addPlugin(svgSprite, { 24 | path: "./src/assets/svg", // relative path to SVG directory 25 | // (MUST be defined when initialising plugin) 26 | }); 27 | }; 28 | ``` 29 | 30 | If you would like to compile more than 1 svgsprite, pass an array of config objects with unique `svgSpriteShortcode` **(important)**: 31 | 32 | ```js 33 | const svgSprite = require("eleventy-plugin-svg-sprite"); 34 | 35 | module.exports = function (eleventyConfig) { 36 | eleventyConfig.addPlugin(svgSprite, [ 37 | { 38 | path: "./src/assets/svg_1", // relative path to SVG directory 39 | svgSpriteShortcode: "svgsprite1", 40 | }, 41 | { 42 | path: "./src/assets/svg_2", // relative path to SVG directory 43 | svgSpriteShortcode: "svgsprite2", 44 | }, 45 | ]); 46 | }; 47 | ``` 48 | 49 | Refer to [demo/array_config/.eleventy.js](./demo/array_config/.eleventy.js) for a sample. 50 | 51 | ## Config Options 52 | 53 | | Option | Type | Default | Description | 54 | | ------------------ | ----------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------- | 55 | | path | String (required) | undefined | relative path to svg directory | 56 | | spriteConfig | Object | (see [options.js](./src/options.js)) | Options you want to pass to [svg-sprite](https://github.com/svg-sprite/svg-sprite) | 57 | | globalClasses | String | (empty string) | global classes for embedded SVGs (will not be overridden by [custom classes](#adding-custom-classes-to-your-svg)) | 58 | | defaultClasses | String | (empty string) | default classes for embedded SVGs (overridden by [custom classes](#adding-custom-classes-to-your-svg)) | 59 | | svgSpriteShortcode | String | svgsprite | Customise shortcode used to embed SVG sprite (see [Including the SVG Sprite](#including-the-svg-sprite)) | 60 | | svgShortcode | String | svg | Customise shortcode used to embed SVG content (see [Embedding SVG Content](#embedding-svg-content)) | 61 | | outputFilepath | String | (empty string) | Filepath to write compiled spritesheet to (see [Exporting compiled spritesheet as a file](#exporting-compiled-spritesheet-as-a-file)). No file is created if `outputFilepath` is empty. | 62 | 63 | ## Usage 64 | 65 | If you want to jump right into the code, you can refer to the [demo](./demo) folder. 66 | 67 | ### Including the SVG Sprite 68 | 69 | Assuming that the plugin's `svgSpriteShortcode` is `svgsprite` (default), use the following syntax to include the compiled SVG sprite: 70 | 71 | ```html 72 | 73 | {% svgsprite %} 74 | 75 | 76 | {{{ svgsprite }}} 77 | 78 | 79 | ${this.svgsprite()} 80 | ``` 81 | 82 | Which will render the following: 83 | 84 | ```html 85 | 93 | ``` 94 | 95 | ### Embedding SVG Content 96 | 97 | Assuming that the plugin's `svgShortcode` is `svg` (default), use the following syntax to embed an SVG file at the defined path (eg. `"./src/assets/svg/demo.svg"` when `path` is `"./src/assets/svg"`). 98 | 99 | Note: make sure you have [included the SVG Sprite](#including-the-svg-sprite). 100 | 101 | ```html 102 | 103 | {% svg "demo" %} 104 | 105 | 106 | {{{ svg "demo" }}} 107 | 108 | 109 | ${this.svg("demo")} 110 | ``` 111 | 112 | Which will render the following (assuming that `globalClasses: "svgicon", defaultClasses: "default-class"` when the plugin is initialised): 113 | 114 | ```html 115 | 116 | ...(SVG content for demo.svg that references SVG Sprite above)... 117 | 118 | ``` 119 | 120 | ### Adding custom classes to your SVG 121 | 122 | Adding custom classes will override classes defined in `defaultClasses`, but classes defined in `globalClasses` will remain. 123 | 124 | ```html 125 | 126 | {% svg "demo", "custom-class" %} 127 | 128 | 129 | {{{ svg "demo" "custom-class"}}} 130 | 131 | 132 | `${this.svg("demo", "custom-class")}` 133 | ``` 134 | 135 | Which will render the following (assuming that `globalClasses: "svgicon", defaultClasses: "default-class"` when the plugin is initialised): 136 | 137 | ```html 138 | 139 | ...(SVG content for demo.svg that references SVG Sprite above)... 140 | 141 | ``` 142 | 143 | ### SVG id naming convention 144 | 145 | ``` 146 | 📂assets 147 | ┣ 📂svg 148 | ┣ 📜 item.svg 149 | ┣ 📂 sub_dir_1 150 | ┃ ┗ 📜 item-1.svg 151 | ┗ 📂 sub_dir_2 152 | ┗ 📂 sub_sub_dir_2 153 | ┗ 📜 example item 2.svg 154 | ``` 155 | 156 | For a directory structure as above, the respective SVG ids generated are as follows: 157 | 158 | ```js 159 | svg "item" // no subdirectory prefix 160 | svg "sub_dir_1--item-1" // one level subdirectory with '--' prefix 161 | svg "sub_dir_2--sub_sub_dir_2--example_item_2" // two level subdirectory with '--' prefix, also convert spaces into '_' 162 | ``` 163 | 164 | ### Using your own shortcode to render SVGs 165 | 166 | You can write your own SVG shortcode if you prefer. To make sure the SVG is referenced correctly, you can use the snippet below to start. `#svg-` is the prefix created by svg-sprite and `name` would be the filename of the SVG without the `.svg` extension (also refer to [SVG id naming convention](#svg-id-naming-convention) for edge cases and other uses). 167 | 168 | ```js 169 | eleventyConfig.addShortcode("icon", function (name) { 170 | return ``; 171 | }); 172 | ``` 173 | 174 | ### Exporting compiled spritesheet as a file 175 | 176 | If you prefer to host the compiled spritesheet as a file/on a CDN instead of embedding the spritesheet in the template, you can specify `outputFilepath` in the config, which would write to the location of the path (be careful as it will overwrite any file that pre-exists at that path). 177 | 178 | As an example, if `outputPath` is set to `"./_site/sprites/icons.svg"`, you can reference a file named `placeholder-feature.svg`with the following html snippet. (note the `svg-` prefix) 179 | ```html 180 | 181 | 182 | 183 | ``` 184 | 185 | Refer to [demo/file_output/.eleventy.js](./demo/array_config/.eleventy.js) for an example. 186 | 187 | ## Credits 188 | 189 | - https://github.com/11ta/11ta-template for SVG compilation code and SVG shortcode 190 | - https://github.com/11ty/eleventy-plugin-syntaxhighlight, https://github.com/brob/eleventy-plugin-svg-contents and https://github.com/5t3ph/eleventy-plugin-template for Eleventy plugin structure 191 | - [@daviddarnes](https://github.com/daviddarnes) for the suggestion of wrapping this code into a plugin 192 | 193 | ## Support this project 194 | 195 | [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/patrickxchong) 196 | -------------------------------------------------------------------------------- /demo/array_config/.eleventy.js: -------------------------------------------------------------------------------- 1 | const svgSprite = require("eleventy-plugin-svg-sprite"); 2 | 3 | module.exports = function (eleventyConfig) { 4 | eleventyConfig.addPlugin(svgSprite, [{ 5 | path: "./assets/svg_general", 6 | svgSpriteShortcode: "svgspriteGeneral", 7 | globalClasses: "svgicon", 8 | defaultClasses: "default-class" 9 | }, 10 | { 11 | path: "./assets/svg_home", 12 | svgSpriteShortcode: "svgspriteHome", 13 | svgShortcode: "svgHome", // optional to have custom svgShortcode per instance. The default "svg" shortcode would work for all instances. 14 | globalClasses: "svgicon", 15 | defaultClasses: "default-class" 16 | }, { 17 | path: "./assets/svg_profile", 18 | svgSpriteShortcode: "svgspriteProfile", 19 | globalClasses: "svgicon", 20 | defaultClasses: "default-class" 21 | }]); 22 | }; 23 | -------------------------------------------------------------------------------- /demo/array_config/assets/svg_general/placeholder-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | placeholder 7 | thumb 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/array_config/assets/svg_home/placeholder-feature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | feature 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/array_config/assets/svg_profile/placeholder-slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | slider 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/array_config/custom-shortcode.js: -------------------------------------------------------------------------------- 1 | eleventyConfig.addShortcode("icon", function (name) { 2 | return ``; 3 | }); -------------------------------------------------------------------------------- /demo/array_config/demo-11ty.11ty.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return `
3 | ${this.svgspriteHome()} 4 | ${this.svg("placeholder-feature")} 5 | ${this.svg("placeholder-slider")} 6 | ${this.svg("placeholder-thumb","custom-class-1 custom-class-2")} 7 |
`; 8 | }; -------------------------------------------------------------------------------- /demo/array_config/demo-handlebars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{{svgspriteProfile}}} 9 | 10 | {{{svg "placeholder-feature"}}} 11 | {{{svg "placeholder-slider"}}} 12 | {{{svg "placeholder-thumb" "custom-class-1 custom-class-2"}}} 13 | 14 | -------------------------------------------------------------------------------- /demo/array_config/demo-liquid.liquid: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgspriteGeneral %} 10 | 11 | {% svg "placeholder-feature" %} 12 | {% svg "placeholder-slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2"%} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/array_config/demo-nunjucks.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgspriteGeneral %} 10 | {% svgspriteHome %} 11 | {% svgspriteProfile %} 12 | 13 | {% svg "placeholder-feature" %} 14 | {% svgHome "placeholder-slider" %} 15 | {% svg "placeholder-slider" %} 16 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2" %} 17 | 18 | 19 | -------------------------------------------------------------------------------- /demo/array_config/index.njk: -------------------------------------------------------------------------------- 1 |

Demo

2 |

Nunjucks

3 | 5 |

Liquid

6 | 8 |

Handlerbars

9 | 11 |

11ty.js

12 | -------------------------------------------------------------------------------- /demo/array_config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite-example-array-config", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "test": "echo \"Error: no test specified\" && exit 1", 6 | "start": "eleventy --serve", 7 | "build": "eleventy" 8 | }, 9 | "author": { 10 | "name": "Patrick Chong", 11 | "email": "mail@patrickxchong.com", 12 | "url": "https://www.patrickxchong.com" 13 | }, 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@11ty/eleventy": "^0.11.0", 17 | "eleventy-plugin-svg-sprite": "link:../../" 18 | } 19 | } -------------------------------------------------------------------------------- /demo/basic/.eleventy.js: -------------------------------------------------------------------------------- 1 | const svgSprite = require("eleventy-plugin-svg-sprite"); 2 | 3 | module.exports = function (eleventyConfig) { 4 | eleventyConfig.addPlugin(svgSprite, { 5 | path: "./assets/svg", 6 | globalClasses: "svgicon", 7 | defaultClasses: "default-class" 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /demo/basic/assets/svg/placeholder-feature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | feature 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/basic/assets/svg/placeholder-slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | slider 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/basic/assets/svg/placeholder-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | placeholder 7 | thumb 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/basic/custom-shortcode.js: -------------------------------------------------------------------------------- 1 | eleventyConfig.addShortcode("icon", function (name) { 2 | return ``; 3 | }); -------------------------------------------------------------------------------- /demo/basic/demo-11ty.11ty.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return `
3 | ${this.svgsprite()} 4 | ${this.svg("placeholder-feature")} 5 | ${this.svg("placeholder-slider")} 6 | ${this.svg("placeholder-thumb","custom-class-1 custom-class-2")} 7 |
`; 8 | }; -------------------------------------------------------------------------------- /demo/basic/demo-handlebars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{{svgsprite}}} 9 | 10 | {{{svg "placeholder-feature"}}} 11 | {{{svg "placeholder-slider"}}} 12 | {{{svg "placeholder-thumb" "custom-class-1 custom-class-2"}}} 13 | 14 | -------------------------------------------------------------------------------- /demo/basic/demo-liquid.liquid: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "placeholder-feature" %} 12 | {% svg "placeholder-slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2"%} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/basic/demo-nunjucks.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "placeholder-feature" %} 12 | {% svg "placeholder-slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2" %} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/basic/index.njk: -------------------------------------------------------------------------------- 1 |

Demo

2 |

Nunjucks

3 | 5 |

Liquid

6 | 8 |

Handlerbars

9 | 11 |

11ty.js

12 | -------------------------------------------------------------------------------- /demo/basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite-example-basic", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "test": "echo \"Error: no test specified\" && exit 1", 6 | "start": "eleventy --serve", 7 | "build": "eleventy" 8 | }, 9 | "author": { 10 | "name": "Patrick Chong", 11 | "email": "mail@patrickxchong.com", 12 | "url": "https://www.patrickxchong.com" 13 | }, 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@11ty/eleventy": "^0.11.0", 17 | "eleventy-plugin-svg-sprite": "link:../../" 18 | } 19 | } -------------------------------------------------------------------------------- /demo/custom_spriteconfig/.eleventy.js: -------------------------------------------------------------------------------- 1 | const svgSprite = require("eleventy-plugin-svg-sprite"); 2 | 3 | module.exports = function (eleventyConfig) { 4 | eleventyConfig.addPlugin(svgSprite, { 5 | path: "./assets/svg", 6 | globalClasses: "svgicon", 7 | defaultClasses: "default-class", 8 | spriteConfig: { 9 | shape: { 10 | transform: [{ 11 | svgo: { 12 | plugins: [{ 13 | name: 'preset-default', 14 | params: { 15 | overrides: { 16 | collapseGroups: false 17 | } 18 | } 19 | }] 20 | } 21 | }] 22 | } 23 | } 24 | }); 25 | }; 26 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/assets/svg/placeholder-feature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | feature 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/assets/svg/placeholder-slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | slider 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/assets/svg/placeholder-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | placeholder 7 | thumb 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/custom-shortcode.js: -------------------------------------------------------------------------------- 1 | eleventyConfig.addShortcode("icon", function (name) { 2 | return ``; 3 | }); -------------------------------------------------------------------------------- /demo/custom_spriteconfig/demo-11ty.11ty.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return `
3 | ${this.svgsprite()} 4 | ${this.svg("placeholder-feature")} 5 | ${this.svg("placeholder-slider")} 6 | ${this.svg("placeholder-thumb","custom-class-1 custom-class-2")} 7 |
`; 8 | }; -------------------------------------------------------------------------------- /demo/custom_spriteconfig/demo-handlebars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{{svgsprite}}} 9 | 10 | {{{svg "placeholder-feature"}}} 11 | {{{svg "placeholder-slider"}}} 12 | {{{svg "placeholder-thumb" "custom-class-1 custom-class-2"}}} 13 | 14 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/demo-liquid.liquid: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "placeholder-feature" %} 12 | {% svg "placeholder-slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2"%} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/demo-nunjucks.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "placeholder-feature" %} 12 | {% svg "placeholder-slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2" %} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/index.njk: -------------------------------------------------------------------------------- 1 |

Demo

2 |

Nunjucks

3 | 5 |

Liquid

6 | 8 |

Handlerbars

9 | 11 |

11ty.js

12 | -------------------------------------------------------------------------------- /demo/custom_spriteconfig/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite-example-basic", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "test": "echo \"Error: no test specified\" && exit 1", 6 | "start": "eleventy --serve", 7 | "build": "eleventy" 8 | }, 9 | "author": { 10 | "name": "Patrick Chong", 11 | "email": "mail@patrickxchong.com", 12 | "url": "https://www.patrickxchong.com" 13 | }, 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@11ty/eleventy": "^0.11.0", 17 | "eleventy-plugin-svg-sprite": "link:../../" 18 | } 19 | } -------------------------------------------------------------------------------- /demo/file_output/.eleventy.js: -------------------------------------------------------------------------------- 1 | const svgSprite = require("eleventy-plugin-svg-sprite"); 2 | 3 | module.exports = function (eleventyConfig) { 4 | eleventyConfig.addPlugin(svgSprite, { 5 | path: "./assets/svg", 6 | globalClasses: "svgicon", 7 | defaultClasses: "default-class", 8 | outputFilepath: "./_site/sprites/icons.svg" 9 | }); 10 | }; 11 | -------------------------------------------------------------------------------- /demo/file_output/assets/svg/placeholder-feature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | feature 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/file_output/assets/svg/placeholder-slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | slider 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/file_output/assets/svg/placeholder-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | placeholder 7 | thumb 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/file_output/demo-11ty.11ty.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return `
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
`; 13 | }; -------------------------------------------------------------------------------- /demo/file_output/demo-handlebars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /demo/file_output/demo-liquid.liquid: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /demo/file_output/demo-nunjucks.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /demo/file_output/index.njk: -------------------------------------------------------------------------------- 1 |

Demo

2 |

Nunjucks

3 | 5 |

Liquid

6 | 8 |

Handlerbars

9 | 11 |

11ty.js

12 | -------------------------------------------------------------------------------- /demo/file_output/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite-example-file-output", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "test": "echo \"Error: no test specified\" && exit 1", 6 | "start": "eleventy --serve", 7 | "build": "eleventy" 8 | }, 9 | "author": { 10 | "name": "Patrick Chong", 11 | "email": "mail@patrickxchong.com", 12 | "url": "https://www.patrickxchong.com" 13 | }, 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@11ty/eleventy": "^0.11.0", 17 | "eleventy-plugin-svg-sprite": "link:../../" 18 | } 19 | } -------------------------------------------------------------------------------- /demo/subdir/.eleventy.js: -------------------------------------------------------------------------------- 1 | const svgSprite = require("eleventy-plugin-svg-sprite"); 2 | 3 | module.exports = function (eleventyConfig) { 4 | eleventyConfig.addPlugin(svgSprite, { 5 | path: "./assets/svg", 6 | globalClasses: "svgicon", 7 | defaultClasses: "default-class" 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /demo/subdir/assets/svg/placeholder-thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | placeholder 7 | thumb 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/subdir/assets/svg/sub_dir_1/placeholder-feature.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | feature 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/subdir/assets/svg/sub_dir_2/sub_sub_dir_2/placeholder slider.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | placeholder 9 | slider 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/subdir/custom-shortcode.js: -------------------------------------------------------------------------------- 1 | eleventyConfig.addShortcode("icon", function (name) { 2 | return ``; 3 | }); -------------------------------------------------------------------------------- /demo/subdir/demo-11ty.11ty.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return `
3 | ${this.svgsprite()} 4 | ${this.svg("sub_dir_1--placeholder-feature")} 5 | ${this.svg("sub_dir_2--sub_sub_dir_2--placeholder_slider")} 6 | ${this.svg("placeholder-thumb","custom-class-1 custom-class-2")} 7 |
`; 8 | }; -------------------------------------------------------------------------------- /demo/subdir/demo-handlebars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{{svgsprite}}} 9 | 10 | {{{svg "sub_dir_1--placeholder-feature"}}} 11 | {{{svg "sub_dir_2--sub_sub_dir_2--placeholder_slider"}}} 12 | {{{svg "placeholder-thumb" "custom-class-1 custom-class-2"}}} 13 | 14 | -------------------------------------------------------------------------------- /demo/subdir/demo-liquid.liquid: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "sub_dir_1--placeholder-feature" %} 12 | {% svg "sub_dir_2--sub_sub_dir_2--placeholder_slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2"%} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/subdir/demo-nunjucks.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {% svgsprite %} 10 | 11 | {% svg "sub_dir_1--placeholder-feature" %} 12 | {% svg "sub_dir_2--sub_sub_dir_2--placeholder_slider" %} 13 | {% svg "placeholder-thumb", "custom-class-1 custom-class-2" %} 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/subdir/index.njk: -------------------------------------------------------------------------------- 1 |

Demo

2 |

Nunjucks

3 | 5 |

Liquid

6 | 8 |

Handlerbars

9 | 11 |

11ty.js

12 | -------------------------------------------------------------------------------- /demo/subdir/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite-example-basic", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "test": "echo \"Error: no test specified\" && exit 1", 6 | "start": "eleventy --serve", 7 | "build": "eleventy" 8 | }, 9 | "author": { 10 | "name": "Patrick Chong", 11 | "email": "mail@patrickxchong.com", 12 | "url": "https://www.patrickxchong.com" 13 | }, 14 | "license": "MIT", 15 | "devDependencies": { 16 | "@11ty/eleventy": "^0.11.0", 17 | "eleventy-plugin-svg-sprite": "link:../../" 18 | } 19 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite", 3 | "version": "2.4.4", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "eleventy-plugin-svg-sprite", 9 | "version": "2.4.4", 10 | "license": "MIT", 11 | "dependencies": { 12 | "glob": "^11.0.1", 13 | "lodash": "^4.17.21", 14 | "svg-sprite": "2.0.4", 15 | "vinyl": "^3.0.0" 16 | }, 17 | "funding": { 18 | "url": "https://ko-fi.com/patrickxchong" 19 | }, 20 | "peerDependencies": { 21 | "@11ty/eleventy": ">=0.5.4" 22 | } 23 | }, 24 | "node_modules/@11ty/dependency-tree": { 25 | "version": "3.0.1", 26 | "license": "MIT", 27 | "peer": true, 28 | "dependencies": { 29 | "@11ty/eleventy-utils": "^1.0.2" 30 | } 31 | }, 32 | "node_modules/@11ty/dependency-tree-esm": { 33 | "version": "1.0.2", 34 | "license": "MIT", 35 | "peer": true, 36 | "dependencies": { 37 | "@11ty/eleventy-utils": "^1.0.3", 38 | "acorn": "^8.14.0", 39 | "dependency-graph": "^1.0.0", 40 | "normalize-path": "^3.0.0" 41 | } 42 | }, 43 | "node_modules/@11ty/eleventy": { 44 | "version": "3.0.0", 45 | "license": "MIT", 46 | "peer": true, 47 | "dependencies": { 48 | "@11ty/dependency-tree": "^3.0.1", 49 | "@11ty/dependency-tree-esm": "^1.0.0", 50 | "@11ty/eleventy-dev-server": "^2.0.4", 51 | "@11ty/eleventy-plugin-bundle": "^3.0.0", 52 | "@11ty/eleventy-utils": "^1.0.3", 53 | "@11ty/lodash-custom": "^4.17.21", 54 | "@11ty/posthtml-urls": "^1.0.0", 55 | "@11ty/recursive-copy": "^3.0.0", 56 | "@sindresorhus/slugify": "^2.2.1", 57 | "bcp-47-normalize": "^2.3.0", 58 | "chardet": "^2.0.0", 59 | "chokidar": "^3.6.0", 60 | "cross-spawn": "^7.0.3", 61 | "debug": "^4.3.7", 62 | "dependency-graph": "^1.0.0", 63 | "entities": "^5.0.0", 64 | "fast-glob": "^3.3.2", 65 | "filesize": "^10.1.6", 66 | "graceful-fs": "^4.2.11", 67 | "gray-matter": "^4.0.3", 68 | "is-glob": "^4.0.3", 69 | "iso-639-1": "^3.1.3", 70 | "js-yaml": "^4.1.0", 71 | "kleur": "^4.1.5", 72 | "liquidjs": "^10.17.0", 73 | "luxon": "^3.5.0", 74 | "markdown-it": "^14.1.0", 75 | "micromatch": "^4.0.8", 76 | "minimist": "^1.2.8", 77 | "moo": "^0.5.2", 78 | "node-retrieve-globals": "^6.0.0", 79 | "normalize-path": "^3.0.0", 80 | "nunjucks": "^3.2.4", 81 | "please-upgrade-node": "^3.2.0", 82 | "posthtml": "^0.16.6", 83 | "posthtml-match-helper": "^2.0.2", 84 | "semver": "^7.6.3", 85 | "slugify": "^1.6.6" 86 | }, 87 | "bin": { 88 | "eleventy": "cmd.cjs" 89 | }, 90 | "engines": { 91 | "node": ">=18" 92 | }, 93 | "funding": { 94 | "type": "opencollective", 95 | "url": "https://opencollective.com/11ty" 96 | } 97 | }, 98 | "node_modules/@11ty/eleventy-dev-server": { 99 | "version": "2.0.7", 100 | "license": "MIT", 101 | "peer": true, 102 | "dependencies": { 103 | "@11ty/eleventy-utils": "^2.0.1", 104 | "chokidar": "^3.6.0", 105 | "debug": "^4.4.0", 106 | "finalhandler": "^1.3.1", 107 | "mime": "^3.0.0", 108 | "minimist": "^1.2.8", 109 | "morphdom": "^2.7.4", 110 | "please-upgrade-node": "^3.2.0", 111 | "send": "^1.1.0", 112 | "ssri": "^11.0.0", 113 | "urlpattern-polyfill": "^10.0.0", 114 | "ws": "^8.18.1" 115 | }, 116 | "bin": { 117 | "eleventy-dev-server": "cmd.js" 118 | }, 119 | "engines": { 120 | "node": ">=18" 121 | }, 122 | "funding": { 123 | "type": "opencollective", 124 | "url": "https://opencollective.com/11ty" 125 | } 126 | }, 127 | "node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils": { 128 | "version": "2.0.1", 129 | "license": "MIT", 130 | "peer": true, 131 | "engines": { 132 | "node": ">=18" 133 | }, 134 | "funding": { 135 | "type": "opencollective", 136 | "url": "https://opencollective.com/11ty" 137 | } 138 | }, 139 | "node_modules/@11ty/eleventy-plugin-bundle": { 140 | "version": "3.0.1", 141 | "license": "MIT", 142 | "peer": true, 143 | "dependencies": { 144 | "debug": "^4.4.0", 145 | "posthtml-match-helper": "^2.0.3" 146 | }, 147 | "engines": { 148 | "node": ">=18" 149 | }, 150 | "funding": { 151 | "type": "opencollective", 152 | "url": "https://opencollective.com/11ty" 153 | } 154 | }, 155 | "node_modules/@11ty/eleventy-utils": { 156 | "version": "1.0.3", 157 | "license": "MIT", 158 | "peer": true, 159 | "dependencies": { 160 | "normalize-path": "^3.0.0" 161 | }, 162 | "engines": { 163 | "node": ">=12" 164 | }, 165 | "funding": { 166 | "type": "opencollective", 167 | "url": "https://opencollective.com/11ty" 168 | } 169 | }, 170 | "node_modules/@11ty/lodash-custom": { 171 | "version": "4.17.21", 172 | "license": "MIT", 173 | "peer": true, 174 | "engines": { 175 | "node": ">=14" 176 | }, 177 | "funding": { 178 | "type": "opencollective", 179 | "url": "https://opencollective.com/11ty" 180 | } 181 | }, 182 | "node_modules/@11ty/posthtml-urls": { 183 | "version": "1.0.1", 184 | "license": "MIT", 185 | "peer": true, 186 | "dependencies": { 187 | "evaluate-value": "^2.0.0", 188 | "http-equiv-refresh": "^2.0.1", 189 | "list-to-array": "^1.1.0", 190 | "parse-srcset": "^1.0.2" 191 | }, 192 | "engines": { 193 | "node": ">= 6" 194 | } 195 | }, 196 | "node_modules/@11ty/recursive-copy": { 197 | "version": "3.0.1", 198 | "license": "ISC", 199 | "peer": true, 200 | "dependencies": { 201 | "errno": "^0.1.2", 202 | "graceful-fs": "^4.2.11", 203 | "junk": "^1.0.1", 204 | "maximatch": "^0.1.0", 205 | "mkdirp": "^3.0.1", 206 | "pify": "^2.3.0", 207 | "promise": "^7.0.1", 208 | "rimraf": "^5.0.7", 209 | "slash": "^1.0.0" 210 | } 211 | }, 212 | "node_modules/@colors/colors": { 213 | "version": "1.6.0", 214 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", 215 | "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", 216 | "license": "MIT", 217 | "engines": { 218 | "node": ">=0.1.90" 219 | } 220 | }, 221 | "node_modules/@dabh/diagnostics": { 222 | "version": "2.0.3", 223 | "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", 224 | "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", 225 | "license": "MIT", 226 | "dependencies": { 227 | "colorspace": "1.1.x", 228 | "enabled": "2.0.x", 229 | "kuler": "^2.0.0" 230 | } 231 | }, 232 | "node_modules/@isaacs/cliui": { 233 | "version": "8.0.2", 234 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 235 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 236 | "license": "ISC", 237 | "dependencies": { 238 | "string-width": "^5.1.2", 239 | "string-width-cjs": "npm:string-width@^4.2.0", 240 | "strip-ansi": "^7.0.1", 241 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 242 | "wrap-ansi": "^8.1.0", 243 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 244 | }, 245 | "engines": { 246 | "node": ">=12" 247 | } 248 | }, 249 | "node_modules/@nodelib/fs.scandir": { 250 | "version": "2.1.5", 251 | "license": "MIT", 252 | "peer": true, 253 | "dependencies": { 254 | "@nodelib/fs.stat": "2.0.5", 255 | "run-parallel": "^1.1.9" 256 | }, 257 | "engines": { 258 | "node": ">= 8" 259 | } 260 | }, 261 | "node_modules/@nodelib/fs.stat": { 262 | "version": "2.0.5", 263 | "license": "MIT", 264 | "peer": true, 265 | "engines": { 266 | "node": ">= 8" 267 | } 268 | }, 269 | "node_modules/@nodelib/fs.walk": { 270 | "version": "1.2.8", 271 | "license": "MIT", 272 | "peer": true, 273 | "dependencies": { 274 | "@nodelib/fs.scandir": "2.1.5", 275 | "fastq": "^1.6.0" 276 | }, 277 | "engines": { 278 | "node": ">= 8" 279 | } 280 | }, 281 | "node_modules/@pkgjs/parseargs": { 282 | "version": "0.11.0", 283 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 284 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 285 | "license": "MIT", 286 | "optional": true, 287 | "peer": true, 288 | "engines": { 289 | "node": ">=14" 290 | } 291 | }, 292 | "node_modules/@resvg/resvg-js": { 293 | "version": "2.6.2", 294 | "resolved": "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.2.tgz", 295 | "integrity": "sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q==", 296 | "license": "MPL-2.0", 297 | "engines": { 298 | "node": ">= 10" 299 | }, 300 | "optionalDependencies": { 301 | "@resvg/resvg-js-android-arm-eabi": "2.6.2", 302 | "@resvg/resvg-js-android-arm64": "2.6.2", 303 | "@resvg/resvg-js-darwin-arm64": "2.6.2", 304 | "@resvg/resvg-js-darwin-x64": "2.6.2", 305 | "@resvg/resvg-js-linux-arm-gnueabihf": "2.6.2", 306 | "@resvg/resvg-js-linux-arm64-gnu": "2.6.2", 307 | "@resvg/resvg-js-linux-arm64-musl": "2.6.2", 308 | "@resvg/resvg-js-linux-x64-gnu": "2.6.2", 309 | "@resvg/resvg-js-linux-x64-musl": "2.6.2", 310 | "@resvg/resvg-js-win32-arm64-msvc": "2.6.2", 311 | "@resvg/resvg-js-win32-ia32-msvc": "2.6.2", 312 | "@resvg/resvg-js-win32-x64-msvc": "2.6.2" 313 | } 314 | }, 315 | "node_modules/@resvg/resvg-js-linux-x64-gnu": { 316 | "version": "2.6.2", 317 | "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-gnu/-/resvg-js-linux-x64-gnu-2.6.2.tgz", 318 | "integrity": "sha512-IVUe+ckIerA7xMZ50duAZzwf1U7khQe2E0QpUxu5MBJNao5RqC0zwV/Zm965vw6D3gGFUl7j4m+oJjubBVoftw==", 319 | "cpu": [ 320 | "x64" 321 | ], 322 | "license": "MPL-2.0", 323 | "optional": true, 324 | "os": [ 325 | "linux" 326 | ], 327 | "engines": { 328 | "node": ">= 10" 329 | } 330 | }, 331 | "node_modules/@sindresorhus/slugify": { 332 | "version": "2.2.1", 333 | "license": "MIT", 334 | "peer": true, 335 | "dependencies": { 336 | "@sindresorhus/transliterate": "^1.0.0", 337 | "escape-string-regexp": "^5.0.0" 338 | }, 339 | "engines": { 340 | "node": ">=12" 341 | }, 342 | "funding": { 343 | "url": "https://github.com/sponsors/sindresorhus" 344 | } 345 | }, 346 | "node_modules/@sindresorhus/transliterate": { 347 | "version": "1.6.0", 348 | "license": "MIT", 349 | "peer": true, 350 | "dependencies": { 351 | "escape-string-regexp": "^5.0.0" 352 | }, 353 | "engines": { 354 | "node": ">=12" 355 | }, 356 | "funding": { 357 | "url": "https://github.com/sponsors/sindresorhus" 358 | } 359 | }, 360 | "node_modules/@trysound/sax": { 361 | "version": "0.2.0", 362 | "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", 363 | "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", 364 | "license": "ISC", 365 | "engines": { 366 | "node": ">=10.13.0" 367 | } 368 | }, 369 | "node_modules/@types/triple-beam": { 370 | "version": "1.3.5", 371 | "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", 372 | "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==", 373 | "license": "MIT" 374 | }, 375 | "node_modules/@xmldom/xmldom": { 376 | "version": "0.8.10", 377 | "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", 378 | "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", 379 | "license": "MIT", 380 | "engines": { 381 | "node": ">=10.0.0" 382 | } 383 | }, 384 | "node_modules/a-sync-waterfall": { 385 | "version": "1.0.1", 386 | "license": "MIT", 387 | "peer": true 388 | }, 389 | "node_modules/acorn": { 390 | "version": "8.14.1", 391 | "license": "MIT", 392 | "peer": true, 393 | "bin": { 394 | "acorn": "bin/acorn" 395 | }, 396 | "engines": { 397 | "node": ">=0.4.0" 398 | } 399 | }, 400 | "node_modules/acorn-walk": { 401 | "version": "8.3.4", 402 | "license": "MIT", 403 | "peer": true, 404 | "dependencies": { 405 | "acorn": "^8.11.0" 406 | }, 407 | "engines": { 408 | "node": ">=0.4.0" 409 | } 410 | }, 411 | "node_modules/ansi-regex": { 412 | "version": "6.0.1", 413 | "license": "MIT", 414 | "engines": { 415 | "node": ">=12" 416 | }, 417 | "funding": { 418 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 419 | } 420 | }, 421 | "node_modules/ansi-styles": { 422 | "version": "6.2.1", 423 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 424 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 425 | "license": "MIT", 426 | "engines": { 427 | "node": ">=12" 428 | }, 429 | "funding": { 430 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 431 | } 432 | }, 433 | "node_modules/anymatch": { 434 | "version": "3.1.3", 435 | "license": "ISC", 436 | "peer": true, 437 | "dependencies": { 438 | "normalize-path": "^3.0.0", 439 | "picomatch": "^2.0.4" 440 | }, 441 | "engines": { 442 | "node": ">= 8" 443 | } 444 | }, 445 | "node_modules/argparse": { 446 | "version": "2.0.1", 447 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 448 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 449 | "license": "Python-2.0" 450 | }, 451 | "node_modules/array-differ": { 452 | "version": "1.0.0", 453 | "license": "MIT", 454 | "peer": true, 455 | "engines": { 456 | "node": ">=0.10.0" 457 | } 458 | }, 459 | "node_modules/array-union": { 460 | "version": "1.0.2", 461 | "license": "MIT", 462 | "peer": true, 463 | "dependencies": { 464 | "array-uniq": "^1.0.1" 465 | }, 466 | "engines": { 467 | "node": ">=0.10.0" 468 | } 469 | }, 470 | "node_modules/array-uniq": { 471 | "version": "1.0.3", 472 | "license": "MIT", 473 | "peer": true, 474 | "engines": { 475 | "node": ">=0.10.0" 476 | } 477 | }, 478 | "node_modules/arrify": { 479 | "version": "1.0.1", 480 | "license": "MIT", 481 | "peer": true, 482 | "engines": { 483 | "node": ">=0.10.0" 484 | } 485 | }, 486 | "node_modules/asap": { 487 | "version": "2.0.6", 488 | "license": "MIT", 489 | "peer": true 490 | }, 491 | "node_modules/async": { 492 | "version": "3.2.6", 493 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", 494 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", 495 | "license": "MIT" 496 | }, 497 | "node_modules/balanced-match": { 498 | "version": "1.0.2", 499 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 500 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 501 | "license": "MIT" 502 | }, 503 | "node_modules/bcp-47": { 504 | "version": "2.1.0", 505 | "license": "MIT", 506 | "peer": true, 507 | "dependencies": { 508 | "is-alphabetical": "^2.0.0", 509 | "is-alphanumerical": "^2.0.0", 510 | "is-decimal": "^2.0.0" 511 | }, 512 | "funding": { 513 | "type": "github", 514 | "url": "https://github.com/sponsors/wooorm" 515 | } 516 | }, 517 | "node_modules/bcp-47-match": { 518 | "version": "2.0.3", 519 | "license": "MIT", 520 | "peer": true, 521 | "funding": { 522 | "type": "github", 523 | "url": "https://github.com/sponsors/wooorm" 524 | } 525 | }, 526 | "node_modules/bcp-47-normalize": { 527 | "version": "2.3.0", 528 | "license": "MIT", 529 | "peer": true, 530 | "dependencies": { 531 | "bcp-47": "^2.0.0", 532 | "bcp-47-match": "^2.0.0" 533 | }, 534 | "funding": { 535 | "type": "github", 536 | "url": "https://github.com/sponsors/wooorm" 537 | } 538 | }, 539 | "node_modules/binary-extensions": { 540 | "version": "2.3.0", 541 | "license": "MIT", 542 | "peer": true, 543 | "engines": { 544 | "node": ">=8" 545 | }, 546 | "funding": { 547 | "url": "https://github.com/sponsors/sindresorhus" 548 | } 549 | }, 550 | "node_modules/boolbase": { 551 | "version": "1.0.0", 552 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 553 | "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 554 | "license": "ISC" 555 | }, 556 | "node_modules/brace-expansion": { 557 | "version": "2.0.1", 558 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 559 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 560 | "license": "MIT", 561 | "dependencies": { 562 | "balanced-match": "^1.0.0" 563 | } 564 | }, 565 | "node_modules/braces": { 566 | "version": "3.0.3", 567 | "license": "MIT", 568 | "peer": true, 569 | "dependencies": { 570 | "fill-range": "^7.1.1" 571 | }, 572 | "engines": { 573 | "node": ">=8" 574 | } 575 | }, 576 | "node_modules/chardet": { 577 | "version": "2.1.0", 578 | "license": "MIT", 579 | "peer": true 580 | }, 581 | "node_modules/chokidar": { 582 | "version": "3.6.0", 583 | "license": "MIT", 584 | "peer": true, 585 | "dependencies": { 586 | "anymatch": "~3.1.2", 587 | "braces": "~3.0.2", 588 | "glob-parent": "~5.1.2", 589 | "is-binary-path": "~2.1.0", 590 | "is-glob": "~4.0.1", 591 | "normalize-path": "~3.0.0", 592 | "readdirp": "~3.6.0" 593 | }, 594 | "engines": { 595 | "node": ">= 8.10.0" 596 | }, 597 | "funding": { 598 | "url": "https://paulmillr.com/funding/" 599 | }, 600 | "optionalDependencies": { 601 | "fsevents": "~2.3.2" 602 | } 603 | }, 604 | "node_modules/cliui": { 605 | "version": "8.0.1", 606 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 607 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 608 | "license": "ISC", 609 | "dependencies": { 610 | "string-width": "^4.2.0", 611 | "strip-ansi": "^6.0.1", 612 | "wrap-ansi": "^7.0.0" 613 | }, 614 | "engines": { 615 | "node": ">=12" 616 | } 617 | }, 618 | "node_modules/cliui/node_modules/ansi-regex": { 619 | "version": "5.0.1", 620 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 621 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 622 | "license": "MIT", 623 | "engines": { 624 | "node": ">=8" 625 | } 626 | }, 627 | "node_modules/cliui/node_modules/ansi-styles": { 628 | "version": "4.3.0", 629 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 630 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 631 | "license": "MIT", 632 | "dependencies": { 633 | "color-convert": "^2.0.1" 634 | }, 635 | "engines": { 636 | "node": ">=8" 637 | }, 638 | "funding": { 639 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 640 | } 641 | }, 642 | "node_modules/cliui/node_modules/color-convert": { 643 | "version": "2.0.1", 644 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 645 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 646 | "license": "MIT", 647 | "dependencies": { 648 | "color-name": "~1.1.4" 649 | }, 650 | "engines": { 651 | "node": ">=7.0.0" 652 | } 653 | }, 654 | "node_modules/cliui/node_modules/color-name": { 655 | "version": "1.1.4", 656 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 657 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 658 | "license": "MIT" 659 | }, 660 | "node_modules/cliui/node_modules/emoji-regex": { 661 | "version": "8.0.0", 662 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 663 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 664 | "license": "MIT" 665 | }, 666 | "node_modules/cliui/node_modules/string-width": { 667 | "version": "4.2.3", 668 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 669 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 670 | "license": "MIT", 671 | "dependencies": { 672 | "emoji-regex": "^8.0.0", 673 | "is-fullwidth-code-point": "^3.0.0", 674 | "strip-ansi": "^6.0.1" 675 | }, 676 | "engines": { 677 | "node": ">=8" 678 | } 679 | }, 680 | "node_modules/cliui/node_modules/strip-ansi": { 681 | "version": "6.0.1", 682 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 683 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 684 | "license": "MIT", 685 | "dependencies": { 686 | "ansi-regex": "^5.0.1" 687 | }, 688 | "engines": { 689 | "node": ">=8" 690 | } 691 | }, 692 | "node_modules/cliui/node_modules/wrap-ansi": { 693 | "version": "7.0.0", 694 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 695 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 696 | "license": "MIT", 697 | "dependencies": { 698 | "ansi-styles": "^4.0.0", 699 | "string-width": "^4.1.0", 700 | "strip-ansi": "^6.0.0" 701 | }, 702 | "engines": { 703 | "node": ">=10" 704 | }, 705 | "funding": { 706 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 707 | } 708 | }, 709 | "node_modules/clone": { 710 | "version": "2.1.2", 711 | "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 712 | "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", 713 | "license": "MIT", 714 | "engines": { 715 | "node": ">=0.8" 716 | } 717 | }, 718 | "node_modules/clone-buffer": { 719 | "version": "1.0.0", 720 | "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", 721 | "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", 722 | "license": "MIT", 723 | "engines": { 724 | "node": ">= 0.10" 725 | } 726 | }, 727 | "node_modules/clone-stats": { 728 | "version": "1.0.0", 729 | "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", 730 | "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", 731 | "license": "MIT" 732 | }, 733 | "node_modules/cloneable-readable": { 734 | "version": "1.1.3", 735 | "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", 736 | "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", 737 | "license": "MIT", 738 | "dependencies": { 739 | "inherits": "^2.0.1", 740 | "process-nextick-args": "^2.0.0", 741 | "readable-stream": "^2.3.5" 742 | } 743 | }, 744 | "node_modules/cloneable-readable/node_modules/readable-stream": { 745 | "version": "2.3.7", 746 | "license": "MIT", 747 | "dependencies": { 748 | "core-util-is": "~1.0.0", 749 | "inherits": "~2.0.3", 750 | "isarray": "~1.0.0", 751 | "process-nextick-args": "~2.0.0", 752 | "safe-buffer": "~5.1.1", 753 | "string_decoder": "~1.1.1", 754 | "util-deprecate": "~1.0.1" 755 | } 756 | }, 757 | "node_modules/cloneable-readable/node_modules/safe-buffer": { 758 | "version": "5.1.2", 759 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 760 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 761 | "license": "MIT" 762 | }, 763 | "node_modules/cloneable-readable/node_modules/string_decoder": { 764 | "version": "1.1.1", 765 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 766 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 767 | "license": "MIT", 768 | "dependencies": { 769 | "safe-buffer": "~5.1.0" 770 | } 771 | }, 772 | "node_modules/color": { 773 | "version": "3.2.1", 774 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 775 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 776 | "license": "MIT", 777 | "dependencies": { 778 | "color-convert": "^1.9.3", 779 | "color-string": "^1.6.0" 780 | } 781 | }, 782 | "node_modules/color-convert": { 783 | "version": "1.9.3", 784 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 785 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 786 | "license": "MIT", 787 | "dependencies": { 788 | "color-name": "1.1.3" 789 | } 790 | }, 791 | "node_modules/color-name": { 792 | "version": "1.1.3", 793 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 794 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 795 | "license": "MIT" 796 | }, 797 | "node_modules/color-string": { 798 | "version": "1.9.1", 799 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 800 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 801 | "license": "MIT", 802 | "dependencies": { 803 | "color-name": "^1.0.0", 804 | "simple-swizzle": "^0.2.2" 805 | } 806 | }, 807 | "node_modules/colorspace": { 808 | "version": "1.1.4", 809 | "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", 810 | "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", 811 | "license": "MIT", 812 | "dependencies": { 813 | "color": "^3.1.3", 814 | "text-hex": "1.0.x" 815 | } 816 | }, 817 | "node_modules/commander": { 818 | "version": "10.0.1", 819 | "license": "MIT", 820 | "peer": true, 821 | "engines": { 822 | "node": ">=14" 823 | } 824 | }, 825 | "node_modules/concat-map": { 826 | "version": "0.0.1", 827 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 828 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 829 | "license": "MIT" 830 | }, 831 | "node_modules/core-util-is": { 832 | "version": "1.0.3", 833 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 834 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 835 | "license": "MIT" 836 | }, 837 | "node_modules/cross-spawn": { 838 | "version": "7.0.6", 839 | "license": "MIT", 840 | "dependencies": { 841 | "path-key": "^3.1.0", 842 | "shebang-command": "^2.0.0", 843 | "which": "^2.0.1" 844 | }, 845 | "engines": { 846 | "node": ">= 8" 847 | } 848 | }, 849 | "node_modules/css-select": { 850 | "version": "4.3.0", 851 | "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", 852 | "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", 853 | "license": "BSD-2-Clause", 854 | "dependencies": { 855 | "boolbase": "^1.0.0", 856 | "css-what": "^6.0.1", 857 | "domhandler": "^4.3.1", 858 | "domutils": "^2.8.0", 859 | "nth-check": "^2.0.1" 860 | }, 861 | "funding": { 862 | "url": "https://github.com/sponsors/fb55" 863 | } 864 | }, 865 | "node_modules/css-selector-parser": { 866 | "version": "1.4.1", 867 | "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.4.1.tgz", 868 | "integrity": "sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==", 869 | "license": "MIT" 870 | }, 871 | "node_modules/css-tree": { 872 | "version": "1.1.3", 873 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", 874 | "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", 875 | "license": "MIT", 876 | "dependencies": { 877 | "mdn-data": "2.0.14", 878 | "source-map": "^0.6.1" 879 | }, 880 | "engines": { 881 | "node": ">=8.0.0" 882 | } 883 | }, 884 | "node_modules/css-what": { 885 | "version": "6.1.0", 886 | "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", 887 | "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", 888 | "license": "BSD-2-Clause", 889 | "engines": { 890 | "node": ">= 6" 891 | }, 892 | "funding": { 893 | "url": "https://github.com/sponsors/fb55" 894 | } 895 | }, 896 | "node_modules/csso": { 897 | "version": "4.2.0", 898 | "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", 899 | "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", 900 | "license": "MIT", 901 | "dependencies": { 902 | "css-tree": "^1.1.2" 903 | }, 904 | "engines": { 905 | "node": ">=8.0.0" 906 | } 907 | }, 908 | "node_modules/cssom": { 909 | "version": "0.5.0", 910 | "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", 911 | "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", 912 | "license": "MIT" 913 | }, 914 | "node_modules/debug": { 915 | "version": "4.4.0", 916 | "license": "MIT", 917 | "peer": true, 918 | "dependencies": { 919 | "ms": "^2.1.3" 920 | }, 921 | "engines": { 922 | "node": ">=6.0" 923 | }, 924 | "peerDependenciesMeta": { 925 | "supports-color": { 926 | "optional": true 927 | } 928 | } 929 | }, 930 | "node_modules/depd": { 931 | "version": "2.0.0", 932 | "license": "MIT", 933 | "peer": true, 934 | "engines": { 935 | "node": ">= 0.8" 936 | } 937 | }, 938 | "node_modules/dependency-graph": { 939 | "version": "1.0.0", 940 | "license": "MIT", 941 | "peer": true, 942 | "engines": { 943 | "node": ">=4" 944 | } 945 | }, 946 | "node_modules/destroy": { 947 | "version": "1.2.0", 948 | "license": "MIT", 949 | "peer": true, 950 | "engines": { 951 | "node": ">= 0.8", 952 | "npm": "1.2.8000 || >= 1.4.16" 953 | } 954 | }, 955 | "node_modules/dom-serializer": { 956 | "version": "1.4.1", 957 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", 958 | "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", 959 | "license": "MIT", 960 | "dependencies": { 961 | "domelementtype": "^2.0.1", 962 | "domhandler": "^4.2.0", 963 | "entities": "^2.0.0" 964 | }, 965 | "funding": { 966 | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 967 | } 968 | }, 969 | "node_modules/dom-serializer/node_modules/entities": { 970 | "version": "2.2.0", 971 | "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", 972 | "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", 973 | "license": "BSD-2-Clause", 974 | "funding": { 975 | "url": "https://github.com/fb55/entities?sponsor=1" 976 | } 977 | }, 978 | "node_modules/domelementtype": { 979 | "version": "2.3.0", 980 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 981 | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 982 | "funding": [ 983 | { 984 | "type": "github", 985 | "url": "https://github.com/sponsors/fb55" 986 | } 987 | ], 988 | "license": "BSD-2-Clause" 989 | }, 990 | "node_modules/domhandler": { 991 | "version": "4.3.1", 992 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", 993 | "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", 994 | "license": "BSD-2-Clause", 995 | "dependencies": { 996 | "domelementtype": "^2.2.0" 997 | }, 998 | "engines": { 999 | "node": ">= 4" 1000 | }, 1001 | "funding": { 1002 | "url": "https://github.com/fb55/domhandler?sponsor=1" 1003 | } 1004 | }, 1005 | "node_modules/domutils": { 1006 | "version": "2.8.0", 1007 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", 1008 | "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", 1009 | "license": "BSD-2-Clause", 1010 | "dependencies": { 1011 | "dom-serializer": "^1.0.1", 1012 | "domelementtype": "^2.2.0", 1013 | "domhandler": "^4.2.0" 1014 | }, 1015 | "funding": { 1016 | "url": "https://github.com/fb55/domutils?sponsor=1" 1017 | } 1018 | }, 1019 | "node_modules/eastasianwidth": { 1020 | "version": "0.2.0", 1021 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1022 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1023 | "license": "MIT" 1024 | }, 1025 | "node_modules/ee-first": { 1026 | "version": "1.1.1", 1027 | "license": "MIT", 1028 | "peer": true 1029 | }, 1030 | "node_modules/emoji-regex": { 1031 | "version": "9.2.2", 1032 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1033 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1034 | "license": "MIT" 1035 | }, 1036 | "node_modules/enabled": { 1037 | "version": "2.0.0", 1038 | "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", 1039 | "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", 1040 | "license": "MIT" 1041 | }, 1042 | "node_modules/encodeurl": { 1043 | "version": "2.0.0", 1044 | "license": "MIT", 1045 | "peer": true, 1046 | "engines": { 1047 | "node": ">= 0.8" 1048 | } 1049 | }, 1050 | "node_modules/entities": { 1051 | "version": "5.0.0", 1052 | "license": "BSD-2-Clause", 1053 | "peer": true, 1054 | "engines": { 1055 | "node": ">=0.12" 1056 | }, 1057 | "funding": { 1058 | "url": "https://github.com/fb55/entities?sponsor=1" 1059 | } 1060 | }, 1061 | "node_modules/errno": { 1062 | "version": "0.1.8", 1063 | "license": "MIT", 1064 | "peer": true, 1065 | "dependencies": { 1066 | "prr": "~1.0.1" 1067 | }, 1068 | "bin": { 1069 | "errno": "cli.js" 1070 | } 1071 | }, 1072 | "node_modules/escalade": { 1073 | "version": "3.1.1", 1074 | "license": "MIT", 1075 | "engines": { 1076 | "node": ">=6" 1077 | } 1078 | }, 1079 | "node_modules/escape-html": { 1080 | "version": "1.0.3", 1081 | "license": "MIT", 1082 | "peer": true 1083 | }, 1084 | "node_modules/escape-string-regexp": { 1085 | "version": "5.0.0", 1086 | "license": "MIT", 1087 | "peer": true, 1088 | "engines": { 1089 | "node": ">=12" 1090 | }, 1091 | "funding": { 1092 | "url": "https://github.com/sponsors/sindresorhus" 1093 | } 1094 | }, 1095 | "node_modules/esm-import-transformer": { 1096 | "version": "3.0.2", 1097 | "license": "MIT", 1098 | "peer": true, 1099 | "dependencies": { 1100 | "acorn": "^8.11.2" 1101 | } 1102 | }, 1103 | "node_modules/esprima": { 1104 | "version": "4.0.1", 1105 | "license": "BSD-2-Clause", 1106 | "peer": true, 1107 | "bin": { 1108 | "esparse": "bin/esparse.js", 1109 | "esvalidate": "bin/esvalidate.js" 1110 | }, 1111 | "engines": { 1112 | "node": ">=4" 1113 | } 1114 | }, 1115 | "node_modules/etag": { 1116 | "version": "1.8.1", 1117 | "license": "MIT", 1118 | "peer": true, 1119 | "engines": { 1120 | "node": ">= 0.6" 1121 | } 1122 | }, 1123 | "node_modules/evaluate-value": { 1124 | "version": "2.0.0", 1125 | "license": "MIT", 1126 | "peer": true, 1127 | "engines": { 1128 | "node": ">= 8" 1129 | } 1130 | }, 1131 | "node_modules/extend-shallow": { 1132 | "version": "2.0.1", 1133 | "license": "MIT", 1134 | "peer": true, 1135 | "dependencies": { 1136 | "is-extendable": "^0.1.0" 1137 | }, 1138 | "engines": { 1139 | "node": ">=0.10.0" 1140 | } 1141 | }, 1142 | "node_modules/fast-fifo": { 1143 | "version": "1.3.0", 1144 | "license": "MIT" 1145 | }, 1146 | "node_modules/fast-glob": { 1147 | "version": "3.3.3", 1148 | "license": "MIT", 1149 | "peer": true, 1150 | "dependencies": { 1151 | "@nodelib/fs.stat": "^2.0.2", 1152 | "@nodelib/fs.walk": "^1.2.3", 1153 | "glob-parent": "^5.1.2", 1154 | "merge2": "^1.3.0", 1155 | "micromatch": "^4.0.8" 1156 | }, 1157 | "engines": { 1158 | "node": ">=8.6.0" 1159 | } 1160 | }, 1161 | "node_modules/fastq": { 1162 | "version": "1.19.1", 1163 | "license": "ISC", 1164 | "peer": true, 1165 | "dependencies": { 1166 | "reusify": "^1.0.4" 1167 | } 1168 | }, 1169 | "node_modules/fecha": { 1170 | "version": "4.2.3", 1171 | "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", 1172 | "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", 1173 | "license": "MIT" 1174 | }, 1175 | "node_modules/filesize": { 1176 | "version": "10.1.6", 1177 | "license": "BSD-3-Clause", 1178 | "peer": true, 1179 | "engines": { 1180 | "node": ">= 10.4.0" 1181 | } 1182 | }, 1183 | "node_modules/fill-range": { 1184 | "version": "7.1.1", 1185 | "license": "MIT", 1186 | "peer": true, 1187 | "dependencies": { 1188 | "to-regex-range": "^5.0.1" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | } 1193 | }, 1194 | "node_modules/finalhandler": { 1195 | "version": "1.3.1", 1196 | "license": "MIT", 1197 | "peer": true, 1198 | "dependencies": { 1199 | "debug": "2.6.9", 1200 | "encodeurl": "~2.0.0", 1201 | "escape-html": "~1.0.3", 1202 | "on-finished": "2.4.1", 1203 | "parseurl": "~1.3.3", 1204 | "statuses": "2.0.1", 1205 | "unpipe": "~1.0.0" 1206 | }, 1207 | "engines": { 1208 | "node": ">= 0.8" 1209 | } 1210 | }, 1211 | "node_modules/finalhandler/node_modules/debug": { 1212 | "version": "2.6.9", 1213 | "license": "MIT", 1214 | "peer": true, 1215 | "dependencies": { 1216 | "ms": "2.0.0" 1217 | } 1218 | }, 1219 | "node_modules/finalhandler/node_modules/ms": { 1220 | "version": "2.0.0", 1221 | "license": "MIT", 1222 | "peer": true 1223 | }, 1224 | "node_modules/fn.name": { 1225 | "version": "1.1.0", 1226 | "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", 1227 | "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", 1228 | "license": "MIT" 1229 | }, 1230 | "node_modules/foreground-child": { 1231 | "version": "3.1.1", 1232 | "license": "ISC", 1233 | "dependencies": { 1234 | "cross-spawn": "^7.0.0", 1235 | "signal-exit": "^4.0.1" 1236 | }, 1237 | "engines": { 1238 | "node": ">=14" 1239 | }, 1240 | "funding": { 1241 | "url": "https://github.com/sponsors/isaacs" 1242 | } 1243 | }, 1244 | "node_modules/fresh": { 1245 | "version": "0.5.2", 1246 | "license": "MIT", 1247 | "peer": true, 1248 | "engines": { 1249 | "node": ">= 0.6" 1250 | } 1251 | }, 1252 | "node_modules/fs.realpath": { 1253 | "version": "1.0.0", 1254 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1255 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1256 | "license": "ISC" 1257 | }, 1258 | "node_modules/get-caller-file": { 1259 | "version": "2.0.5", 1260 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1261 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1262 | "license": "ISC", 1263 | "engines": { 1264 | "node": "6.* || 8.* || >= 10.*" 1265 | } 1266 | }, 1267 | "node_modules/glob": { 1268 | "version": "11.0.2", 1269 | "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.2.tgz", 1270 | "integrity": "sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==", 1271 | "license": "ISC", 1272 | "dependencies": { 1273 | "foreground-child": "^3.1.0", 1274 | "jackspeak": "^4.0.1", 1275 | "minimatch": "^10.0.0", 1276 | "minipass": "^7.1.2", 1277 | "package-json-from-dist": "^1.0.0", 1278 | "path-scurry": "^2.0.0" 1279 | }, 1280 | "bin": { 1281 | "glob": "dist/esm/bin.mjs" 1282 | }, 1283 | "engines": { 1284 | "node": "20 || >=22" 1285 | }, 1286 | "funding": { 1287 | "url": "https://github.com/sponsors/isaacs" 1288 | } 1289 | }, 1290 | "node_modules/glob-parent": { 1291 | "version": "5.1.2", 1292 | "license": "ISC", 1293 | "peer": true, 1294 | "dependencies": { 1295 | "is-glob": "^4.0.1" 1296 | }, 1297 | "engines": { 1298 | "node": ">= 6" 1299 | } 1300 | }, 1301 | "node_modules/glob/node_modules/lru-cache": { 1302 | "version": "11.0.2", 1303 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz", 1304 | "integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==", 1305 | "license": "ISC", 1306 | "engines": { 1307 | "node": "20 || >=22" 1308 | } 1309 | }, 1310 | "node_modules/glob/node_modules/path-scurry": { 1311 | "version": "2.0.0", 1312 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", 1313 | "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", 1314 | "license": "BlueOak-1.0.0", 1315 | "dependencies": { 1316 | "lru-cache": "^11.0.0", 1317 | "minipass": "^7.1.2" 1318 | }, 1319 | "engines": { 1320 | "node": "20 || >=22" 1321 | }, 1322 | "funding": { 1323 | "url": "https://github.com/sponsors/isaacs" 1324 | } 1325 | }, 1326 | "node_modules/graceful-fs": { 1327 | "version": "4.2.11", 1328 | "license": "ISC", 1329 | "peer": true 1330 | }, 1331 | "node_modules/gray-matter": { 1332 | "version": "4.0.3", 1333 | "license": "MIT", 1334 | "peer": true, 1335 | "dependencies": { 1336 | "js-yaml": "^3.13.1", 1337 | "kind-of": "^6.0.2", 1338 | "section-matter": "^1.0.0", 1339 | "strip-bom-string": "^1.0.0" 1340 | }, 1341 | "engines": { 1342 | "node": ">=6.0" 1343 | } 1344 | }, 1345 | "node_modules/gray-matter/node_modules/argparse": { 1346 | "version": "1.0.10", 1347 | "license": "MIT", 1348 | "peer": true, 1349 | "dependencies": { 1350 | "sprintf-js": "~1.0.2" 1351 | } 1352 | }, 1353 | "node_modules/gray-matter/node_modules/js-yaml": { 1354 | "version": "3.14.1", 1355 | "license": "MIT", 1356 | "peer": true, 1357 | "dependencies": { 1358 | "argparse": "^1.0.7", 1359 | "esprima": "^4.0.0" 1360 | }, 1361 | "bin": { 1362 | "js-yaml": "bin/js-yaml.js" 1363 | } 1364 | }, 1365 | "node_modules/htmlparser2": { 1366 | "version": "7.2.0", 1367 | "funding": [ 1368 | "https://github.com/fb55/htmlparser2?sponsor=1", 1369 | { 1370 | "type": "github", 1371 | "url": "https://github.com/sponsors/fb55" 1372 | } 1373 | ], 1374 | "license": "MIT", 1375 | "peer": true, 1376 | "dependencies": { 1377 | "domelementtype": "^2.0.1", 1378 | "domhandler": "^4.2.2", 1379 | "domutils": "^2.8.0", 1380 | "entities": "^3.0.1" 1381 | } 1382 | }, 1383 | "node_modules/htmlparser2/node_modules/entities": { 1384 | "version": "3.0.1", 1385 | "license": "BSD-2-Clause", 1386 | "peer": true, 1387 | "engines": { 1388 | "node": ">=0.12" 1389 | }, 1390 | "funding": { 1391 | "url": "https://github.com/fb55/entities?sponsor=1" 1392 | } 1393 | }, 1394 | "node_modules/http-equiv-refresh": { 1395 | "version": "2.0.1", 1396 | "license": "MIT", 1397 | "peer": true, 1398 | "engines": { 1399 | "node": ">= 6" 1400 | } 1401 | }, 1402 | "node_modules/http-errors": { 1403 | "version": "2.0.0", 1404 | "license": "MIT", 1405 | "peer": true, 1406 | "dependencies": { 1407 | "depd": "2.0.0", 1408 | "inherits": "2.0.4", 1409 | "setprototypeof": "1.2.0", 1410 | "statuses": "2.0.1", 1411 | "toidentifier": "1.0.1" 1412 | }, 1413 | "engines": { 1414 | "node": ">= 0.8" 1415 | } 1416 | }, 1417 | "node_modules/inflight": { 1418 | "version": "1.0.6", 1419 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1420 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1421 | "license": "ISC", 1422 | "dependencies": { 1423 | "once": "^1.3.0", 1424 | "wrappy": "1" 1425 | } 1426 | }, 1427 | "node_modules/inherits": { 1428 | "version": "2.0.4", 1429 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1430 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1431 | "license": "ISC" 1432 | }, 1433 | "node_modules/is-alphabetical": { 1434 | "version": "2.0.1", 1435 | "license": "MIT", 1436 | "peer": true, 1437 | "funding": { 1438 | "type": "github", 1439 | "url": "https://github.com/sponsors/wooorm" 1440 | } 1441 | }, 1442 | "node_modules/is-alphanumerical": { 1443 | "version": "2.0.1", 1444 | "license": "MIT", 1445 | "peer": true, 1446 | "dependencies": { 1447 | "is-alphabetical": "^2.0.0", 1448 | "is-decimal": "^2.0.0" 1449 | }, 1450 | "funding": { 1451 | "type": "github", 1452 | "url": "https://github.com/sponsors/wooorm" 1453 | } 1454 | }, 1455 | "node_modules/is-arrayish": { 1456 | "version": "0.3.2", 1457 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1458 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 1459 | "license": "MIT" 1460 | }, 1461 | "node_modules/is-binary-path": { 1462 | "version": "2.1.0", 1463 | "license": "MIT", 1464 | "peer": true, 1465 | "dependencies": { 1466 | "binary-extensions": "^2.0.0" 1467 | }, 1468 | "engines": { 1469 | "node": ">=8" 1470 | } 1471 | }, 1472 | "node_modules/is-decimal": { 1473 | "version": "2.0.1", 1474 | "license": "MIT", 1475 | "peer": true, 1476 | "funding": { 1477 | "type": "github", 1478 | "url": "https://github.com/sponsors/wooorm" 1479 | } 1480 | }, 1481 | "node_modules/is-extendable": { 1482 | "version": "0.1.1", 1483 | "license": "MIT", 1484 | "peer": true, 1485 | "engines": { 1486 | "node": ">=0.10.0" 1487 | } 1488 | }, 1489 | "node_modules/is-extglob": { 1490 | "version": "2.1.1", 1491 | "license": "MIT", 1492 | "peer": true, 1493 | "engines": { 1494 | "node": ">=0.10.0" 1495 | } 1496 | }, 1497 | "node_modules/is-fullwidth-code-point": { 1498 | "version": "3.0.0", 1499 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1500 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1501 | "license": "MIT", 1502 | "engines": { 1503 | "node": ">=8" 1504 | } 1505 | }, 1506 | "node_modules/is-glob": { 1507 | "version": "4.0.3", 1508 | "license": "MIT", 1509 | "peer": true, 1510 | "dependencies": { 1511 | "is-extglob": "^2.1.1" 1512 | }, 1513 | "engines": { 1514 | "node": ">=0.10.0" 1515 | } 1516 | }, 1517 | "node_modules/is-json": { 1518 | "version": "2.0.1", 1519 | "license": "ISC", 1520 | "peer": true 1521 | }, 1522 | "node_modules/is-number": { 1523 | "version": "7.0.0", 1524 | "license": "MIT", 1525 | "peer": true, 1526 | "engines": { 1527 | "node": ">=0.12.0" 1528 | } 1529 | }, 1530 | "node_modules/is-stream": { 1531 | "version": "2.0.1", 1532 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 1533 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 1534 | "license": "MIT", 1535 | "engines": { 1536 | "node": ">=8" 1537 | }, 1538 | "funding": { 1539 | "url": "https://github.com/sponsors/sindresorhus" 1540 | } 1541 | }, 1542 | "node_modules/isarray": { 1543 | "version": "1.0.0", 1544 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1545 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 1546 | "license": "MIT" 1547 | }, 1548 | "node_modules/isexe": { 1549 | "version": "2.0.0", 1550 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1551 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1552 | "license": "ISC" 1553 | }, 1554 | "node_modules/iso-639-1": { 1555 | "version": "3.1.5", 1556 | "license": "MIT", 1557 | "peer": true, 1558 | "engines": { 1559 | "node": ">=6.0" 1560 | } 1561 | }, 1562 | "node_modules/jackspeak": { 1563 | "version": "4.1.0", 1564 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz", 1565 | "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==", 1566 | "license": "BlueOak-1.0.0", 1567 | "dependencies": { 1568 | "@isaacs/cliui": "^8.0.2" 1569 | }, 1570 | "engines": { 1571 | "node": "20 || >=22" 1572 | }, 1573 | "funding": { 1574 | "url": "https://github.com/sponsors/isaacs" 1575 | } 1576 | }, 1577 | "node_modules/js-yaml": { 1578 | "version": "4.1.0", 1579 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1580 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1581 | "license": "MIT", 1582 | "dependencies": { 1583 | "argparse": "^2.0.1" 1584 | }, 1585 | "bin": { 1586 | "js-yaml": "bin/js-yaml.js" 1587 | } 1588 | }, 1589 | "node_modules/junk": { 1590 | "version": "1.0.3", 1591 | "license": "MIT", 1592 | "peer": true, 1593 | "engines": { 1594 | "node": ">=0.10.0" 1595 | } 1596 | }, 1597 | "node_modules/kind-of": { 1598 | "version": "6.0.3", 1599 | "license": "MIT", 1600 | "peer": true, 1601 | "engines": { 1602 | "node": ">=0.10.0" 1603 | } 1604 | }, 1605 | "node_modules/kleur": { 1606 | "version": "4.1.5", 1607 | "license": "MIT", 1608 | "peer": true, 1609 | "engines": { 1610 | "node": ">=6" 1611 | } 1612 | }, 1613 | "node_modules/kuler": { 1614 | "version": "2.0.0", 1615 | "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", 1616 | "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", 1617 | "license": "MIT" 1618 | }, 1619 | "node_modules/linkify-it": { 1620 | "version": "5.0.0", 1621 | "license": "MIT", 1622 | "peer": true, 1623 | "dependencies": { 1624 | "uc.micro": "^2.0.0" 1625 | } 1626 | }, 1627 | "node_modules/liquidjs": { 1628 | "version": "10.21.0", 1629 | "license": "MIT", 1630 | "peer": true, 1631 | "dependencies": { 1632 | "commander": "^10.0.0" 1633 | }, 1634 | "bin": { 1635 | "liquid": "bin/liquid.js", 1636 | "liquidjs": "bin/liquid.js" 1637 | }, 1638 | "engines": { 1639 | "node": ">=14" 1640 | }, 1641 | "funding": { 1642 | "type": "opencollective", 1643 | "url": "https://opencollective.com/liquidjs" 1644 | } 1645 | }, 1646 | "node_modules/list-to-array": { 1647 | "version": "1.1.0", 1648 | "license": "MIT", 1649 | "peer": true 1650 | }, 1651 | "node_modules/lodash": { 1652 | "version": "4.17.21", 1653 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1654 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1655 | "license": "MIT" 1656 | }, 1657 | "node_modules/lodash.escape": { 1658 | "version": "4.0.1", 1659 | "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", 1660 | "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==", 1661 | "license": "MIT" 1662 | }, 1663 | "node_modules/lodash.merge": { 1664 | "version": "4.6.2", 1665 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1666 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1667 | "license": "MIT" 1668 | }, 1669 | "node_modules/logform": { 1670 | "version": "2.7.0", 1671 | "resolved": "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz", 1672 | "integrity": "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==", 1673 | "license": "MIT", 1674 | "dependencies": { 1675 | "@colors/colors": "1.6.0", 1676 | "@types/triple-beam": "^1.3.2", 1677 | "fecha": "^4.2.0", 1678 | "ms": "^2.1.1", 1679 | "safe-stable-stringify": "^2.3.1", 1680 | "triple-beam": "^1.3.0" 1681 | }, 1682 | "engines": { 1683 | "node": ">= 12.0.0" 1684 | } 1685 | }, 1686 | "node_modules/lru-cache": { 1687 | "version": "10.4.3", 1688 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 1689 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 1690 | "license": "ISC", 1691 | "peer": true 1692 | }, 1693 | "node_modules/luxon": { 1694 | "version": "3.5.0", 1695 | "license": "MIT", 1696 | "peer": true, 1697 | "engines": { 1698 | "node": ">=12" 1699 | } 1700 | }, 1701 | "node_modules/markdown-it": { 1702 | "version": "14.1.0", 1703 | "license": "MIT", 1704 | "peer": true, 1705 | "dependencies": { 1706 | "argparse": "^2.0.1", 1707 | "entities": "^4.4.0", 1708 | "linkify-it": "^5.0.0", 1709 | "mdurl": "^2.0.0", 1710 | "punycode.js": "^2.3.1", 1711 | "uc.micro": "^2.1.0" 1712 | }, 1713 | "bin": { 1714 | "markdown-it": "bin/markdown-it.mjs" 1715 | } 1716 | }, 1717 | "node_modules/markdown-it/node_modules/entities": { 1718 | "version": "4.5.0", 1719 | "license": "BSD-2-Clause", 1720 | "peer": true, 1721 | "engines": { 1722 | "node": ">=0.12" 1723 | }, 1724 | "funding": { 1725 | "url": "https://github.com/fb55/entities?sponsor=1" 1726 | } 1727 | }, 1728 | "node_modules/maximatch": { 1729 | "version": "0.1.0", 1730 | "license": "MIT", 1731 | "peer": true, 1732 | "dependencies": { 1733 | "array-differ": "^1.0.0", 1734 | "array-union": "^1.0.1", 1735 | "arrify": "^1.0.0", 1736 | "minimatch": "^3.0.0" 1737 | }, 1738 | "engines": { 1739 | "node": ">=0.10.0" 1740 | } 1741 | }, 1742 | "node_modules/maximatch/node_modules/brace-expansion": { 1743 | "version": "1.1.11", 1744 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1745 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1746 | "license": "MIT", 1747 | "peer": true, 1748 | "dependencies": { 1749 | "balanced-match": "^1.0.0", 1750 | "concat-map": "0.0.1" 1751 | } 1752 | }, 1753 | "node_modules/maximatch/node_modules/minimatch": { 1754 | "version": "3.1.2", 1755 | "license": "ISC", 1756 | "peer": true, 1757 | "dependencies": { 1758 | "brace-expansion": "^1.1.7" 1759 | }, 1760 | "engines": { 1761 | "node": "*" 1762 | } 1763 | }, 1764 | "node_modules/mdn-data": { 1765 | "version": "2.0.14", 1766 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", 1767 | "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", 1768 | "license": "CC0-1.0" 1769 | }, 1770 | "node_modules/mdurl": { 1771 | "version": "2.0.0", 1772 | "license": "MIT", 1773 | "peer": true 1774 | }, 1775 | "node_modules/merge2": { 1776 | "version": "1.4.1", 1777 | "license": "MIT", 1778 | "peer": true, 1779 | "engines": { 1780 | "node": ">= 8" 1781 | } 1782 | }, 1783 | "node_modules/micromatch": { 1784 | "version": "4.0.8", 1785 | "license": "MIT", 1786 | "peer": true, 1787 | "dependencies": { 1788 | "braces": "^3.0.3", 1789 | "picomatch": "^2.3.1" 1790 | }, 1791 | "engines": { 1792 | "node": ">=8.6" 1793 | } 1794 | }, 1795 | "node_modules/mime": { 1796 | "version": "3.0.0", 1797 | "license": "MIT", 1798 | "peer": true, 1799 | "bin": { 1800 | "mime": "cli.js" 1801 | }, 1802 | "engines": { 1803 | "node": ">=10.0.0" 1804 | } 1805 | }, 1806 | "node_modules/mime-db": { 1807 | "version": "1.52.0", 1808 | "license": "MIT", 1809 | "peer": true, 1810 | "engines": { 1811 | "node": ">= 0.6" 1812 | } 1813 | }, 1814 | "node_modules/mime-types": { 1815 | "version": "2.1.35", 1816 | "license": "MIT", 1817 | "peer": true, 1818 | "dependencies": { 1819 | "mime-db": "1.52.0" 1820 | }, 1821 | "engines": { 1822 | "node": ">= 0.6" 1823 | } 1824 | }, 1825 | "node_modules/minimatch": { 1826 | "version": "10.0.1", 1827 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", 1828 | "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", 1829 | "license": "ISC", 1830 | "dependencies": { 1831 | "brace-expansion": "^2.0.1" 1832 | }, 1833 | "engines": { 1834 | "node": "20 || >=22" 1835 | }, 1836 | "funding": { 1837 | "url": "https://github.com/sponsors/isaacs" 1838 | } 1839 | }, 1840 | "node_modules/minimist": { 1841 | "version": "1.2.8", 1842 | "license": "MIT", 1843 | "peer": true, 1844 | "funding": { 1845 | "url": "https://github.com/sponsors/ljharb" 1846 | } 1847 | }, 1848 | "node_modules/minipass": { 1849 | "version": "7.1.2", 1850 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 1851 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 1852 | "license": "ISC", 1853 | "engines": { 1854 | "node": ">=16 || 14 >=14.17" 1855 | } 1856 | }, 1857 | "node_modules/mkdirp": { 1858 | "version": "3.0.1", 1859 | "license": "MIT", 1860 | "peer": true, 1861 | "bin": { 1862 | "mkdirp": "dist/cjs/src/bin.js" 1863 | }, 1864 | "engines": { 1865 | "node": ">=10" 1866 | }, 1867 | "funding": { 1868 | "url": "https://github.com/sponsors/isaacs" 1869 | } 1870 | }, 1871 | "node_modules/moo": { 1872 | "version": "0.5.2", 1873 | "license": "BSD-3-Clause", 1874 | "peer": true 1875 | }, 1876 | "node_modules/morphdom": { 1877 | "version": "2.7.4", 1878 | "license": "MIT", 1879 | "peer": true 1880 | }, 1881 | "node_modules/ms": { 1882 | "version": "2.1.3", 1883 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1884 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1885 | "license": "MIT" 1886 | }, 1887 | "node_modules/mustache": { 1888 | "version": "4.2.0", 1889 | "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", 1890 | "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", 1891 | "license": "MIT", 1892 | "bin": { 1893 | "mustache": "bin/mustache" 1894 | } 1895 | }, 1896 | "node_modules/node-retrieve-globals": { 1897 | "version": "6.0.0", 1898 | "license": "MIT", 1899 | "peer": true, 1900 | "dependencies": { 1901 | "acorn": "^8.1.3", 1902 | "acorn-walk": "^8.3.2", 1903 | "esm-import-transformer": "^3.0.2" 1904 | } 1905 | }, 1906 | "node_modules/normalize-path": { 1907 | "version": "3.0.0", 1908 | "license": "MIT", 1909 | "peer": true, 1910 | "engines": { 1911 | "node": ">=0.10.0" 1912 | } 1913 | }, 1914 | "node_modules/nth-check": { 1915 | "version": "2.1.1", 1916 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 1917 | "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 1918 | "license": "BSD-2-Clause", 1919 | "dependencies": { 1920 | "boolbase": "^1.0.0" 1921 | }, 1922 | "funding": { 1923 | "url": "https://github.com/fb55/nth-check?sponsor=1" 1924 | } 1925 | }, 1926 | "node_modules/nunjucks": { 1927 | "version": "3.2.4", 1928 | "license": "BSD-2-Clause", 1929 | "peer": true, 1930 | "dependencies": { 1931 | "a-sync-waterfall": "^1.0.0", 1932 | "asap": "^2.0.3", 1933 | "commander": "^5.1.0" 1934 | }, 1935 | "bin": { 1936 | "nunjucks-precompile": "bin/precompile" 1937 | }, 1938 | "engines": { 1939 | "node": ">= 6.9.0" 1940 | }, 1941 | "peerDependencies": { 1942 | "chokidar": "^3.3.0" 1943 | }, 1944 | "peerDependenciesMeta": { 1945 | "chokidar": { 1946 | "optional": true 1947 | } 1948 | } 1949 | }, 1950 | "node_modules/nunjucks/node_modules/commander": { 1951 | "version": "5.1.0", 1952 | "license": "MIT", 1953 | "peer": true, 1954 | "engines": { 1955 | "node": ">= 6" 1956 | } 1957 | }, 1958 | "node_modules/on-finished": { 1959 | "version": "2.4.1", 1960 | "license": "MIT", 1961 | "peer": true, 1962 | "dependencies": { 1963 | "ee-first": "1.1.1" 1964 | }, 1965 | "engines": { 1966 | "node": ">= 0.8" 1967 | } 1968 | }, 1969 | "node_modules/once": { 1970 | "version": "1.4.0", 1971 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1972 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1973 | "license": "ISC", 1974 | "dependencies": { 1975 | "wrappy": "1" 1976 | } 1977 | }, 1978 | "node_modules/one-time": { 1979 | "version": "1.0.0", 1980 | "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", 1981 | "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", 1982 | "license": "MIT", 1983 | "dependencies": { 1984 | "fn.name": "1.x.x" 1985 | } 1986 | }, 1987 | "node_modules/package-json-from-dist": { 1988 | "version": "1.0.1", 1989 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 1990 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 1991 | "license": "BlueOak-1.0.0" 1992 | }, 1993 | "node_modules/parse-srcset": { 1994 | "version": "1.0.2", 1995 | "license": "MIT", 1996 | "peer": true 1997 | }, 1998 | "node_modules/parseurl": { 1999 | "version": "1.3.3", 2000 | "license": "MIT", 2001 | "peer": true, 2002 | "engines": { 2003 | "node": ">= 0.8" 2004 | } 2005 | }, 2006 | "node_modules/path-is-absolute": { 2007 | "version": "1.0.1", 2008 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2009 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2010 | "license": "MIT", 2011 | "engines": { 2012 | "node": ">=0.10.0" 2013 | } 2014 | }, 2015 | "node_modules/path-key": { 2016 | "version": "3.1.1", 2017 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2018 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2019 | "license": "MIT", 2020 | "engines": { 2021 | "node": ">=8" 2022 | } 2023 | }, 2024 | "node_modules/path-scurry": { 2025 | "version": "1.11.1", 2026 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2027 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2028 | "license": "BlueOak-1.0.0", 2029 | "peer": true, 2030 | "dependencies": { 2031 | "lru-cache": "^10.2.0", 2032 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2033 | }, 2034 | "engines": { 2035 | "node": ">=16 || 14 >=14.18" 2036 | }, 2037 | "funding": { 2038 | "url": "https://github.com/sponsors/isaacs" 2039 | } 2040 | }, 2041 | "node_modules/picocolors": { 2042 | "version": "1.0.0", 2043 | "license": "ISC" 2044 | }, 2045 | "node_modules/picomatch": { 2046 | "version": "2.3.1", 2047 | "license": "MIT", 2048 | "peer": true, 2049 | "engines": { 2050 | "node": ">=8.6" 2051 | }, 2052 | "funding": { 2053 | "url": "https://github.com/sponsors/jonschlinkert" 2054 | } 2055 | }, 2056 | "node_modules/pify": { 2057 | "version": "2.3.0", 2058 | "license": "MIT", 2059 | "peer": true, 2060 | "engines": { 2061 | "node": ">=0.10.0" 2062 | } 2063 | }, 2064 | "node_modules/please-upgrade-node": { 2065 | "version": "3.2.0", 2066 | "license": "MIT", 2067 | "peer": true, 2068 | "dependencies": { 2069 | "semver-compare": "^1.0.0" 2070 | } 2071 | }, 2072 | "node_modules/posthtml": { 2073 | "version": "0.16.6", 2074 | "license": "MIT", 2075 | "peer": true, 2076 | "dependencies": { 2077 | "posthtml-parser": "^0.11.0", 2078 | "posthtml-render": "^3.0.0" 2079 | }, 2080 | "engines": { 2081 | "node": ">=12.0.0" 2082 | } 2083 | }, 2084 | "node_modules/posthtml-match-helper": { 2085 | "version": "2.0.3", 2086 | "license": "MIT", 2087 | "peer": true, 2088 | "engines": { 2089 | "node": ">=18" 2090 | }, 2091 | "peerDependencies": { 2092 | "posthtml": "^0.16.6" 2093 | } 2094 | }, 2095 | "node_modules/posthtml-parser": { 2096 | "version": "0.11.0", 2097 | "license": "MIT", 2098 | "peer": true, 2099 | "dependencies": { 2100 | "htmlparser2": "^7.1.1" 2101 | }, 2102 | "engines": { 2103 | "node": ">=12" 2104 | } 2105 | }, 2106 | "node_modules/posthtml-render": { 2107 | "version": "3.0.0", 2108 | "license": "MIT", 2109 | "peer": true, 2110 | "dependencies": { 2111 | "is-json": "^2.0.1" 2112 | }, 2113 | "engines": { 2114 | "node": ">=12" 2115 | } 2116 | }, 2117 | "node_modules/prettysize": { 2118 | "version": "2.0.0", 2119 | "resolved": "https://registry.npmjs.org/prettysize/-/prettysize-2.0.0.tgz", 2120 | "integrity": "sha512-VVtxR7sOh0VsG8o06Ttq5TrI1aiZKmC+ClSn4eBPaNf4SHr5lzbYW+kYGX3HocBL/MfpVrRfFZ9V3vCbLaiplg==" 2121 | }, 2122 | "node_modules/process-nextick-args": { 2123 | "version": "2.0.1", 2124 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2125 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2126 | "license": "MIT" 2127 | }, 2128 | "node_modules/promise": { 2129 | "version": "7.3.1", 2130 | "license": "MIT", 2131 | "peer": true, 2132 | "dependencies": { 2133 | "asap": "~2.0.3" 2134 | } 2135 | }, 2136 | "node_modules/prr": { 2137 | "version": "1.0.1", 2138 | "license": "MIT", 2139 | "peer": true 2140 | }, 2141 | "node_modules/punycode.js": { 2142 | "version": "2.3.1", 2143 | "license": "MIT", 2144 | "peer": true, 2145 | "engines": { 2146 | "node": ">=6" 2147 | } 2148 | }, 2149 | "node_modules/queue-microtask": { 2150 | "version": "1.2.3", 2151 | "funding": [ 2152 | { 2153 | "type": "github", 2154 | "url": "https://github.com/sponsors/feross" 2155 | }, 2156 | { 2157 | "type": "patreon", 2158 | "url": "https://www.patreon.com/feross" 2159 | }, 2160 | { 2161 | "type": "consulting", 2162 | "url": "https://feross.org/support" 2163 | } 2164 | ], 2165 | "license": "MIT", 2166 | "peer": true 2167 | }, 2168 | "node_modules/queue-tick": { 2169 | "version": "1.0.1", 2170 | "license": "MIT" 2171 | }, 2172 | "node_modules/range-parser": { 2173 | "version": "1.2.1", 2174 | "license": "MIT", 2175 | "peer": true, 2176 | "engines": { 2177 | "node": ">= 0.6" 2178 | } 2179 | }, 2180 | "node_modules/readable-stream": { 2181 | "version": "3.6.2", 2182 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 2183 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 2184 | "license": "MIT", 2185 | "dependencies": { 2186 | "inherits": "^2.0.3", 2187 | "string_decoder": "^1.1.1", 2188 | "util-deprecate": "^1.0.1" 2189 | }, 2190 | "engines": { 2191 | "node": ">= 6" 2192 | } 2193 | }, 2194 | "node_modules/readdirp": { 2195 | "version": "3.6.0", 2196 | "license": "MIT", 2197 | "peer": true, 2198 | "dependencies": { 2199 | "picomatch": "^2.2.1" 2200 | }, 2201 | "engines": { 2202 | "node": ">=8.10.0" 2203 | } 2204 | }, 2205 | "node_modules/remove-trailing-separator": { 2206 | "version": "1.1.0", 2207 | "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", 2208 | "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", 2209 | "license": "ISC" 2210 | }, 2211 | "node_modules/replace-ext": { 2212 | "version": "2.0.0", 2213 | "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", 2214 | "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", 2215 | "license": "MIT", 2216 | "engines": { 2217 | "node": ">= 10" 2218 | } 2219 | }, 2220 | "node_modules/require-directory": { 2221 | "version": "2.1.1", 2222 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2223 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2224 | "license": "MIT", 2225 | "engines": { 2226 | "node": ">=0.10.0" 2227 | } 2228 | }, 2229 | "node_modules/reusify": { 2230 | "version": "1.1.0", 2231 | "license": "MIT", 2232 | "peer": true, 2233 | "engines": { 2234 | "iojs": ">=1.0.0", 2235 | "node": ">=0.10.0" 2236 | } 2237 | }, 2238 | "node_modules/rimraf": { 2239 | "version": "5.0.10", 2240 | "license": "ISC", 2241 | "peer": true, 2242 | "dependencies": { 2243 | "glob": "^10.3.7" 2244 | }, 2245 | "bin": { 2246 | "rimraf": "dist/esm/bin.mjs" 2247 | }, 2248 | "funding": { 2249 | "url": "https://github.com/sponsors/isaacs" 2250 | } 2251 | }, 2252 | "node_modules/rimraf/node_modules/glob": { 2253 | "version": "10.4.5", 2254 | "license": "ISC", 2255 | "peer": true, 2256 | "dependencies": { 2257 | "foreground-child": "^3.1.0", 2258 | "jackspeak": "^3.1.2", 2259 | "minimatch": "^9.0.4", 2260 | "minipass": "^7.1.2", 2261 | "package-json-from-dist": "^1.0.0", 2262 | "path-scurry": "^1.11.1" 2263 | }, 2264 | "bin": { 2265 | "glob": "dist/esm/bin.mjs" 2266 | }, 2267 | "funding": { 2268 | "url": "https://github.com/sponsors/isaacs" 2269 | } 2270 | }, 2271 | "node_modules/rimraf/node_modules/jackspeak": { 2272 | "version": "3.4.3", 2273 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 2274 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 2275 | "license": "BlueOak-1.0.0", 2276 | "peer": true, 2277 | "dependencies": { 2278 | "@isaacs/cliui": "^8.0.2" 2279 | }, 2280 | "funding": { 2281 | "url": "https://github.com/sponsors/isaacs" 2282 | }, 2283 | "optionalDependencies": { 2284 | "@pkgjs/parseargs": "^0.11.0" 2285 | } 2286 | }, 2287 | "node_modules/rimraf/node_modules/minimatch": { 2288 | "version": "9.0.5", 2289 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2290 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2291 | "license": "ISC", 2292 | "peer": true, 2293 | "dependencies": { 2294 | "brace-expansion": "^2.0.1" 2295 | }, 2296 | "engines": { 2297 | "node": ">=16 || 14 >=14.17" 2298 | }, 2299 | "funding": { 2300 | "url": "https://github.com/sponsors/isaacs" 2301 | } 2302 | }, 2303 | "node_modules/run-parallel": { 2304 | "version": "1.2.0", 2305 | "funding": [ 2306 | { 2307 | "type": "github", 2308 | "url": "https://github.com/sponsors/feross" 2309 | }, 2310 | { 2311 | "type": "patreon", 2312 | "url": "https://www.patreon.com/feross" 2313 | }, 2314 | { 2315 | "type": "consulting", 2316 | "url": "https://feross.org/support" 2317 | } 2318 | ], 2319 | "license": "MIT", 2320 | "peer": true, 2321 | "dependencies": { 2322 | "queue-microtask": "^1.2.2" 2323 | } 2324 | }, 2325 | "node_modules/safe-buffer": { 2326 | "version": "5.2.1", 2327 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2328 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2329 | "funding": [ 2330 | { 2331 | "type": "github", 2332 | "url": "https://github.com/sponsors/feross" 2333 | }, 2334 | { 2335 | "type": "patreon", 2336 | "url": "https://www.patreon.com/feross" 2337 | }, 2338 | { 2339 | "type": "consulting", 2340 | "url": "https://feross.org/support" 2341 | } 2342 | ], 2343 | "license": "MIT" 2344 | }, 2345 | "node_modules/safe-stable-stringify": { 2346 | "version": "2.4.1", 2347 | "license": "MIT", 2348 | "engines": { 2349 | "node": ">=10" 2350 | } 2351 | }, 2352 | "node_modules/section-matter": { 2353 | "version": "1.0.0", 2354 | "license": "MIT", 2355 | "peer": true, 2356 | "dependencies": { 2357 | "extend-shallow": "^2.0.1", 2358 | "kind-of": "^6.0.0" 2359 | }, 2360 | "engines": { 2361 | "node": ">=4" 2362 | } 2363 | }, 2364 | "node_modules/semver": { 2365 | "version": "7.7.1", 2366 | "license": "ISC", 2367 | "peer": true, 2368 | "bin": { 2369 | "semver": "bin/semver.js" 2370 | }, 2371 | "engines": { 2372 | "node": ">=10" 2373 | } 2374 | }, 2375 | "node_modules/semver-compare": { 2376 | "version": "1.0.0", 2377 | "license": "MIT", 2378 | "peer": true 2379 | }, 2380 | "node_modules/send": { 2381 | "version": "1.1.0", 2382 | "license": "MIT", 2383 | "peer": true, 2384 | "dependencies": { 2385 | "debug": "^4.3.5", 2386 | "destroy": "^1.2.0", 2387 | "encodeurl": "^2.0.0", 2388 | "escape-html": "^1.0.3", 2389 | "etag": "^1.8.1", 2390 | "fresh": "^0.5.2", 2391 | "http-errors": "^2.0.0", 2392 | "mime-types": "^2.1.35", 2393 | "ms": "^2.1.3", 2394 | "on-finished": "^2.4.1", 2395 | "range-parser": "^1.2.1", 2396 | "statuses": "^2.0.1" 2397 | }, 2398 | "engines": { 2399 | "node": ">= 18" 2400 | } 2401 | }, 2402 | "node_modules/setprototypeof": { 2403 | "version": "1.2.0", 2404 | "license": "ISC", 2405 | "peer": true 2406 | }, 2407 | "node_modules/shebang-command": { 2408 | "version": "2.0.0", 2409 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2410 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2411 | "license": "MIT", 2412 | "dependencies": { 2413 | "shebang-regex": "^3.0.0" 2414 | }, 2415 | "engines": { 2416 | "node": ">=8" 2417 | } 2418 | }, 2419 | "node_modules/shebang-regex": { 2420 | "version": "3.0.0", 2421 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2422 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2423 | "license": "MIT", 2424 | "engines": { 2425 | "node": ">=8" 2426 | } 2427 | }, 2428 | "node_modules/signal-exit": { 2429 | "version": "4.1.0", 2430 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2431 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2432 | "license": "ISC", 2433 | "engines": { 2434 | "node": ">=14" 2435 | }, 2436 | "funding": { 2437 | "url": "https://github.com/sponsors/isaacs" 2438 | } 2439 | }, 2440 | "node_modules/simple-swizzle": { 2441 | "version": "0.2.2", 2442 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2443 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 2444 | "license": "MIT", 2445 | "dependencies": { 2446 | "is-arrayish": "^0.3.1" 2447 | } 2448 | }, 2449 | "node_modules/slash": { 2450 | "version": "1.0.0", 2451 | "license": "MIT", 2452 | "peer": true, 2453 | "engines": { 2454 | "node": ">=0.10.0" 2455 | } 2456 | }, 2457 | "node_modules/slugify": { 2458 | "version": "1.6.6", 2459 | "license": "MIT", 2460 | "peer": true, 2461 | "engines": { 2462 | "node": ">=8.0.0" 2463 | } 2464 | }, 2465 | "node_modules/source-map": { 2466 | "version": "0.6.1", 2467 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2468 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2469 | "license": "BSD-3-Clause", 2470 | "engines": { 2471 | "node": ">=0.10.0" 2472 | } 2473 | }, 2474 | "node_modules/sprintf-js": { 2475 | "version": "1.0.3", 2476 | "license": "BSD-3-Clause", 2477 | "peer": true 2478 | }, 2479 | "node_modules/ssri": { 2480 | "version": "11.0.0", 2481 | "license": "ISC", 2482 | "peer": true, 2483 | "dependencies": { 2484 | "minipass": "^7.0.3" 2485 | }, 2486 | "engines": { 2487 | "node": "^16.14.0 || >=18.0.0" 2488 | } 2489 | }, 2490 | "node_modules/stable": { 2491 | "version": "0.1.8", 2492 | "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", 2493 | "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", 2494 | "license": "MIT" 2495 | }, 2496 | "node_modules/stack-trace": { 2497 | "version": "0.0.10", 2498 | "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", 2499 | "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", 2500 | "license": "MIT", 2501 | "engines": { 2502 | "node": "*" 2503 | } 2504 | }, 2505 | "node_modules/statuses": { 2506 | "version": "2.0.1", 2507 | "license": "MIT", 2508 | "peer": true, 2509 | "engines": { 2510 | "node": ">= 0.8" 2511 | } 2512 | }, 2513 | "node_modules/streamx": { 2514 | "version": "2.15.1", 2515 | "license": "MIT", 2516 | "dependencies": { 2517 | "fast-fifo": "^1.1.0", 2518 | "queue-tick": "^1.0.1" 2519 | } 2520 | }, 2521 | "node_modules/string_decoder": { 2522 | "version": "1.3.0", 2523 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2524 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2525 | "license": "MIT", 2526 | "dependencies": { 2527 | "safe-buffer": "~5.2.0" 2528 | } 2529 | }, 2530 | "node_modules/string-width": { 2531 | "version": "5.1.2", 2532 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2533 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2534 | "license": "MIT", 2535 | "dependencies": { 2536 | "eastasianwidth": "^0.2.0", 2537 | "emoji-regex": "^9.2.2", 2538 | "strip-ansi": "^7.0.1" 2539 | }, 2540 | "engines": { 2541 | "node": ">=12" 2542 | }, 2543 | "funding": { 2544 | "url": "https://github.com/sponsors/sindresorhus" 2545 | } 2546 | }, 2547 | "node_modules/string-width-cjs": { 2548 | "name": "string-width", 2549 | "version": "4.2.3", 2550 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2551 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2552 | "license": "MIT", 2553 | "dependencies": { 2554 | "emoji-regex": "^8.0.0", 2555 | "is-fullwidth-code-point": "^3.0.0", 2556 | "strip-ansi": "^6.0.1" 2557 | }, 2558 | "engines": { 2559 | "node": ">=8" 2560 | } 2561 | }, 2562 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 2563 | "version": "5.0.1", 2564 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2565 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2566 | "license": "MIT", 2567 | "engines": { 2568 | "node": ">=8" 2569 | } 2570 | }, 2571 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 2572 | "version": "8.0.0", 2573 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2574 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2575 | "license": "MIT" 2576 | }, 2577 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 2578 | "version": "6.0.1", 2579 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2580 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2581 | "license": "MIT", 2582 | "dependencies": { 2583 | "ansi-regex": "^5.0.1" 2584 | }, 2585 | "engines": { 2586 | "node": ">=8" 2587 | } 2588 | }, 2589 | "node_modules/strip-ansi": { 2590 | "version": "7.1.0", 2591 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2592 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2593 | "license": "MIT", 2594 | "dependencies": { 2595 | "ansi-regex": "^6.0.1" 2596 | }, 2597 | "engines": { 2598 | "node": ">=12" 2599 | }, 2600 | "funding": { 2601 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2602 | } 2603 | }, 2604 | "node_modules/strip-ansi-cjs": { 2605 | "name": "strip-ansi", 2606 | "version": "6.0.1", 2607 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2608 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2609 | "license": "MIT", 2610 | "dependencies": { 2611 | "ansi-regex": "^5.0.1" 2612 | }, 2613 | "engines": { 2614 | "node": ">=8" 2615 | } 2616 | }, 2617 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 2618 | "version": "5.0.1", 2619 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2620 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2621 | "license": "MIT", 2622 | "engines": { 2623 | "node": ">=8" 2624 | } 2625 | }, 2626 | "node_modules/strip-bom-string": { 2627 | "version": "1.0.0", 2628 | "license": "MIT", 2629 | "peer": true, 2630 | "engines": { 2631 | "node": ">=0.10.0" 2632 | } 2633 | }, 2634 | "node_modules/svg-sprite": { 2635 | "version": "2.0.4", 2636 | "resolved": "https://registry.npmjs.org/svg-sprite/-/svg-sprite-2.0.4.tgz", 2637 | "integrity": "sha512-kjDoATgr4k6tdtfQczpkbuFW6RE7tPUPe/rbRd1n2NV92kdwaXEZMIxJqAZfMGOMfU/Kp1u89SUYsfHCbAvVHg==", 2638 | "license": "MIT", 2639 | "dependencies": { 2640 | "@resvg/resvg-js": "^2.6.0", 2641 | "@xmldom/xmldom": "^0.8.10", 2642 | "async": "^3.2.5", 2643 | "css-selector-parser": "^1.4.1", 2644 | "csso": "^4.2.0", 2645 | "cssom": "^0.5.0", 2646 | "glob": "^7.2.3", 2647 | "js-yaml": "^4.1.0", 2648 | "lodash.escape": "^4.0.1", 2649 | "lodash.merge": "^4.6.2", 2650 | "mustache": "^4.2.0", 2651 | "prettysize": "^2.0.0", 2652 | "svgo": "^2.8.0", 2653 | "vinyl": "^2.2.1", 2654 | "winston": "^3.11.0", 2655 | "xpath": "^0.0.34", 2656 | "yargs": "^17.7.2" 2657 | }, 2658 | "bin": { 2659 | "svg-sprite": "bin/svg-sprite.js" 2660 | }, 2661 | "engines": { 2662 | "node": ">=12" 2663 | } 2664 | }, 2665 | "node_modules/svg-sprite/node_modules/brace-expansion": { 2666 | "version": "1.1.11", 2667 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2668 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2669 | "license": "MIT", 2670 | "dependencies": { 2671 | "balanced-match": "^1.0.0", 2672 | "concat-map": "0.0.1" 2673 | } 2674 | }, 2675 | "node_modules/svg-sprite/node_modules/glob": { 2676 | "version": "7.2.3", 2677 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2678 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2679 | "license": "ISC", 2680 | "dependencies": { 2681 | "fs.realpath": "^1.0.0", 2682 | "inflight": "^1.0.4", 2683 | "inherits": "2", 2684 | "minimatch": "^3.1.1", 2685 | "once": "^1.3.0", 2686 | "path-is-absolute": "^1.0.0" 2687 | }, 2688 | "engines": { 2689 | "node": "*" 2690 | }, 2691 | "funding": { 2692 | "url": "https://github.com/sponsors/isaacs" 2693 | } 2694 | }, 2695 | "node_modules/svg-sprite/node_modules/minimatch": { 2696 | "version": "3.1.2", 2697 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2698 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2699 | "license": "ISC", 2700 | "dependencies": { 2701 | "brace-expansion": "^1.1.7" 2702 | }, 2703 | "engines": { 2704 | "node": "*" 2705 | } 2706 | }, 2707 | "node_modules/svg-sprite/node_modules/replace-ext": { 2708 | "version": "1.0.1", 2709 | "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", 2710 | "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", 2711 | "license": "MIT", 2712 | "engines": { 2713 | "node": ">= 0.10" 2714 | } 2715 | }, 2716 | "node_modules/svg-sprite/node_modules/vinyl": { 2717 | "version": "2.2.1", 2718 | "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", 2719 | "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", 2720 | "license": "MIT", 2721 | "dependencies": { 2722 | "clone": "^2.1.1", 2723 | "clone-buffer": "^1.0.0", 2724 | "clone-stats": "^1.0.0", 2725 | "cloneable-readable": "^1.0.0", 2726 | "remove-trailing-separator": "^1.0.1", 2727 | "replace-ext": "^1.0.0" 2728 | }, 2729 | "engines": { 2730 | "node": ">= 0.10" 2731 | } 2732 | }, 2733 | "node_modules/svgo": { 2734 | "version": "2.8.0", 2735 | "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", 2736 | "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", 2737 | "license": "MIT", 2738 | "dependencies": { 2739 | "@trysound/sax": "0.2.0", 2740 | "commander": "^7.2.0", 2741 | "css-select": "^4.1.3", 2742 | "css-tree": "^1.1.3", 2743 | "csso": "^4.2.0", 2744 | "picocolors": "^1.0.0", 2745 | "stable": "^0.1.8" 2746 | }, 2747 | "bin": { 2748 | "svgo": "bin/svgo" 2749 | }, 2750 | "engines": { 2751 | "node": ">=10.13.0" 2752 | } 2753 | }, 2754 | "node_modules/svgo/node_modules/commander": { 2755 | "version": "7.2.0", 2756 | "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", 2757 | "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", 2758 | "license": "MIT", 2759 | "engines": { 2760 | "node": ">= 10" 2761 | } 2762 | }, 2763 | "node_modules/teex": { 2764 | "version": "1.0.1", 2765 | "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", 2766 | "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", 2767 | "license": "MIT", 2768 | "dependencies": { 2769 | "streamx": "^2.12.5" 2770 | } 2771 | }, 2772 | "node_modules/text-hex": { 2773 | "version": "1.0.0", 2774 | "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", 2775 | "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", 2776 | "license": "MIT" 2777 | }, 2778 | "node_modules/to-regex-range": { 2779 | "version": "5.0.1", 2780 | "license": "MIT", 2781 | "peer": true, 2782 | "dependencies": { 2783 | "is-number": "^7.0.0" 2784 | }, 2785 | "engines": { 2786 | "node": ">=8.0" 2787 | } 2788 | }, 2789 | "node_modules/toidentifier": { 2790 | "version": "1.0.1", 2791 | "license": "MIT", 2792 | "peer": true, 2793 | "engines": { 2794 | "node": ">=0.6" 2795 | } 2796 | }, 2797 | "node_modules/triple-beam": { 2798 | "version": "1.3.0", 2799 | "license": "MIT" 2800 | }, 2801 | "node_modules/uc.micro": { 2802 | "version": "2.1.0", 2803 | "license": "MIT", 2804 | "peer": true 2805 | }, 2806 | "node_modules/unpipe": { 2807 | "version": "1.0.0", 2808 | "license": "MIT", 2809 | "peer": true, 2810 | "engines": { 2811 | "node": ">= 0.8" 2812 | } 2813 | }, 2814 | "node_modules/urlpattern-polyfill": { 2815 | "version": "10.0.0", 2816 | "license": "MIT", 2817 | "peer": true 2818 | }, 2819 | "node_modules/util-deprecate": { 2820 | "version": "1.0.2", 2821 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2822 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2823 | "license": "MIT" 2824 | }, 2825 | "node_modules/vinyl": { 2826 | "version": "3.0.0", 2827 | "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz", 2828 | "integrity": "sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g==", 2829 | "license": "MIT", 2830 | "dependencies": { 2831 | "clone": "^2.1.2", 2832 | "clone-stats": "^1.0.0", 2833 | "remove-trailing-separator": "^1.1.0", 2834 | "replace-ext": "^2.0.0", 2835 | "teex": "^1.0.1" 2836 | }, 2837 | "engines": { 2838 | "node": ">=10.13.0" 2839 | } 2840 | }, 2841 | "node_modules/which": { 2842 | "version": "2.0.2", 2843 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2844 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2845 | "license": "ISC", 2846 | "dependencies": { 2847 | "isexe": "^2.0.0" 2848 | }, 2849 | "bin": { 2850 | "node-which": "bin/node-which" 2851 | }, 2852 | "engines": { 2853 | "node": ">= 8" 2854 | } 2855 | }, 2856 | "node_modules/winston": { 2857 | "version": "3.17.0", 2858 | "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz", 2859 | "integrity": "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==", 2860 | "license": "MIT", 2861 | "dependencies": { 2862 | "@colors/colors": "^1.6.0", 2863 | "@dabh/diagnostics": "^2.0.2", 2864 | "async": "^3.2.3", 2865 | "is-stream": "^2.0.0", 2866 | "logform": "^2.7.0", 2867 | "one-time": "^1.0.0", 2868 | "readable-stream": "^3.4.0", 2869 | "safe-stable-stringify": "^2.3.1", 2870 | "stack-trace": "0.0.x", 2871 | "triple-beam": "^1.3.0", 2872 | "winston-transport": "^4.9.0" 2873 | }, 2874 | "engines": { 2875 | "node": ">= 12.0.0" 2876 | } 2877 | }, 2878 | "node_modules/winston-transport": { 2879 | "version": "4.9.0", 2880 | "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz", 2881 | "integrity": "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==", 2882 | "license": "MIT", 2883 | "dependencies": { 2884 | "logform": "^2.7.0", 2885 | "readable-stream": "^3.6.2", 2886 | "triple-beam": "^1.3.0" 2887 | }, 2888 | "engines": { 2889 | "node": ">= 12.0.0" 2890 | } 2891 | }, 2892 | "node_modules/wrap-ansi": { 2893 | "version": "8.1.0", 2894 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 2895 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 2896 | "license": "MIT", 2897 | "dependencies": { 2898 | "ansi-styles": "^6.1.0", 2899 | "string-width": "^5.0.1", 2900 | "strip-ansi": "^7.0.1" 2901 | }, 2902 | "engines": { 2903 | "node": ">=12" 2904 | }, 2905 | "funding": { 2906 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2907 | } 2908 | }, 2909 | "node_modules/wrap-ansi-cjs": { 2910 | "name": "wrap-ansi", 2911 | "version": "7.0.0", 2912 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2913 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2914 | "license": "MIT", 2915 | "dependencies": { 2916 | "ansi-styles": "^4.0.0", 2917 | "string-width": "^4.1.0", 2918 | "strip-ansi": "^6.0.0" 2919 | }, 2920 | "engines": { 2921 | "node": ">=10" 2922 | }, 2923 | "funding": { 2924 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2925 | } 2926 | }, 2927 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 2928 | "version": "5.0.1", 2929 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2930 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2931 | "license": "MIT", 2932 | "engines": { 2933 | "node": ">=8" 2934 | } 2935 | }, 2936 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 2937 | "version": "4.3.0", 2938 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2939 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2940 | "license": "MIT", 2941 | "dependencies": { 2942 | "color-convert": "^2.0.1" 2943 | }, 2944 | "engines": { 2945 | "node": ">=8" 2946 | }, 2947 | "funding": { 2948 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2949 | } 2950 | }, 2951 | "node_modules/wrap-ansi-cjs/node_modules/color-convert": { 2952 | "version": "2.0.1", 2953 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2954 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2955 | "license": "MIT", 2956 | "dependencies": { 2957 | "color-name": "~1.1.4" 2958 | }, 2959 | "engines": { 2960 | "node": ">=7.0.0" 2961 | } 2962 | }, 2963 | "node_modules/wrap-ansi-cjs/node_modules/color-name": { 2964 | "version": "1.1.4", 2965 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2966 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2967 | "license": "MIT" 2968 | }, 2969 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 2970 | "version": "8.0.0", 2971 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2972 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2973 | "license": "MIT" 2974 | }, 2975 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 2976 | "version": "4.2.3", 2977 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2978 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2979 | "license": "MIT", 2980 | "dependencies": { 2981 | "emoji-regex": "^8.0.0", 2982 | "is-fullwidth-code-point": "^3.0.0", 2983 | "strip-ansi": "^6.0.1" 2984 | }, 2985 | "engines": { 2986 | "node": ">=8" 2987 | } 2988 | }, 2989 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 2990 | "version": "6.0.1", 2991 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2992 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2993 | "license": "MIT", 2994 | "dependencies": { 2995 | "ansi-regex": "^5.0.1" 2996 | }, 2997 | "engines": { 2998 | "node": ">=8" 2999 | } 3000 | }, 3001 | "node_modules/wrappy": { 3002 | "version": "1.0.2", 3003 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3004 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3005 | "license": "ISC" 3006 | }, 3007 | "node_modules/ws": { 3008 | "version": "8.18.1", 3009 | "license": "MIT", 3010 | "peer": true, 3011 | "engines": { 3012 | "node": ">=10.0.0" 3013 | }, 3014 | "peerDependencies": { 3015 | "bufferutil": "^4.0.1", 3016 | "utf-8-validate": ">=5.0.2" 3017 | }, 3018 | "peerDependenciesMeta": { 3019 | "bufferutil": { 3020 | "optional": true 3021 | }, 3022 | "utf-8-validate": { 3023 | "optional": true 3024 | } 3025 | } 3026 | }, 3027 | "node_modules/xpath": { 3028 | "version": "0.0.34", 3029 | "resolved": "https://registry.npmjs.org/xpath/-/xpath-0.0.34.tgz", 3030 | "integrity": "sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA==", 3031 | "license": "MIT", 3032 | "engines": { 3033 | "node": ">=0.6.0" 3034 | } 3035 | }, 3036 | "node_modules/y18n": { 3037 | "version": "5.0.8", 3038 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3039 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3040 | "license": "ISC", 3041 | "engines": { 3042 | "node": ">=10" 3043 | } 3044 | }, 3045 | "node_modules/yargs": { 3046 | "version": "17.7.2", 3047 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3048 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3049 | "license": "MIT", 3050 | "dependencies": { 3051 | "cliui": "^8.0.1", 3052 | "escalade": "^3.1.1", 3053 | "get-caller-file": "^2.0.5", 3054 | "require-directory": "^2.1.1", 3055 | "string-width": "^4.2.3", 3056 | "y18n": "^5.0.5", 3057 | "yargs-parser": "^21.1.1" 3058 | }, 3059 | "engines": { 3060 | "node": ">=12" 3061 | } 3062 | }, 3063 | "node_modules/yargs-parser": { 3064 | "version": "21.1.1", 3065 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3066 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3067 | "license": "ISC", 3068 | "engines": { 3069 | "node": ">=12" 3070 | } 3071 | }, 3072 | "node_modules/yargs/node_modules/ansi-regex": { 3073 | "version": "5.0.1", 3074 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3075 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3076 | "license": "MIT", 3077 | "engines": { 3078 | "node": ">=8" 3079 | } 3080 | }, 3081 | "node_modules/yargs/node_modules/emoji-regex": { 3082 | "version": "8.0.0", 3083 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3084 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3085 | "license": "MIT" 3086 | }, 3087 | "node_modules/yargs/node_modules/string-width": { 3088 | "version": "4.2.3", 3089 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3090 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3091 | "license": "MIT", 3092 | "dependencies": { 3093 | "emoji-regex": "^8.0.0", 3094 | "is-fullwidth-code-point": "^3.0.0", 3095 | "strip-ansi": "^6.0.1" 3096 | }, 3097 | "engines": { 3098 | "node": ">=8" 3099 | } 3100 | }, 3101 | "node_modules/yargs/node_modules/strip-ansi": { 3102 | "version": "6.0.1", 3103 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3104 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3105 | "license": "MIT", 3106 | "dependencies": { 3107 | "ansi-regex": "^5.0.1" 3108 | }, 3109 | "engines": { 3110 | "node": ">=8" 3111 | } 3112 | } 3113 | } 3114 | } 3115 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eleventy-plugin-svg-sprite", 3 | "version": "2.4.4", 4 | "description": "A high performance Eleventy universal plugin that compiles a directory of SVG files into a single SVG Sprite and adds shortcodes to embed SVG Sprite and SVG content in Eleventy templates.", 5 | "publishConfig": { 6 | "access": "public" 7 | }, 8 | "main": ".eleventy.js", 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/patrickxchong/eleventy-plugin-svg-sprite.git" 12 | }, 13 | "funding": "https://ko-fi.com/patrickxchong", 14 | "keywords": [ 15 | "eleventy", 16 | "eleventy-plugin" 17 | ], 18 | "author": { 19 | "name": "Patrick Chong", 20 | "email": "mail@patrickxchong.com", 21 | "url": "https://www.patrickxchong.com" 22 | }, 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/patrickxchong/eleventy-plugin-svg-sprite/issues" 26 | }, 27 | "homepage": "https://github.com/patrickxchong/eleventy-plugin-svg-sprite/", 28 | "peerDependencies": { 29 | "@11ty/eleventy": ">=0.5.4" 30 | }, 31 | "dependencies": { 32 | "glob": "^11.0.1", 33 | "lodash": "^4.17.21", 34 | "svg-sprite": "2.0.4", 35 | "vinyl": "^3.0.0" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/SVGSprite.js: -------------------------------------------------------------------------------- 1 | const { glob } = require('glob'); 2 | const fs = require('fs'); 3 | const path = require('path'); 4 | const SVGSpriter = require('svg-sprite'); 5 | const util = require('util'); 6 | const Vinyl = require('vinyl'); 7 | 8 | const libUtils = require('./lib-utils'); 9 | 10 | let spriteCache = {}; 11 | 12 | class SVGSprite { 13 | constructor(config) { 14 | this.config = config; 15 | this.cwd = path.resolve(config.path); 16 | if (config.outputFilepath) { 17 | this.outputFilepath = path.resolve(config.outputFilepath); 18 | } 19 | this.spriteConfig = config.spriteConfig; 20 | this.svgSpriteShortcode = config.svgSpriteShortcode; 21 | } 22 | 23 | async compile() { 24 | // Get all SVG files in working directory 25 | const files = await glob(`**/*.svg`, { cwd: this.cwd }); 26 | const newCacheKey = files.map(file => `${file}:${fs.statSync(path.join(this.cwd, file)).mtimeMs}`).join("|"); 27 | // Note: Replace custom file watching with chokidar if there are bugs/limitations. 28 | // https://github.com/paulmillr/chokidar 29 | // https://stackoverflow.com/a/13705878 30 | 31 | if (spriteCache.hasOwnProperty(this.svgSpriteShortcode)) { 32 | if (spriteCache[this.svgSpriteShortcode].cacheKey === newCacheKey) { 33 | // if the cacheKey is the same, don't need to rebuild sprite 34 | return spriteCache[this.svgSpriteShortcode].spriteContent; 35 | } else { 36 | spriteCache[this.svgSpriteShortcode].cacheKey = newCacheKey; 37 | } 38 | } else { 39 | spriteCache[this.svgSpriteShortcode] = { 40 | cacheKey: newCacheKey 41 | }; 42 | } 43 | 44 | // Make a new SVGSpriter instance w/ configuration 45 | const spriter = new SVGSpriter(this.spriteConfig); 46 | 47 | // Add them all to the spriter 48 | files.forEach((file) => { 49 | spriter.add( 50 | new Vinyl({ 51 | path: path.join(this.cwd, file), 52 | base: this.cwd, 53 | contents: fs.readFileSync(path.join(this.cwd, file)), 54 | }) 55 | ); 56 | }); 57 | 58 | // Wrap spriter compile function in a Promise 59 | const compileSprite = async (args) => { 60 | return new Promise((resolve, reject) => { 61 | spriter.compile(args, (error, result) => { 62 | if (error) { 63 | return reject(error); 64 | } 65 | resolve(result.symbol.sprite); 66 | }); 67 | }); 68 | }; 69 | 70 | // Compile the sprite file and return it as a string 71 | const sprite = await compileSprite(this.spriteConfig.mode); 72 | 73 | if (this.outputFilepath) { 74 | console.info(`[eleventy-plugin-svg-sprite] Writing ${this.config.outputFilepath} from ${this.config.path}`); 75 | await libUtils.writeFile(this.outputFilepath, sprite.contents.toString('utf8')); 76 | } 77 | 78 | // cache spriteContent into global spriteCache variable 79 | spriteCache[this.svgSpriteShortcode].spriteContent = `
${sprite.contents.toString('utf8')}
`; 80 | // fs.utimes('.', new Date(), new Date(), () => { }); 81 | }; 82 | 83 | getSvgSprite() { 84 | return spriteCache[this.svgSpriteShortcode].spriteContent; 85 | } 86 | } 87 | 88 | module.exports = SVGSprite; -------------------------------------------------------------------------------- /src/lib-utils.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs/promises'); 2 | const path = require('path'); 3 | 4 | async function isExists(path) { 5 | try { 6 | await fs.access(path); 7 | return true; 8 | } catch { 9 | return false; 10 | } 11 | }; 12 | 13 | async function writeFile(filePath, data) { 14 | try { 15 | const dirname = path.dirname(filePath); 16 | const exist = await isExists(dirname); 17 | if (!exist) { 18 | await fs.mkdir(dirname, { recursive: true }); 19 | } 20 | 21 | await fs.writeFile(filePath, data, 'utf8'); 22 | } catch (err) { 23 | throw new Error(err); 24 | } 25 | } 26 | 27 | module.exports = { 28 | writeFile 29 | }; -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- 1 | const path = require("path") 2 | const util = require("util") 3 | 4 | module.exports = { 5 | path: "", 6 | globalClasses: "", 7 | defaultClasses: "", 8 | svgSpriteShortcode: "svgsprite", 9 | svgShortcode: "svg", 10 | spriteConfig: 11 | { 12 | mode: { 13 | inline: true, 14 | symbol: { 15 | sprite: 'sprite.svg', 16 | example: false, 17 | }, 18 | }, 19 | shape: { 20 | transform: ['svgo'], 21 | id: { 22 | generator: (_, file) => { 23 | const path_separator = '--' 24 | const whitespace_separator = '_' 25 | const template = 'svg-%s' 26 | const pathname = file["relative"].split(path.sep).join(path_separator) 27 | return util.format(template, path.basename(pathname.replace(/\s+/g, whitespace_separator), '.svg')); 28 | } 29 | }, 30 | }, 31 | svg: { 32 | xmlDeclaration: false, 33 | doctypeDeclaration: false, 34 | }, 35 | } 36 | }; -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@colors/colors@1.6.0", "@colors/colors@^1.6.0": 6 | version "1.6.0" 7 | resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz" 8 | integrity sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA== 9 | 10 | "@dabh/diagnostics@^2.0.2": 11 | version "2.0.3" 12 | resolved "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz" 13 | integrity sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA== 14 | dependencies: 15 | colorspace "1.1.x" 16 | enabled "2.0.x" 17 | kuler "^2.0.0" 18 | 19 | "@isaacs/cliui@^8.0.2": 20 | version "8.0.2" 21 | resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" 22 | integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== 23 | dependencies: 24 | string-width "^5.1.2" 25 | string-width-cjs "npm:string-width@^4.2.0" 26 | strip-ansi "^7.0.1" 27 | strip-ansi-cjs "npm:strip-ansi@^6.0.1" 28 | wrap-ansi "^8.1.0" 29 | wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" 30 | 31 | "@resvg/resvg-js-android-arm-eabi@2.6.2": 32 | version "2.6.2" 33 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-android-arm-eabi/-/resvg-js-android-arm-eabi-2.6.2.tgz#e761e0b688127db64879f455178c92468a9aeabe" 34 | integrity sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA== 35 | 36 | "@resvg/resvg-js-android-arm64@2.6.2": 37 | version "2.6.2" 38 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-android-arm64/-/resvg-js-android-arm64-2.6.2.tgz#b8cb564d7f6b3f37d9b43129f5dc5fe171e249e4" 39 | integrity sha512-VcOKezEhm2VqzXpcIJoITuvUS/fcjIw5NA/w3tjzWyzmvoCdd+QXIqy3FBGulWdClvp4g+IfUemigrkLThSjAQ== 40 | 41 | "@resvg/resvg-js-darwin-arm64@2.6.2": 42 | version "2.6.2" 43 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-darwin-arm64/-/resvg-js-darwin-arm64-2.6.2.tgz#49bd3faeda5c49f53302d970e6e79d006de18e7d" 44 | integrity sha512-nmok2LnAd6nLUKI16aEB9ydMC6Lidiiq2m1nEBDR1LaaP7FGs4AJ90qDraxX+CWlVuRlvNjyYJTNv8qFjtL9+A== 45 | 46 | "@resvg/resvg-js-darwin-x64@2.6.2": 47 | version "2.6.2" 48 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-darwin-x64/-/resvg-js-darwin-x64-2.6.2.tgz#e1344173aa27bfb4d880ab576d1acf1c1648faca" 49 | integrity sha512-GInyZLjgWDfsVT6+SHxQVRwNzV0AuA1uqGsOAW+0th56J7Nh6bHHKXHBWzUrihxMetcFDmQMAX1tZ1fZDYSRsw== 50 | 51 | "@resvg/resvg-js-linux-arm-gnueabihf@2.6.2": 52 | version "2.6.2" 53 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm-gnueabihf/-/resvg-js-linux-arm-gnueabihf-2.6.2.tgz#34c445eba45efd68f6130b2ab426d76a7424253d" 54 | integrity sha512-YIV3u/R9zJbpqTTNwTZM5/ocWetDKGsro0SWp70eGEM9eV2MerWyBRZnQIgzU3YBnSBQ1RcxRZvY/UxwESfZIw== 55 | 56 | "@resvg/resvg-js-linux-arm64-gnu@2.6.2": 57 | version "2.6.2" 58 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm64-gnu/-/resvg-js-linux-arm64-gnu-2.6.2.tgz#30da47087dd8153182198b94fe9f8d994890dae5" 59 | integrity sha512-zc2BlJSim7YR4FZDQ8OUoJg5holYzdiYMeobb9pJuGDidGL9KZUv7SbiD4E8oZogtYY42UZEap7dqkkYuA91pg== 60 | 61 | "@resvg/resvg-js-linux-arm64-musl@2.6.2": 62 | version "2.6.2" 63 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-arm64-musl/-/resvg-js-linux-arm64-musl-2.6.2.tgz#5d75b8ff5c83103729c1ca3779987302753c50d4" 64 | integrity sha512-3h3dLPWNgSsD4lQBJPb4f+kvdOSJHa5PjTYVsWHxLUzH4IFTJUAnmuWpw4KqyQ3NA5QCyhw4TWgxk3jRkQxEKg== 65 | 66 | "@resvg/resvg-js-linux-x64-gnu@2.6.2": 67 | version "2.6.2" 68 | resolved "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-gnu/-/resvg-js-linux-x64-gnu-2.6.2.tgz" 69 | integrity sha512-IVUe+ckIerA7xMZ50duAZzwf1U7khQe2E0QpUxu5MBJNao5RqC0zwV/Zm965vw6D3gGFUl7j4m+oJjubBVoftw== 70 | 71 | "@resvg/resvg-js-linux-x64-musl@2.6.2": 72 | version "2.6.2" 73 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-linux-x64-musl/-/resvg-js-linux-x64-musl-2.6.2.tgz#fe4984038f0372f279e3ff570b72934dd7eb2a5c" 74 | integrity sha512-UOf83vqTzoYQO9SZ0fPl2ZIFtNIz/Rr/y+7X8XRX1ZnBYsQ/tTb+cj9TE+KHOdmlTFBxhYzVkP2lRByCzqi4jQ== 75 | 76 | "@resvg/resvg-js-win32-arm64-msvc@2.6.2": 77 | version "2.6.2" 78 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-arm64-msvc/-/resvg-js-win32-arm64-msvc-2.6.2.tgz#d3a053cf7ff687087a2106330c0fdaae706254d1" 79 | integrity sha512-7C/RSgCa+7vqZ7qAbItfiaAWhyRSoD4l4BQAbVDqRRsRgY+S+hgS3in0Rxr7IorKUpGE69X48q6/nOAuTJQxeQ== 80 | 81 | "@resvg/resvg-js-win32-ia32-msvc@2.6.2": 82 | version "2.6.2" 83 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-ia32-msvc/-/resvg-js-win32-ia32-msvc-2.6.2.tgz#7cdda1ce29ef7209e28191d917fa5bef0624a4ad" 84 | integrity sha512-har4aPAlvjnLcil40AC77YDIk6loMawuJwFINEM7n0pZviwMkMvjb2W5ZirsNOZY4aDbo5tLx0wNMREp5Brk+w== 85 | 86 | "@resvg/resvg-js-win32-x64-msvc@2.6.2": 87 | version "2.6.2" 88 | resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-x64-msvc/-/resvg-js-win32-x64-msvc-2.6.2.tgz#cb0ad04525d65f3def4c8d346157a57976d5b388" 89 | integrity sha512-ZXtYhtUr5SSaBrUDq7DiyjOFJqBVL/dOBN7N/qmi/pO0IgiWW/f/ue3nbvu9joWE5aAKDoIzy/CxsY0suwGosQ== 90 | 91 | "@resvg/resvg-js@^2.6.0": 92 | version "2.6.2" 93 | resolved "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.2.tgz" 94 | integrity sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q== 95 | optionalDependencies: 96 | "@resvg/resvg-js-android-arm-eabi" "2.6.2" 97 | "@resvg/resvg-js-android-arm64" "2.6.2" 98 | "@resvg/resvg-js-darwin-arm64" "2.6.2" 99 | "@resvg/resvg-js-darwin-x64" "2.6.2" 100 | "@resvg/resvg-js-linux-arm-gnueabihf" "2.6.2" 101 | "@resvg/resvg-js-linux-arm64-gnu" "2.6.2" 102 | "@resvg/resvg-js-linux-arm64-musl" "2.6.2" 103 | "@resvg/resvg-js-linux-x64-gnu" "2.6.2" 104 | "@resvg/resvg-js-linux-x64-musl" "2.6.2" 105 | "@resvg/resvg-js-win32-arm64-msvc" "2.6.2" 106 | "@resvg/resvg-js-win32-ia32-msvc" "2.6.2" 107 | "@resvg/resvg-js-win32-x64-msvc" "2.6.2" 108 | 109 | "@trysound/sax@0.2.0": 110 | version "0.2.0" 111 | resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" 112 | integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== 113 | 114 | "@types/triple-beam@^1.3.2": 115 | version "1.3.5" 116 | resolved "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz" 117 | integrity sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw== 118 | 119 | "@xmldom/xmldom@^0.8.10": 120 | version "0.8.10" 121 | resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz" 122 | integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== 123 | 124 | ansi-regex@^5.0.1: 125 | version "5.0.1" 126 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 127 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 128 | 129 | ansi-regex@^6.0.1: 130 | version "6.1.0" 131 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" 132 | integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== 133 | 134 | ansi-styles@^4.0.0: 135 | version "4.3.0" 136 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 137 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 138 | dependencies: 139 | color-convert "^2.0.1" 140 | 141 | ansi-styles@^6.1.0: 142 | version "6.2.1" 143 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" 144 | integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== 145 | 146 | argparse@^2.0.1: 147 | version "2.0.1" 148 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 149 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 150 | 151 | async@^3.2.3, async@^3.2.5: 152 | version "3.2.6" 153 | resolved "https://registry.npmjs.org/async/-/async-3.2.6.tgz" 154 | integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== 155 | 156 | b4a@^1.6.4: 157 | version "1.6.7" 158 | resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.7.tgz#a99587d4ebbfbd5a6e3b21bdb5d5fa385767abe4" 159 | integrity sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg== 160 | 161 | balanced-match@^1.0.0: 162 | version "1.0.2" 163 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 164 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 165 | 166 | bare-events@^2.2.0: 167 | version "2.5.4" 168 | resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.5.4.tgz#16143d435e1ed9eafd1ab85f12b89b3357a41745" 169 | integrity sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA== 170 | 171 | boolbase@^1.0.0: 172 | version "1.0.0" 173 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" 174 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== 175 | 176 | brace-expansion@^1.1.7: 177 | version "1.1.11" 178 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 179 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 180 | dependencies: 181 | balanced-match "^1.0.0" 182 | concat-map "0.0.1" 183 | 184 | brace-expansion@^2.0.1: 185 | version "2.0.1" 186 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" 187 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 188 | dependencies: 189 | balanced-match "^1.0.0" 190 | 191 | cliui@^8.0.1: 192 | version "8.0.1" 193 | resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" 194 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 195 | dependencies: 196 | string-width "^4.2.0" 197 | strip-ansi "^6.0.1" 198 | wrap-ansi "^7.0.0" 199 | 200 | clone-buffer@^1.0.0: 201 | version "1.0.0" 202 | resolved "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz" 203 | integrity sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g== 204 | 205 | clone-stats@^1.0.0: 206 | version "1.0.0" 207 | resolved "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz" 208 | integrity sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag== 209 | 210 | clone@^2.1.1, clone@^2.1.2: 211 | version "2.1.2" 212 | resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" 213 | integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== 214 | 215 | cloneable-readable@^1.0.0: 216 | version "1.1.3" 217 | resolved "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz" 218 | integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== 219 | dependencies: 220 | inherits "^2.0.1" 221 | process-nextick-args "^2.0.0" 222 | readable-stream "^2.3.5" 223 | 224 | color-convert@^1.9.3: 225 | version "1.9.3" 226 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 227 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 228 | dependencies: 229 | color-name "1.1.3" 230 | 231 | color-convert@^2.0.1: 232 | version "2.0.1" 233 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 234 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 235 | dependencies: 236 | color-name "~1.1.4" 237 | 238 | color-name@1.1.3, color-name@^1.0.0: 239 | version "1.1.3" 240 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 241 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 242 | 243 | color-name@~1.1.4: 244 | version "1.1.4" 245 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 246 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 247 | 248 | color-string@^1.6.0: 249 | version "1.9.1" 250 | resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" 251 | integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== 252 | dependencies: 253 | color-name "^1.0.0" 254 | simple-swizzle "^0.2.2" 255 | 256 | color@^3.1.3: 257 | version "3.2.1" 258 | resolved "https://registry.npmjs.org/color/-/color-3.2.1.tgz" 259 | integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== 260 | dependencies: 261 | color-convert "^1.9.3" 262 | color-string "^1.6.0" 263 | 264 | colorspace@1.1.x: 265 | version "1.1.4" 266 | resolved "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz" 267 | integrity sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w== 268 | dependencies: 269 | color "^3.1.3" 270 | text-hex "1.0.x" 271 | 272 | commander@^7.2.0: 273 | version "7.2.0" 274 | resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" 275 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 276 | 277 | concat-map@0.0.1: 278 | version "0.0.1" 279 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 280 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 281 | 282 | core-util-is@~1.0.0: 283 | version "1.0.3" 284 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" 285 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 286 | 287 | cross-spawn@^7.0.6: 288 | version "7.0.6" 289 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" 290 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 291 | dependencies: 292 | path-key "^3.1.0" 293 | shebang-command "^2.0.0" 294 | which "^2.0.1" 295 | 296 | css-select@^4.1.3: 297 | version "4.3.0" 298 | resolved "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz" 299 | integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== 300 | dependencies: 301 | boolbase "^1.0.0" 302 | css-what "^6.0.1" 303 | domhandler "^4.3.1" 304 | domutils "^2.8.0" 305 | nth-check "^2.0.1" 306 | 307 | css-selector-parser@^1.4.1: 308 | version "1.4.1" 309 | resolved "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.4.1.tgz" 310 | integrity sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g== 311 | 312 | css-tree@^1.1.2, css-tree@^1.1.3: 313 | version "1.1.3" 314 | resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" 315 | integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 316 | dependencies: 317 | mdn-data "2.0.14" 318 | source-map "^0.6.1" 319 | 320 | css-what@^6.0.1: 321 | version "6.1.0" 322 | resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" 323 | integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== 324 | 325 | csso@^4.2.0: 326 | version "4.2.0" 327 | resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" 328 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 329 | dependencies: 330 | css-tree "^1.1.2" 331 | 332 | cssom@^0.5.0: 333 | version "0.5.0" 334 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz" 335 | integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== 336 | 337 | dom-serializer@^1.0.1: 338 | version "1.4.1" 339 | resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" 340 | integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== 341 | dependencies: 342 | domelementtype "^2.0.1" 343 | domhandler "^4.2.0" 344 | entities "^2.0.0" 345 | 346 | domelementtype@^2.0.1, domelementtype@^2.2.0: 347 | version "2.3.0" 348 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" 349 | integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== 350 | 351 | domhandler@^4.2.0, domhandler@^4.3.1: 352 | version "4.3.1" 353 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" 354 | integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== 355 | dependencies: 356 | domelementtype "^2.2.0" 357 | 358 | domutils@^2.8.0: 359 | version "2.8.0" 360 | resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" 361 | integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== 362 | dependencies: 363 | dom-serializer "^1.0.1" 364 | domelementtype "^2.2.0" 365 | domhandler "^4.2.0" 366 | 367 | eastasianwidth@^0.2.0: 368 | version "0.2.0" 369 | resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" 370 | integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== 371 | 372 | emoji-regex@^8.0.0: 373 | version "8.0.0" 374 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" 375 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 376 | 377 | emoji-regex@^9.2.2: 378 | version "9.2.2" 379 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" 380 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 381 | 382 | enabled@2.0.x: 383 | version "2.0.0" 384 | resolved "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz" 385 | integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== 386 | 387 | entities@^2.0.0: 388 | version "2.2.0" 389 | resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" 390 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 391 | 392 | escalade@^3.1.1: 393 | version "3.2.0" 394 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" 395 | integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== 396 | 397 | fast-fifo@^1.3.2: 398 | version "1.3.2" 399 | resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" 400 | integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== 401 | 402 | fecha@^4.2.0: 403 | version "4.2.3" 404 | resolved "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz" 405 | integrity sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== 406 | 407 | fn.name@1.x.x: 408 | version "1.1.0" 409 | resolved "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz" 410 | integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 411 | 412 | foreground-child@^3.1.0: 413 | version "3.3.1" 414 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f" 415 | integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== 416 | dependencies: 417 | cross-spawn "^7.0.6" 418 | signal-exit "^4.0.1" 419 | 420 | fs.realpath@^1.0.0: 421 | version "1.0.0" 422 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 423 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 424 | 425 | get-caller-file@^2.0.5: 426 | version "2.0.5" 427 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" 428 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 429 | 430 | glob@^11.0.1: 431 | version "11.0.2" 432 | resolved "https://registry.yarnpkg.com/glob/-/glob-11.0.2.tgz#3261e3897bbc603030b041fd77ba636022d51ce0" 433 | integrity sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ== 434 | dependencies: 435 | foreground-child "^3.1.0" 436 | jackspeak "^4.0.1" 437 | minimatch "^10.0.0" 438 | minipass "^7.1.2" 439 | package-json-from-dist "^1.0.0" 440 | path-scurry "^2.0.0" 441 | 442 | glob@^7.2.3: 443 | version "7.2.3" 444 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 445 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 446 | dependencies: 447 | fs.realpath "^1.0.0" 448 | inflight "^1.0.4" 449 | inherits "2" 450 | minimatch "^3.1.1" 451 | once "^1.3.0" 452 | path-is-absolute "^1.0.0" 453 | 454 | inflight@^1.0.4: 455 | version "1.0.6" 456 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 457 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 458 | dependencies: 459 | once "^1.3.0" 460 | wrappy "1" 461 | 462 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 463 | version "2.0.4" 464 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 465 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 466 | 467 | is-arrayish@^0.3.1: 468 | version "0.3.2" 469 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" 470 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 471 | 472 | is-fullwidth-code-point@^3.0.0: 473 | version "3.0.0" 474 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" 475 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 476 | 477 | is-stream@^2.0.0: 478 | version "2.0.1" 479 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 480 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 481 | 482 | isarray@~1.0.0: 483 | version "1.0.0" 484 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" 485 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 486 | 487 | isexe@^2.0.0: 488 | version "2.0.0" 489 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 490 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 491 | 492 | jackspeak@^4.0.1: 493 | version "4.1.0" 494 | resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.0.tgz#c489c079f2b636dc4cbe9b0312a13ff1282e561b" 495 | integrity sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw== 496 | dependencies: 497 | "@isaacs/cliui" "^8.0.2" 498 | 499 | js-yaml@^4.1.0: 500 | version "4.1.0" 501 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 502 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 503 | dependencies: 504 | argparse "^2.0.1" 505 | 506 | kuler@^2.0.0: 507 | version "2.0.0" 508 | resolved "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz" 509 | integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== 510 | 511 | lodash.escape@^4.0.1: 512 | version "4.0.1" 513 | resolved "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz" 514 | integrity sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw== 515 | 516 | lodash.merge@^4.6.2: 517 | version "4.6.2" 518 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 519 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 520 | 521 | lodash@^4.17.21: 522 | version "4.17.21" 523 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 524 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 525 | 526 | logform@^2.7.0: 527 | version "2.7.0" 528 | resolved "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz" 529 | integrity sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ== 530 | dependencies: 531 | "@colors/colors" "1.6.0" 532 | "@types/triple-beam" "^1.3.2" 533 | fecha "^4.2.0" 534 | ms "^2.1.1" 535 | safe-stable-stringify "^2.3.1" 536 | triple-beam "^1.3.0" 537 | 538 | lru-cache@^11.0.0: 539 | version "11.0.2" 540 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.2.tgz#fbd8e7cf8211f5e7e5d91905c415a3f55755ca39" 541 | integrity sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA== 542 | 543 | mdn-data@2.0.14: 544 | version "2.0.14" 545 | resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" 546 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 547 | 548 | minimatch@^10.0.0: 549 | version "10.0.1" 550 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz#ce0521856b453c86e25f2c4c0d03e6ff7ddc440b" 551 | integrity sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ== 552 | dependencies: 553 | brace-expansion "^2.0.1" 554 | 555 | minimatch@^3.1.1: 556 | version "3.1.2" 557 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 558 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 559 | dependencies: 560 | brace-expansion "^1.1.7" 561 | 562 | minipass@^7.1.2: 563 | version "7.1.2" 564 | resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" 565 | integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== 566 | 567 | ms@^2.1.1: 568 | version "2.1.3" 569 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" 570 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 571 | 572 | mustache@^4.2.0: 573 | version "4.2.0" 574 | resolved "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz" 575 | integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== 576 | 577 | nth-check@^2.0.1: 578 | version "2.1.1" 579 | resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" 580 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== 581 | dependencies: 582 | boolbase "^1.0.0" 583 | 584 | once@^1.3.0: 585 | version "1.4.0" 586 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 587 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 588 | dependencies: 589 | wrappy "1" 590 | 591 | one-time@^1.0.0: 592 | version "1.0.0" 593 | resolved "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz" 594 | integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== 595 | dependencies: 596 | fn.name "1.x.x" 597 | 598 | package-json-from-dist@^1.0.0: 599 | version "1.0.1" 600 | resolved "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" 601 | integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== 602 | 603 | path-is-absolute@^1.0.0: 604 | version "1.0.1" 605 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 606 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 607 | 608 | path-key@^3.1.0: 609 | version "3.1.1" 610 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 611 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 612 | 613 | path-scurry@^2.0.0: 614 | version "2.0.0" 615 | resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz#9f052289f23ad8bf9397a2a0425e7b8615c58580" 616 | integrity sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg== 617 | dependencies: 618 | lru-cache "^11.0.0" 619 | minipass "^7.1.2" 620 | 621 | picocolors@^1.0.0: 622 | version "1.1.1" 623 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" 624 | integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== 625 | 626 | prettysize@^2.0.0: 627 | version "2.0.0" 628 | resolved "https://registry.npmjs.org/prettysize/-/prettysize-2.0.0.tgz" 629 | integrity sha512-VVtxR7sOh0VsG8o06Ttq5TrI1aiZKmC+ClSn4eBPaNf4SHr5lzbYW+kYGX3HocBL/MfpVrRfFZ9V3vCbLaiplg== 630 | 631 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 632 | version "2.0.1" 633 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" 634 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 635 | 636 | readable-stream@^2.3.5: 637 | version "2.3.8" 638 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" 639 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 640 | dependencies: 641 | core-util-is "~1.0.0" 642 | inherits "~2.0.3" 643 | isarray "~1.0.0" 644 | process-nextick-args "~2.0.0" 645 | safe-buffer "~5.1.1" 646 | string_decoder "~1.1.1" 647 | util-deprecate "~1.0.1" 648 | 649 | readable-stream@^3.4.0, readable-stream@^3.6.2: 650 | version "3.6.2" 651 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" 652 | integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 653 | dependencies: 654 | inherits "^2.0.3" 655 | string_decoder "^1.1.1" 656 | util-deprecate "^1.0.1" 657 | 658 | remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: 659 | version "1.1.0" 660 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" 661 | integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== 662 | 663 | replace-ext@^1.0.0: 664 | version "1.0.1" 665 | resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz" 666 | integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== 667 | 668 | replace-ext@^2.0.0: 669 | version "2.0.0" 670 | resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz" 671 | integrity sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug== 672 | 673 | require-directory@^2.1.1: 674 | version "2.1.1" 675 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" 676 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 677 | 678 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 679 | version "5.1.2" 680 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" 681 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 682 | 683 | safe-buffer@~5.2.0: 684 | version "5.2.1" 685 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" 686 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 687 | 688 | safe-stable-stringify@^2.3.1: 689 | version "2.5.0" 690 | resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz#4ca2f8e385f2831c432a719b108a3bf7af42a1dd" 691 | integrity sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA== 692 | 693 | shebang-command@^2.0.0: 694 | version "2.0.0" 695 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 696 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 697 | dependencies: 698 | shebang-regex "^3.0.0" 699 | 700 | shebang-regex@^3.0.0: 701 | version "3.0.0" 702 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 703 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 704 | 705 | signal-exit@^4.0.1: 706 | version "4.1.0" 707 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" 708 | integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== 709 | 710 | simple-swizzle@^0.2.2: 711 | version "0.2.2" 712 | resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" 713 | integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== 714 | dependencies: 715 | is-arrayish "^0.3.1" 716 | 717 | source-map@^0.6.1: 718 | version "0.6.1" 719 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" 720 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 721 | 722 | stable@^0.1.8: 723 | version "0.1.8" 724 | resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" 725 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 726 | 727 | stack-trace@0.0.x: 728 | version "0.0.10" 729 | resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz" 730 | integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== 731 | 732 | streamx@^2.12.5: 733 | version "2.22.0" 734 | resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.22.0.tgz#cd7b5e57c95aaef0ff9b2aef7905afa62ec6e4a7" 735 | integrity sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw== 736 | dependencies: 737 | fast-fifo "^1.3.2" 738 | text-decoder "^1.1.0" 739 | optionalDependencies: 740 | bare-events "^2.2.0" 741 | 742 | "string-width-cjs@npm:string-width@^4.2.0": 743 | version "4.2.3" 744 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 745 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 746 | dependencies: 747 | emoji-regex "^8.0.0" 748 | is-fullwidth-code-point "^3.0.0" 749 | strip-ansi "^6.0.1" 750 | 751 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 752 | version "4.2.3" 753 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" 754 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 755 | dependencies: 756 | emoji-regex "^8.0.0" 757 | is-fullwidth-code-point "^3.0.0" 758 | strip-ansi "^6.0.1" 759 | 760 | string-width@^5.0.1, string-width@^5.1.2: 761 | version "5.1.2" 762 | resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" 763 | integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== 764 | dependencies: 765 | eastasianwidth "^0.2.0" 766 | emoji-regex "^9.2.2" 767 | strip-ansi "^7.0.1" 768 | 769 | string_decoder@^1.1.1: 770 | version "1.3.0" 771 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" 772 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 773 | dependencies: 774 | safe-buffer "~5.2.0" 775 | 776 | string_decoder@~1.1.1: 777 | version "1.1.1" 778 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" 779 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 780 | dependencies: 781 | safe-buffer "~5.1.0" 782 | 783 | "strip-ansi-cjs@npm:strip-ansi@^6.0.1": 784 | version "6.0.1" 785 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 786 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 787 | dependencies: 788 | ansi-regex "^5.0.1" 789 | 790 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 791 | version "6.0.1" 792 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 793 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 794 | dependencies: 795 | ansi-regex "^5.0.1" 796 | 797 | strip-ansi@^7.0.1: 798 | version "7.1.0" 799 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" 800 | integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== 801 | dependencies: 802 | ansi-regex "^6.0.1" 803 | 804 | svg-sprite@2.0.4: 805 | version "2.0.4" 806 | resolved "https://registry.npmjs.org/svg-sprite/-/svg-sprite-2.0.4.tgz" 807 | integrity sha512-kjDoATgr4k6tdtfQczpkbuFW6RE7tPUPe/rbRd1n2NV92kdwaXEZMIxJqAZfMGOMfU/Kp1u89SUYsfHCbAvVHg== 808 | dependencies: 809 | "@resvg/resvg-js" "^2.6.0" 810 | "@xmldom/xmldom" "^0.8.10" 811 | async "^3.2.5" 812 | css-selector-parser "^1.4.1" 813 | csso "^4.2.0" 814 | cssom "^0.5.0" 815 | glob "^7.2.3" 816 | js-yaml "^4.1.0" 817 | lodash.escape "^4.0.1" 818 | lodash.merge "^4.6.2" 819 | mustache "^4.2.0" 820 | prettysize "^2.0.0" 821 | svgo "^2.8.0" 822 | vinyl "^2.2.1" 823 | winston "^3.11.0" 824 | xpath "^0.0.34" 825 | yargs "^17.7.2" 826 | 827 | svgo@^2.8.0: 828 | version "2.8.0" 829 | resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz" 830 | integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== 831 | dependencies: 832 | "@trysound/sax" "0.2.0" 833 | commander "^7.2.0" 834 | css-select "^4.1.3" 835 | css-tree "^1.1.3" 836 | csso "^4.2.0" 837 | picocolors "^1.0.0" 838 | stable "^0.1.8" 839 | 840 | teex@^1.0.1: 841 | version "1.0.1" 842 | resolved "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz" 843 | integrity sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg== 844 | dependencies: 845 | streamx "^2.12.5" 846 | 847 | text-decoder@^1.1.0: 848 | version "1.2.3" 849 | resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.3.tgz#b19da364d981b2326d5f43099c310cc80d770c65" 850 | integrity sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA== 851 | dependencies: 852 | b4a "^1.6.4" 853 | 854 | text-hex@1.0.x: 855 | version "1.0.0" 856 | resolved "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz" 857 | integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== 858 | 859 | triple-beam@^1.3.0: 860 | version "1.4.1" 861 | resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.4.1.tgz#6fde70271dc6e5d73ca0c3b24e2d92afb7441984" 862 | integrity sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg== 863 | 864 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 865 | version "1.0.2" 866 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 867 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 868 | 869 | vinyl@^2.2.1: 870 | version "2.2.1" 871 | resolved "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz" 872 | integrity sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw== 873 | dependencies: 874 | clone "^2.1.1" 875 | clone-buffer "^1.0.0" 876 | clone-stats "^1.0.0" 877 | cloneable-readable "^1.0.0" 878 | remove-trailing-separator "^1.0.1" 879 | replace-ext "^1.0.0" 880 | 881 | vinyl@^3.0.0: 882 | version "3.0.0" 883 | resolved "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz" 884 | integrity sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g== 885 | dependencies: 886 | clone "^2.1.2" 887 | clone-stats "^1.0.0" 888 | remove-trailing-separator "^1.1.0" 889 | replace-ext "^2.0.0" 890 | teex "^1.0.1" 891 | 892 | which@^2.0.1: 893 | version "2.0.2" 894 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 895 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 896 | dependencies: 897 | isexe "^2.0.0" 898 | 899 | winston-transport@^4.9.0: 900 | version "4.9.0" 901 | resolved "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz" 902 | integrity sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A== 903 | dependencies: 904 | logform "^2.7.0" 905 | readable-stream "^3.6.2" 906 | triple-beam "^1.3.0" 907 | 908 | winston@^3.11.0: 909 | version "3.17.0" 910 | resolved "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz" 911 | integrity sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw== 912 | dependencies: 913 | "@colors/colors" "^1.6.0" 914 | "@dabh/diagnostics" "^2.0.2" 915 | async "^3.2.3" 916 | is-stream "^2.0.0" 917 | logform "^2.7.0" 918 | one-time "^1.0.0" 919 | readable-stream "^3.4.0" 920 | safe-stable-stringify "^2.3.1" 921 | stack-trace "0.0.x" 922 | triple-beam "^1.3.0" 923 | winston-transport "^4.9.0" 924 | 925 | "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": 926 | version "7.0.0" 927 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" 928 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 929 | dependencies: 930 | ansi-styles "^4.0.0" 931 | string-width "^4.1.0" 932 | strip-ansi "^6.0.0" 933 | 934 | wrap-ansi@^7.0.0: 935 | version "7.0.0" 936 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" 937 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 938 | dependencies: 939 | ansi-styles "^4.0.0" 940 | string-width "^4.1.0" 941 | strip-ansi "^6.0.0" 942 | 943 | wrap-ansi@^8.1.0: 944 | version "8.1.0" 945 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" 946 | integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== 947 | dependencies: 948 | ansi-styles "^6.1.0" 949 | string-width "^5.0.1" 950 | strip-ansi "^7.0.1" 951 | 952 | wrappy@1: 953 | version "1.0.2" 954 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 955 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 956 | 957 | xpath@^0.0.34: 958 | version "0.0.34" 959 | resolved "https://registry.npmjs.org/xpath/-/xpath-0.0.34.tgz" 960 | integrity sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA== 961 | 962 | y18n@^5.0.5: 963 | version "5.0.8" 964 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" 965 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 966 | 967 | yargs-parser@^21.1.1: 968 | version "21.1.1" 969 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" 970 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 971 | 972 | yargs@^17.7.2: 973 | version "17.7.2" 974 | resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" 975 | integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 976 | dependencies: 977 | cliui "^8.0.1" 978 | escalade "^3.1.1" 979 | get-caller-file "^2.0.5" 980 | require-directory "^2.1.1" 981 | string-width "^4.2.3" 982 | y18n "^5.0.5" 983 | yargs-parser "^21.1.1" 984 | --------------------------------------------------------------------------------