├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── dist ├── index.cjs └── index.mjs ├── package-lock.json ├── package.json ├── rollup.mjs ├── src └── index.js └── test ├── _tape.mjs ├── advanced.css ├── advanced.expect.css ├── basic-button.css ├── basic-button.expect.css ├── basic-postcss-name.css ├── basic-postcss-name.expect.css ├── basic.css ├── basic.expect.css ├── basic.name.expect.css ├── error.css ├── error.expect.css ├── error.ignore.expect.css ├── error.warn.expect.css ├── injected-extend.css ├── injected-extend.expect.css ├── injected-styles.css ├── injected-styles.expect.css ├── injected ├── extend.css └── style.css ├── issue-10.css ├── issue-10.expect.css ├── issue-8.css ├── issue-8.expect.css ├── nested-media.css ├── nested-media.expect.css ├── nested-media.nesting-first.expect.css ├── nested-media.nesting-second.expect.css ├── spec-example-1.css ├── spec-example-1.expect.css ├── spec-example-3.css ├── spec-example-3.expect.css ├── spec-example-4.css ├── spec-example-4.expect.css ├── spec-example-5.css ├── spec-example-5.expect.css ├── spec-example-6.css ├── spec-example-6.expect.css ├── spec-example-7.css └── spec-example-7.expect.css /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_style = tab 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | 13 | [*.{json,md,yml}] 14 | indent_size = 2 15 | indent_style = space 16 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | on: 3 | push: 4 | 5 | concurrency: 6 | group: branch-node-${{ github.ref }} 7 | cancel-in-progress: true 8 | 9 | jobs: 10 | test: 11 | runs-on: ubuntu-latest 12 | strategy: 13 | matrix: 14 | node: [16, 18, 'lts/*'] 15 | steps: 16 | - uses: actions/checkout@v4 17 | - uses: actions/setup-node@v4 18 | with: 19 | node-version: ${{ matrix.node }} 20 | 21 | - run: npm i 22 | - run: npm run build 23 | - run: npm run test 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .eslintcache 2 | *.log* 3 | *.result.css 4 | node_modules 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changes to PostCSS Extend Rule 2 | 3 | ### 4.0.0 (February 10, 2022) 4 | 5 | - PostCSS 8 support (thanks to [@bjentsch](https://github.com/bjentsch)!) (breaking) 6 | - Supporting only Node 12, 14 and >= 16 (breaking). 7 | - Updated `postcss-nesting` to `7.0.1` (major) 8 | - Updated `babel-core`, `@babel/preset-env` to `7.5.5` (major) 9 | - Updated `eslint` to `6.1.0` (major) 10 | - Updated `rollup` to `1.17.0` (major) 11 | - Updated `rollup-plugin-babel` to `4.3.3` (major) 12 | 13 | ### 3.0.0 (July 29, 2019) 14 | 15 | ### 2.0.0 (September 19, 2017) 16 | 17 | - Added: `name` option to override the name of the extending at-rule. 18 | - Updated: `postcss-nesting` to v5.0.0 (major) 19 | - Updated: How the project is developed 20 | 21 | ### 1.1.0 (September 19, 2017) 22 | 23 | - Improve: Un-nesting of extended elements 24 | 25 | ### 1.0.0 (September 15, 2017) 26 | 27 | - Initial version 28 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to make participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies within all project spaces, and it also applies when 49 | an individual is representing the project or its community in public spaces. 50 | Examples of representing a project or community include using an official 51 | project e-mail address, posting via an official social media account, or acting 52 | as an appointed representative at an online or offline event. Representation of 53 | a project may be further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting Jonathan Neal . All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to PostCSS Extend Rule 2 | 3 | You want to help? You rock! Now, take a moment to be sure your contributions 4 | make sense to everyone else. 5 | 6 | ## Reporting Issues 7 | 8 | Found a problem? Want a new feature? 9 | 10 | - See if your issue or idea has [already been reported]. 11 | - Provide a [reduced test case] or a [live example]. 12 | 13 | Remember, a bug is a _demonstrable problem_ caused by _our_ code. 14 | 15 | ## Submitting Pull Requests 16 | 17 | Pull requests are the greatest contributions, so be sure they are focused in 18 | scope and avoid unrelated commits. 19 | 20 | 1. To begin; [fork this project], clone your fork, and add our upstream. 21 | ```bash 22 | # Clone your fork of the repo into the current directory 23 | git clone git@github.com:YOUR_USER/postcss-extend-rule.git 24 | 25 | # Navigate to the newly cloned directory 26 | cd postcss-extend-rule 27 | 28 | # Assign the original repo to a remote called "upstream" 29 | git remote add upstream git@github.com:csstools/postcss-extend-rule.git 30 | 31 | # Install the tools necessary for testing 32 | npm install 33 | ``` 34 | 35 | 2. Create a branch for your feature or fix: 36 | ```bash 37 | # Move into a new branch for your feature 38 | git checkout -b feature/thing 39 | ``` 40 | ```bash 41 | # Move into a new branch for your fix 42 | git checkout -b fix/something 43 | ``` 44 | 45 | 3. If your code follows our practices, then push your feature branch: 46 | ```bash 47 | # Test current code 48 | npm test 49 | ``` 50 | ```bash 51 | # Push the branch for your new feature 52 | git push origin feature/thing 53 | ``` 54 | ```bash 55 | # Or, push the branch for your update 56 | git push origin update/something 57 | ``` 58 | 59 | That’s it! Now [open a pull request] with a clear title and description. 60 | 61 | [already been reported]: issues 62 | [fork this project]: fork 63 | [live example]: https://codepen.io/pen 64 | [open a pull request]: https://help.github.com/articles/using-pull-requests/ 65 | [reduced test case]: https://css-tricks.com/reduced-test-cases/ 66 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # CC0 1.0 Universal 2 | 3 | ## Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an “owner”) of an original work of 8 | authorship and/or a database (each, a “Work”). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific works 12 | (“Commons”) that the public can reliably and without fear of later claims of 13 | infringement build upon, modify, incorporate in other works, reuse and 14 | redistribute as freely as possible in any form whatsoever and for any purposes, 15 | including without limitation commercial purposes. These owners may contribute 16 | to the Commons to promote the ideal of a free culture and the further 17 | production of creative, cultural and scientific works, or to gain reputation or 18 | greater distribution for their Work in part through the use and efforts of 19 | others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation of 22 | additional consideration or compensation, the person associating CC0 with a 23 | Work (the “Affirmer”), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and 25 | publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights (“Copyright and 31 | Related Rights”). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 1. the right to reproduce, adapt, distribute, perform, display, communicate, 34 | and translate a Work; 35 | 2. moral rights retained by the original author(s) and/or performer(s); 36 | 3. publicity and privacy rights pertaining to a person’s image or likeness 37 | depicted in a Work; 38 | 4. rights protecting against unfair competition in regards to a Work, 39 | subject to the limitations in paragraph 4(i), below; 40 | 5. rights protecting the extraction, dissemination, use and reuse of data in 41 | a Work; 42 | 6. database rights (such as those arising under Directive 96/9/EC of the 43 | European Parliament and of the Council of 11 March 1996 on the legal 44 | protection of databases, and under any national implementation thereof, 45 | including any amended or successor version of such directive); and 46 | 7. other similar, equivalent or corresponding rights throughout the world 47 | based on applicable law or treaty, and any national implementations 48 | thereof. 49 | 50 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 51 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 52 | unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright 53 | and Related Rights and associated claims and causes of action, whether now 54 | known or unknown (including existing as well as future claims and causes of 55 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 56 | duration provided by applicable law or treaty (including future time 57 | extensions), (iii) in any current or future medium and for any number of 58 | copies, and (iv) for any purpose whatsoever, including without limitation 59 | commercial, advertising or promotional purposes (the “Waiver”). Affirmer 60 | makes the Waiver for the benefit of each member of the public at large and 61 | to the detriment of Affirmer’s heirs and successors, fully intending that 62 | such Waiver shall not be subject to revocation, rescission, cancellation, 63 | termination, or any other legal or equitable action to disrupt the quiet 64 | enjoyment of the Work by the public as contemplated by Affirmer’s express 65 | Statement of Purpose. 66 | 67 | 3. Public License Fallback. Should any part of the Waiver for any reason be 68 | judged legally invalid or ineffective under applicable law, then the Waiver 69 | shall be preserved to the maximum extent permitted taking into account 70 | Affirmer’s express Statement of Purpose. In addition, to the extent the 71 | Waiver is so judged Affirmer hereby grants to each affected person a 72 | royalty-free, non transferable, non sublicensable, non exclusive, 73 | irrevocable and unconditional license to exercise Affirmer’s Copyright and 74 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 75 | maximum duration provided by applicable law or treaty (including future time 76 | extensions), (iii) in any current or future medium and for any number of 77 | copies, and (iv) for any purpose whatsoever, including without limitation 78 | commercial, advertising or promotional purposes (the “License”). The License 79 | shall be deemed effective as of the date CC0 was applied by Affirmer to the 80 | Work. Should any part of the License for any reason be judged legally 81 | invalid or ineffective under applicable law, such partial invalidity or 82 | ineffectiveness shall not invalidate the remainder of the License, and in 83 | such case Affirmer hereby affirms that he or she will not (i) exercise any 84 | of his or her remaining Copyright and Related Rights in the Work or (ii) 85 | assert any associated claims and causes of action with respect to the Work, 86 | in either case contrary to Affirmer’s express Statement of Purpose. 87 | 88 | 4. Limitations and Disclaimers. 89 | 1. No trademark or patent rights held by Affirmer are waived, abandoned, 90 | surrendered, licensed or otherwise affected by this document. 91 | 2. Affirmer offers the Work as-is and makes no representations or warranties 92 | of any kind concerning the Work, express, implied, statutory or 93 | otherwise, including without limitation warranties of title, 94 | merchantability, fitness for a particular purpose, non infringement, or 95 | the absence of latent or other defects, accuracy, or the present or 96 | absence of errors, whether or not discoverable, all to the greatest 97 | extent permissible under applicable law. 98 | 3. Affirmer disclaims responsibility for clearing rights of other persons 99 | that may apply to the Work or any use thereof, including without 100 | limitation any person’s Copyright and Related Rights in the Work. 101 | Further, Affirmer disclaims responsibility for obtaining any necessary 102 | consents, permissions or other rights required for any use of the Work. 103 | 4. Affirmer understands and acknowledges that Creative Commons is not a 104 | party to this document and has no duty or obligation with respect to this 105 | CC0 or use of the Work. 106 | 107 | For more information, please see 108 | http://creativecommons.org/publicdomain/zero/1.0/. 109 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PostCSS Extend Rule [PostCSS][postcss] 2 | 3 | [![NPM Version][npm-img]][npm-url] 4 | [![test](https://github.com/csstools/postcss-extend-rule/actions/workflows/test.yml/badge.svg)](https://github.com/csstools/postcss-extend-rule/actions/workflows/test.yml) 5 | [Discord][discord] 6 | 7 | [PostCSS Extend Rule] lets you use the `@extend` at-rule and 8 | [Functional Selectors] in CSS, following the speculative 9 | [CSS Extend Rules Specification]. 10 | 11 | ```pcss 12 | %thick-border { 13 | border: thick dotted red; 14 | } 15 | 16 | .serious-modal { 17 | font-style: normal; 18 | font-weight: bold; 19 | 20 | @media (max-width: 240px) { 21 | @extend .modal:hover; 22 | } 23 | } 24 | 25 | .modal { 26 | @extend %thick-border; 27 | 28 | color: red; 29 | } 30 | 31 | .modal:hover:not(:focus) { 32 | outline: none; 33 | } 34 | 35 | /* becomes */ 36 | 37 | .serious-modal { 38 | font-style: normal; 39 | font-weight: bold; 40 | } 41 | 42 | @media (max-width: 240px) { 43 | .serious-modal:not(:focus) { 44 | outline: none; 45 | } 46 | } 47 | 48 | .modal { 49 | border: thick dotted red; 50 | color: red; 51 | } 52 | 53 | .modal:hover:not(:focus) { 54 | outline: none; 55 | } 56 | ``` 57 | 58 | ## Usage 59 | 60 | Add [PostCSS Extend Rule] to your project: 61 | 62 | ```bash 63 | npm install postcss postcss-extend-rule --save-dev 64 | ``` 65 | 66 | Use **PostCSS Extend Rule** to process your CSS: 67 | 68 | ```js 69 | const postcssExtendRule = require('postcss-extend-rule'); 70 | 71 | postcssExtendRule.process(YOUR_CSS /*, processOptions, pluginOptions */); 72 | ``` 73 | 74 | Or use it as a [PostCSS] plugin: 75 | 76 | ```js 77 | const postcss = require('postcss'); 78 | const postcssExtendRule = require('postcss-extend-rule'); 79 | 80 | postcss([ 81 | postcssExtendRule(/* pluginOptions */) 82 | ]).process(YOUR_CSS /*, processOptions */); 83 | ``` 84 | 85 | **PostCSS Extend Rule** runs in all Node environments, with special instructions for: 86 | 87 | | [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) | 88 | | --- | --- | --- | --- | --- | --- | 89 | 90 | ## Options 91 | 92 | ### name 93 | 94 | The `name` option determines the at-rule name being used to extend selectors. 95 | By default, this name is `extend`, meaning `@extend` rules are parsed. 96 | 97 | ```js 98 | postcssExtend({ name: 'postcss-extend' }) 99 | ``` 100 | 101 | If the `name` option were changed to, say, `postcss-extend`, then only 102 | `@postcss-extend` at-rules would be parsed. 103 | 104 | ```pcss 105 | main { 106 | @postcss-extend .some-rule; 107 | } 108 | ``` 109 | 110 | ### onFunctionalSelector 111 | 112 | The `onFunctionalSelector` option determines how functional selectors should be 113 | handled. Its options are: 114 | 115 | - `remove` (default) removes any functional selector 116 | - `ignore` ignores any functional selector and moves on 117 | - `warn` warns the user whenever it encounters a functional selector 118 | - `throw` throws an error if ever it encounters a functional selector 119 | 120 | ```js 121 | postcssExtend({ onFunctionalSelector: 'remove' /* default */ }) 122 | ``` 123 | 124 | ```pcss 125 | %this-will-be-removed {} 126 | ``` 127 | 128 | ### onRecursiveExtend 129 | 130 | The `onRecursiveExtend` option determines how recursive extend at-rules should 131 | be handled. Its options are: 132 | 133 | - `remove` (default) removes any recursive extend at-rules 134 | - `ignore` ignores any recursive extend at-rules and moves on 135 | - `warn` warns the user whenever it encounters a recursive extend at-rules 136 | - `throw` throws an error if ever it encounters a recursive extend at-rules 137 | 138 | ```js 139 | postcssExtend({ onRecursiveExtend: 'remove' /* default */ }) 140 | ``` 141 | 142 | ```pcss 143 | .this-will-not-extend-itself { 144 | @extend .this-will-not-extend-itself; 145 | } 146 | ``` 147 | 148 | ### onUnusedExtend 149 | 150 | The `onUnusedExtend` option determines how an unused extend at-rule should be 151 | handled. Its options are: 152 | 153 | - `remove` (default) removes any unused extend at-rule 154 | - `ignore` ignores any unused extend at-rule and moves on 155 | - `warn` warns the user whenever it encounters an unused extend at-rule 156 | - `throw` throws an error if ever it encounters an unused extend at-rule 157 | 158 | ```js 159 | postcssExtend({ onUnusedExtend: 'remove' /* default */ }) 160 | ``` 161 | 162 | ```pcss 163 | main { 164 | @extend .this-selector-does-not-exist-and-will-be-removed; 165 | } 166 | ``` 167 | 168 | [git-img]: https://img.shields.io/badge/support-chat-blue.svg 169 | [discord]: https://discord.gg/bUadyRwkJS 170 | [npm-img]: https://img.shields.io/npm/v/postcss-extend-rule.svg 171 | [npm-url]: https://www.npmjs.com/package/postcss-extend-rule 172 | 173 | [CSS Extend Rules Specification]: https://jonathantneal.github.io/specs/css-extend-rule/ 174 | [Functional Selectors]: https://jonathantneal.github.io/specs/css-extend-rule/#functional-selector 175 | [PostCSS]: https://github.com/postcss/postcss 176 | [PostCSS Extend Rule]: https://github.com/csstools/postcss-extend-rule 177 | -------------------------------------------------------------------------------- /dist/index.cjs: -------------------------------------------------------------------------------- 1 | var nesting = require('postcss-nesting'); 2 | 3 | // functional selector match 4 | const functionalSelectorMatch = /(^|[^\w-])(%[_a-zA-Z]+[_a-zA-Z0-9-]*)([^\w-]|$)/i; 5 | 6 | // plugin 7 | const postcssExtendRule = rawopts => { 8 | // options ( onFunctionalSelector, onRecursiveExtend, onUnusedExtend) 9 | const opts = Object(rawopts); 10 | let extendMatch = /^extend$/i; 11 | if (opts.name instanceof RegExp) { 12 | extendMatch = opts.name; 13 | } else if ('name' in opts) { 14 | extendMatch = new RegExp(`^${opts.name}$`, 'i'); 15 | } 16 | return { 17 | postcssPlugin: 'postcss-extend-rule', 18 | OnceExit(root, { 19 | postcss, 20 | result 21 | }) { 22 | const extendedAtRules = new WeakMap(); 23 | 24 | // for each extend at-rule 25 | root.walkAtRules(extendMatch, extendAtRule => { 26 | let parent = extendAtRule.parent; 27 | while (parent.parent && parent.parent !== root) { 28 | parent = parent.parent; 29 | } 30 | 31 | // do not revisit visited extend at-rules 32 | if (!extendedAtRules.has(extendAtRule)) { 33 | extendedAtRules.set(extendAtRule, true); 34 | 35 | // selector identifier 36 | const selectorIdMatch = getSelectorIdMatch(extendAtRule.params, postcss); 37 | 38 | // extending rules 39 | const extendingRules = getExtendingRules(selectorIdMatch, extendAtRule); 40 | 41 | // if there are extending rules 42 | if (extendingRules.length) { 43 | // replace the extend at-rule with the extending rules 44 | extendAtRule.replaceWith(extendingRules); 45 | 46 | // transform any nesting at-rules 47 | const cloneRoot = postcss.root().append(parent.clone()); 48 | 49 | // apply nesting (sync) 50 | postcss([nesting({ 51 | noIsPseudoSelector: true 52 | })]).process(cloneRoot).sync(); 53 | parent.replaceWith(cloneRoot); 54 | } else { 55 | // manage unused extend at-rules 56 | const unusedExtendMessage = `Unused extend at-rule "${extendAtRule.params}"`; 57 | if (opts.onUnusedExtend === 'throw') { 58 | throw extendAtRule.error(unusedExtendMessage, { 59 | word: extendAtRule.name 60 | }); 61 | } else if (opts.onUnusedExtend === 'warn') { 62 | extendAtRule.warn(result, unusedExtendMessage); 63 | } else if (opts.onUnusedExtend !== 'ignore') { 64 | extendAtRule.remove(); 65 | } 66 | } 67 | } else { 68 | // manage revisited extend at-rules 69 | const revisitedExtendMessage = `Revisited extend at-rule "${extendAtRule.params}"`; 70 | if (opts.onRecursiveExtend === 'throw') { 71 | throw extendAtRule.error(revisitedExtendMessage, { 72 | word: extendAtRule.name 73 | }); 74 | } else if (opts.onRecursiveExtend === 'warn') { 75 | extendAtRule.warn(result, revisitedExtendMessage); 76 | } else if (opts.onRecursiveExtend !== 'ignore') { 77 | extendAtRule.remove(); 78 | } 79 | } 80 | }); 81 | root.walkRules(functionalSelectorMatch, functionalRule => { 82 | // manage encountered functional selectors 83 | const functionalSelectorMessage = `Encountered functional selector "${functionalRule.selector}"`; 84 | if (opts.onFunctionalSelector === 'throw') { 85 | throw functionalRule.error(functionalSelectorMessage, { 86 | word: functionalRule.selector.match(functionalSelectorMatch)[1] 87 | }); 88 | } else if (opts.onFunctionalSelector === 'warn') { 89 | functionalRule.warn(result, functionalSelectorMessage); 90 | } else if (opts.onFunctionalSelector !== 'ignore') { 91 | functionalRule.remove(); 92 | } 93 | }); 94 | } 95 | }; 96 | }; 97 | function getExtendingRules(selectorIdMatch, extendAtRule) { 98 | // extending rules 99 | const extendingRules = []; 100 | 101 | // for each rule found from root of the extend at-rule with a matching selector identifier 102 | extendAtRule.root().walkRules(selectorIdMatch, matchingRule => { 103 | // nesting selectors for the selectors matching the selector identifier 104 | const nestingSelectors = matchingRule.selectors.filter(selector => selectorIdMatch.test(selector)).map(selector => selector.replace(selectorIdMatch, '$1&$3')).join(','); 105 | 106 | // matching rule’s cloned nodes 107 | const nestingNodes = matchingRule.clone().nodes; 108 | 109 | // clone the matching rule as a nested rule 110 | let clone = extendAtRule.clone({ 111 | name: 'nest', 112 | params: nestingSelectors, 113 | nodes: nestingNodes, 114 | // empty the extending rules, as they are likely non-conforming 115 | raws: {} 116 | }); 117 | 118 | // preserve nesting of parent rules and at-rules 119 | let parent = matchingRule.parent; 120 | while (parent && (parent.type === 'rule' || parent.type === 'atrule')) { 121 | clone = parent.clone().removeAll().append([clone]); 122 | parent = parent.parent; 123 | } 124 | 125 | // push the matching rule to the extending rules 126 | extendingRules.push(clone); 127 | }); 128 | 129 | // return the extending rules 130 | return extendingRules; 131 | } 132 | function getSelectorIdMatch(selectorIds, postcss) { 133 | // escape the contents of the selector id to avoid being parsed as regex 134 | const escapedSelectorIds = postcss.list.comma(selectorIds).map(selectorId => selectorId.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')).join('|'); 135 | 136 | // selector unattached to an existing selector 137 | return new RegExp(`(^|[^\\w-]!.!#)(${escapedSelectorIds})([^\\w-]|$)`, ''); 138 | } 139 | postcssExtendRule.postcss = true; 140 | 141 | module.exports = postcssExtendRule; 142 | -------------------------------------------------------------------------------- /dist/index.mjs: -------------------------------------------------------------------------------- 1 | import nesting from 'postcss-nesting'; 2 | 3 | // functional selector match 4 | const functionalSelectorMatch = /(^|[^\w-])(%[_a-zA-Z]+[_a-zA-Z0-9-]*)([^\w-]|$)/i; 5 | 6 | // plugin 7 | const postcssExtendRule = rawopts => { 8 | // options ( onFunctionalSelector, onRecursiveExtend, onUnusedExtend) 9 | const opts = Object(rawopts); 10 | let extendMatch = /^extend$/i; 11 | if (opts.name instanceof RegExp) { 12 | extendMatch = opts.name; 13 | } else if ('name' in opts) { 14 | extendMatch = new RegExp(`^${opts.name}$`, 'i'); 15 | } 16 | return { 17 | postcssPlugin: 'postcss-extend-rule', 18 | OnceExit(root, { 19 | postcss, 20 | result 21 | }) { 22 | const extendedAtRules = new WeakMap(); 23 | 24 | // for each extend at-rule 25 | root.walkAtRules(extendMatch, extendAtRule => { 26 | let parent = extendAtRule.parent; 27 | while (parent.parent && parent.parent !== root) { 28 | parent = parent.parent; 29 | } 30 | 31 | // do not revisit visited extend at-rules 32 | if (!extendedAtRules.has(extendAtRule)) { 33 | extendedAtRules.set(extendAtRule, true); 34 | 35 | // selector identifier 36 | const selectorIdMatch = getSelectorIdMatch(extendAtRule.params, postcss); 37 | 38 | // extending rules 39 | const extendingRules = getExtendingRules(selectorIdMatch, extendAtRule); 40 | 41 | // if there are extending rules 42 | if (extendingRules.length) { 43 | // replace the extend at-rule with the extending rules 44 | extendAtRule.replaceWith(extendingRules); 45 | 46 | // transform any nesting at-rules 47 | const cloneRoot = postcss.root().append(parent.clone()); 48 | 49 | // apply nesting (sync) 50 | postcss([nesting({ 51 | noIsPseudoSelector: true 52 | })]).process(cloneRoot).sync(); 53 | parent.replaceWith(cloneRoot); 54 | } else { 55 | // manage unused extend at-rules 56 | const unusedExtendMessage = `Unused extend at-rule "${extendAtRule.params}"`; 57 | if (opts.onUnusedExtend === 'throw') { 58 | throw extendAtRule.error(unusedExtendMessage, { 59 | word: extendAtRule.name 60 | }); 61 | } else if (opts.onUnusedExtend === 'warn') { 62 | extendAtRule.warn(result, unusedExtendMessage); 63 | } else if (opts.onUnusedExtend !== 'ignore') { 64 | extendAtRule.remove(); 65 | } 66 | } 67 | } else { 68 | // manage revisited extend at-rules 69 | const revisitedExtendMessage = `Revisited extend at-rule "${extendAtRule.params}"`; 70 | if (opts.onRecursiveExtend === 'throw') { 71 | throw extendAtRule.error(revisitedExtendMessage, { 72 | word: extendAtRule.name 73 | }); 74 | } else if (opts.onRecursiveExtend === 'warn') { 75 | extendAtRule.warn(result, revisitedExtendMessage); 76 | } else if (opts.onRecursiveExtend !== 'ignore') { 77 | extendAtRule.remove(); 78 | } 79 | } 80 | }); 81 | root.walkRules(functionalSelectorMatch, functionalRule => { 82 | // manage encountered functional selectors 83 | const functionalSelectorMessage = `Encountered functional selector "${functionalRule.selector}"`; 84 | if (opts.onFunctionalSelector === 'throw') { 85 | throw functionalRule.error(functionalSelectorMessage, { 86 | word: functionalRule.selector.match(functionalSelectorMatch)[1] 87 | }); 88 | } else if (opts.onFunctionalSelector === 'warn') { 89 | functionalRule.warn(result, functionalSelectorMessage); 90 | } else if (opts.onFunctionalSelector !== 'ignore') { 91 | functionalRule.remove(); 92 | } 93 | }); 94 | } 95 | }; 96 | }; 97 | function getExtendingRules(selectorIdMatch, extendAtRule) { 98 | // extending rules 99 | const extendingRules = []; 100 | 101 | // for each rule found from root of the extend at-rule with a matching selector identifier 102 | extendAtRule.root().walkRules(selectorIdMatch, matchingRule => { 103 | // nesting selectors for the selectors matching the selector identifier 104 | const nestingSelectors = matchingRule.selectors.filter(selector => selectorIdMatch.test(selector)).map(selector => selector.replace(selectorIdMatch, '$1&$3')).join(','); 105 | 106 | // matching rule’s cloned nodes 107 | const nestingNodes = matchingRule.clone().nodes; 108 | 109 | // clone the matching rule as a nested rule 110 | let clone = extendAtRule.clone({ 111 | name: 'nest', 112 | params: nestingSelectors, 113 | nodes: nestingNodes, 114 | // empty the extending rules, as they are likely non-conforming 115 | raws: {} 116 | }); 117 | 118 | // preserve nesting of parent rules and at-rules 119 | let parent = matchingRule.parent; 120 | while (parent && (parent.type === 'rule' || parent.type === 'atrule')) { 121 | clone = parent.clone().removeAll().append([clone]); 122 | parent = parent.parent; 123 | } 124 | 125 | // push the matching rule to the extending rules 126 | extendingRules.push(clone); 127 | }); 128 | 129 | // return the extending rules 130 | return extendingRules; 131 | } 132 | function getSelectorIdMatch(selectorIds, postcss) { 133 | // escape the contents of the selector id to avoid being parsed as regex 134 | const escapedSelectorIds = postcss.list.comma(selectorIds).map(selectorId => selectorId.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')).join('|'); 135 | 136 | // selector unattached to an existing selector 137 | return new RegExp(`(^|[^\\w-]!.!#)(${escapedSelectorIds})([^\\w-]|$)`, ''); 138 | } 139 | postcssExtendRule.postcss = true; 140 | 141 | export { postcssExtendRule as default }; 142 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-extend-rule", 3 | "version": "4.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "postcss-extend-rule", 9 | "version": "4.0.0", 10 | "license": "CC0-1.0", 11 | "dependencies": { 12 | "postcss-nesting": "^10.1.2" 13 | }, 14 | "devDependencies": { 15 | "@babel/core": "^7.17.2", 16 | "@babel/eslint-parser": "^7.17.0", 17 | "@babel/preset-env": "^7.16.11", 18 | "@csstools/postcss-global-data": "^2.1.1", 19 | "@csstools/postcss-tape": "^4.1.1", 20 | "@rollup/plugin-babel": "^6.0.4", 21 | "eslint": "^8.8.0", 22 | "postcss": "^8.4.6", 23 | "rollup": "^4.9.1" 24 | }, 25 | "engines": { 26 | "node": "^12 || ^14 || >=16" 27 | }, 28 | "peerDependencies": { 29 | "postcss": "^8.4.6" 30 | } 31 | }, 32 | "node_modules/@ampproject/remapping": { 33 | "version": "2.3.0", 34 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 35 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 36 | "dev": true, 37 | "license": "Apache-2.0", 38 | "dependencies": { 39 | "@jridgewell/gen-mapping": "^0.3.5", 40 | "@jridgewell/trace-mapping": "^0.3.24" 41 | }, 42 | "engines": { 43 | "node": ">=6.0.0" 44 | } 45 | }, 46 | "node_modules/@babel/code-frame": { 47 | "version": "7.26.2", 48 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 49 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 50 | "dev": true, 51 | "license": "MIT", 52 | "dependencies": { 53 | "@babel/helper-validator-identifier": "^7.25.9", 54 | "js-tokens": "^4.0.0", 55 | "picocolors": "^1.0.0" 56 | }, 57 | "engines": { 58 | "node": ">=6.9.0" 59 | } 60 | }, 61 | "node_modules/@babel/compat-data": { 62 | "version": "7.26.3", 63 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", 64 | "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", 65 | "dev": true, 66 | "license": "MIT", 67 | "engines": { 68 | "node": ">=6.9.0" 69 | } 70 | }, 71 | "node_modules/@babel/core": { 72 | "version": "7.26.0", 73 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", 74 | "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", 75 | "dev": true, 76 | "license": "MIT", 77 | "dependencies": { 78 | "@ampproject/remapping": "^2.2.0", 79 | "@babel/code-frame": "^7.26.0", 80 | "@babel/generator": "^7.26.0", 81 | "@babel/helper-compilation-targets": "^7.25.9", 82 | "@babel/helper-module-transforms": "^7.26.0", 83 | "@babel/helpers": "^7.26.0", 84 | "@babel/parser": "^7.26.0", 85 | "@babel/template": "^7.25.9", 86 | "@babel/traverse": "^7.25.9", 87 | "@babel/types": "^7.26.0", 88 | "convert-source-map": "^2.0.0", 89 | "debug": "^4.1.0", 90 | "gensync": "^1.0.0-beta.2", 91 | "json5": "^2.2.3", 92 | "semver": "^6.3.1" 93 | }, 94 | "engines": { 95 | "node": ">=6.9.0" 96 | }, 97 | "funding": { 98 | "type": "opencollective", 99 | "url": "https://opencollective.com/babel" 100 | } 101 | }, 102 | "node_modules/@babel/eslint-parser": { 103 | "version": "7.25.9", 104 | "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz", 105 | "integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==", 106 | "dev": true, 107 | "license": "MIT", 108 | "dependencies": { 109 | "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", 110 | "eslint-visitor-keys": "^2.1.0", 111 | "semver": "^6.3.1" 112 | }, 113 | "engines": { 114 | "node": "^10.13.0 || ^12.13.0 || >=14.0.0" 115 | }, 116 | "peerDependencies": { 117 | "@babel/core": "^7.11.0", 118 | "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" 119 | } 120 | }, 121 | "node_modules/@babel/generator": { 122 | "version": "7.26.3", 123 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", 124 | "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", 125 | "dev": true, 126 | "license": "MIT", 127 | "dependencies": { 128 | "@babel/parser": "^7.26.3", 129 | "@babel/types": "^7.26.3", 130 | "@jridgewell/gen-mapping": "^0.3.5", 131 | "@jridgewell/trace-mapping": "^0.3.25", 132 | "jsesc": "^3.0.2" 133 | }, 134 | "engines": { 135 | "node": ">=6.9.0" 136 | } 137 | }, 138 | "node_modules/@babel/helper-annotate-as-pure": { 139 | "version": "7.25.9", 140 | "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", 141 | "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", 142 | "dev": true, 143 | "license": "MIT", 144 | "dependencies": { 145 | "@babel/types": "^7.25.9" 146 | }, 147 | "engines": { 148 | "node": ">=6.9.0" 149 | } 150 | }, 151 | "node_modules/@babel/helper-compilation-targets": { 152 | "version": "7.25.9", 153 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", 154 | "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", 155 | "dev": true, 156 | "license": "MIT", 157 | "dependencies": { 158 | "@babel/compat-data": "^7.25.9", 159 | "@babel/helper-validator-option": "^7.25.9", 160 | "browserslist": "^4.24.0", 161 | "lru-cache": "^5.1.1", 162 | "semver": "^6.3.1" 163 | }, 164 | "engines": { 165 | "node": ">=6.9.0" 166 | } 167 | }, 168 | "node_modules/@babel/helper-create-class-features-plugin": { 169 | "version": "7.25.9", 170 | "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", 171 | "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", 172 | "dev": true, 173 | "license": "MIT", 174 | "dependencies": { 175 | "@babel/helper-annotate-as-pure": "^7.25.9", 176 | "@babel/helper-member-expression-to-functions": "^7.25.9", 177 | "@babel/helper-optimise-call-expression": "^7.25.9", 178 | "@babel/helper-replace-supers": "^7.25.9", 179 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", 180 | "@babel/traverse": "^7.25.9", 181 | "semver": "^6.3.1" 182 | }, 183 | "engines": { 184 | "node": ">=6.9.0" 185 | }, 186 | "peerDependencies": { 187 | "@babel/core": "^7.0.0" 188 | } 189 | }, 190 | "node_modules/@babel/helper-create-regexp-features-plugin": { 191 | "version": "7.26.3", 192 | "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", 193 | "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", 194 | "dev": true, 195 | "license": "MIT", 196 | "dependencies": { 197 | "@babel/helper-annotate-as-pure": "^7.25.9", 198 | "regexpu-core": "^6.2.0", 199 | "semver": "^6.3.1" 200 | }, 201 | "engines": { 202 | "node": ">=6.9.0" 203 | }, 204 | "peerDependencies": { 205 | "@babel/core": "^7.0.0" 206 | } 207 | }, 208 | "node_modules/@babel/helper-define-polyfill-provider": { 209 | "version": "0.6.3", 210 | "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", 211 | "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", 212 | "dev": true, 213 | "license": "MIT", 214 | "dependencies": { 215 | "@babel/helper-compilation-targets": "^7.22.6", 216 | "@babel/helper-plugin-utils": "^7.22.5", 217 | "debug": "^4.1.1", 218 | "lodash.debounce": "^4.0.8", 219 | "resolve": "^1.14.2" 220 | }, 221 | "peerDependencies": { 222 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 223 | } 224 | }, 225 | "node_modules/@babel/helper-member-expression-to-functions": { 226 | "version": "7.25.9", 227 | "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", 228 | "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", 229 | "dev": true, 230 | "license": "MIT", 231 | "dependencies": { 232 | "@babel/traverse": "^7.25.9", 233 | "@babel/types": "^7.25.9" 234 | }, 235 | "engines": { 236 | "node": ">=6.9.0" 237 | } 238 | }, 239 | "node_modules/@babel/helper-module-imports": { 240 | "version": "7.25.9", 241 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 242 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 243 | "dev": true, 244 | "license": "MIT", 245 | "dependencies": { 246 | "@babel/traverse": "^7.25.9", 247 | "@babel/types": "^7.25.9" 248 | }, 249 | "engines": { 250 | "node": ">=6.9.0" 251 | } 252 | }, 253 | "node_modules/@babel/helper-module-transforms": { 254 | "version": "7.26.0", 255 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 256 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 257 | "dev": true, 258 | "license": "MIT", 259 | "dependencies": { 260 | "@babel/helper-module-imports": "^7.25.9", 261 | "@babel/helper-validator-identifier": "^7.25.9", 262 | "@babel/traverse": "^7.25.9" 263 | }, 264 | "engines": { 265 | "node": ">=6.9.0" 266 | }, 267 | "peerDependencies": { 268 | "@babel/core": "^7.0.0" 269 | } 270 | }, 271 | "node_modules/@babel/helper-optimise-call-expression": { 272 | "version": "7.25.9", 273 | "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", 274 | "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", 275 | "dev": true, 276 | "license": "MIT", 277 | "dependencies": { 278 | "@babel/types": "^7.25.9" 279 | }, 280 | "engines": { 281 | "node": ">=6.9.0" 282 | } 283 | }, 284 | "node_modules/@babel/helper-plugin-utils": { 285 | "version": "7.25.9", 286 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", 287 | "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", 288 | "dev": true, 289 | "license": "MIT", 290 | "engines": { 291 | "node": ">=6.9.0" 292 | } 293 | }, 294 | "node_modules/@babel/helper-remap-async-to-generator": { 295 | "version": "7.25.9", 296 | "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", 297 | "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", 298 | "dev": true, 299 | "license": "MIT", 300 | "dependencies": { 301 | "@babel/helper-annotate-as-pure": "^7.25.9", 302 | "@babel/helper-wrap-function": "^7.25.9", 303 | "@babel/traverse": "^7.25.9" 304 | }, 305 | "engines": { 306 | "node": ">=6.9.0" 307 | }, 308 | "peerDependencies": { 309 | "@babel/core": "^7.0.0" 310 | } 311 | }, 312 | "node_modules/@babel/helper-replace-supers": { 313 | "version": "7.25.9", 314 | "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", 315 | "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", 316 | "dev": true, 317 | "license": "MIT", 318 | "dependencies": { 319 | "@babel/helper-member-expression-to-functions": "^7.25.9", 320 | "@babel/helper-optimise-call-expression": "^7.25.9", 321 | "@babel/traverse": "^7.25.9" 322 | }, 323 | "engines": { 324 | "node": ">=6.9.0" 325 | }, 326 | "peerDependencies": { 327 | "@babel/core": "^7.0.0" 328 | } 329 | }, 330 | "node_modules/@babel/helper-skip-transparent-expression-wrappers": { 331 | "version": "7.25.9", 332 | "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", 333 | "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", 334 | "dev": true, 335 | "license": "MIT", 336 | "dependencies": { 337 | "@babel/traverse": "^7.25.9", 338 | "@babel/types": "^7.25.9" 339 | }, 340 | "engines": { 341 | "node": ">=6.9.0" 342 | } 343 | }, 344 | "node_modules/@babel/helper-string-parser": { 345 | "version": "7.25.9", 346 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 347 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 348 | "dev": true, 349 | "license": "MIT", 350 | "engines": { 351 | "node": ">=6.9.0" 352 | } 353 | }, 354 | "node_modules/@babel/helper-validator-identifier": { 355 | "version": "7.25.9", 356 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 357 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 358 | "dev": true, 359 | "license": "MIT", 360 | "engines": { 361 | "node": ">=6.9.0" 362 | } 363 | }, 364 | "node_modules/@babel/helper-validator-option": { 365 | "version": "7.25.9", 366 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 367 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 368 | "dev": true, 369 | "license": "MIT", 370 | "engines": { 371 | "node": ">=6.9.0" 372 | } 373 | }, 374 | "node_modules/@babel/helper-wrap-function": { 375 | "version": "7.25.9", 376 | "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", 377 | "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", 378 | "dev": true, 379 | "license": "MIT", 380 | "dependencies": { 381 | "@babel/template": "^7.25.9", 382 | "@babel/traverse": "^7.25.9", 383 | "@babel/types": "^7.25.9" 384 | }, 385 | "engines": { 386 | "node": ">=6.9.0" 387 | } 388 | }, 389 | "node_modules/@babel/helpers": { 390 | "version": "7.26.0", 391 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", 392 | "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", 393 | "dev": true, 394 | "license": "MIT", 395 | "dependencies": { 396 | "@babel/template": "^7.25.9", 397 | "@babel/types": "^7.26.0" 398 | }, 399 | "engines": { 400 | "node": ">=6.9.0" 401 | } 402 | }, 403 | "node_modules/@babel/parser": { 404 | "version": "7.26.3", 405 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", 406 | "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", 407 | "dev": true, 408 | "license": "MIT", 409 | "dependencies": { 410 | "@babel/types": "^7.26.3" 411 | }, 412 | "bin": { 413 | "parser": "bin/babel-parser.js" 414 | }, 415 | "engines": { 416 | "node": ">=6.0.0" 417 | } 418 | }, 419 | "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { 420 | "version": "7.25.9", 421 | "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", 422 | "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", 423 | "dev": true, 424 | "license": "MIT", 425 | "dependencies": { 426 | "@babel/helper-plugin-utils": "^7.25.9", 427 | "@babel/traverse": "^7.25.9" 428 | }, 429 | "engines": { 430 | "node": ">=6.9.0" 431 | }, 432 | "peerDependencies": { 433 | "@babel/core": "^7.0.0" 434 | } 435 | }, 436 | "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { 437 | "version": "7.25.9", 438 | "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", 439 | "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", 440 | "dev": true, 441 | "license": "MIT", 442 | "dependencies": { 443 | "@babel/helper-plugin-utils": "^7.25.9" 444 | }, 445 | "engines": { 446 | "node": ">=6.9.0" 447 | }, 448 | "peerDependencies": { 449 | "@babel/core": "^7.0.0" 450 | } 451 | }, 452 | "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { 453 | "version": "7.25.9", 454 | "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", 455 | "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", 456 | "dev": true, 457 | "license": "MIT", 458 | "dependencies": { 459 | "@babel/helper-plugin-utils": "^7.25.9" 460 | }, 461 | "engines": { 462 | "node": ">=6.9.0" 463 | }, 464 | "peerDependencies": { 465 | "@babel/core": "^7.0.0" 466 | } 467 | }, 468 | "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { 469 | "version": "7.25.9", 470 | "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", 471 | "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", 472 | "dev": true, 473 | "license": "MIT", 474 | "dependencies": { 475 | "@babel/helper-plugin-utils": "^7.25.9", 476 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", 477 | "@babel/plugin-transform-optional-chaining": "^7.25.9" 478 | }, 479 | "engines": { 480 | "node": ">=6.9.0" 481 | }, 482 | "peerDependencies": { 483 | "@babel/core": "^7.13.0" 484 | } 485 | }, 486 | "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { 487 | "version": "7.25.9", 488 | "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", 489 | "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", 490 | "dev": true, 491 | "license": "MIT", 492 | "dependencies": { 493 | "@babel/helper-plugin-utils": "^7.25.9", 494 | "@babel/traverse": "^7.25.9" 495 | }, 496 | "engines": { 497 | "node": ">=6.9.0" 498 | }, 499 | "peerDependencies": { 500 | "@babel/core": "^7.0.0" 501 | } 502 | }, 503 | "node_modules/@babel/plugin-proposal-private-property-in-object": { 504 | "version": "7.21.0-placeholder-for-preset-env.2", 505 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", 506 | "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", 507 | "dev": true, 508 | "license": "MIT", 509 | "engines": { 510 | "node": ">=6.9.0" 511 | }, 512 | "peerDependencies": { 513 | "@babel/core": "^7.0.0-0" 514 | } 515 | }, 516 | "node_modules/@babel/plugin-syntax-import-assertions": { 517 | "version": "7.26.0", 518 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", 519 | "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", 520 | "dev": true, 521 | "license": "MIT", 522 | "dependencies": { 523 | "@babel/helper-plugin-utils": "^7.25.9" 524 | }, 525 | "engines": { 526 | "node": ">=6.9.0" 527 | }, 528 | "peerDependencies": { 529 | "@babel/core": "^7.0.0-0" 530 | } 531 | }, 532 | "node_modules/@babel/plugin-syntax-import-attributes": { 533 | "version": "7.26.0", 534 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", 535 | "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", 536 | "dev": true, 537 | "license": "MIT", 538 | "dependencies": { 539 | "@babel/helper-plugin-utils": "^7.25.9" 540 | }, 541 | "engines": { 542 | "node": ">=6.9.0" 543 | }, 544 | "peerDependencies": { 545 | "@babel/core": "^7.0.0-0" 546 | } 547 | }, 548 | "node_modules/@babel/plugin-syntax-unicode-sets-regex": { 549 | "version": "7.18.6", 550 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", 551 | "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", 552 | "dev": true, 553 | "license": "MIT", 554 | "dependencies": { 555 | "@babel/helper-create-regexp-features-plugin": "^7.18.6", 556 | "@babel/helper-plugin-utils": "^7.18.6" 557 | }, 558 | "engines": { 559 | "node": ">=6.9.0" 560 | }, 561 | "peerDependencies": { 562 | "@babel/core": "^7.0.0" 563 | } 564 | }, 565 | "node_modules/@babel/plugin-transform-arrow-functions": { 566 | "version": "7.25.9", 567 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", 568 | "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", 569 | "dev": true, 570 | "license": "MIT", 571 | "dependencies": { 572 | "@babel/helper-plugin-utils": "^7.25.9" 573 | }, 574 | "engines": { 575 | "node": ">=6.9.0" 576 | }, 577 | "peerDependencies": { 578 | "@babel/core": "^7.0.0-0" 579 | } 580 | }, 581 | "node_modules/@babel/plugin-transform-async-generator-functions": { 582 | "version": "7.25.9", 583 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", 584 | "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", 585 | "dev": true, 586 | "license": "MIT", 587 | "dependencies": { 588 | "@babel/helper-plugin-utils": "^7.25.9", 589 | "@babel/helper-remap-async-to-generator": "^7.25.9", 590 | "@babel/traverse": "^7.25.9" 591 | }, 592 | "engines": { 593 | "node": ">=6.9.0" 594 | }, 595 | "peerDependencies": { 596 | "@babel/core": "^7.0.0-0" 597 | } 598 | }, 599 | "node_modules/@babel/plugin-transform-async-to-generator": { 600 | "version": "7.25.9", 601 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", 602 | "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", 603 | "dev": true, 604 | "license": "MIT", 605 | "dependencies": { 606 | "@babel/helper-module-imports": "^7.25.9", 607 | "@babel/helper-plugin-utils": "^7.25.9", 608 | "@babel/helper-remap-async-to-generator": "^7.25.9" 609 | }, 610 | "engines": { 611 | "node": ">=6.9.0" 612 | }, 613 | "peerDependencies": { 614 | "@babel/core": "^7.0.0-0" 615 | } 616 | }, 617 | "node_modules/@babel/plugin-transform-block-scoped-functions": { 618 | "version": "7.25.9", 619 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", 620 | "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", 621 | "dev": true, 622 | "license": "MIT", 623 | "dependencies": { 624 | "@babel/helper-plugin-utils": "^7.25.9" 625 | }, 626 | "engines": { 627 | "node": ">=6.9.0" 628 | }, 629 | "peerDependencies": { 630 | "@babel/core": "^7.0.0-0" 631 | } 632 | }, 633 | "node_modules/@babel/plugin-transform-block-scoping": { 634 | "version": "7.25.9", 635 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", 636 | "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", 637 | "dev": true, 638 | "license": "MIT", 639 | "dependencies": { 640 | "@babel/helper-plugin-utils": "^7.25.9" 641 | }, 642 | "engines": { 643 | "node": ">=6.9.0" 644 | }, 645 | "peerDependencies": { 646 | "@babel/core": "^7.0.0-0" 647 | } 648 | }, 649 | "node_modules/@babel/plugin-transform-class-properties": { 650 | "version": "7.25.9", 651 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", 652 | "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", 653 | "dev": true, 654 | "license": "MIT", 655 | "dependencies": { 656 | "@babel/helper-create-class-features-plugin": "^7.25.9", 657 | "@babel/helper-plugin-utils": "^7.25.9" 658 | }, 659 | "engines": { 660 | "node": ">=6.9.0" 661 | }, 662 | "peerDependencies": { 663 | "@babel/core": "^7.0.0-0" 664 | } 665 | }, 666 | "node_modules/@babel/plugin-transform-class-static-block": { 667 | "version": "7.26.0", 668 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", 669 | "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", 670 | "dev": true, 671 | "license": "MIT", 672 | "dependencies": { 673 | "@babel/helper-create-class-features-plugin": "^7.25.9", 674 | "@babel/helper-plugin-utils": "^7.25.9" 675 | }, 676 | "engines": { 677 | "node": ">=6.9.0" 678 | }, 679 | "peerDependencies": { 680 | "@babel/core": "^7.12.0" 681 | } 682 | }, 683 | "node_modules/@babel/plugin-transform-classes": { 684 | "version": "7.25.9", 685 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", 686 | "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", 687 | "dev": true, 688 | "license": "MIT", 689 | "dependencies": { 690 | "@babel/helper-annotate-as-pure": "^7.25.9", 691 | "@babel/helper-compilation-targets": "^7.25.9", 692 | "@babel/helper-plugin-utils": "^7.25.9", 693 | "@babel/helper-replace-supers": "^7.25.9", 694 | "@babel/traverse": "^7.25.9", 695 | "globals": "^11.1.0" 696 | }, 697 | "engines": { 698 | "node": ">=6.9.0" 699 | }, 700 | "peerDependencies": { 701 | "@babel/core": "^7.0.0-0" 702 | } 703 | }, 704 | "node_modules/@babel/plugin-transform-computed-properties": { 705 | "version": "7.25.9", 706 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", 707 | "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", 708 | "dev": true, 709 | "license": "MIT", 710 | "dependencies": { 711 | "@babel/helper-plugin-utils": "^7.25.9", 712 | "@babel/template": "^7.25.9" 713 | }, 714 | "engines": { 715 | "node": ">=6.9.0" 716 | }, 717 | "peerDependencies": { 718 | "@babel/core": "^7.0.0-0" 719 | } 720 | }, 721 | "node_modules/@babel/plugin-transform-destructuring": { 722 | "version": "7.25.9", 723 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", 724 | "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", 725 | "dev": true, 726 | "license": "MIT", 727 | "dependencies": { 728 | "@babel/helper-plugin-utils": "^7.25.9" 729 | }, 730 | "engines": { 731 | "node": ">=6.9.0" 732 | }, 733 | "peerDependencies": { 734 | "@babel/core": "^7.0.0-0" 735 | } 736 | }, 737 | "node_modules/@babel/plugin-transform-dotall-regex": { 738 | "version": "7.25.9", 739 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", 740 | "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", 741 | "dev": true, 742 | "license": "MIT", 743 | "dependencies": { 744 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 745 | "@babel/helper-plugin-utils": "^7.25.9" 746 | }, 747 | "engines": { 748 | "node": ">=6.9.0" 749 | }, 750 | "peerDependencies": { 751 | "@babel/core": "^7.0.0-0" 752 | } 753 | }, 754 | "node_modules/@babel/plugin-transform-duplicate-keys": { 755 | "version": "7.25.9", 756 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", 757 | "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", 758 | "dev": true, 759 | "license": "MIT", 760 | "dependencies": { 761 | "@babel/helper-plugin-utils": "^7.25.9" 762 | }, 763 | "engines": { 764 | "node": ">=6.9.0" 765 | }, 766 | "peerDependencies": { 767 | "@babel/core": "^7.0.0-0" 768 | } 769 | }, 770 | "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { 771 | "version": "7.25.9", 772 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", 773 | "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", 774 | "dev": true, 775 | "license": "MIT", 776 | "dependencies": { 777 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 778 | "@babel/helper-plugin-utils": "^7.25.9" 779 | }, 780 | "engines": { 781 | "node": ">=6.9.0" 782 | }, 783 | "peerDependencies": { 784 | "@babel/core": "^7.0.0" 785 | } 786 | }, 787 | "node_modules/@babel/plugin-transform-dynamic-import": { 788 | "version": "7.25.9", 789 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", 790 | "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", 791 | "dev": true, 792 | "license": "MIT", 793 | "dependencies": { 794 | "@babel/helper-plugin-utils": "^7.25.9" 795 | }, 796 | "engines": { 797 | "node": ">=6.9.0" 798 | }, 799 | "peerDependencies": { 800 | "@babel/core": "^7.0.0-0" 801 | } 802 | }, 803 | "node_modules/@babel/plugin-transform-exponentiation-operator": { 804 | "version": "7.26.3", 805 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", 806 | "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", 807 | "dev": true, 808 | "license": "MIT", 809 | "dependencies": { 810 | "@babel/helper-plugin-utils": "^7.25.9" 811 | }, 812 | "engines": { 813 | "node": ">=6.9.0" 814 | }, 815 | "peerDependencies": { 816 | "@babel/core": "^7.0.0-0" 817 | } 818 | }, 819 | "node_modules/@babel/plugin-transform-export-namespace-from": { 820 | "version": "7.25.9", 821 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", 822 | "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", 823 | "dev": true, 824 | "license": "MIT", 825 | "dependencies": { 826 | "@babel/helper-plugin-utils": "^7.25.9" 827 | }, 828 | "engines": { 829 | "node": ">=6.9.0" 830 | }, 831 | "peerDependencies": { 832 | "@babel/core": "^7.0.0-0" 833 | } 834 | }, 835 | "node_modules/@babel/plugin-transform-for-of": { 836 | "version": "7.25.9", 837 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", 838 | "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", 839 | "dev": true, 840 | "license": "MIT", 841 | "dependencies": { 842 | "@babel/helper-plugin-utils": "^7.25.9", 843 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" 844 | }, 845 | "engines": { 846 | "node": ">=6.9.0" 847 | }, 848 | "peerDependencies": { 849 | "@babel/core": "^7.0.0-0" 850 | } 851 | }, 852 | "node_modules/@babel/plugin-transform-function-name": { 853 | "version": "7.25.9", 854 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", 855 | "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", 856 | "dev": true, 857 | "license": "MIT", 858 | "dependencies": { 859 | "@babel/helper-compilation-targets": "^7.25.9", 860 | "@babel/helper-plugin-utils": "^7.25.9", 861 | "@babel/traverse": "^7.25.9" 862 | }, 863 | "engines": { 864 | "node": ">=6.9.0" 865 | }, 866 | "peerDependencies": { 867 | "@babel/core": "^7.0.0-0" 868 | } 869 | }, 870 | "node_modules/@babel/plugin-transform-json-strings": { 871 | "version": "7.25.9", 872 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", 873 | "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", 874 | "dev": true, 875 | "license": "MIT", 876 | "dependencies": { 877 | "@babel/helper-plugin-utils": "^7.25.9" 878 | }, 879 | "engines": { 880 | "node": ">=6.9.0" 881 | }, 882 | "peerDependencies": { 883 | "@babel/core": "^7.0.0-0" 884 | } 885 | }, 886 | "node_modules/@babel/plugin-transform-literals": { 887 | "version": "7.25.9", 888 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", 889 | "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", 890 | "dev": true, 891 | "license": "MIT", 892 | "dependencies": { 893 | "@babel/helper-plugin-utils": "^7.25.9" 894 | }, 895 | "engines": { 896 | "node": ">=6.9.0" 897 | }, 898 | "peerDependencies": { 899 | "@babel/core": "^7.0.0-0" 900 | } 901 | }, 902 | "node_modules/@babel/plugin-transform-logical-assignment-operators": { 903 | "version": "7.25.9", 904 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", 905 | "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", 906 | "dev": true, 907 | "license": "MIT", 908 | "dependencies": { 909 | "@babel/helper-plugin-utils": "^7.25.9" 910 | }, 911 | "engines": { 912 | "node": ">=6.9.0" 913 | }, 914 | "peerDependencies": { 915 | "@babel/core": "^7.0.0-0" 916 | } 917 | }, 918 | "node_modules/@babel/plugin-transform-member-expression-literals": { 919 | "version": "7.25.9", 920 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", 921 | "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", 922 | "dev": true, 923 | "license": "MIT", 924 | "dependencies": { 925 | "@babel/helper-plugin-utils": "^7.25.9" 926 | }, 927 | "engines": { 928 | "node": ">=6.9.0" 929 | }, 930 | "peerDependencies": { 931 | "@babel/core": "^7.0.0-0" 932 | } 933 | }, 934 | "node_modules/@babel/plugin-transform-modules-amd": { 935 | "version": "7.25.9", 936 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", 937 | "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", 938 | "dev": true, 939 | "license": "MIT", 940 | "dependencies": { 941 | "@babel/helper-module-transforms": "^7.25.9", 942 | "@babel/helper-plugin-utils": "^7.25.9" 943 | }, 944 | "engines": { 945 | "node": ">=6.9.0" 946 | }, 947 | "peerDependencies": { 948 | "@babel/core": "^7.0.0-0" 949 | } 950 | }, 951 | "node_modules/@babel/plugin-transform-modules-commonjs": { 952 | "version": "7.26.3", 953 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", 954 | "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", 955 | "dev": true, 956 | "license": "MIT", 957 | "dependencies": { 958 | "@babel/helper-module-transforms": "^7.26.0", 959 | "@babel/helper-plugin-utils": "^7.25.9" 960 | }, 961 | "engines": { 962 | "node": ">=6.9.0" 963 | }, 964 | "peerDependencies": { 965 | "@babel/core": "^7.0.0-0" 966 | } 967 | }, 968 | "node_modules/@babel/plugin-transform-modules-systemjs": { 969 | "version": "7.25.9", 970 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", 971 | "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", 972 | "dev": true, 973 | "license": "MIT", 974 | "dependencies": { 975 | "@babel/helper-module-transforms": "^7.25.9", 976 | "@babel/helper-plugin-utils": "^7.25.9", 977 | "@babel/helper-validator-identifier": "^7.25.9", 978 | "@babel/traverse": "^7.25.9" 979 | }, 980 | "engines": { 981 | "node": ">=6.9.0" 982 | }, 983 | "peerDependencies": { 984 | "@babel/core": "^7.0.0-0" 985 | } 986 | }, 987 | "node_modules/@babel/plugin-transform-modules-umd": { 988 | "version": "7.25.9", 989 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", 990 | "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", 991 | "dev": true, 992 | "license": "MIT", 993 | "dependencies": { 994 | "@babel/helper-module-transforms": "^7.25.9", 995 | "@babel/helper-plugin-utils": "^7.25.9" 996 | }, 997 | "engines": { 998 | "node": ">=6.9.0" 999 | }, 1000 | "peerDependencies": { 1001 | "@babel/core": "^7.0.0-0" 1002 | } 1003 | }, 1004 | "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { 1005 | "version": "7.25.9", 1006 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", 1007 | "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", 1008 | "dev": true, 1009 | "license": "MIT", 1010 | "dependencies": { 1011 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 1012 | "@babel/helper-plugin-utils": "^7.25.9" 1013 | }, 1014 | "engines": { 1015 | "node": ">=6.9.0" 1016 | }, 1017 | "peerDependencies": { 1018 | "@babel/core": "^7.0.0" 1019 | } 1020 | }, 1021 | "node_modules/@babel/plugin-transform-new-target": { 1022 | "version": "7.25.9", 1023 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", 1024 | "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", 1025 | "dev": true, 1026 | "license": "MIT", 1027 | "dependencies": { 1028 | "@babel/helper-plugin-utils": "^7.25.9" 1029 | }, 1030 | "engines": { 1031 | "node": ">=6.9.0" 1032 | }, 1033 | "peerDependencies": { 1034 | "@babel/core": "^7.0.0-0" 1035 | } 1036 | }, 1037 | "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { 1038 | "version": "7.25.9", 1039 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", 1040 | "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", 1041 | "dev": true, 1042 | "license": "MIT", 1043 | "dependencies": { 1044 | "@babel/helper-plugin-utils": "^7.25.9" 1045 | }, 1046 | "engines": { 1047 | "node": ">=6.9.0" 1048 | }, 1049 | "peerDependencies": { 1050 | "@babel/core": "^7.0.0-0" 1051 | } 1052 | }, 1053 | "node_modules/@babel/plugin-transform-numeric-separator": { 1054 | "version": "7.25.9", 1055 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", 1056 | "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", 1057 | "dev": true, 1058 | "license": "MIT", 1059 | "dependencies": { 1060 | "@babel/helper-plugin-utils": "^7.25.9" 1061 | }, 1062 | "engines": { 1063 | "node": ">=6.9.0" 1064 | }, 1065 | "peerDependencies": { 1066 | "@babel/core": "^7.0.0-0" 1067 | } 1068 | }, 1069 | "node_modules/@babel/plugin-transform-object-rest-spread": { 1070 | "version": "7.25.9", 1071 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", 1072 | "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", 1073 | "dev": true, 1074 | "license": "MIT", 1075 | "dependencies": { 1076 | "@babel/helper-compilation-targets": "^7.25.9", 1077 | "@babel/helper-plugin-utils": "^7.25.9", 1078 | "@babel/plugin-transform-parameters": "^7.25.9" 1079 | }, 1080 | "engines": { 1081 | "node": ">=6.9.0" 1082 | }, 1083 | "peerDependencies": { 1084 | "@babel/core": "^7.0.0-0" 1085 | } 1086 | }, 1087 | "node_modules/@babel/plugin-transform-object-super": { 1088 | "version": "7.25.9", 1089 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", 1090 | "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", 1091 | "dev": true, 1092 | "license": "MIT", 1093 | "dependencies": { 1094 | "@babel/helper-plugin-utils": "^7.25.9", 1095 | "@babel/helper-replace-supers": "^7.25.9" 1096 | }, 1097 | "engines": { 1098 | "node": ">=6.9.0" 1099 | }, 1100 | "peerDependencies": { 1101 | "@babel/core": "^7.0.0-0" 1102 | } 1103 | }, 1104 | "node_modules/@babel/plugin-transform-optional-catch-binding": { 1105 | "version": "7.25.9", 1106 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", 1107 | "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", 1108 | "dev": true, 1109 | "license": "MIT", 1110 | "dependencies": { 1111 | "@babel/helper-plugin-utils": "^7.25.9" 1112 | }, 1113 | "engines": { 1114 | "node": ">=6.9.0" 1115 | }, 1116 | "peerDependencies": { 1117 | "@babel/core": "^7.0.0-0" 1118 | } 1119 | }, 1120 | "node_modules/@babel/plugin-transform-optional-chaining": { 1121 | "version": "7.25.9", 1122 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", 1123 | "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", 1124 | "dev": true, 1125 | "license": "MIT", 1126 | "dependencies": { 1127 | "@babel/helper-plugin-utils": "^7.25.9", 1128 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" 1129 | }, 1130 | "engines": { 1131 | "node": ">=6.9.0" 1132 | }, 1133 | "peerDependencies": { 1134 | "@babel/core": "^7.0.0-0" 1135 | } 1136 | }, 1137 | "node_modules/@babel/plugin-transform-parameters": { 1138 | "version": "7.25.9", 1139 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", 1140 | "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", 1141 | "dev": true, 1142 | "license": "MIT", 1143 | "dependencies": { 1144 | "@babel/helper-plugin-utils": "^7.25.9" 1145 | }, 1146 | "engines": { 1147 | "node": ">=6.9.0" 1148 | }, 1149 | "peerDependencies": { 1150 | "@babel/core": "^7.0.0-0" 1151 | } 1152 | }, 1153 | "node_modules/@babel/plugin-transform-private-methods": { 1154 | "version": "7.25.9", 1155 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", 1156 | "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", 1157 | "dev": true, 1158 | "license": "MIT", 1159 | "dependencies": { 1160 | "@babel/helper-create-class-features-plugin": "^7.25.9", 1161 | "@babel/helper-plugin-utils": "^7.25.9" 1162 | }, 1163 | "engines": { 1164 | "node": ">=6.9.0" 1165 | }, 1166 | "peerDependencies": { 1167 | "@babel/core": "^7.0.0-0" 1168 | } 1169 | }, 1170 | "node_modules/@babel/plugin-transform-private-property-in-object": { 1171 | "version": "7.25.9", 1172 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", 1173 | "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", 1174 | "dev": true, 1175 | "license": "MIT", 1176 | "dependencies": { 1177 | "@babel/helper-annotate-as-pure": "^7.25.9", 1178 | "@babel/helper-create-class-features-plugin": "^7.25.9", 1179 | "@babel/helper-plugin-utils": "^7.25.9" 1180 | }, 1181 | "engines": { 1182 | "node": ">=6.9.0" 1183 | }, 1184 | "peerDependencies": { 1185 | "@babel/core": "^7.0.0-0" 1186 | } 1187 | }, 1188 | "node_modules/@babel/plugin-transform-property-literals": { 1189 | "version": "7.25.9", 1190 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", 1191 | "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", 1192 | "dev": true, 1193 | "license": "MIT", 1194 | "dependencies": { 1195 | "@babel/helper-plugin-utils": "^7.25.9" 1196 | }, 1197 | "engines": { 1198 | "node": ">=6.9.0" 1199 | }, 1200 | "peerDependencies": { 1201 | "@babel/core": "^7.0.0-0" 1202 | } 1203 | }, 1204 | "node_modules/@babel/plugin-transform-regenerator": { 1205 | "version": "7.25.9", 1206 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", 1207 | "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", 1208 | "dev": true, 1209 | "license": "MIT", 1210 | "dependencies": { 1211 | "@babel/helper-plugin-utils": "^7.25.9", 1212 | "regenerator-transform": "^0.15.2" 1213 | }, 1214 | "engines": { 1215 | "node": ">=6.9.0" 1216 | }, 1217 | "peerDependencies": { 1218 | "@babel/core": "^7.0.0-0" 1219 | } 1220 | }, 1221 | "node_modules/@babel/plugin-transform-regexp-modifiers": { 1222 | "version": "7.26.0", 1223 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", 1224 | "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", 1225 | "dev": true, 1226 | "license": "MIT", 1227 | "dependencies": { 1228 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 1229 | "@babel/helper-plugin-utils": "^7.25.9" 1230 | }, 1231 | "engines": { 1232 | "node": ">=6.9.0" 1233 | }, 1234 | "peerDependencies": { 1235 | "@babel/core": "^7.0.0" 1236 | } 1237 | }, 1238 | "node_modules/@babel/plugin-transform-reserved-words": { 1239 | "version": "7.25.9", 1240 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", 1241 | "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", 1242 | "dev": true, 1243 | "license": "MIT", 1244 | "dependencies": { 1245 | "@babel/helper-plugin-utils": "^7.25.9" 1246 | }, 1247 | "engines": { 1248 | "node": ">=6.9.0" 1249 | }, 1250 | "peerDependencies": { 1251 | "@babel/core": "^7.0.0-0" 1252 | } 1253 | }, 1254 | "node_modules/@babel/plugin-transform-shorthand-properties": { 1255 | "version": "7.25.9", 1256 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", 1257 | "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", 1258 | "dev": true, 1259 | "license": "MIT", 1260 | "dependencies": { 1261 | "@babel/helper-plugin-utils": "^7.25.9" 1262 | }, 1263 | "engines": { 1264 | "node": ">=6.9.0" 1265 | }, 1266 | "peerDependencies": { 1267 | "@babel/core": "^7.0.0-0" 1268 | } 1269 | }, 1270 | "node_modules/@babel/plugin-transform-spread": { 1271 | "version": "7.25.9", 1272 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", 1273 | "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", 1274 | "dev": true, 1275 | "license": "MIT", 1276 | "dependencies": { 1277 | "@babel/helper-plugin-utils": "^7.25.9", 1278 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" 1279 | }, 1280 | "engines": { 1281 | "node": ">=6.9.0" 1282 | }, 1283 | "peerDependencies": { 1284 | "@babel/core": "^7.0.0-0" 1285 | } 1286 | }, 1287 | "node_modules/@babel/plugin-transform-sticky-regex": { 1288 | "version": "7.25.9", 1289 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", 1290 | "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", 1291 | "dev": true, 1292 | "license": "MIT", 1293 | "dependencies": { 1294 | "@babel/helper-plugin-utils": "^7.25.9" 1295 | }, 1296 | "engines": { 1297 | "node": ">=6.9.0" 1298 | }, 1299 | "peerDependencies": { 1300 | "@babel/core": "^7.0.0-0" 1301 | } 1302 | }, 1303 | "node_modules/@babel/plugin-transform-template-literals": { 1304 | "version": "7.25.9", 1305 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", 1306 | "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", 1307 | "dev": true, 1308 | "license": "MIT", 1309 | "dependencies": { 1310 | "@babel/helper-plugin-utils": "^7.25.9" 1311 | }, 1312 | "engines": { 1313 | "node": ">=6.9.0" 1314 | }, 1315 | "peerDependencies": { 1316 | "@babel/core": "^7.0.0-0" 1317 | } 1318 | }, 1319 | "node_modules/@babel/plugin-transform-typeof-symbol": { 1320 | "version": "7.25.9", 1321 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", 1322 | "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", 1323 | "dev": true, 1324 | "license": "MIT", 1325 | "dependencies": { 1326 | "@babel/helper-plugin-utils": "^7.25.9" 1327 | }, 1328 | "engines": { 1329 | "node": ">=6.9.0" 1330 | }, 1331 | "peerDependencies": { 1332 | "@babel/core": "^7.0.0-0" 1333 | } 1334 | }, 1335 | "node_modules/@babel/plugin-transform-unicode-escapes": { 1336 | "version": "7.25.9", 1337 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", 1338 | "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", 1339 | "dev": true, 1340 | "license": "MIT", 1341 | "dependencies": { 1342 | "@babel/helper-plugin-utils": "^7.25.9" 1343 | }, 1344 | "engines": { 1345 | "node": ">=6.9.0" 1346 | }, 1347 | "peerDependencies": { 1348 | "@babel/core": "^7.0.0-0" 1349 | } 1350 | }, 1351 | "node_modules/@babel/plugin-transform-unicode-property-regex": { 1352 | "version": "7.25.9", 1353 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", 1354 | "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", 1355 | "dev": true, 1356 | "license": "MIT", 1357 | "dependencies": { 1358 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 1359 | "@babel/helper-plugin-utils": "^7.25.9" 1360 | }, 1361 | "engines": { 1362 | "node": ">=6.9.0" 1363 | }, 1364 | "peerDependencies": { 1365 | "@babel/core": "^7.0.0-0" 1366 | } 1367 | }, 1368 | "node_modules/@babel/plugin-transform-unicode-regex": { 1369 | "version": "7.25.9", 1370 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", 1371 | "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", 1372 | "dev": true, 1373 | "license": "MIT", 1374 | "dependencies": { 1375 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 1376 | "@babel/helper-plugin-utils": "^7.25.9" 1377 | }, 1378 | "engines": { 1379 | "node": ">=6.9.0" 1380 | }, 1381 | "peerDependencies": { 1382 | "@babel/core": "^7.0.0-0" 1383 | } 1384 | }, 1385 | "node_modules/@babel/plugin-transform-unicode-sets-regex": { 1386 | "version": "7.25.9", 1387 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", 1388 | "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", 1389 | "dev": true, 1390 | "license": "MIT", 1391 | "dependencies": { 1392 | "@babel/helper-create-regexp-features-plugin": "^7.25.9", 1393 | "@babel/helper-plugin-utils": "^7.25.9" 1394 | }, 1395 | "engines": { 1396 | "node": ">=6.9.0" 1397 | }, 1398 | "peerDependencies": { 1399 | "@babel/core": "^7.0.0" 1400 | } 1401 | }, 1402 | "node_modules/@babel/preset-env": { 1403 | "version": "7.26.0", 1404 | "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", 1405 | "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", 1406 | "dev": true, 1407 | "license": "MIT", 1408 | "dependencies": { 1409 | "@babel/compat-data": "^7.26.0", 1410 | "@babel/helper-compilation-targets": "^7.25.9", 1411 | "@babel/helper-plugin-utils": "^7.25.9", 1412 | "@babel/helper-validator-option": "^7.25.9", 1413 | "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", 1414 | "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", 1415 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", 1416 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", 1417 | "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", 1418 | "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", 1419 | "@babel/plugin-syntax-import-assertions": "^7.26.0", 1420 | "@babel/plugin-syntax-import-attributes": "^7.26.0", 1421 | "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", 1422 | "@babel/plugin-transform-arrow-functions": "^7.25.9", 1423 | "@babel/plugin-transform-async-generator-functions": "^7.25.9", 1424 | "@babel/plugin-transform-async-to-generator": "^7.25.9", 1425 | "@babel/plugin-transform-block-scoped-functions": "^7.25.9", 1426 | "@babel/plugin-transform-block-scoping": "^7.25.9", 1427 | "@babel/plugin-transform-class-properties": "^7.25.9", 1428 | "@babel/plugin-transform-class-static-block": "^7.26.0", 1429 | "@babel/plugin-transform-classes": "^7.25.9", 1430 | "@babel/plugin-transform-computed-properties": "^7.25.9", 1431 | "@babel/plugin-transform-destructuring": "^7.25.9", 1432 | "@babel/plugin-transform-dotall-regex": "^7.25.9", 1433 | "@babel/plugin-transform-duplicate-keys": "^7.25.9", 1434 | "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", 1435 | "@babel/plugin-transform-dynamic-import": "^7.25.9", 1436 | "@babel/plugin-transform-exponentiation-operator": "^7.25.9", 1437 | "@babel/plugin-transform-export-namespace-from": "^7.25.9", 1438 | "@babel/plugin-transform-for-of": "^7.25.9", 1439 | "@babel/plugin-transform-function-name": "^7.25.9", 1440 | "@babel/plugin-transform-json-strings": "^7.25.9", 1441 | "@babel/plugin-transform-literals": "^7.25.9", 1442 | "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", 1443 | "@babel/plugin-transform-member-expression-literals": "^7.25.9", 1444 | "@babel/plugin-transform-modules-amd": "^7.25.9", 1445 | "@babel/plugin-transform-modules-commonjs": "^7.25.9", 1446 | "@babel/plugin-transform-modules-systemjs": "^7.25.9", 1447 | "@babel/plugin-transform-modules-umd": "^7.25.9", 1448 | "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", 1449 | "@babel/plugin-transform-new-target": "^7.25.9", 1450 | "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", 1451 | "@babel/plugin-transform-numeric-separator": "^7.25.9", 1452 | "@babel/plugin-transform-object-rest-spread": "^7.25.9", 1453 | "@babel/plugin-transform-object-super": "^7.25.9", 1454 | "@babel/plugin-transform-optional-catch-binding": "^7.25.9", 1455 | "@babel/plugin-transform-optional-chaining": "^7.25.9", 1456 | "@babel/plugin-transform-parameters": "^7.25.9", 1457 | "@babel/plugin-transform-private-methods": "^7.25.9", 1458 | "@babel/plugin-transform-private-property-in-object": "^7.25.9", 1459 | "@babel/plugin-transform-property-literals": "^7.25.9", 1460 | "@babel/plugin-transform-regenerator": "^7.25.9", 1461 | "@babel/plugin-transform-regexp-modifiers": "^7.26.0", 1462 | "@babel/plugin-transform-reserved-words": "^7.25.9", 1463 | "@babel/plugin-transform-shorthand-properties": "^7.25.9", 1464 | "@babel/plugin-transform-spread": "^7.25.9", 1465 | "@babel/plugin-transform-sticky-regex": "^7.25.9", 1466 | "@babel/plugin-transform-template-literals": "^7.25.9", 1467 | "@babel/plugin-transform-typeof-symbol": "^7.25.9", 1468 | "@babel/plugin-transform-unicode-escapes": "^7.25.9", 1469 | "@babel/plugin-transform-unicode-property-regex": "^7.25.9", 1470 | "@babel/plugin-transform-unicode-regex": "^7.25.9", 1471 | "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", 1472 | "@babel/preset-modules": "0.1.6-no-external-plugins", 1473 | "babel-plugin-polyfill-corejs2": "^0.4.10", 1474 | "babel-plugin-polyfill-corejs3": "^0.10.6", 1475 | "babel-plugin-polyfill-regenerator": "^0.6.1", 1476 | "core-js-compat": "^3.38.1", 1477 | "semver": "^6.3.1" 1478 | }, 1479 | "engines": { 1480 | "node": ">=6.9.0" 1481 | }, 1482 | "peerDependencies": { 1483 | "@babel/core": "^7.0.0-0" 1484 | } 1485 | }, 1486 | "node_modules/@babel/preset-modules": { 1487 | "version": "0.1.6-no-external-plugins", 1488 | "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", 1489 | "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", 1490 | "dev": true, 1491 | "license": "MIT", 1492 | "dependencies": { 1493 | "@babel/helper-plugin-utils": "^7.0.0", 1494 | "@babel/types": "^7.4.4", 1495 | "esutils": "^2.0.2" 1496 | }, 1497 | "peerDependencies": { 1498 | "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" 1499 | } 1500 | }, 1501 | "node_modules/@babel/runtime": { 1502 | "version": "7.26.0", 1503 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", 1504 | "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", 1505 | "dev": true, 1506 | "license": "MIT", 1507 | "dependencies": { 1508 | "regenerator-runtime": "^0.14.0" 1509 | }, 1510 | "engines": { 1511 | "node": ">=6.9.0" 1512 | } 1513 | }, 1514 | "node_modules/@babel/template": { 1515 | "version": "7.25.9", 1516 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", 1517 | "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", 1518 | "dev": true, 1519 | "license": "MIT", 1520 | "dependencies": { 1521 | "@babel/code-frame": "^7.25.9", 1522 | "@babel/parser": "^7.25.9", 1523 | "@babel/types": "^7.25.9" 1524 | }, 1525 | "engines": { 1526 | "node": ">=6.9.0" 1527 | } 1528 | }, 1529 | "node_modules/@babel/traverse": { 1530 | "version": "7.26.4", 1531 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", 1532 | "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", 1533 | "dev": true, 1534 | "license": "MIT", 1535 | "dependencies": { 1536 | "@babel/code-frame": "^7.26.2", 1537 | "@babel/generator": "^7.26.3", 1538 | "@babel/parser": "^7.26.3", 1539 | "@babel/template": "^7.25.9", 1540 | "@babel/types": "^7.26.3", 1541 | "debug": "^4.3.1", 1542 | "globals": "^11.1.0" 1543 | }, 1544 | "engines": { 1545 | "node": ">=6.9.0" 1546 | } 1547 | }, 1548 | "node_modules/@babel/types": { 1549 | "version": "7.26.3", 1550 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", 1551 | "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", 1552 | "dev": true, 1553 | "license": "MIT", 1554 | "dependencies": { 1555 | "@babel/helper-string-parser": "^7.25.9", 1556 | "@babel/helper-validator-identifier": "^7.25.9" 1557 | }, 1558 | "engines": { 1559 | "node": ">=6.9.0" 1560 | } 1561 | }, 1562 | "node_modules/@csstools/postcss-global-data": { 1563 | "version": "2.1.1", 1564 | "resolved": "https://registry.npmjs.org/@csstools/postcss-global-data/-/postcss-global-data-2.1.1.tgz", 1565 | "integrity": "sha512-tihdBLogY2G5jgUSu2jKSEVeOcnWqsz6k7UmPM7+ezhuV9FP5MIyX35Hc/YvqipQLRNsfBj9wRkBvsE7k1GM8A==", 1566 | "dev": true, 1567 | "funding": [ 1568 | { 1569 | "type": "github", 1570 | "url": "https://github.com/sponsors/csstools" 1571 | }, 1572 | { 1573 | "type": "opencollective", 1574 | "url": "https://opencollective.com/csstools" 1575 | } 1576 | ], 1577 | "license": "MIT-0", 1578 | "engines": { 1579 | "node": "^14 || ^16 || >=18" 1580 | }, 1581 | "peerDependencies": { 1582 | "postcss": "^8.4" 1583 | } 1584 | }, 1585 | "node_modules/@csstools/postcss-tape": { 1586 | "version": "4.1.2", 1587 | "resolved": "https://registry.npmjs.org/@csstools/postcss-tape/-/postcss-tape-4.1.2.tgz", 1588 | "integrity": "sha512-IefT08J7+6IhKRxJxhGpGuQxLjxEuLY2Vx7IRc1/NHFQlg7DakoOtn03LGc6PReoXTpEtpSmxI+clNdLtEsKOA==", 1589 | "dev": true, 1590 | "funding": [ 1591 | { 1592 | "type": "github", 1593 | "url": "https://github.com/sponsors/csstools" 1594 | }, 1595 | { 1596 | "type": "opencollective", 1597 | "url": "https://opencollective.com/csstools" 1598 | } 1599 | ], 1600 | "license": "MIT-0", 1601 | "dependencies": { 1602 | "postcss": "~8.4", 1603 | "postcss-8.4": "npm:postcss@~8.4" 1604 | }, 1605 | "engines": { 1606 | "node": "^14 || ^16 || >=18" 1607 | } 1608 | }, 1609 | "node_modules/@csstools/selector-specificity": { 1610 | "version": "2.2.0", 1611 | "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", 1612 | "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", 1613 | "license": "CC0-1.0", 1614 | "engines": { 1615 | "node": "^14 || ^16 || >=18" 1616 | }, 1617 | "funding": { 1618 | "type": "opencollective", 1619 | "url": "https://opencollective.com/csstools" 1620 | }, 1621 | "peerDependencies": { 1622 | "postcss-selector-parser": "^6.0.10" 1623 | } 1624 | }, 1625 | "node_modules/@eslint-community/eslint-utils": { 1626 | "version": "4.4.1", 1627 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 1628 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 1629 | "dev": true, 1630 | "license": "MIT", 1631 | "dependencies": { 1632 | "eslint-visitor-keys": "^3.4.3" 1633 | }, 1634 | "engines": { 1635 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1636 | }, 1637 | "funding": { 1638 | "url": "https://opencollective.com/eslint" 1639 | }, 1640 | "peerDependencies": { 1641 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 1642 | } 1643 | }, 1644 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 1645 | "version": "3.4.3", 1646 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1647 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1648 | "dev": true, 1649 | "license": "Apache-2.0", 1650 | "engines": { 1651 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1652 | }, 1653 | "funding": { 1654 | "url": "https://opencollective.com/eslint" 1655 | } 1656 | }, 1657 | "node_modules/@eslint-community/regexpp": { 1658 | "version": "4.12.1", 1659 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 1660 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 1661 | "dev": true, 1662 | "license": "MIT", 1663 | "engines": { 1664 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 1665 | } 1666 | }, 1667 | "node_modules/@eslint/eslintrc": { 1668 | "version": "2.1.4", 1669 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 1670 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 1671 | "dev": true, 1672 | "license": "MIT", 1673 | "dependencies": { 1674 | "ajv": "^6.12.4", 1675 | "debug": "^4.3.2", 1676 | "espree": "^9.6.0", 1677 | "globals": "^13.19.0", 1678 | "ignore": "^5.2.0", 1679 | "import-fresh": "^3.2.1", 1680 | "js-yaml": "^4.1.0", 1681 | "minimatch": "^3.1.2", 1682 | "strip-json-comments": "^3.1.1" 1683 | }, 1684 | "engines": { 1685 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1686 | }, 1687 | "funding": { 1688 | "url": "https://opencollective.com/eslint" 1689 | } 1690 | }, 1691 | "node_modules/@eslint/eslintrc/node_modules/globals": { 1692 | "version": "13.24.0", 1693 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1694 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1695 | "dev": true, 1696 | "license": "MIT", 1697 | "dependencies": { 1698 | "type-fest": "^0.20.2" 1699 | }, 1700 | "engines": { 1701 | "node": ">=8" 1702 | }, 1703 | "funding": { 1704 | "url": "https://github.com/sponsors/sindresorhus" 1705 | } 1706 | }, 1707 | "node_modules/@eslint/js": { 1708 | "version": "8.57.1", 1709 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 1710 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 1711 | "dev": true, 1712 | "license": "MIT", 1713 | "engines": { 1714 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1715 | } 1716 | }, 1717 | "node_modules/@humanwhocodes/config-array": { 1718 | "version": "0.13.0", 1719 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 1720 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 1721 | "deprecated": "Use @eslint/config-array instead", 1722 | "dev": true, 1723 | "license": "Apache-2.0", 1724 | "dependencies": { 1725 | "@humanwhocodes/object-schema": "^2.0.3", 1726 | "debug": "^4.3.1", 1727 | "minimatch": "^3.0.5" 1728 | }, 1729 | "engines": { 1730 | "node": ">=10.10.0" 1731 | } 1732 | }, 1733 | "node_modules/@humanwhocodes/module-importer": { 1734 | "version": "1.0.1", 1735 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 1736 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 1737 | "dev": true, 1738 | "license": "Apache-2.0", 1739 | "engines": { 1740 | "node": ">=12.22" 1741 | }, 1742 | "funding": { 1743 | "type": "github", 1744 | "url": "https://github.com/sponsors/nzakas" 1745 | } 1746 | }, 1747 | "node_modules/@humanwhocodes/object-schema": { 1748 | "version": "2.0.3", 1749 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 1750 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 1751 | "deprecated": "Use @eslint/object-schema instead", 1752 | "dev": true, 1753 | "license": "BSD-3-Clause" 1754 | }, 1755 | "node_modules/@jridgewell/gen-mapping": { 1756 | "version": "0.3.8", 1757 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 1758 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 1759 | "dev": true, 1760 | "license": "MIT", 1761 | "dependencies": { 1762 | "@jridgewell/set-array": "^1.2.1", 1763 | "@jridgewell/sourcemap-codec": "^1.4.10", 1764 | "@jridgewell/trace-mapping": "^0.3.24" 1765 | }, 1766 | "engines": { 1767 | "node": ">=6.0.0" 1768 | } 1769 | }, 1770 | "node_modules/@jridgewell/resolve-uri": { 1771 | "version": "3.1.2", 1772 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1773 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1774 | "dev": true, 1775 | "license": "MIT", 1776 | "engines": { 1777 | "node": ">=6.0.0" 1778 | } 1779 | }, 1780 | "node_modules/@jridgewell/set-array": { 1781 | "version": "1.2.1", 1782 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1783 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1784 | "dev": true, 1785 | "license": "MIT", 1786 | "engines": { 1787 | "node": ">=6.0.0" 1788 | } 1789 | }, 1790 | "node_modules/@jridgewell/sourcemap-codec": { 1791 | "version": "1.5.0", 1792 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1793 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1794 | "dev": true, 1795 | "license": "MIT" 1796 | }, 1797 | "node_modules/@jridgewell/trace-mapping": { 1798 | "version": "0.3.25", 1799 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1800 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1801 | "dev": true, 1802 | "license": "MIT", 1803 | "dependencies": { 1804 | "@jridgewell/resolve-uri": "^3.1.0", 1805 | "@jridgewell/sourcemap-codec": "^1.4.14" 1806 | } 1807 | }, 1808 | "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { 1809 | "version": "5.1.1-v1", 1810 | "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", 1811 | "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", 1812 | "dev": true, 1813 | "license": "MIT", 1814 | "dependencies": { 1815 | "eslint-scope": "5.1.1" 1816 | } 1817 | }, 1818 | "node_modules/@nodelib/fs.scandir": { 1819 | "version": "2.1.5", 1820 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1821 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1822 | "dev": true, 1823 | "license": "MIT", 1824 | "dependencies": { 1825 | "@nodelib/fs.stat": "2.0.5", 1826 | "run-parallel": "^1.1.9" 1827 | }, 1828 | "engines": { 1829 | "node": ">= 8" 1830 | } 1831 | }, 1832 | "node_modules/@nodelib/fs.stat": { 1833 | "version": "2.0.5", 1834 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1835 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1836 | "dev": true, 1837 | "license": "MIT", 1838 | "engines": { 1839 | "node": ">= 8" 1840 | } 1841 | }, 1842 | "node_modules/@nodelib/fs.walk": { 1843 | "version": "1.2.8", 1844 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1845 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1846 | "dev": true, 1847 | "license": "MIT", 1848 | "dependencies": { 1849 | "@nodelib/fs.scandir": "2.1.5", 1850 | "fastq": "^1.6.0" 1851 | }, 1852 | "engines": { 1853 | "node": ">= 8" 1854 | } 1855 | }, 1856 | "node_modules/@rollup/plugin-babel": { 1857 | "version": "6.0.4", 1858 | "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-6.0.4.tgz", 1859 | "integrity": "sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==", 1860 | "dev": true, 1861 | "license": "MIT", 1862 | "dependencies": { 1863 | "@babel/helper-module-imports": "^7.18.6", 1864 | "@rollup/pluginutils": "^5.0.1" 1865 | }, 1866 | "engines": { 1867 | "node": ">=14.0.0" 1868 | }, 1869 | "peerDependencies": { 1870 | "@babel/core": "^7.0.0", 1871 | "@types/babel__core": "^7.1.9", 1872 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 1873 | }, 1874 | "peerDependenciesMeta": { 1875 | "@types/babel__core": { 1876 | "optional": true 1877 | }, 1878 | "rollup": { 1879 | "optional": true 1880 | } 1881 | } 1882 | }, 1883 | "node_modules/@rollup/pluginutils": { 1884 | "version": "5.1.4", 1885 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", 1886 | "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", 1887 | "dev": true, 1888 | "license": "MIT", 1889 | "dependencies": { 1890 | "@types/estree": "^1.0.0", 1891 | "estree-walker": "^2.0.2", 1892 | "picomatch": "^4.0.2" 1893 | }, 1894 | "engines": { 1895 | "node": ">=14.0.0" 1896 | }, 1897 | "peerDependencies": { 1898 | "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" 1899 | }, 1900 | "peerDependenciesMeta": { 1901 | "rollup": { 1902 | "optional": true 1903 | } 1904 | } 1905 | }, 1906 | "node_modules/@rollup/rollup-android-arm-eabi": { 1907 | "version": "4.29.1", 1908 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.29.1.tgz", 1909 | "integrity": "sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==", 1910 | "cpu": [ 1911 | "arm" 1912 | ], 1913 | "dev": true, 1914 | "license": "MIT", 1915 | "optional": true, 1916 | "os": [ 1917 | "android" 1918 | ] 1919 | }, 1920 | "node_modules/@rollup/rollup-android-arm64": { 1921 | "version": "4.29.1", 1922 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.29.1.tgz", 1923 | "integrity": "sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==", 1924 | "cpu": [ 1925 | "arm64" 1926 | ], 1927 | "dev": true, 1928 | "license": "MIT", 1929 | "optional": true, 1930 | "os": [ 1931 | "android" 1932 | ] 1933 | }, 1934 | "node_modules/@rollup/rollup-darwin-arm64": { 1935 | "version": "4.29.1", 1936 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.29.1.tgz", 1937 | "integrity": "sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==", 1938 | "cpu": [ 1939 | "arm64" 1940 | ], 1941 | "dev": true, 1942 | "license": "MIT", 1943 | "optional": true, 1944 | "os": [ 1945 | "darwin" 1946 | ] 1947 | }, 1948 | "node_modules/@rollup/rollup-darwin-x64": { 1949 | "version": "4.29.1", 1950 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.29.1.tgz", 1951 | "integrity": "sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==", 1952 | "cpu": [ 1953 | "x64" 1954 | ], 1955 | "dev": true, 1956 | "license": "MIT", 1957 | "optional": true, 1958 | "os": [ 1959 | "darwin" 1960 | ] 1961 | }, 1962 | "node_modules/@rollup/rollup-freebsd-arm64": { 1963 | "version": "4.29.1", 1964 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.29.1.tgz", 1965 | "integrity": "sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==", 1966 | "cpu": [ 1967 | "arm64" 1968 | ], 1969 | "dev": true, 1970 | "license": "MIT", 1971 | "optional": true, 1972 | "os": [ 1973 | "freebsd" 1974 | ] 1975 | }, 1976 | "node_modules/@rollup/rollup-freebsd-x64": { 1977 | "version": "4.29.1", 1978 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.29.1.tgz", 1979 | "integrity": "sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==", 1980 | "cpu": [ 1981 | "x64" 1982 | ], 1983 | "dev": true, 1984 | "license": "MIT", 1985 | "optional": true, 1986 | "os": [ 1987 | "freebsd" 1988 | ] 1989 | }, 1990 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1991 | "version": "4.29.1", 1992 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.29.1.tgz", 1993 | "integrity": "sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==", 1994 | "cpu": [ 1995 | "arm" 1996 | ], 1997 | "dev": true, 1998 | "license": "MIT", 1999 | "optional": true, 2000 | "os": [ 2001 | "linux" 2002 | ] 2003 | }, 2004 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 2005 | "version": "4.29.1", 2006 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.29.1.tgz", 2007 | "integrity": "sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==", 2008 | "cpu": [ 2009 | "arm" 2010 | ], 2011 | "dev": true, 2012 | "license": "MIT", 2013 | "optional": true, 2014 | "os": [ 2015 | "linux" 2016 | ] 2017 | }, 2018 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 2019 | "version": "4.29.1", 2020 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.29.1.tgz", 2021 | "integrity": "sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==", 2022 | "cpu": [ 2023 | "arm64" 2024 | ], 2025 | "dev": true, 2026 | "license": "MIT", 2027 | "optional": true, 2028 | "os": [ 2029 | "linux" 2030 | ] 2031 | }, 2032 | "node_modules/@rollup/rollup-linux-arm64-musl": { 2033 | "version": "4.29.1", 2034 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.29.1.tgz", 2035 | "integrity": "sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==", 2036 | "cpu": [ 2037 | "arm64" 2038 | ], 2039 | "dev": true, 2040 | "license": "MIT", 2041 | "optional": true, 2042 | "os": [ 2043 | "linux" 2044 | ] 2045 | }, 2046 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 2047 | "version": "4.29.1", 2048 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.29.1.tgz", 2049 | "integrity": "sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==", 2050 | "cpu": [ 2051 | "loong64" 2052 | ], 2053 | "dev": true, 2054 | "license": "MIT", 2055 | "optional": true, 2056 | "os": [ 2057 | "linux" 2058 | ] 2059 | }, 2060 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 2061 | "version": "4.29.1", 2062 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.29.1.tgz", 2063 | "integrity": "sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==", 2064 | "cpu": [ 2065 | "ppc64" 2066 | ], 2067 | "dev": true, 2068 | "license": "MIT", 2069 | "optional": true, 2070 | "os": [ 2071 | "linux" 2072 | ] 2073 | }, 2074 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 2075 | "version": "4.29.1", 2076 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.29.1.tgz", 2077 | "integrity": "sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==", 2078 | "cpu": [ 2079 | "riscv64" 2080 | ], 2081 | "dev": true, 2082 | "license": "MIT", 2083 | "optional": true, 2084 | "os": [ 2085 | "linux" 2086 | ] 2087 | }, 2088 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 2089 | "version": "4.29.1", 2090 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.29.1.tgz", 2091 | "integrity": "sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==", 2092 | "cpu": [ 2093 | "s390x" 2094 | ], 2095 | "dev": true, 2096 | "license": "MIT", 2097 | "optional": true, 2098 | "os": [ 2099 | "linux" 2100 | ] 2101 | }, 2102 | "node_modules/@rollup/rollup-linux-x64-gnu": { 2103 | "version": "4.29.1", 2104 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.29.1.tgz", 2105 | "integrity": "sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==", 2106 | "cpu": [ 2107 | "x64" 2108 | ], 2109 | "dev": true, 2110 | "license": "MIT", 2111 | "optional": true, 2112 | "os": [ 2113 | "linux" 2114 | ] 2115 | }, 2116 | "node_modules/@rollup/rollup-linux-x64-musl": { 2117 | "version": "4.29.1", 2118 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.29.1.tgz", 2119 | "integrity": "sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==", 2120 | "cpu": [ 2121 | "x64" 2122 | ], 2123 | "dev": true, 2124 | "license": "MIT", 2125 | "optional": true, 2126 | "os": [ 2127 | "linux" 2128 | ] 2129 | }, 2130 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 2131 | "version": "4.29.1", 2132 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.29.1.tgz", 2133 | "integrity": "sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==", 2134 | "cpu": [ 2135 | "arm64" 2136 | ], 2137 | "dev": true, 2138 | "license": "MIT", 2139 | "optional": true, 2140 | "os": [ 2141 | "win32" 2142 | ] 2143 | }, 2144 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 2145 | "version": "4.29.1", 2146 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.29.1.tgz", 2147 | "integrity": "sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==", 2148 | "cpu": [ 2149 | "ia32" 2150 | ], 2151 | "dev": true, 2152 | "license": "MIT", 2153 | "optional": true, 2154 | "os": [ 2155 | "win32" 2156 | ] 2157 | }, 2158 | "node_modules/@rollup/rollup-win32-x64-msvc": { 2159 | "version": "4.29.1", 2160 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.29.1.tgz", 2161 | "integrity": "sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==", 2162 | "cpu": [ 2163 | "x64" 2164 | ], 2165 | "dev": true, 2166 | "license": "MIT", 2167 | "optional": true, 2168 | "os": [ 2169 | "win32" 2170 | ] 2171 | }, 2172 | "node_modules/@types/estree": { 2173 | "version": "1.0.6", 2174 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 2175 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 2176 | "dev": true, 2177 | "license": "MIT" 2178 | }, 2179 | "node_modules/@ungap/structured-clone": { 2180 | "version": "1.2.1", 2181 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", 2182 | "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", 2183 | "dev": true, 2184 | "license": "ISC" 2185 | }, 2186 | "node_modules/acorn": { 2187 | "version": "8.14.0", 2188 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 2189 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 2190 | "dev": true, 2191 | "license": "MIT", 2192 | "bin": { 2193 | "acorn": "bin/acorn" 2194 | }, 2195 | "engines": { 2196 | "node": ">=0.4.0" 2197 | } 2198 | }, 2199 | "node_modules/acorn-jsx": { 2200 | "version": "5.3.2", 2201 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2202 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2203 | "dev": true, 2204 | "license": "MIT", 2205 | "peerDependencies": { 2206 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 2207 | } 2208 | }, 2209 | "node_modules/ajv": { 2210 | "version": "6.12.6", 2211 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 2212 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 2213 | "dev": true, 2214 | "license": "MIT", 2215 | "dependencies": { 2216 | "fast-deep-equal": "^3.1.1", 2217 | "fast-json-stable-stringify": "^2.0.0", 2218 | "json-schema-traverse": "^0.4.1", 2219 | "uri-js": "^4.2.2" 2220 | }, 2221 | "funding": { 2222 | "type": "github", 2223 | "url": "https://github.com/sponsors/epoberezkin" 2224 | } 2225 | }, 2226 | "node_modules/ansi-regex": { 2227 | "version": "5.0.1", 2228 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2229 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2230 | "dev": true, 2231 | "license": "MIT", 2232 | "engines": { 2233 | "node": ">=8" 2234 | } 2235 | }, 2236 | "node_modules/ansi-styles": { 2237 | "version": "4.3.0", 2238 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2239 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2240 | "dev": true, 2241 | "license": "MIT", 2242 | "dependencies": { 2243 | "color-convert": "^2.0.1" 2244 | }, 2245 | "engines": { 2246 | "node": ">=8" 2247 | }, 2248 | "funding": { 2249 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2250 | } 2251 | }, 2252 | "node_modules/argparse": { 2253 | "version": "2.0.1", 2254 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2255 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2256 | "dev": true, 2257 | "license": "Python-2.0" 2258 | }, 2259 | "node_modules/babel-plugin-polyfill-corejs2": { 2260 | "version": "0.4.12", 2261 | "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", 2262 | "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", 2263 | "dev": true, 2264 | "license": "MIT", 2265 | "dependencies": { 2266 | "@babel/compat-data": "^7.22.6", 2267 | "@babel/helper-define-polyfill-provider": "^0.6.3", 2268 | "semver": "^6.3.1" 2269 | }, 2270 | "peerDependencies": { 2271 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2272 | } 2273 | }, 2274 | "node_modules/babel-plugin-polyfill-corejs3": { 2275 | "version": "0.10.6", 2276 | "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", 2277 | "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", 2278 | "dev": true, 2279 | "license": "MIT", 2280 | "dependencies": { 2281 | "@babel/helper-define-polyfill-provider": "^0.6.2", 2282 | "core-js-compat": "^3.38.0" 2283 | }, 2284 | "peerDependencies": { 2285 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2286 | } 2287 | }, 2288 | "node_modules/babel-plugin-polyfill-regenerator": { 2289 | "version": "0.6.3", 2290 | "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", 2291 | "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", 2292 | "dev": true, 2293 | "license": "MIT", 2294 | "dependencies": { 2295 | "@babel/helper-define-polyfill-provider": "^0.6.3" 2296 | }, 2297 | "peerDependencies": { 2298 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2299 | } 2300 | }, 2301 | "node_modules/balanced-match": { 2302 | "version": "1.0.2", 2303 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 2304 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 2305 | "dev": true, 2306 | "license": "MIT" 2307 | }, 2308 | "node_modules/brace-expansion": { 2309 | "version": "1.1.11", 2310 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2311 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2312 | "dev": true, 2313 | "license": "MIT", 2314 | "dependencies": { 2315 | "balanced-match": "^1.0.0", 2316 | "concat-map": "0.0.1" 2317 | } 2318 | }, 2319 | "node_modules/browserslist": { 2320 | "version": "4.24.3", 2321 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz", 2322 | "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==", 2323 | "dev": true, 2324 | "funding": [ 2325 | { 2326 | "type": "opencollective", 2327 | "url": "https://opencollective.com/browserslist" 2328 | }, 2329 | { 2330 | "type": "tidelift", 2331 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2332 | }, 2333 | { 2334 | "type": "github", 2335 | "url": "https://github.com/sponsors/ai" 2336 | } 2337 | ], 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "caniuse-lite": "^1.0.30001688", 2341 | "electron-to-chromium": "^1.5.73", 2342 | "node-releases": "^2.0.19", 2343 | "update-browserslist-db": "^1.1.1" 2344 | }, 2345 | "bin": { 2346 | "browserslist": "cli.js" 2347 | }, 2348 | "engines": { 2349 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 2350 | } 2351 | }, 2352 | "node_modules/callsites": { 2353 | "version": "3.1.0", 2354 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2355 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2356 | "dev": true, 2357 | "license": "MIT", 2358 | "engines": { 2359 | "node": ">=6" 2360 | } 2361 | }, 2362 | "node_modules/caniuse-lite": { 2363 | "version": "1.0.30001690", 2364 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz", 2365 | "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==", 2366 | "dev": true, 2367 | "funding": [ 2368 | { 2369 | "type": "opencollective", 2370 | "url": "https://opencollective.com/browserslist" 2371 | }, 2372 | { 2373 | "type": "tidelift", 2374 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2375 | }, 2376 | { 2377 | "type": "github", 2378 | "url": "https://github.com/sponsors/ai" 2379 | } 2380 | ], 2381 | "license": "CC-BY-4.0" 2382 | }, 2383 | "node_modules/chalk": { 2384 | "version": "4.1.2", 2385 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2386 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2387 | "dev": true, 2388 | "license": "MIT", 2389 | "dependencies": { 2390 | "ansi-styles": "^4.1.0", 2391 | "supports-color": "^7.1.0" 2392 | }, 2393 | "engines": { 2394 | "node": ">=10" 2395 | }, 2396 | "funding": { 2397 | "url": "https://github.com/chalk/chalk?sponsor=1" 2398 | } 2399 | }, 2400 | "node_modules/color-convert": { 2401 | "version": "2.0.1", 2402 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2403 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2404 | "dev": true, 2405 | "license": "MIT", 2406 | "dependencies": { 2407 | "color-name": "~1.1.4" 2408 | }, 2409 | "engines": { 2410 | "node": ">=7.0.0" 2411 | } 2412 | }, 2413 | "node_modules/color-name": { 2414 | "version": "1.1.4", 2415 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2416 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2417 | "dev": true, 2418 | "license": "MIT" 2419 | }, 2420 | "node_modules/concat-map": { 2421 | "version": "0.0.1", 2422 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2423 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2424 | "dev": true, 2425 | "license": "MIT" 2426 | }, 2427 | "node_modules/convert-source-map": { 2428 | "version": "2.0.0", 2429 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 2430 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 2431 | "dev": true, 2432 | "license": "MIT" 2433 | }, 2434 | "node_modules/core-js-compat": { 2435 | "version": "3.39.0", 2436 | "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", 2437 | "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", 2438 | "dev": true, 2439 | "license": "MIT", 2440 | "dependencies": { 2441 | "browserslist": "^4.24.2" 2442 | }, 2443 | "funding": { 2444 | "type": "opencollective", 2445 | "url": "https://opencollective.com/core-js" 2446 | } 2447 | }, 2448 | "node_modules/cross-spawn": { 2449 | "version": "7.0.6", 2450 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2451 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2452 | "dev": true, 2453 | "license": "MIT", 2454 | "dependencies": { 2455 | "path-key": "^3.1.0", 2456 | "shebang-command": "^2.0.0", 2457 | "which": "^2.0.1" 2458 | }, 2459 | "engines": { 2460 | "node": ">= 8" 2461 | } 2462 | }, 2463 | "node_modules/cssesc": { 2464 | "version": "3.0.0", 2465 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 2466 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 2467 | "license": "MIT", 2468 | "bin": { 2469 | "cssesc": "bin/cssesc" 2470 | }, 2471 | "engines": { 2472 | "node": ">=4" 2473 | } 2474 | }, 2475 | "node_modules/debug": { 2476 | "version": "4.4.0", 2477 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 2478 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 2479 | "dev": true, 2480 | "license": "MIT", 2481 | "dependencies": { 2482 | "ms": "^2.1.3" 2483 | }, 2484 | "engines": { 2485 | "node": ">=6.0" 2486 | }, 2487 | "peerDependenciesMeta": { 2488 | "supports-color": { 2489 | "optional": true 2490 | } 2491 | } 2492 | }, 2493 | "node_modules/deep-is": { 2494 | "version": "0.1.4", 2495 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2496 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2497 | "dev": true, 2498 | "license": "MIT" 2499 | }, 2500 | "node_modules/doctrine": { 2501 | "version": "3.0.0", 2502 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 2503 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 2504 | "dev": true, 2505 | "license": "Apache-2.0", 2506 | "dependencies": { 2507 | "esutils": "^2.0.2" 2508 | }, 2509 | "engines": { 2510 | "node": ">=6.0.0" 2511 | } 2512 | }, 2513 | "node_modules/electron-to-chromium": { 2514 | "version": "1.5.76", 2515 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.76.tgz", 2516 | "integrity": "sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==", 2517 | "dev": true, 2518 | "license": "ISC" 2519 | }, 2520 | "node_modules/escalade": { 2521 | "version": "3.2.0", 2522 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2523 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2524 | "dev": true, 2525 | "license": "MIT", 2526 | "engines": { 2527 | "node": ">=6" 2528 | } 2529 | }, 2530 | "node_modules/escape-string-regexp": { 2531 | "version": "4.0.0", 2532 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2533 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2534 | "dev": true, 2535 | "license": "MIT", 2536 | "engines": { 2537 | "node": ">=10" 2538 | }, 2539 | "funding": { 2540 | "url": "https://github.com/sponsors/sindresorhus" 2541 | } 2542 | }, 2543 | "node_modules/eslint": { 2544 | "version": "8.57.1", 2545 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 2546 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 2547 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 2548 | "dev": true, 2549 | "license": "MIT", 2550 | "dependencies": { 2551 | "@eslint-community/eslint-utils": "^4.2.0", 2552 | "@eslint-community/regexpp": "^4.6.1", 2553 | "@eslint/eslintrc": "^2.1.4", 2554 | "@eslint/js": "8.57.1", 2555 | "@humanwhocodes/config-array": "^0.13.0", 2556 | "@humanwhocodes/module-importer": "^1.0.1", 2557 | "@nodelib/fs.walk": "^1.2.8", 2558 | "@ungap/structured-clone": "^1.2.0", 2559 | "ajv": "^6.12.4", 2560 | "chalk": "^4.0.0", 2561 | "cross-spawn": "^7.0.2", 2562 | "debug": "^4.3.2", 2563 | "doctrine": "^3.0.0", 2564 | "escape-string-regexp": "^4.0.0", 2565 | "eslint-scope": "^7.2.2", 2566 | "eslint-visitor-keys": "^3.4.3", 2567 | "espree": "^9.6.1", 2568 | "esquery": "^1.4.2", 2569 | "esutils": "^2.0.2", 2570 | "fast-deep-equal": "^3.1.3", 2571 | "file-entry-cache": "^6.0.1", 2572 | "find-up": "^5.0.0", 2573 | "glob-parent": "^6.0.2", 2574 | "globals": "^13.19.0", 2575 | "graphemer": "^1.4.0", 2576 | "ignore": "^5.2.0", 2577 | "imurmurhash": "^0.1.4", 2578 | "is-glob": "^4.0.0", 2579 | "is-path-inside": "^3.0.3", 2580 | "js-yaml": "^4.1.0", 2581 | "json-stable-stringify-without-jsonify": "^1.0.1", 2582 | "levn": "^0.4.1", 2583 | "lodash.merge": "^4.6.2", 2584 | "minimatch": "^3.1.2", 2585 | "natural-compare": "^1.4.0", 2586 | "optionator": "^0.9.3", 2587 | "strip-ansi": "^6.0.1", 2588 | "text-table": "^0.2.0" 2589 | }, 2590 | "bin": { 2591 | "eslint": "bin/eslint.js" 2592 | }, 2593 | "engines": { 2594 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2595 | }, 2596 | "funding": { 2597 | "url": "https://opencollective.com/eslint" 2598 | } 2599 | }, 2600 | "node_modules/eslint-scope": { 2601 | "version": "5.1.1", 2602 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 2603 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 2604 | "dev": true, 2605 | "license": "BSD-2-Clause", 2606 | "dependencies": { 2607 | "esrecurse": "^4.3.0", 2608 | "estraverse": "^4.1.1" 2609 | }, 2610 | "engines": { 2611 | "node": ">=8.0.0" 2612 | } 2613 | }, 2614 | "node_modules/eslint-visitor-keys": { 2615 | "version": "2.1.0", 2616 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 2617 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 2618 | "dev": true, 2619 | "license": "Apache-2.0", 2620 | "engines": { 2621 | "node": ">=10" 2622 | } 2623 | }, 2624 | "node_modules/eslint/node_modules/eslint-scope": { 2625 | "version": "7.2.2", 2626 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 2627 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 2628 | "dev": true, 2629 | "license": "BSD-2-Clause", 2630 | "dependencies": { 2631 | "esrecurse": "^4.3.0", 2632 | "estraverse": "^5.2.0" 2633 | }, 2634 | "engines": { 2635 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2636 | }, 2637 | "funding": { 2638 | "url": "https://opencollective.com/eslint" 2639 | } 2640 | }, 2641 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 2642 | "version": "3.4.3", 2643 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 2644 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 2645 | "dev": true, 2646 | "license": "Apache-2.0", 2647 | "engines": { 2648 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2649 | }, 2650 | "funding": { 2651 | "url": "https://opencollective.com/eslint" 2652 | } 2653 | }, 2654 | "node_modules/eslint/node_modules/estraverse": { 2655 | "version": "5.3.0", 2656 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2657 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2658 | "dev": true, 2659 | "license": "BSD-2-Clause", 2660 | "engines": { 2661 | "node": ">=4.0" 2662 | } 2663 | }, 2664 | "node_modules/eslint/node_modules/globals": { 2665 | "version": "13.24.0", 2666 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2667 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2668 | "dev": true, 2669 | "license": "MIT", 2670 | "dependencies": { 2671 | "type-fest": "^0.20.2" 2672 | }, 2673 | "engines": { 2674 | "node": ">=8" 2675 | }, 2676 | "funding": { 2677 | "url": "https://github.com/sponsors/sindresorhus" 2678 | } 2679 | }, 2680 | "node_modules/espree": { 2681 | "version": "9.6.1", 2682 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 2683 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 2684 | "dev": true, 2685 | "license": "BSD-2-Clause", 2686 | "dependencies": { 2687 | "acorn": "^8.9.0", 2688 | "acorn-jsx": "^5.3.2", 2689 | "eslint-visitor-keys": "^3.4.1" 2690 | }, 2691 | "engines": { 2692 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2693 | }, 2694 | "funding": { 2695 | "url": "https://opencollective.com/eslint" 2696 | } 2697 | }, 2698 | "node_modules/espree/node_modules/eslint-visitor-keys": { 2699 | "version": "3.4.3", 2700 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 2701 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 2702 | "dev": true, 2703 | "license": "Apache-2.0", 2704 | "engines": { 2705 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2706 | }, 2707 | "funding": { 2708 | "url": "https://opencollective.com/eslint" 2709 | } 2710 | }, 2711 | "node_modules/esquery": { 2712 | "version": "1.6.0", 2713 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 2714 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 2715 | "dev": true, 2716 | "license": "BSD-3-Clause", 2717 | "dependencies": { 2718 | "estraverse": "^5.1.0" 2719 | }, 2720 | "engines": { 2721 | "node": ">=0.10" 2722 | } 2723 | }, 2724 | "node_modules/esquery/node_modules/estraverse": { 2725 | "version": "5.3.0", 2726 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2727 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2728 | "dev": true, 2729 | "license": "BSD-2-Clause", 2730 | "engines": { 2731 | "node": ">=4.0" 2732 | } 2733 | }, 2734 | "node_modules/esrecurse": { 2735 | "version": "4.3.0", 2736 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2737 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2738 | "dev": true, 2739 | "license": "BSD-2-Clause", 2740 | "dependencies": { 2741 | "estraverse": "^5.2.0" 2742 | }, 2743 | "engines": { 2744 | "node": ">=4.0" 2745 | } 2746 | }, 2747 | "node_modules/esrecurse/node_modules/estraverse": { 2748 | "version": "5.3.0", 2749 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2750 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2751 | "dev": true, 2752 | "license": "BSD-2-Clause", 2753 | "engines": { 2754 | "node": ">=4.0" 2755 | } 2756 | }, 2757 | "node_modules/estraverse": { 2758 | "version": "4.3.0", 2759 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 2760 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 2761 | "dev": true, 2762 | "license": "BSD-2-Clause", 2763 | "engines": { 2764 | "node": ">=4.0" 2765 | } 2766 | }, 2767 | "node_modules/estree-walker": { 2768 | "version": "2.0.2", 2769 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 2770 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 2771 | "dev": true, 2772 | "license": "MIT" 2773 | }, 2774 | "node_modules/esutils": { 2775 | "version": "2.0.3", 2776 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2777 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2778 | "dev": true, 2779 | "license": "BSD-2-Clause", 2780 | "engines": { 2781 | "node": ">=0.10.0" 2782 | } 2783 | }, 2784 | "node_modules/fast-deep-equal": { 2785 | "version": "3.1.3", 2786 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2787 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2788 | "dev": true, 2789 | "license": "MIT" 2790 | }, 2791 | "node_modules/fast-json-stable-stringify": { 2792 | "version": "2.1.0", 2793 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2794 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2795 | "dev": true, 2796 | "license": "MIT" 2797 | }, 2798 | "node_modules/fast-levenshtein": { 2799 | "version": "2.0.6", 2800 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2801 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2802 | "dev": true, 2803 | "license": "MIT" 2804 | }, 2805 | "node_modules/fastq": { 2806 | "version": "1.18.0", 2807 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", 2808 | "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", 2809 | "dev": true, 2810 | "license": "ISC", 2811 | "dependencies": { 2812 | "reusify": "^1.0.4" 2813 | } 2814 | }, 2815 | "node_modules/file-entry-cache": { 2816 | "version": "6.0.1", 2817 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2818 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2819 | "dev": true, 2820 | "license": "MIT", 2821 | "dependencies": { 2822 | "flat-cache": "^3.0.4" 2823 | }, 2824 | "engines": { 2825 | "node": "^10.12.0 || >=12.0.0" 2826 | } 2827 | }, 2828 | "node_modules/find-up": { 2829 | "version": "5.0.0", 2830 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2831 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2832 | "dev": true, 2833 | "license": "MIT", 2834 | "dependencies": { 2835 | "locate-path": "^6.0.0", 2836 | "path-exists": "^4.0.0" 2837 | }, 2838 | "engines": { 2839 | "node": ">=10" 2840 | }, 2841 | "funding": { 2842 | "url": "https://github.com/sponsors/sindresorhus" 2843 | } 2844 | }, 2845 | "node_modules/flat-cache": { 2846 | "version": "3.2.0", 2847 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 2848 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 2849 | "dev": true, 2850 | "license": "MIT", 2851 | "dependencies": { 2852 | "flatted": "^3.2.9", 2853 | "keyv": "^4.5.3", 2854 | "rimraf": "^3.0.2" 2855 | }, 2856 | "engines": { 2857 | "node": "^10.12.0 || >=12.0.0" 2858 | } 2859 | }, 2860 | "node_modules/flatted": { 2861 | "version": "3.3.2", 2862 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 2863 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 2864 | "dev": true, 2865 | "license": "ISC" 2866 | }, 2867 | "node_modules/fs.realpath": { 2868 | "version": "1.0.0", 2869 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2870 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2871 | "dev": true, 2872 | "license": "ISC" 2873 | }, 2874 | "node_modules/fsevents": { 2875 | "version": "2.3.3", 2876 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2877 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2878 | "dev": true, 2879 | "hasInstallScript": true, 2880 | "license": "MIT", 2881 | "optional": true, 2882 | "os": [ 2883 | "darwin" 2884 | ], 2885 | "engines": { 2886 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2887 | } 2888 | }, 2889 | "node_modules/function-bind": { 2890 | "version": "1.1.2", 2891 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2892 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2893 | "dev": true, 2894 | "license": "MIT", 2895 | "funding": { 2896 | "url": "https://github.com/sponsors/ljharb" 2897 | } 2898 | }, 2899 | "node_modules/gensync": { 2900 | "version": "1.0.0-beta.2", 2901 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2902 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2903 | "dev": true, 2904 | "license": "MIT", 2905 | "engines": { 2906 | "node": ">=6.9.0" 2907 | } 2908 | }, 2909 | "node_modules/glob": { 2910 | "version": "7.2.3", 2911 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2912 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2913 | "deprecated": "Glob versions prior to v9 are no longer supported", 2914 | "dev": true, 2915 | "license": "ISC", 2916 | "dependencies": { 2917 | "fs.realpath": "^1.0.0", 2918 | "inflight": "^1.0.4", 2919 | "inherits": "2", 2920 | "minimatch": "^3.1.1", 2921 | "once": "^1.3.0", 2922 | "path-is-absolute": "^1.0.0" 2923 | }, 2924 | "engines": { 2925 | "node": "*" 2926 | }, 2927 | "funding": { 2928 | "url": "https://github.com/sponsors/isaacs" 2929 | } 2930 | }, 2931 | "node_modules/glob-parent": { 2932 | "version": "6.0.2", 2933 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2934 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2935 | "dev": true, 2936 | "license": "ISC", 2937 | "dependencies": { 2938 | "is-glob": "^4.0.3" 2939 | }, 2940 | "engines": { 2941 | "node": ">=10.13.0" 2942 | } 2943 | }, 2944 | "node_modules/globals": { 2945 | "version": "11.12.0", 2946 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2947 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2948 | "dev": true, 2949 | "license": "MIT", 2950 | "engines": { 2951 | "node": ">=4" 2952 | } 2953 | }, 2954 | "node_modules/graphemer": { 2955 | "version": "1.4.0", 2956 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2957 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2958 | "dev": true, 2959 | "license": "MIT" 2960 | }, 2961 | "node_modules/has-flag": { 2962 | "version": "4.0.0", 2963 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2964 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2965 | "dev": true, 2966 | "license": "MIT", 2967 | "engines": { 2968 | "node": ">=8" 2969 | } 2970 | }, 2971 | "node_modules/hasown": { 2972 | "version": "2.0.2", 2973 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2974 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2975 | "dev": true, 2976 | "license": "MIT", 2977 | "dependencies": { 2978 | "function-bind": "^1.1.2" 2979 | }, 2980 | "engines": { 2981 | "node": ">= 0.4" 2982 | } 2983 | }, 2984 | "node_modules/ignore": { 2985 | "version": "5.3.2", 2986 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2987 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2988 | "dev": true, 2989 | "license": "MIT", 2990 | "engines": { 2991 | "node": ">= 4" 2992 | } 2993 | }, 2994 | "node_modules/import-fresh": { 2995 | "version": "3.3.0", 2996 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2997 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2998 | "dev": true, 2999 | "license": "MIT", 3000 | "dependencies": { 3001 | "parent-module": "^1.0.0", 3002 | "resolve-from": "^4.0.0" 3003 | }, 3004 | "engines": { 3005 | "node": ">=6" 3006 | }, 3007 | "funding": { 3008 | "url": "https://github.com/sponsors/sindresorhus" 3009 | } 3010 | }, 3011 | "node_modules/imurmurhash": { 3012 | "version": "0.1.4", 3013 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 3014 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 3015 | "dev": true, 3016 | "license": "MIT", 3017 | "engines": { 3018 | "node": ">=0.8.19" 3019 | } 3020 | }, 3021 | "node_modules/inflight": { 3022 | "version": "1.0.6", 3023 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 3024 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 3025 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 3026 | "dev": true, 3027 | "license": "ISC", 3028 | "dependencies": { 3029 | "once": "^1.3.0", 3030 | "wrappy": "1" 3031 | } 3032 | }, 3033 | "node_modules/inherits": { 3034 | "version": "2.0.4", 3035 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 3036 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 3037 | "dev": true, 3038 | "license": "ISC" 3039 | }, 3040 | "node_modules/is-core-module": { 3041 | "version": "2.16.1", 3042 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 3043 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 3044 | "dev": true, 3045 | "license": "MIT", 3046 | "dependencies": { 3047 | "hasown": "^2.0.2" 3048 | }, 3049 | "engines": { 3050 | "node": ">= 0.4" 3051 | }, 3052 | "funding": { 3053 | "url": "https://github.com/sponsors/ljharb" 3054 | } 3055 | }, 3056 | "node_modules/is-extglob": { 3057 | "version": "2.1.1", 3058 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 3059 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 3060 | "dev": true, 3061 | "license": "MIT", 3062 | "engines": { 3063 | "node": ">=0.10.0" 3064 | } 3065 | }, 3066 | "node_modules/is-glob": { 3067 | "version": "4.0.3", 3068 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3069 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3070 | "dev": true, 3071 | "license": "MIT", 3072 | "dependencies": { 3073 | "is-extglob": "^2.1.1" 3074 | }, 3075 | "engines": { 3076 | "node": ">=0.10.0" 3077 | } 3078 | }, 3079 | "node_modules/is-path-inside": { 3080 | "version": "3.0.3", 3081 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 3082 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 3083 | "dev": true, 3084 | "license": "MIT", 3085 | "engines": { 3086 | "node": ">=8" 3087 | } 3088 | }, 3089 | "node_modules/isexe": { 3090 | "version": "2.0.0", 3091 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3092 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3093 | "dev": true, 3094 | "license": "ISC" 3095 | }, 3096 | "node_modules/js-tokens": { 3097 | "version": "4.0.0", 3098 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 3099 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 3100 | "dev": true, 3101 | "license": "MIT" 3102 | }, 3103 | "node_modules/js-yaml": { 3104 | "version": "4.1.0", 3105 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3106 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3107 | "dev": true, 3108 | "license": "MIT", 3109 | "dependencies": { 3110 | "argparse": "^2.0.1" 3111 | }, 3112 | "bin": { 3113 | "js-yaml": "bin/js-yaml.js" 3114 | } 3115 | }, 3116 | "node_modules/jsesc": { 3117 | "version": "3.1.0", 3118 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 3119 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 3120 | "dev": true, 3121 | "license": "MIT", 3122 | "bin": { 3123 | "jsesc": "bin/jsesc" 3124 | }, 3125 | "engines": { 3126 | "node": ">=6" 3127 | } 3128 | }, 3129 | "node_modules/json-buffer": { 3130 | "version": "3.0.1", 3131 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 3132 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 3133 | "dev": true, 3134 | "license": "MIT" 3135 | }, 3136 | "node_modules/json-schema-traverse": { 3137 | "version": "0.4.1", 3138 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3139 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3140 | "dev": true, 3141 | "license": "MIT" 3142 | }, 3143 | "node_modules/json-stable-stringify-without-jsonify": { 3144 | "version": "1.0.1", 3145 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3146 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3147 | "dev": true, 3148 | "license": "MIT" 3149 | }, 3150 | "node_modules/json5": { 3151 | "version": "2.2.3", 3152 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3153 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3154 | "dev": true, 3155 | "license": "MIT", 3156 | "bin": { 3157 | "json5": "lib/cli.js" 3158 | }, 3159 | "engines": { 3160 | "node": ">=6" 3161 | } 3162 | }, 3163 | "node_modules/keyv": { 3164 | "version": "4.5.4", 3165 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 3166 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 3167 | "dev": true, 3168 | "license": "MIT", 3169 | "dependencies": { 3170 | "json-buffer": "3.0.1" 3171 | } 3172 | }, 3173 | "node_modules/levn": { 3174 | "version": "0.4.1", 3175 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3176 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3177 | "dev": true, 3178 | "license": "MIT", 3179 | "dependencies": { 3180 | "prelude-ls": "^1.2.1", 3181 | "type-check": "~0.4.0" 3182 | }, 3183 | "engines": { 3184 | "node": ">= 0.8.0" 3185 | } 3186 | }, 3187 | "node_modules/locate-path": { 3188 | "version": "6.0.0", 3189 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 3190 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 3191 | "dev": true, 3192 | "license": "MIT", 3193 | "dependencies": { 3194 | "p-locate": "^5.0.0" 3195 | }, 3196 | "engines": { 3197 | "node": ">=10" 3198 | }, 3199 | "funding": { 3200 | "url": "https://github.com/sponsors/sindresorhus" 3201 | } 3202 | }, 3203 | "node_modules/lodash.debounce": { 3204 | "version": "4.0.8", 3205 | "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", 3206 | "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", 3207 | "dev": true, 3208 | "license": "MIT" 3209 | }, 3210 | "node_modules/lodash.merge": { 3211 | "version": "4.6.2", 3212 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 3213 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 3214 | "dev": true, 3215 | "license": "MIT" 3216 | }, 3217 | "node_modules/lru-cache": { 3218 | "version": "5.1.1", 3219 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3220 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3221 | "dev": true, 3222 | "license": "ISC", 3223 | "dependencies": { 3224 | "yallist": "^3.0.2" 3225 | } 3226 | }, 3227 | "node_modules/minimatch": { 3228 | "version": "3.1.2", 3229 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3230 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3231 | "dev": true, 3232 | "license": "ISC", 3233 | "dependencies": { 3234 | "brace-expansion": "^1.1.7" 3235 | }, 3236 | "engines": { 3237 | "node": "*" 3238 | } 3239 | }, 3240 | "node_modules/ms": { 3241 | "version": "2.1.3", 3242 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3243 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3244 | "dev": true, 3245 | "license": "MIT" 3246 | }, 3247 | "node_modules/nanoid": { 3248 | "version": "3.3.8", 3249 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 3250 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 3251 | "funding": [ 3252 | { 3253 | "type": "github", 3254 | "url": "https://github.com/sponsors/ai" 3255 | } 3256 | ], 3257 | "license": "MIT", 3258 | "bin": { 3259 | "nanoid": "bin/nanoid.cjs" 3260 | }, 3261 | "engines": { 3262 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3263 | } 3264 | }, 3265 | "node_modules/natural-compare": { 3266 | "version": "1.4.0", 3267 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3268 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3269 | "dev": true, 3270 | "license": "MIT" 3271 | }, 3272 | "node_modules/node-releases": { 3273 | "version": "2.0.19", 3274 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 3275 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 3276 | "dev": true, 3277 | "license": "MIT" 3278 | }, 3279 | "node_modules/once": { 3280 | "version": "1.4.0", 3281 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3282 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3283 | "dev": true, 3284 | "license": "ISC", 3285 | "dependencies": { 3286 | "wrappy": "1" 3287 | } 3288 | }, 3289 | "node_modules/optionator": { 3290 | "version": "0.9.4", 3291 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 3292 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 3293 | "dev": true, 3294 | "license": "MIT", 3295 | "dependencies": { 3296 | "deep-is": "^0.1.3", 3297 | "fast-levenshtein": "^2.0.6", 3298 | "levn": "^0.4.1", 3299 | "prelude-ls": "^1.2.1", 3300 | "type-check": "^0.4.0", 3301 | "word-wrap": "^1.2.5" 3302 | }, 3303 | "engines": { 3304 | "node": ">= 0.8.0" 3305 | } 3306 | }, 3307 | "node_modules/p-limit": { 3308 | "version": "3.1.0", 3309 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3310 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3311 | "dev": true, 3312 | "license": "MIT", 3313 | "dependencies": { 3314 | "yocto-queue": "^0.1.0" 3315 | }, 3316 | "engines": { 3317 | "node": ">=10" 3318 | }, 3319 | "funding": { 3320 | "url": "https://github.com/sponsors/sindresorhus" 3321 | } 3322 | }, 3323 | "node_modules/p-locate": { 3324 | "version": "5.0.0", 3325 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3326 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3327 | "dev": true, 3328 | "license": "MIT", 3329 | "dependencies": { 3330 | "p-limit": "^3.0.2" 3331 | }, 3332 | "engines": { 3333 | "node": ">=10" 3334 | }, 3335 | "funding": { 3336 | "url": "https://github.com/sponsors/sindresorhus" 3337 | } 3338 | }, 3339 | "node_modules/parent-module": { 3340 | "version": "1.0.1", 3341 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3342 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3343 | "dev": true, 3344 | "license": "MIT", 3345 | "dependencies": { 3346 | "callsites": "^3.0.0" 3347 | }, 3348 | "engines": { 3349 | "node": ">=6" 3350 | } 3351 | }, 3352 | "node_modules/path-exists": { 3353 | "version": "4.0.0", 3354 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3355 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3356 | "dev": true, 3357 | "license": "MIT", 3358 | "engines": { 3359 | "node": ">=8" 3360 | } 3361 | }, 3362 | "node_modules/path-is-absolute": { 3363 | "version": "1.0.1", 3364 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3365 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3366 | "dev": true, 3367 | "license": "MIT", 3368 | "engines": { 3369 | "node": ">=0.10.0" 3370 | } 3371 | }, 3372 | "node_modules/path-key": { 3373 | "version": "3.1.1", 3374 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3375 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3376 | "dev": true, 3377 | "license": "MIT", 3378 | "engines": { 3379 | "node": ">=8" 3380 | } 3381 | }, 3382 | "node_modules/path-parse": { 3383 | "version": "1.0.7", 3384 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3385 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3386 | "dev": true, 3387 | "license": "MIT" 3388 | }, 3389 | "node_modules/picocolors": { 3390 | "version": "1.1.1", 3391 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3392 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3393 | "license": "ISC" 3394 | }, 3395 | "node_modules/picomatch": { 3396 | "version": "4.0.2", 3397 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3398 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3399 | "dev": true, 3400 | "license": "MIT", 3401 | "engines": { 3402 | "node": ">=12" 3403 | }, 3404 | "funding": { 3405 | "url": "https://github.com/sponsors/jonschlinkert" 3406 | } 3407 | }, 3408 | "node_modules/postcss": { 3409 | "version": "8.4.49", 3410 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", 3411 | "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", 3412 | "funding": [ 3413 | { 3414 | "type": "opencollective", 3415 | "url": "https://opencollective.com/postcss/" 3416 | }, 3417 | { 3418 | "type": "tidelift", 3419 | "url": "https://tidelift.com/funding/github/npm/postcss" 3420 | }, 3421 | { 3422 | "type": "github", 3423 | "url": "https://github.com/sponsors/ai" 3424 | } 3425 | ], 3426 | "license": "MIT", 3427 | "dependencies": { 3428 | "nanoid": "^3.3.7", 3429 | "picocolors": "^1.1.1", 3430 | "source-map-js": "^1.2.1" 3431 | }, 3432 | "engines": { 3433 | "node": "^10 || ^12 || >=14" 3434 | } 3435 | }, 3436 | "node_modules/postcss-8.4": { 3437 | "name": "postcss", 3438 | "version": "8.4.49", 3439 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", 3440 | "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", 3441 | "dev": true, 3442 | "funding": [ 3443 | { 3444 | "type": "opencollective", 3445 | "url": "https://opencollective.com/postcss/" 3446 | }, 3447 | { 3448 | "type": "tidelift", 3449 | "url": "https://tidelift.com/funding/github/npm/postcss" 3450 | }, 3451 | { 3452 | "type": "github", 3453 | "url": "https://github.com/sponsors/ai" 3454 | } 3455 | ], 3456 | "license": "MIT", 3457 | "dependencies": { 3458 | "nanoid": "^3.3.7", 3459 | "picocolors": "^1.1.1", 3460 | "source-map-js": "^1.2.1" 3461 | }, 3462 | "engines": { 3463 | "node": "^10 || ^12 || >=14" 3464 | } 3465 | }, 3466 | "node_modules/postcss-nesting": { 3467 | "version": "10.2.0", 3468 | "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", 3469 | "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", 3470 | "license": "CC0-1.0", 3471 | "dependencies": { 3472 | "@csstools/selector-specificity": "^2.0.0", 3473 | "postcss-selector-parser": "^6.0.10" 3474 | }, 3475 | "engines": { 3476 | "node": "^12 || ^14 || >=16" 3477 | }, 3478 | "funding": { 3479 | "type": "opencollective", 3480 | "url": "https://opencollective.com/csstools" 3481 | }, 3482 | "peerDependencies": { 3483 | "postcss": "^8.2" 3484 | } 3485 | }, 3486 | "node_modules/postcss-selector-parser": { 3487 | "version": "6.1.2", 3488 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 3489 | "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 3490 | "license": "MIT", 3491 | "dependencies": { 3492 | "cssesc": "^3.0.0", 3493 | "util-deprecate": "^1.0.2" 3494 | }, 3495 | "engines": { 3496 | "node": ">=4" 3497 | } 3498 | }, 3499 | "node_modules/prelude-ls": { 3500 | "version": "1.2.1", 3501 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3502 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3503 | "dev": true, 3504 | "license": "MIT", 3505 | "engines": { 3506 | "node": ">= 0.8.0" 3507 | } 3508 | }, 3509 | "node_modules/punycode": { 3510 | "version": "2.3.1", 3511 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3512 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3513 | "dev": true, 3514 | "license": "MIT", 3515 | "engines": { 3516 | "node": ">=6" 3517 | } 3518 | }, 3519 | "node_modules/queue-microtask": { 3520 | "version": "1.2.3", 3521 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3522 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3523 | "dev": true, 3524 | "funding": [ 3525 | { 3526 | "type": "github", 3527 | "url": "https://github.com/sponsors/feross" 3528 | }, 3529 | { 3530 | "type": "patreon", 3531 | "url": "https://www.patreon.com/feross" 3532 | }, 3533 | { 3534 | "type": "consulting", 3535 | "url": "https://feross.org/support" 3536 | } 3537 | ], 3538 | "license": "MIT" 3539 | }, 3540 | "node_modules/regenerate": { 3541 | "version": "1.4.2", 3542 | "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", 3543 | "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", 3544 | "dev": true, 3545 | "license": "MIT" 3546 | }, 3547 | "node_modules/regenerate-unicode-properties": { 3548 | "version": "10.2.0", 3549 | "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", 3550 | "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", 3551 | "dev": true, 3552 | "license": "MIT", 3553 | "dependencies": { 3554 | "regenerate": "^1.4.2" 3555 | }, 3556 | "engines": { 3557 | "node": ">=4" 3558 | } 3559 | }, 3560 | "node_modules/regenerator-runtime": { 3561 | "version": "0.14.1", 3562 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 3563 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", 3564 | "dev": true, 3565 | "license": "MIT" 3566 | }, 3567 | "node_modules/regenerator-transform": { 3568 | "version": "0.15.2", 3569 | "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", 3570 | "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", 3571 | "dev": true, 3572 | "license": "MIT", 3573 | "dependencies": { 3574 | "@babel/runtime": "^7.8.4" 3575 | } 3576 | }, 3577 | "node_modules/regexpu-core": { 3578 | "version": "6.2.0", 3579 | "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", 3580 | "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", 3581 | "dev": true, 3582 | "license": "MIT", 3583 | "dependencies": { 3584 | "regenerate": "^1.4.2", 3585 | "regenerate-unicode-properties": "^10.2.0", 3586 | "regjsgen": "^0.8.0", 3587 | "regjsparser": "^0.12.0", 3588 | "unicode-match-property-ecmascript": "^2.0.0", 3589 | "unicode-match-property-value-ecmascript": "^2.1.0" 3590 | }, 3591 | "engines": { 3592 | "node": ">=4" 3593 | } 3594 | }, 3595 | "node_modules/regjsgen": { 3596 | "version": "0.8.0", 3597 | "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", 3598 | "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", 3599 | "dev": true, 3600 | "license": "MIT" 3601 | }, 3602 | "node_modules/regjsparser": { 3603 | "version": "0.12.0", 3604 | "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", 3605 | "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", 3606 | "dev": true, 3607 | "license": "BSD-2-Clause", 3608 | "dependencies": { 3609 | "jsesc": "~3.0.2" 3610 | }, 3611 | "bin": { 3612 | "regjsparser": "bin/parser" 3613 | } 3614 | }, 3615 | "node_modules/regjsparser/node_modules/jsesc": { 3616 | "version": "3.0.2", 3617 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 3618 | "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 3619 | "dev": true, 3620 | "license": "MIT", 3621 | "bin": { 3622 | "jsesc": "bin/jsesc" 3623 | }, 3624 | "engines": { 3625 | "node": ">=6" 3626 | } 3627 | }, 3628 | "node_modules/resolve": { 3629 | "version": "1.22.10", 3630 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 3631 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 3632 | "dev": true, 3633 | "license": "MIT", 3634 | "dependencies": { 3635 | "is-core-module": "^2.16.0", 3636 | "path-parse": "^1.0.7", 3637 | "supports-preserve-symlinks-flag": "^1.0.0" 3638 | }, 3639 | "bin": { 3640 | "resolve": "bin/resolve" 3641 | }, 3642 | "engines": { 3643 | "node": ">= 0.4" 3644 | }, 3645 | "funding": { 3646 | "url": "https://github.com/sponsors/ljharb" 3647 | } 3648 | }, 3649 | "node_modules/resolve-from": { 3650 | "version": "4.0.0", 3651 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3652 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3653 | "dev": true, 3654 | "license": "MIT", 3655 | "engines": { 3656 | "node": ">=4" 3657 | } 3658 | }, 3659 | "node_modules/reusify": { 3660 | "version": "1.0.4", 3661 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3662 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3663 | "dev": true, 3664 | "license": "MIT", 3665 | "engines": { 3666 | "iojs": ">=1.0.0", 3667 | "node": ">=0.10.0" 3668 | } 3669 | }, 3670 | "node_modules/rimraf": { 3671 | "version": "3.0.2", 3672 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3673 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3674 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 3675 | "dev": true, 3676 | "license": "ISC", 3677 | "dependencies": { 3678 | "glob": "^7.1.3" 3679 | }, 3680 | "bin": { 3681 | "rimraf": "bin.js" 3682 | }, 3683 | "funding": { 3684 | "url": "https://github.com/sponsors/isaacs" 3685 | } 3686 | }, 3687 | "node_modules/rollup": { 3688 | "version": "4.29.1", 3689 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.29.1.tgz", 3690 | "integrity": "sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==", 3691 | "dev": true, 3692 | "license": "MIT", 3693 | "dependencies": { 3694 | "@types/estree": "1.0.6" 3695 | }, 3696 | "bin": { 3697 | "rollup": "dist/bin/rollup" 3698 | }, 3699 | "engines": { 3700 | "node": ">=18.0.0", 3701 | "npm": ">=8.0.0" 3702 | }, 3703 | "optionalDependencies": { 3704 | "@rollup/rollup-android-arm-eabi": "4.29.1", 3705 | "@rollup/rollup-android-arm64": "4.29.1", 3706 | "@rollup/rollup-darwin-arm64": "4.29.1", 3707 | "@rollup/rollup-darwin-x64": "4.29.1", 3708 | "@rollup/rollup-freebsd-arm64": "4.29.1", 3709 | "@rollup/rollup-freebsd-x64": "4.29.1", 3710 | "@rollup/rollup-linux-arm-gnueabihf": "4.29.1", 3711 | "@rollup/rollup-linux-arm-musleabihf": "4.29.1", 3712 | "@rollup/rollup-linux-arm64-gnu": "4.29.1", 3713 | "@rollup/rollup-linux-arm64-musl": "4.29.1", 3714 | "@rollup/rollup-linux-loongarch64-gnu": "4.29.1", 3715 | "@rollup/rollup-linux-powerpc64le-gnu": "4.29.1", 3716 | "@rollup/rollup-linux-riscv64-gnu": "4.29.1", 3717 | "@rollup/rollup-linux-s390x-gnu": "4.29.1", 3718 | "@rollup/rollup-linux-x64-gnu": "4.29.1", 3719 | "@rollup/rollup-linux-x64-musl": "4.29.1", 3720 | "@rollup/rollup-win32-arm64-msvc": "4.29.1", 3721 | "@rollup/rollup-win32-ia32-msvc": "4.29.1", 3722 | "@rollup/rollup-win32-x64-msvc": "4.29.1", 3723 | "fsevents": "~2.3.2" 3724 | } 3725 | }, 3726 | "node_modules/run-parallel": { 3727 | "version": "1.2.0", 3728 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3729 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3730 | "dev": true, 3731 | "funding": [ 3732 | { 3733 | "type": "github", 3734 | "url": "https://github.com/sponsors/feross" 3735 | }, 3736 | { 3737 | "type": "patreon", 3738 | "url": "https://www.patreon.com/feross" 3739 | }, 3740 | { 3741 | "type": "consulting", 3742 | "url": "https://feross.org/support" 3743 | } 3744 | ], 3745 | "license": "MIT", 3746 | "dependencies": { 3747 | "queue-microtask": "^1.2.2" 3748 | } 3749 | }, 3750 | "node_modules/semver": { 3751 | "version": "6.3.1", 3752 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3753 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3754 | "dev": true, 3755 | "license": "ISC", 3756 | "bin": { 3757 | "semver": "bin/semver.js" 3758 | } 3759 | }, 3760 | "node_modules/shebang-command": { 3761 | "version": "2.0.0", 3762 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3763 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3764 | "dev": true, 3765 | "license": "MIT", 3766 | "dependencies": { 3767 | "shebang-regex": "^3.0.0" 3768 | }, 3769 | "engines": { 3770 | "node": ">=8" 3771 | } 3772 | }, 3773 | "node_modules/shebang-regex": { 3774 | "version": "3.0.0", 3775 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3776 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3777 | "dev": true, 3778 | "license": "MIT", 3779 | "engines": { 3780 | "node": ">=8" 3781 | } 3782 | }, 3783 | "node_modules/source-map-js": { 3784 | "version": "1.2.1", 3785 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3786 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3787 | "license": "BSD-3-Clause", 3788 | "engines": { 3789 | "node": ">=0.10.0" 3790 | } 3791 | }, 3792 | "node_modules/strip-ansi": { 3793 | "version": "6.0.1", 3794 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3795 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3796 | "dev": true, 3797 | "license": "MIT", 3798 | "dependencies": { 3799 | "ansi-regex": "^5.0.1" 3800 | }, 3801 | "engines": { 3802 | "node": ">=8" 3803 | } 3804 | }, 3805 | "node_modules/strip-json-comments": { 3806 | "version": "3.1.1", 3807 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3808 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3809 | "dev": true, 3810 | "license": "MIT", 3811 | "engines": { 3812 | "node": ">=8" 3813 | }, 3814 | "funding": { 3815 | "url": "https://github.com/sponsors/sindresorhus" 3816 | } 3817 | }, 3818 | "node_modules/supports-color": { 3819 | "version": "7.2.0", 3820 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3821 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3822 | "dev": true, 3823 | "license": "MIT", 3824 | "dependencies": { 3825 | "has-flag": "^4.0.0" 3826 | }, 3827 | "engines": { 3828 | "node": ">=8" 3829 | } 3830 | }, 3831 | "node_modules/supports-preserve-symlinks-flag": { 3832 | "version": "1.0.0", 3833 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3834 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3835 | "dev": true, 3836 | "license": "MIT", 3837 | "engines": { 3838 | "node": ">= 0.4" 3839 | }, 3840 | "funding": { 3841 | "url": "https://github.com/sponsors/ljharb" 3842 | } 3843 | }, 3844 | "node_modules/text-table": { 3845 | "version": "0.2.0", 3846 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3847 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3848 | "dev": true, 3849 | "license": "MIT" 3850 | }, 3851 | "node_modules/type-check": { 3852 | "version": "0.4.0", 3853 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3854 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3855 | "dev": true, 3856 | "license": "MIT", 3857 | "dependencies": { 3858 | "prelude-ls": "^1.2.1" 3859 | }, 3860 | "engines": { 3861 | "node": ">= 0.8.0" 3862 | } 3863 | }, 3864 | "node_modules/type-fest": { 3865 | "version": "0.20.2", 3866 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3867 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3868 | "dev": true, 3869 | "license": "(MIT OR CC0-1.0)", 3870 | "engines": { 3871 | "node": ">=10" 3872 | }, 3873 | "funding": { 3874 | "url": "https://github.com/sponsors/sindresorhus" 3875 | } 3876 | }, 3877 | "node_modules/unicode-canonical-property-names-ecmascript": { 3878 | "version": "2.0.1", 3879 | "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", 3880 | "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", 3881 | "dev": true, 3882 | "license": "MIT", 3883 | "engines": { 3884 | "node": ">=4" 3885 | } 3886 | }, 3887 | "node_modules/unicode-match-property-ecmascript": { 3888 | "version": "2.0.0", 3889 | "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", 3890 | "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", 3891 | "dev": true, 3892 | "license": "MIT", 3893 | "dependencies": { 3894 | "unicode-canonical-property-names-ecmascript": "^2.0.0", 3895 | "unicode-property-aliases-ecmascript": "^2.0.0" 3896 | }, 3897 | "engines": { 3898 | "node": ">=4" 3899 | } 3900 | }, 3901 | "node_modules/unicode-match-property-value-ecmascript": { 3902 | "version": "2.2.0", 3903 | "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", 3904 | "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", 3905 | "dev": true, 3906 | "license": "MIT", 3907 | "engines": { 3908 | "node": ">=4" 3909 | } 3910 | }, 3911 | "node_modules/unicode-property-aliases-ecmascript": { 3912 | "version": "2.1.0", 3913 | "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", 3914 | "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", 3915 | "dev": true, 3916 | "license": "MIT", 3917 | "engines": { 3918 | "node": ">=4" 3919 | } 3920 | }, 3921 | "node_modules/update-browserslist-db": { 3922 | "version": "1.1.1", 3923 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", 3924 | "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", 3925 | "dev": true, 3926 | "funding": [ 3927 | { 3928 | "type": "opencollective", 3929 | "url": "https://opencollective.com/browserslist" 3930 | }, 3931 | { 3932 | "type": "tidelift", 3933 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3934 | }, 3935 | { 3936 | "type": "github", 3937 | "url": "https://github.com/sponsors/ai" 3938 | } 3939 | ], 3940 | "license": "MIT", 3941 | "dependencies": { 3942 | "escalade": "^3.2.0", 3943 | "picocolors": "^1.1.0" 3944 | }, 3945 | "bin": { 3946 | "update-browserslist-db": "cli.js" 3947 | }, 3948 | "peerDependencies": { 3949 | "browserslist": ">= 4.21.0" 3950 | } 3951 | }, 3952 | "node_modules/uri-js": { 3953 | "version": "4.4.1", 3954 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3955 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3956 | "dev": true, 3957 | "license": "BSD-2-Clause", 3958 | "dependencies": { 3959 | "punycode": "^2.1.0" 3960 | } 3961 | }, 3962 | "node_modules/util-deprecate": { 3963 | "version": "1.0.2", 3964 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3965 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3966 | "license": "MIT" 3967 | }, 3968 | "node_modules/which": { 3969 | "version": "2.0.2", 3970 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3971 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3972 | "dev": true, 3973 | "license": "ISC", 3974 | "dependencies": { 3975 | "isexe": "^2.0.0" 3976 | }, 3977 | "bin": { 3978 | "node-which": "bin/node-which" 3979 | }, 3980 | "engines": { 3981 | "node": ">= 8" 3982 | } 3983 | }, 3984 | "node_modules/word-wrap": { 3985 | "version": "1.2.5", 3986 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3987 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3988 | "dev": true, 3989 | "license": "MIT", 3990 | "engines": { 3991 | "node": ">=0.10.0" 3992 | } 3993 | }, 3994 | "node_modules/wrappy": { 3995 | "version": "1.0.2", 3996 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3997 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3998 | "dev": true, 3999 | "license": "ISC" 4000 | }, 4001 | "node_modules/yallist": { 4002 | "version": "3.1.1", 4003 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4004 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4005 | "dev": true, 4006 | "license": "ISC" 4007 | }, 4008 | "node_modules/yocto-queue": { 4009 | "version": "0.1.0", 4010 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4011 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4012 | "dev": true, 4013 | "license": "MIT", 4014 | "engines": { 4015 | "node": ">=10" 4016 | }, 4017 | "funding": { 4018 | "url": "https://github.com/sponsors/sindresorhus" 4019 | } 4020 | } 4021 | } 4022 | } 4023 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-extend-rule", 3 | "version": "4.0.0", 4 | "description": "Use the @extend at-rule and functional selectors in CSS", 5 | "author": "Jonathan Neal ", 6 | "license": "CC0-1.0", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/csstools/postcss-extend-rule.git" 10 | }, 11 | "homepage": "https://github.com/csstools/postcss-extend-rule#readme", 12 | "bugs": "https://github.com/csstools/postcss-extend-rule/issues", 13 | "main": "dist/index.cjs", 14 | "module": "dist/index.mjs", 15 | "exports": { 16 | ".": { 17 | "import": "./dist/index.mjs", 18 | "require": "./dist/index.cjs", 19 | "default": "./dist/index.mjs" 20 | } 21 | }, 22 | "files": [ 23 | "CHANGELOG.md", 24 | "LICENSE.md", 25 | "README.md", 26 | "dist" 27 | ], 28 | "scripts": { 29 | "build": "rollup --config rollup.mjs --silent", 30 | "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", 31 | "prepublishOnly": "npm run clean && npm run build && npm run test", 32 | "pretest": "npm run build", 33 | "test": "npm run lint && node --test", 34 | "test:rewrite-expects": "REWRITE_EXPECTS=true node --test", 35 | "lint": "eslint src/{*,**/*}.js test/*.mjs --cache --ignore-path .gitignore --quiet" 36 | }, 37 | "engines": { 38 | "node": "^12 || ^14 || >=16" 39 | }, 40 | "dependencies": { 41 | "postcss-nesting": "^10.1.2" 42 | }, 43 | "devDependencies": { 44 | "@babel/core": "^7.17.2", 45 | "@babel/eslint-parser": "^7.17.0", 46 | "@babel/preset-env": "^7.16.11", 47 | "@csstools/postcss-global-data": "^2.1.1", 48 | "@csstools/postcss-tape": "^4.1.1", 49 | "@rollup/plugin-babel": "^6.0.4", 50 | "eslint": "^8.8.0", 51 | "postcss": "^8.4.6", 52 | "rollup": "^4.9.1" 53 | }, 54 | "peerDependencies": { 55 | "postcss": "^8.4.6" 56 | }, 57 | "postcssConfig": { 58 | "config": ".tape.js" 59 | }, 60 | "eslintConfig": { 61 | "env": { 62 | "es6": true, 63 | "node": true 64 | }, 65 | "extends": "eslint:recommended", 66 | "rules": { 67 | "quotes": [ 68 | "error", 69 | "single" 70 | ], 71 | "comma-dangle": [ 72 | "error", 73 | "always-multiline" 74 | ], 75 | "semi": [ 76 | "error", 77 | "always" 78 | ], 79 | "curly": "error", 80 | "brace-style": "error", 81 | "indent": [ 82 | "error", 83 | "tab", 84 | { 85 | "SwitchCase": 1 86 | } 87 | ], 88 | "radix": "error" 89 | }, 90 | "parserOptions": { 91 | "ecmaVersion": 2020, 92 | "sourceType": "module" 93 | }, 94 | "root": true 95 | }, 96 | "keywords": [ 97 | "postcss", 98 | "css", 99 | "postcss-plugin", 100 | "extend", 101 | "matched", 102 | "matches", 103 | "match", 104 | "selectors", 105 | "subclassing", 106 | "subclasses", 107 | "subclass", 108 | "styling", 109 | "styles", 110 | "style", 111 | "placeholder", 112 | "placehold", 113 | "selectors", 114 | "selector", 115 | "chaining" 116 | ] 117 | } 118 | -------------------------------------------------------------------------------- /rollup.mjs: -------------------------------------------------------------------------------- 1 | import babel from '@rollup/plugin-babel'; 2 | 3 | export default { 4 | input: 'src/index.js', 5 | output: [ 6 | { file: 'dist/index.cjs', format: 'cjs', sourcemap: false, strict: false, exports: 'auto' }, 7 | { file: 'dist/index.mjs', format: 'esm', sourcemap: false, strict: false, exports: 'auto' }, 8 | ], 9 | plugins: [ 10 | babel({ 11 | babelHelpers: 'bundled', 12 | presets: [ 13 | ['@babel/env', { modules: false, targets: { node: 12 } }], 14 | ], 15 | }), 16 | ], 17 | }; 18 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import nesting from 'postcss-nesting'; 2 | 3 | // functional selector match 4 | const functionalSelectorMatch = /(^|[^\w-])(%[_a-zA-Z]+[_a-zA-Z0-9-]*)([^\w-]|$)/i; 5 | 6 | // plugin 7 | const postcssExtendRule = (rawopts) => { 8 | // options ( onFunctionalSelector, onRecursiveExtend, onUnusedExtend) 9 | const opts = Object(rawopts); 10 | 11 | let extendMatch = /^extend$/i; 12 | if (opts.name instanceof RegExp) { 13 | extendMatch = opts.name; 14 | } else if ('name' in opts) { 15 | extendMatch = new RegExp(`^${opts.name}$`, 'i'); 16 | } 17 | 18 | return { 19 | postcssPlugin: 'postcss-extend-rule', 20 | OnceExit(root, { postcss, result }) { 21 | const extendedAtRules = new WeakMap(); 22 | 23 | // for each extend at-rule 24 | root.walkAtRules(extendMatch, extendAtRule => { 25 | let parent = extendAtRule.parent; 26 | 27 | while (parent.parent && parent.parent !== root) { 28 | parent = parent.parent; 29 | } 30 | 31 | // do not revisit visited extend at-rules 32 | if (!extendedAtRules.has(extendAtRule)) { 33 | extendedAtRules.set(extendAtRule, true); 34 | 35 | // selector identifier 36 | const selectorIdMatch = getSelectorIdMatch(extendAtRule.params, postcss); 37 | 38 | // extending rules 39 | const extendingRules = getExtendingRules(selectorIdMatch, extendAtRule); 40 | 41 | // if there are extending rules 42 | if (extendingRules.length) { 43 | // replace the extend at-rule with the extending rules 44 | extendAtRule.replaceWith(extendingRules); 45 | 46 | // transform any nesting at-rules 47 | const cloneRoot = postcss.root().append(parent.clone()); 48 | 49 | // apply nesting (sync) 50 | postcss([nesting({ noIsPseudoSelector: true })]) 51 | .process(cloneRoot) 52 | .sync(); 53 | 54 | parent.replaceWith(cloneRoot); 55 | } else { 56 | // manage unused extend at-rules 57 | const unusedExtendMessage = `Unused extend at-rule "${extendAtRule.params}"`; 58 | 59 | if (opts.onUnusedExtend === 'throw') { 60 | throw extendAtRule.error(unusedExtendMessage, { word: extendAtRule.name }); 61 | } else if (opts.onUnusedExtend === 'warn') { 62 | extendAtRule.warn(result, unusedExtendMessage); 63 | } else if (opts.onUnusedExtend !== 'ignore') { 64 | extendAtRule.remove(); 65 | } 66 | } 67 | } else { 68 | // manage revisited extend at-rules 69 | const revisitedExtendMessage = `Revisited extend at-rule "${extendAtRule.params}"`; 70 | 71 | if (opts.onRecursiveExtend === 'throw') { 72 | throw extendAtRule.error(revisitedExtendMessage, { word: extendAtRule.name }); 73 | } else if (opts.onRecursiveExtend === 'warn') { 74 | extendAtRule.warn(result, revisitedExtendMessage); 75 | } else if (opts.onRecursiveExtend !== 'ignore') { 76 | extendAtRule.remove(); 77 | } 78 | } 79 | }); 80 | 81 | root.walkRules(functionalSelectorMatch, functionalRule => { 82 | // manage encountered functional selectors 83 | const functionalSelectorMessage = `Encountered functional selector "${functionalRule.selector}"`; 84 | 85 | if (opts.onFunctionalSelector === 'throw') { 86 | throw functionalRule.error(functionalSelectorMessage, { word: functionalRule.selector.match(functionalSelectorMatch)[1] }); 87 | } else if (opts.onFunctionalSelector === 'warn') { 88 | functionalRule.warn(result, functionalSelectorMessage); 89 | } else if (opts.onFunctionalSelector !== 'ignore') { 90 | functionalRule.remove(); 91 | } 92 | }); 93 | }, 94 | }; 95 | }; 96 | 97 | function getExtendingRules(selectorIdMatch, extendAtRule) { 98 | // extending rules 99 | const extendingRules = []; 100 | 101 | // for each rule found from root of the extend at-rule with a matching selector identifier 102 | extendAtRule.root().walkRules(selectorIdMatch, matchingRule => { 103 | // nesting selectors for the selectors matching the selector identifier 104 | const nestingSelectors = matchingRule.selectors.filter( 105 | selector => selectorIdMatch.test(selector), 106 | ).map( 107 | selector => selector.replace(selectorIdMatch, '$1&$3'), 108 | ).join(','); 109 | 110 | // matching rule’s cloned nodes 111 | const nestingNodes = matchingRule.clone().nodes; 112 | 113 | // clone the matching rule as a nested rule 114 | let clone = extendAtRule.clone({ 115 | name: 'nest', 116 | params: nestingSelectors, 117 | nodes: nestingNodes, 118 | // empty the extending rules, as they are likely non-conforming 119 | raws: {}, 120 | }); 121 | 122 | // preserve nesting of parent rules and at-rules 123 | let parent = matchingRule.parent; 124 | 125 | while (parent && (parent.type === 'rule' || parent.type === 'atrule')) { 126 | clone = parent.clone().removeAll().append([ clone ]); 127 | 128 | parent = parent.parent; 129 | } 130 | 131 | // push the matching rule to the extending rules 132 | extendingRules.push(clone); 133 | }); 134 | 135 | // return the extending rules 136 | return extendingRules; 137 | } 138 | 139 | function getSelectorIdMatch(selectorIds, postcss) { 140 | // escape the contents of the selector id to avoid being parsed as regex 141 | const escapedSelectorIds = postcss.list.comma(selectorIds).map( 142 | selectorId => selectorId.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 143 | ).join('|'); 144 | 145 | // selector unattached to an existing selector 146 | return new RegExp(`(^|[^\\w-]!.!#)(${escapedSelectorIds})([^\\w-]|$)`, ''); 147 | } 148 | 149 | postcssExtendRule.postcss = true; 150 | 151 | export default postcssExtendRule; 152 | -------------------------------------------------------------------------------- /test/_tape.mjs: -------------------------------------------------------------------------------- 1 | import { postcssTape } from '@csstools/postcss-tape'; 2 | import plugin from 'postcss-extend-rule'; 3 | import postcssNesting from 'postcss-nesting'; 4 | import postcssGlobalData from '@csstools/postcss-global-data'; 5 | 6 | postcssTape(plugin)({ 7 | 'basic': { 8 | message: 'supports @extend usage', 9 | }, 10 | 'basic:name': { 11 | message: 'ignores @extend usage when { name: "postcss-extend" }', 12 | options: { 13 | name: 'postcss-extend', 14 | }, 15 | }, 16 | 'basic-postcss-name': { 17 | message: 'supports @postcss-extend when { name: "postcss-extend" }', 18 | options: { 19 | name: 'postcss-extend', 20 | }, 21 | }, 22 | 'basic-button': { 23 | message: 'supports @extend usage with same tag name and class name', 24 | }, 25 | 'injected-extend': { 26 | message: 'supports injected extend usage', 27 | plugins: [ 28 | plugin, 29 | postcssGlobalData({ 30 | files: [ 31 | 'test/injected/extend.css', 32 | ], 33 | }), 34 | ], 35 | }, 36 | 'injected-styles': { 37 | message: 'supports injected styles usage', 38 | plugins: [ 39 | plugin, 40 | postcssGlobalData({ 41 | files: [ 42 | 'test/injected/style.css', 43 | ], 44 | }), 45 | ], 46 | }, 47 | 'advanced': { 48 | message: 'supports mixed usage (with postcss-nesting)', 49 | plugins: [postcssNesting, plugin], 50 | }, 51 | 'nested-media': { 52 | 'message': 'supports nested @media usage', 53 | }, 54 | 'nested-media:nesting-first': { 55 | 'message': 'supports nested @media usage when postcss-nesting runs first', 56 | plugins: [postcssNesting, plugin], 57 | }, 58 | 'nested-media:nesting-second': { 59 | 'message': 'supports nested @media usage when postcss-nesting runs second', 60 | plugins: [plugin, postcssNesting], 61 | }, 62 | 'error': { 63 | message: 'manages error-ridden usage', 64 | }, 65 | 'error:ignore': { 66 | message: 'manages error-ridden usage with { onFunctionalSelector: "ignore", onRecursiveExtend: "ignore", onUnusedExtend: "ignore" } options', 67 | options: { 68 | onFunctionalSelector: 'ignore', 69 | onRecursiveExtend: 'ignore', 70 | onUnusedExtend: 'ignore', 71 | }, 72 | }, 73 | 'error:warn': { 74 | message: 'manages error-ridden usage with { onFunctionalSelector: "warn", onRecursiveExtend: "warn", onUnusedExtend: "warn" } options', 75 | options: { 76 | onFunctionalSelector: 'warn', 77 | onRecursiveExtend: 'warn', 78 | onUnusedExtend: 'warn', 79 | }, 80 | warnings: 2, 81 | }, 82 | 'error:throw': { 83 | message: 'manages error-ridden usage with { onFunctionalSelector: "throw", onRecursiveExtend: "throw", onUnusedExtend: "throw" } options', 84 | options: { 85 | onFunctionalSelector: 'throw', 86 | onRecursiveExtend: 'throw', 87 | onUnusedExtend: 'throw', 88 | }, 89 | exception: /Unused extend at-rule "some-non-existent-selector"/, 90 | }, 91 | 'error:throw-on-functional-selectors': { 92 | message: 'manages error-ridden usage with { onFunctionalSelector: "throw" } options', 93 | options: { 94 | onFunctionalSelector: 'throw', 95 | }, 96 | exception: /Encountered functional selector "%test-placeholder"/, 97 | }, 98 | 'issue-8': { 99 | message: 'https://github.com/csstools/postcss-extend-rule/issues/8', 100 | }, 101 | 'issue-10': { 102 | message: 'https://github.com/csstools/postcss-extend-rule/issues/10', 103 | }, 104 | 'spec-example-1': { 105 | message: 'specification example 1', 106 | }, 107 | 'spec-example-3': { 108 | message: 'specification example 3', 109 | }, 110 | 'spec-example-4': { 111 | message: 'specification example 4', 112 | }, 113 | 'spec-example-5': { 114 | message: 'specification example 5', 115 | }, 116 | 'spec-example-6': { 117 | message: 'specification example 6', 118 | }, 119 | 'spec-example-7': { 120 | message: 'specification example 7', 121 | }, 122 | }); 123 | -------------------------------------------------------------------------------- /test/advanced.css: -------------------------------------------------------------------------------- 1 | %thick-border { 2 | border: thick dotted red; 3 | } 4 | 5 | .serious-modal { 6 | font-style: normal; 7 | font-weight: bold; 8 | 9 | @media (max-width: 240px) { 10 | @extend .modal:hover; 11 | } 12 | } 13 | 14 | .modal { 15 | @extend %thick-border; 16 | 17 | color: red; 18 | 19 | &:hover { 20 | &:not(:focus) { 21 | outline: none; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /test/advanced.expect.css: -------------------------------------------------------------------------------- 1 | .serious-modal { 2 | font-style: normal; 3 | font-weight: bold; 4 | } 5 | 6 | @media (max-width: 240px) { 7 | 8 | .serious-modal:not(:focus) { 9 | outline: none; 10 | } 11 | } 12 | 13 | .modal { 14 | border: thick dotted red; 15 | } 16 | 17 | .modal { 18 | 19 | color: red; 20 | } 21 | 22 | .modal:hover:not(:focus) { 23 | outline: none; 24 | } 25 | -------------------------------------------------------------------------------- /test/basic-button.css: -------------------------------------------------------------------------------- 1 | button { 2 | color: red; 3 | } 4 | 5 | .button { 6 | @extend button; 7 | background: blue; 8 | } 9 | 10 | #button { 11 | @extend button; 12 | background: lime; 13 | } 14 | -------------------------------------------------------------------------------- /test/basic-button.expect.css: -------------------------------------------------------------------------------- 1 | button { 2 | color: red; 3 | } 4 | 5 | .button { 6 | color: red; 7 | } 8 | 9 | .button { 10 | background: blue; 11 | } 12 | 13 | #button { 14 | color: red; 15 | } 16 | 17 | #button { 18 | background: lime; 19 | } 20 | -------------------------------------------------------------------------------- /test/basic-postcss-name.css: -------------------------------------------------------------------------------- 1 | .modal { 2 | border: thick dotted red; 3 | color: red; 4 | } 5 | 6 | .modal:hover { 7 | outline: none; 8 | } 9 | 10 | .serious-modal { 11 | @postcss-extend .modal; 12 | 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /test/basic-postcss-name.expect.css: -------------------------------------------------------------------------------- 1 | .modal { 2 | border: thick dotted red; 3 | color: red; 4 | } 5 | 6 | .modal:hover { 7 | outline: none; 8 | } 9 | 10 | .serious-modal { 11 | border: thick dotted red; 12 | color: red; 13 | } 14 | 15 | .serious-modal:hover { 16 | outline: none; 17 | } 18 | 19 | .serious-modal { 20 | 21 | font-weight: bold; 22 | } 23 | -------------------------------------------------------------------------------- /test/basic.css: -------------------------------------------------------------------------------- 1 | .modal { 2 | border: thick dotted red; 3 | color: red; 4 | } 5 | 6 | .modal:hover { 7 | outline: none; 8 | } 9 | 10 | .serious-modal { 11 | @extend .modal; 12 | 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /test/basic.expect.css: -------------------------------------------------------------------------------- 1 | .modal { 2 | border: thick dotted red; 3 | color: red; 4 | } 5 | 6 | .modal:hover { 7 | outline: none; 8 | } 9 | 10 | .serious-modal { 11 | border: thick dotted red; 12 | color: red; 13 | } 14 | 15 | .serious-modal:hover { 16 | outline: none; 17 | } 18 | 19 | .serious-modal { 20 | 21 | font-weight: bold; 22 | } 23 | -------------------------------------------------------------------------------- /test/basic.name.expect.css: -------------------------------------------------------------------------------- 1 | .modal { 2 | border: thick dotted red; 3 | color: red; 4 | } 5 | 6 | .modal:hover { 7 | outline: none; 8 | } 9 | 10 | .serious-modal { 11 | @extend .modal; 12 | 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /test/error.css: -------------------------------------------------------------------------------- 1 | test-does-not-extend-non-existent-selector { 2 | @extend some-non-existent-selector; 3 | } 4 | 5 | test-does-not-extend-itself { 6 | @extend test-does-not-extend-itself; 7 | } 8 | 9 | test-does-not-extend-itself-cleverly-1 { 10 | @extend test-does-not-extend-itself-cleverly-2; 11 | } 12 | 13 | test-does-not-extend-itself-cleverly-2 { 14 | @extend test-does-not-extend-itself-cleverly-1; 15 | } 16 | 17 | %test-placeholder { 18 | @extend %test-placeholder; 19 | } 20 | -------------------------------------------------------------------------------- /test/error.expect.css: -------------------------------------------------------------------------------- 1 | test-does-not-extend-non-existent-selector { 2 | } 3 | 4 | test-does-not-extend-itself { 5 | @extend test-does-not-extend-itself; 6 | } 7 | 8 | test-does-not-extend-itself-cleverly-1 { 9 | @extend test-does-not-extend-itself-cleverly-1; 10 | } 11 | 12 | test-does-not-extend-itself-cleverly-2 { 13 | @extend test-does-not-extend-itself-cleverly-1; 14 | } 15 | -------------------------------------------------------------------------------- /test/error.ignore.expect.css: -------------------------------------------------------------------------------- 1 | test-does-not-extend-non-existent-selector { 2 | @extend some-non-existent-selector; 3 | } 4 | 5 | test-does-not-extend-itself { 6 | @extend test-does-not-extend-itself; 7 | } 8 | 9 | test-does-not-extend-itself-cleverly-1 { 10 | @extend test-does-not-extend-itself-cleverly-1; 11 | } 12 | 13 | test-does-not-extend-itself-cleverly-2 { 14 | @extend test-does-not-extend-itself-cleverly-1; 15 | } 16 | 17 | %test-placeholder { 18 | @extend %test-placeholder; 19 | } 20 | -------------------------------------------------------------------------------- /test/error.warn.expect.css: -------------------------------------------------------------------------------- 1 | test-does-not-extend-non-existent-selector { 2 | @extend some-non-existent-selector; 3 | } 4 | 5 | test-does-not-extend-itself { 6 | @extend test-does-not-extend-itself; 7 | } 8 | 9 | test-does-not-extend-itself-cleverly-1 { 10 | @extend test-does-not-extend-itself-cleverly-1; 11 | } 12 | 13 | test-does-not-extend-itself-cleverly-2 { 14 | @extend test-does-not-extend-itself-cleverly-1; 15 | } 16 | 17 | %test-placeholder { 18 | @extend %test-placeholder; 19 | } 20 | -------------------------------------------------------------------------------- /test/injected-extend.css: -------------------------------------------------------------------------------- 1 | .your-button { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/injected-extend.expect.css: -------------------------------------------------------------------------------- 1 | .your-button { 2 | color: green; 3 | }.button { 4 | color: green; 5 | } 6 | -------------------------------------------------------------------------------- /test/injected-styles.css: -------------------------------------------------------------------------------- 1 | .my-button { 2 | @extend .button; 3 | } 4 | -------------------------------------------------------------------------------- /test/injected-styles.expect.css: -------------------------------------------------------------------------------- 1 | .my-button { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/injected/extend.css: -------------------------------------------------------------------------------- 1 | .button { 2 | @extend .your-button; 3 | } 4 | -------------------------------------------------------------------------------- /test/injected/style.css: -------------------------------------------------------------------------------- 1 | .button { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/issue-10.css: -------------------------------------------------------------------------------- 1 | %foo { 2 | right: 0; 3 | } 4 | 5 | %bar { 6 | left: 0; 7 | } 8 | 9 | .baz { 10 | @extend %foo; 11 | @extend %bar; 12 | } 13 | -------------------------------------------------------------------------------- /test/issue-10.expect.css: -------------------------------------------------------------------------------- 1 | .baz { 2 | right: 0; 3 | } 4 | 5 | .baz { 6 | @extend %bar; 7 | } 8 | -------------------------------------------------------------------------------- /test/issue-8.css: -------------------------------------------------------------------------------- 1 | .test { 2 | display: none; 3 | } 4 | 5 | .thing:before { 6 | @extend .test; 7 | } 8 | -------------------------------------------------------------------------------- /test/issue-8.expect.css: -------------------------------------------------------------------------------- 1 | .test { 2 | display: none; 3 | } 4 | 5 | .thing:before { 6 | display: none; 7 | } 8 | -------------------------------------------------------------------------------- /test/nested-media.css: -------------------------------------------------------------------------------- 1 | .my_placeholder { 2 | color: red; 3 | 4 | @media screen and (min-width: 920px) { 5 | color: green; 6 | } 7 | } 8 | 9 | .test-content { 10 | @extend .my_placeholder; 11 | } 12 | -------------------------------------------------------------------------------- /test/nested-media.expect.css: -------------------------------------------------------------------------------- 1 | .my_placeholder { 2 | color: red; 3 | 4 | @media screen and (min-width: 920px) { 5 | color: green; 6 | } 7 | } 8 | 9 | .test-content { 10 | color: red; 11 | } 12 | 13 | @media screen and (min-width: 920px) { 14 | 15 | .test-content { 16 | color: green; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /test/nested-media.nesting-first.expect.css: -------------------------------------------------------------------------------- 1 | .my_placeholder { 2 | color: red; 3 | } 4 | 5 | @media screen and (min-width: 920px) { 6 | 7 | .my_placeholder { 8 | color: green; 9 | } 10 | } 11 | 12 | .test-content { 13 | color: red; 14 | } 15 | 16 | @media screen and (min-width: 920px) { 17 | 18 | .test-content { 19 | color: green; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /test/nested-media.nesting-second.expect.css: -------------------------------------------------------------------------------- 1 | .my_placeholder { 2 | color: red; 3 | } 4 | 5 | @media screen and (min-width: 920px) { 6 | 7 | .my_placeholder { 8 | color: green; 9 | } 10 | } 11 | 12 | .test-content { 13 | color: red; 14 | } 15 | 16 | @media screen and (min-width: 920px) { 17 | 18 | .test-content { 19 | color: green; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /test/spec-example-1.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | border: thick dotted red; 4 | } 5 | 6 | .serious-error { 7 | @extend .error; 8 | font-weight: bold; 9 | } 10 | -------------------------------------------------------------------------------- /test/spec-example-1.expect.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | border: thick dotted red; 4 | } 5 | 6 | .serious-error { 7 | color: red; 8 | border: thick dotted red; 9 | } 10 | 11 | .serious-error { 12 | font-weight: bold; 13 | } 14 | -------------------------------------------------------------------------------- /test/spec-example-3.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | } 4 | 5 | @media (width > 600px) { 6 | .serious-error { 7 | @extend .error; 8 | 9 | font-weight: bold; 10 | } 11 | 12 | .error { 13 | width: 100%; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/spec-example-3.expect.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | } 4 | 5 | @media (width > 600px) { 6 | .serious-error { 7 | color: red; 8 | } 9 | 10 | @media (width > 600px) { 11 | .serious-error { 12 | width: 100%; 13 | } 14 | } 15 | .serious-error { 16 | 17 | font-weight: bold; 18 | } 19 | 20 | .error { 21 | width: 100%; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /test/spec-example-4.css: -------------------------------------------------------------------------------- 1 | button { 2 | color: green; 3 | } 4 | 5 | .my-button { 6 | @extend button; 7 | } 8 | 9 | .other-button { 10 | color: orange; 11 | } 12 | 13 | .other-button:active { 14 | color: purple; 15 | } 16 | 17 | .perma-pressed-button { 18 | @extend .other-button:active; 19 | } 20 | -------------------------------------------------------------------------------- /test/spec-example-4.expect.css: -------------------------------------------------------------------------------- 1 | button { 2 | color: green; 3 | } 4 | 5 | .my-button { 6 | color: green; 7 | } 8 | 9 | .other-button { 10 | color: orange; 11 | } 12 | 13 | .other-button:active { 14 | color: purple; 15 | } 16 | 17 | .perma-pressed-button { 18 | color: purple; 19 | } 20 | -------------------------------------------------------------------------------- /test/spec-example-5.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | } 4 | 5 | .serious-error { 6 | @extend .error; 7 | 8 | font-weight: bold; 9 | } 10 | 11 | .super-serious-error { 12 | @extend .serious-error; 13 | 14 | animation: flashing 1s infinite; 15 | } 16 | -------------------------------------------------------------------------------- /test/spec-example-5.expect.css: -------------------------------------------------------------------------------- 1 | .error { 2 | color: red; 3 | } 4 | 5 | .serious-error { 6 | color: red; 7 | } 8 | 9 | .serious-error { 10 | 11 | font-weight: bold; 12 | } 13 | 14 | .super-serious-error { 15 | color: red; 16 | } 17 | 18 | .super-serious-error { 19 | 20 | font-weight: bold; 21 | } 22 | 23 | .super-serious-error { 24 | 25 | animation: flashing 1s infinite; 26 | } 27 | -------------------------------------------------------------------------------- /test/spec-example-6.css: -------------------------------------------------------------------------------- 1 | .media-block { 2 | overflow: auto; 3 | } 4 | 5 | .media-block > img { 6 | float: left; 7 | } 8 | 9 | .image-post { 10 | @extend .media-block; 11 | /* additional styles to tweak the display */ 12 | } 13 | -------------------------------------------------------------------------------- /test/spec-example-6.expect.css: -------------------------------------------------------------------------------- 1 | .media-block { 2 | overflow: auto; 3 | } 4 | 5 | .media-block > img { 6 | float: left; 7 | } 8 | 9 | .image-post { 10 | overflow: auto; 11 | } 12 | 13 | .image-post > img { 14 | float: left; 15 | } 16 | 17 | /* additional styles to tweak the display */ 18 | -------------------------------------------------------------------------------- /test/spec-example-7.css: -------------------------------------------------------------------------------- 1 | %media-block { 2 | overflow: auto; 3 | } 4 | 5 | %media-block>img { 6 | float: left; 7 | } 8 | 9 | .image-post { 10 | @extend %media-block; 11 | } 12 | -------------------------------------------------------------------------------- /test/spec-example-7.expect.css: -------------------------------------------------------------------------------- 1 | .image-post { 2 | overflow: auto; 3 | } 4 | 5 | .image-post>img { 6 | float: left; 7 | } 8 | --------------------------------------------------------------------------------