├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demos ├── inp-demo.html └── native-vs-polyfill.html ├── package-lock.json ├── package.json ├── rollup.config.js ├── src ├── eventObserver.ts ├── index.ts ├── polyfill.ts └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "printWidth": 120 4 | } 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ### v0.5.1 (2024-12-16) 4 | 5 | - Avoid JSON encode -> decode when cloning the first input entry. Resolves issues with cyclic references. 6 | 7 | ### v0.5.0 (2024-12-16) 8 | 9 | - Improve accuracy by handling the following additional events: `auxclick`, `contextmenu`, `pointercancel` 10 | - Report event timings sooner after the interaction ends (compared to what it used to be) 11 | 12 | ### v0.4.0 (2024-12-10) 13 | 14 | - Provide support for first-input events 15 | - Event entry duration rounded to the nearest 8ms 16 | - More accurate duration calc when multiple events are bundled in the same frame 17 | - Bug fix: Treat durationThreshold: 0 as 16ms instead of ignoring it 18 | - Bug fix: When eventTypes is used in .observe passthrough for anything other than the types handled by the polyfill 19 | 20 | ### v0.3.0 (2024-12-06) 21 | 22 | - Initial public release 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `performance-event-timing-polyfill` 2 | 3 | # Overview 4 | 5 | This is a small library which provides a polyfill for the [PerformanceEventTiming API](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming) such that is enough for measuring INP across all browsers. 6 | 7 | ## Why is this useful? 8 | 9 | Currently only Chromium based browsers are reporting INP data. This means that interactivity of sites can be improved only for these browsers. 10 | Reality is that other browsers like Safari and Firefox exist and in some cases they form the largest visitor base for a website. Not having data for the user experience there means these sites cannot be optimized for the users of these browsers. Chromium's data cannot be used as a proxy because we know that: 11 | - events are handled differently sometimes 12 | - third parties might behave differently for these browsers 13 | - the site itself might have different behavior for these browsers 14 | 15 | 16 | Using this library you can get INP data for all browsers and ensure great user experience for everybody :tada: 17 | 18 | # Demo 19 | 20 | You can test how the polyfill works on this modified version of the popular [INP demo](https://uxify-ltd.github.io/performance-event-timing-polyfill/demos/inp-demo.html) page. 21 | 22 | # Usage 23 | 24 | ## Basic usage 25 | 26 | In order to ensure most accurate results load the script as early in your page as possible. 27 | Make sure to load it before you load your code which measures INP. 28 | 29 | ```HTML 30 | 31 | ``` 32 | 33 | ## Custom timing calculation 34 | By default the polyfill will try to emulate native [PerformanceEventTiming API](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEventTiming) entries. However internally the library is tracking the events a bit more granularly. You can subscribe to the raw event measure entries and calculate INP yourself, if you so desire (not recommended). 35 | 36 | ```JavaScript 37 | import { onInteraction } from 'https://unpkg.com/performance-event-timing-polyfill?module'; 38 | onInteraction(console.log); 39 | ``` 40 | 41 | # Browser support 42 | 43 | All major browsers are supported. For Chrome, the polyfill doesn't activate by default since this API is provided natively. But the event observer is still active. This means you can still use `onInteraction()` from this library which could be useful if you need apples to apples comparisons across browsers. 44 | 45 | # Caveats 46 | 47 | ## Overlapping interactions 48 | 49 | When there are overlapping interactions, attribution comes out a bit off currently. Further investigation is needed. 50 | 51 | ## Must be loaded early 52 | 53 | Data may be off if this polyfill is not loaded early enough in the page lifecycle. Ideally it should be loaded before any event listeners are registered and before any performance observers are created. This is needed to ensure that the event handlers added by this library are the first to execute. Otherwise calls to `stopImmediatePropagation()` can prevent the library from detecting an event. 54 | 55 | ## Not all events are measured 56 | 57 | Only `pointerdown`, `mousedown`, `pointerup`, `mouseup`, `pointercancel`, `click`, `auxclick`, `contextmenu`, `keydown`, `keypress`, `keyup` are measured for now. 58 | 59 | # Development 60 | 61 | ## Building the code 62 | 63 | To build the code once (production) run 64 | 65 | `npm run build` 66 | 67 | To build and watch for changes (dev) run 68 | 69 | `npm run dev` 70 | 71 | ## Contributing 72 | 73 | Feel free to open issues or PRs to report issues or suggest improvements! -------------------------------------------------------------------------------- /demos/inp-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 19 | 20 | INP ⚡ Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 |

Interaction to Next Paint (INP) ⚡ Live Demo

34 |
35 | To help you get a "feel" for the INP metric 👉 36 | (Learn more) 37 |
38 |
39 |
40 |
41 |
42 |

Instructions

43 |
    44 |
  1. Use the controls below to add interaction latency.
  2. 45 |
  3. Start interacting with the page (type, click, etc.)
  4. 46 |
  5. Notice how the experience affects the INP value.
  6. 47 |
  7. Refresh the page to start over.
  8. 48 |
49 |
50 | 51 |

Introduce periodic main thread blocking

52 |
53 |
54 | 55 | 62 | Never 63 | Often 64 |
65 |
66 | 67 |

Customize event processing times

68 |
69 |
70 | 74 | 81 | 0 82 | 200 83 |
84 | 85 |
86 | 90 | 97 | 0 98 | 200 99 |
100 | 101 |
102 | 106 | 113 | 0 114 | 200 115 |
116 | 117 |
118 | 122 | 129 | 0 130 | 200 131 |
132 |
133 |
134 | 135 |
136 |
137 |
138 |
139 | 143 | 0 144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 | 155 |
156 |
157 |
158 | 159 |

Start typing...

160 |
161 | 162 |
163 |

Event log (descending order)

164 |
165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 |
Interaction No.Event TypeDurationTimestamp
176 |
177 |
178 |
179 | 191 | 194 | 195 | 196 | 197 | 198 | 199 | -------------------------------------------------------------------------------- /demos/native-vs-polyfill.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 19 | 20 | INP ⚡ Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 41 | 42 | 43 |
44 |

Interaction to Next Paint (INP) ⚡ Live Demo

45 |
46 | To help you get a "feel" for the INP metric 👉 47 | (Learn more) 48 |
49 |
50 |
51 |
52 |
53 |

Instructions

54 |
    55 |
  1. Use the controls below to add interaction latency.
  2. 56 |
  3. Start interacting with the page (type, click, etc.)
  4. 57 |
  5. Notice how the experience affects the INP value.
  6. 58 |
  7. Refresh the page to start over.
  8. 59 |
60 |
61 | 62 |

Introduce periodic main thread blocking

63 |
64 |
65 | 66 | 73 | Never 74 | Often 75 |
76 |
77 | 78 |

Customize event processing times

79 |
80 |
81 | 85 | 92 | 0 93 | 200 94 |
95 | 96 |
97 | 101 | 108 | 0 109 | 200 110 |
111 | 112 |
113 | 117 | 124 | 0 125 | 200 126 |
127 | 128 |
129 | 133 | 140 | 0 141 | 200 142 |
143 |
144 |
145 | 146 |
147 |
148 |
149 |
150 | 154 | 0 155 |
156 |
157 |
158 |
159 | 163 | 0 164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 | 175 |
176 |
177 |
178 | 179 |

Start typing...

180 |
181 | 182 |
183 |

Event log (descending order)

184 |
185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 |
Interaction No.Event TypeDurationTimestamp
196 |
197 |
198 |
199 | 211 | 214 | 215 | 253 | 254 | 255 | 256 | 257 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "performance-event-timing-polyfill", 3 | "version": "0.5.4", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "performance-event-timing-polyfill", 9 | "version": "0.5.4", 10 | "license": "Apache-2.0", 11 | "devDependencies": { 12 | "@rollup/plugin-terser": "^0.4.4", 13 | "@typescript-eslint/eslint-plugin": "^6.16.0", 14 | "@typescript-eslint/parser": "^6.16.0", 15 | "npm-run-all": "^4.1.5", 16 | "prettier": "^3.1.1", 17 | "rollup": "^4.9.1", 18 | "typescript": "^5.3.3" 19 | } 20 | }, 21 | "node_modules/@eslint-community/eslint-utils": { 22 | "version": "4.4.1", 23 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 24 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 25 | "dev": true, 26 | "license": "MIT", 27 | "dependencies": { 28 | "eslint-visitor-keys": "^3.4.3" 29 | }, 30 | "engines": { 31 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 32 | }, 33 | "funding": { 34 | "url": "https://opencollective.com/eslint" 35 | }, 36 | "peerDependencies": { 37 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 38 | } 39 | }, 40 | "node_modules/@eslint-community/regexpp": { 41 | "version": "4.12.1", 42 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 43 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 44 | "dev": true, 45 | "license": "MIT", 46 | "engines": { 47 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 48 | } 49 | }, 50 | "node_modules/@eslint/eslintrc": { 51 | "version": "2.1.4", 52 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 53 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 54 | "dev": true, 55 | "license": "MIT", 56 | "peer": true, 57 | "dependencies": { 58 | "ajv": "^6.12.4", 59 | "debug": "^4.3.2", 60 | "espree": "^9.6.0", 61 | "globals": "^13.19.0", 62 | "ignore": "^5.2.0", 63 | "import-fresh": "^3.2.1", 64 | "js-yaml": "^4.1.0", 65 | "minimatch": "^3.1.2", 66 | "strip-json-comments": "^3.1.1" 67 | }, 68 | "engines": { 69 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 70 | }, 71 | "funding": { 72 | "url": "https://opencollective.com/eslint" 73 | } 74 | }, 75 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 76 | "version": "1.1.11", 77 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 78 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 79 | "dev": true, 80 | "license": "MIT", 81 | "peer": true, 82 | "dependencies": { 83 | "balanced-match": "^1.0.0", 84 | "concat-map": "0.0.1" 85 | } 86 | }, 87 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 88 | "version": "3.1.2", 89 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 90 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 91 | "dev": true, 92 | "license": "ISC", 93 | "peer": true, 94 | "dependencies": { 95 | "brace-expansion": "^1.1.7" 96 | }, 97 | "engines": { 98 | "node": "*" 99 | } 100 | }, 101 | "node_modules/@eslint/js": { 102 | "version": "8.57.1", 103 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 104 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 105 | "dev": true, 106 | "license": "MIT", 107 | "peer": true, 108 | "engines": { 109 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 110 | } 111 | }, 112 | "node_modules/@humanwhocodes/config-array": { 113 | "version": "0.13.0", 114 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 115 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 116 | "deprecated": "Use @eslint/config-array instead", 117 | "dev": true, 118 | "license": "Apache-2.0", 119 | "peer": true, 120 | "dependencies": { 121 | "@humanwhocodes/object-schema": "^2.0.3", 122 | "debug": "^4.3.1", 123 | "minimatch": "^3.0.5" 124 | }, 125 | "engines": { 126 | "node": ">=10.10.0" 127 | } 128 | }, 129 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 130 | "version": "1.1.11", 131 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 132 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 133 | "dev": true, 134 | "license": "MIT", 135 | "peer": true, 136 | "dependencies": { 137 | "balanced-match": "^1.0.0", 138 | "concat-map": "0.0.1" 139 | } 140 | }, 141 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 142 | "version": "3.1.2", 143 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 144 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 145 | "dev": true, 146 | "license": "ISC", 147 | "peer": true, 148 | "dependencies": { 149 | "brace-expansion": "^1.1.7" 150 | }, 151 | "engines": { 152 | "node": "*" 153 | } 154 | }, 155 | "node_modules/@humanwhocodes/module-importer": { 156 | "version": "1.0.1", 157 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 158 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 159 | "dev": true, 160 | "license": "Apache-2.0", 161 | "peer": true, 162 | "engines": { 163 | "node": ">=12.22" 164 | }, 165 | "funding": { 166 | "type": "github", 167 | "url": "https://github.com/sponsors/nzakas" 168 | } 169 | }, 170 | "node_modules/@humanwhocodes/object-schema": { 171 | "version": "2.0.3", 172 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 173 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 174 | "deprecated": "Use @eslint/object-schema instead", 175 | "dev": true, 176 | "license": "BSD-3-Clause", 177 | "peer": true 178 | }, 179 | "node_modules/@jridgewell/gen-mapping": { 180 | "version": "0.3.5", 181 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 182 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 183 | "dev": true, 184 | "license": "MIT", 185 | "dependencies": { 186 | "@jridgewell/set-array": "^1.2.1", 187 | "@jridgewell/sourcemap-codec": "^1.4.10", 188 | "@jridgewell/trace-mapping": "^0.3.24" 189 | }, 190 | "engines": { 191 | "node": ">=6.0.0" 192 | } 193 | }, 194 | "node_modules/@jridgewell/resolve-uri": { 195 | "version": "3.1.2", 196 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 197 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 198 | "dev": true, 199 | "license": "MIT", 200 | "engines": { 201 | "node": ">=6.0.0" 202 | } 203 | }, 204 | "node_modules/@jridgewell/set-array": { 205 | "version": "1.2.1", 206 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 207 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 208 | "dev": true, 209 | "license": "MIT", 210 | "engines": { 211 | "node": ">=6.0.0" 212 | } 213 | }, 214 | "node_modules/@jridgewell/source-map": { 215 | "version": "0.3.6", 216 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", 217 | "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", 218 | "dev": true, 219 | "license": "MIT", 220 | "dependencies": { 221 | "@jridgewell/gen-mapping": "^0.3.5", 222 | "@jridgewell/trace-mapping": "^0.3.25" 223 | } 224 | }, 225 | "node_modules/@jridgewell/sourcemap-codec": { 226 | "version": "1.5.0", 227 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 228 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 229 | "dev": true, 230 | "license": "MIT" 231 | }, 232 | "node_modules/@jridgewell/trace-mapping": { 233 | "version": "0.3.25", 234 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 235 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 236 | "dev": true, 237 | "license": "MIT", 238 | "dependencies": { 239 | "@jridgewell/resolve-uri": "^3.1.0", 240 | "@jridgewell/sourcemap-codec": "^1.4.14" 241 | } 242 | }, 243 | "node_modules/@nodelib/fs.scandir": { 244 | "version": "2.1.5", 245 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 246 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 247 | "dev": true, 248 | "license": "MIT", 249 | "dependencies": { 250 | "@nodelib/fs.stat": "2.0.5", 251 | "run-parallel": "^1.1.9" 252 | }, 253 | "engines": { 254 | "node": ">= 8" 255 | } 256 | }, 257 | "node_modules/@nodelib/fs.stat": { 258 | "version": "2.0.5", 259 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 260 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 261 | "dev": true, 262 | "license": "MIT", 263 | "engines": { 264 | "node": ">= 8" 265 | } 266 | }, 267 | "node_modules/@nodelib/fs.walk": { 268 | "version": "1.2.8", 269 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 270 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 271 | "dev": true, 272 | "license": "MIT", 273 | "dependencies": { 274 | "@nodelib/fs.scandir": "2.1.5", 275 | "fastq": "^1.6.0" 276 | }, 277 | "engines": { 278 | "node": ">= 8" 279 | } 280 | }, 281 | "node_modules/@rollup/plugin-terser": { 282 | "version": "0.4.4", 283 | "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", 284 | "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", 285 | "dev": true, 286 | "license": "MIT", 287 | "dependencies": { 288 | "serialize-javascript": "^6.0.1", 289 | "smob": "^1.0.0", 290 | "terser": "^5.17.4" 291 | }, 292 | "engines": { 293 | "node": ">=14.0.0" 294 | }, 295 | "peerDependencies": { 296 | "rollup": "^2.0.0||^3.0.0||^4.0.0" 297 | }, 298 | "peerDependenciesMeta": { 299 | "rollup": { 300 | "optional": true 301 | } 302 | } 303 | }, 304 | "node_modules/@rollup/rollup-android-arm-eabi": { 305 | "version": "4.28.0", 306 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", 307 | "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", 308 | "cpu": [ 309 | "arm" 310 | ], 311 | "dev": true, 312 | "license": "MIT", 313 | "optional": true, 314 | "os": [ 315 | "android" 316 | ] 317 | }, 318 | "node_modules/@rollup/rollup-android-arm64": { 319 | "version": "4.28.0", 320 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", 321 | "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", 322 | "cpu": [ 323 | "arm64" 324 | ], 325 | "dev": true, 326 | "license": "MIT", 327 | "optional": true, 328 | "os": [ 329 | "android" 330 | ] 331 | }, 332 | "node_modules/@rollup/rollup-darwin-arm64": { 333 | "version": "4.28.0", 334 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", 335 | "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", 336 | "cpu": [ 337 | "arm64" 338 | ], 339 | "dev": true, 340 | "license": "MIT", 341 | "optional": true, 342 | "os": [ 343 | "darwin" 344 | ] 345 | }, 346 | "node_modules/@rollup/rollup-darwin-x64": { 347 | "version": "4.28.0", 348 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", 349 | "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", 350 | "cpu": [ 351 | "x64" 352 | ], 353 | "dev": true, 354 | "license": "MIT", 355 | "optional": true, 356 | "os": [ 357 | "darwin" 358 | ] 359 | }, 360 | "node_modules/@rollup/rollup-freebsd-arm64": { 361 | "version": "4.28.0", 362 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", 363 | "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", 364 | "cpu": [ 365 | "arm64" 366 | ], 367 | "dev": true, 368 | "license": "MIT", 369 | "optional": true, 370 | "os": [ 371 | "freebsd" 372 | ] 373 | }, 374 | "node_modules/@rollup/rollup-freebsd-x64": { 375 | "version": "4.28.0", 376 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", 377 | "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", 378 | "cpu": [ 379 | "x64" 380 | ], 381 | "dev": true, 382 | "license": "MIT", 383 | "optional": true, 384 | "os": [ 385 | "freebsd" 386 | ] 387 | }, 388 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 389 | "version": "4.28.0", 390 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", 391 | "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", 392 | "cpu": [ 393 | "arm" 394 | ], 395 | "dev": true, 396 | "license": "MIT", 397 | "optional": true, 398 | "os": [ 399 | "linux" 400 | ] 401 | }, 402 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 403 | "version": "4.28.0", 404 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", 405 | "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", 406 | "cpu": [ 407 | "arm" 408 | ], 409 | "dev": true, 410 | "license": "MIT", 411 | "optional": true, 412 | "os": [ 413 | "linux" 414 | ] 415 | }, 416 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 417 | "version": "4.28.0", 418 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", 419 | "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", 420 | "cpu": [ 421 | "arm64" 422 | ], 423 | "dev": true, 424 | "license": "MIT", 425 | "optional": true, 426 | "os": [ 427 | "linux" 428 | ] 429 | }, 430 | "node_modules/@rollup/rollup-linux-arm64-musl": { 431 | "version": "4.28.0", 432 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", 433 | "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", 434 | "cpu": [ 435 | "arm64" 436 | ], 437 | "dev": true, 438 | "license": "MIT", 439 | "optional": true, 440 | "os": [ 441 | "linux" 442 | ] 443 | }, 444 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 445 | "version": "4.28.0", 446 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", 447 | "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", 448 | "cpu": [ 449 | "ppc64" 450 | ], 451 | "dev": true, 452 | "license": "MIT", 453 | "optional": true, 454 | "os": [ 455 | "linux" 456 | ] 457 | }, 458 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 459 | "version": "4.28.0", 460 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", 461 | "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", 462 | "cpu": [ 463 | "riscv64" 464 | ], 465 | "dev": true, 466 | "license": "MIT", 467 | "optional": true, 468 | "os": [ 469 | "linux" 470 | ] 471 | }, 472 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 473 | "version": "4.28.0", 474 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", 475 | "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", 476 | "cpu": [ 477 | "s390x" 478 | ], 479 | "dev": true, 480 | "license": "MIT", 481 | "optional": true, 482 | "os": [ 483 | "linux" 484 | ] 485 | }, 486 | "node_modules/@rollup/rollup-linux-x64-gnu": { 487 | "version": "4.28.0", 488 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", 489 | "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", 490 | "cpu": [ 491 | "x64" 492 | ], 493 | "dev": true, 494 | "license": "MIT", 495 | "optional": true, 496 | "os": [ 497 | "linux" 498 | ] 499 | }, 500 | "node_modules/@rollup/rollup-linux-x64-musl": { 501 | "version": "4.28.0", 502 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", 503 | "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", 504 | "cpu": [ 505 | "x64" 506 | ], 507 | "dev": true, 508 | "license": "MIT", 509 | "optional": true, 510 | "os": [ 511 | "linux" 512 | ] 513 | }, 514 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 515 | "version": "4.28.0", 516 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", 517 | "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", 518 | "cpu": [ 519 | "arm64" 520 | ], 521 | "dev": true, 522 | "license": "MIT", 523 | "optional": true, 524 | "os": [ 525 | "win32" 526 | ] 527 | }, 528 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 529 | "version": "4.28.0", 530 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", 531 | "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", 532 | "cpu": [ 533 | "ia32" 534 | ], 535 | "dev": true, 536 | "license": "MIT", 537 | "optional": true, 538 | "os": [ 539 | "win32" 540 | ] 541 | }, 542 | "node_modules/@rollup/rollup-win32-x64-msvc": { 543 | "version": "4.28.0", 544 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", 545 | "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", 546 | "cpu": [ 547 | "x64" 548 | ], 549 | "dev": true, 550 | "license": "MIT", 551 | "optional": true, 552 | "os": [ 553 | "win32" 554 | ] 555 | }, 556 | "node_modules/@types/estree": { 557 | "version": "1.0.6", 558 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 559 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 560 | "dev": true, 561 | "license": "MIT" 562 | }, 563 | "node_modules/@types/json-schema": { 564 | "version": "7.0.15", 565 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 566 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 567 | "dev": true, 568 | "license": "MIT" 569 | }, 570 | "node_modules/@types/semver": { 571 | "version": "7.5.8", 572 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", 573 | "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", 574 | "dev": true, 575 | "license": "MIT" 576 | }, 577 | "node_modules/@typescript-eslint/eslint-plugin": { 578 | "version": "6.21.0", 579 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", 580 | "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", 581 | "dev": true, 582 | "license": "MIT", 583 | "dependencies": { 584 | "@eslint-community/regexpp": "^4.5.1", 585 | "@typescript-eslint/scope-manager": "6.21.0", 586 | "@typescript-eslint/type-utils": "6.21.0", 587 | "@typescript-eslint/utils": "6.21.0", 588 | "@typescript-eslint/visitor-keys": "6.21.0", 589 | "debug": "^4.3.4", 590 | "graphemer": "^1.4.0", 591 | "ignore": "^5.2.4", 592 | "natural-compare": "^1.4.0", 593 | "semver": "^7.5.4", 594 | "ts-api-utils": "^1.0.1" 595 | }, 596 | "engines": { 597 | "node": "^16.0.0 || >=18.0.0" 598 | }, 599 | "funding": { 600 | "type": "opencollective", 601 | "url": "https://opencollective.com/typescript-eslint" 602 | }, 603 | "peerDependencies": { 604 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", 605 | "eslint": "^7.0.0 || ^8.0.0" 606 | }, 607 | "peerDependenciesMeta": { 608 | "typescript": { 609 | "optional": true 610 | } 611 | } 612 | }, 613 | "node_modules/@typescript-eslint/parser": { 614 | "version": "6.21.0", 615 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", 616 | "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", 617 | "dev": true, 618 | "license": "BSD-2-Clause", 619 | "dependencies": { 620 | "@typescript-eslint/scope-manager": "6.21.0", 621 | "@typescript-eslint/types": "6.21.0", 622 | "@typescript-eslint/typescript-estree": "6.21.0", 623 | "@typescript-eslint/visitor-keys": "6.21.0", 624 | "debug": "^4.3.4" 625 | }, 626 | "engines": { 627 | "node": "^16.0.0 || >=18.0.0" 628 | }, 629 | "funding": { 630 | "type": "opencollective", 631 | "url": "https://opencollective.com/typescript-eslint" 632 | }, 633 | "peerDependencies": { 634 | "eslint": "^7.0.0 || ^8.0.0" 635 | }, 636 | "peerDependenciesMeta": { 637 | "typescript": { 638 | "optional": true 639 | } 640 | } 641 | }, 642 | "node_modules/@typescript-eslint/scope-manager": { 643 | "version": "6.21.0", 644 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", 645 | "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", 646 | "dev": true, 647 | "license": "MIT", 648 | "dependencies": { 649 | "@typescript-eslint/types": "6.21.0", 650 | "@typescript-eslint/visitor-keys": "6.21.0" 651 | }, 652 | "engines": { 653 | "node": "^16.0.0 || >=18.0.0" 654 | }, 655 | "funding": { 656 | "type": "opencollective", 657 | "url": "https://opencollective.com/typescript-eslint" 658 | } 659 | }, 660 | "node_modules/@typescript-eslint/type-utils": { 661 | "version": "6.21.0", 662 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", 663 | "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", 664 | "dev": true, 665 | "license": "MIT", 666 | "dependencies": { 667 | "@typescript-eslint/typescript-estree": "6.21.0", 668 | "@typescript-eslint/utils": "6.21.0", 669 | "debug": "^4.3.4", 670 | "ts-api-utils": "^1.0.1" 671 | }, 672 | "engines": { 673 | "node": "^16.0.0 || >=18.0.0" 674 | }, 675 | "funding": { 676 | "type": "opencollective", 677 | "url": "https://opencollective.com/typescript-eslint" 678 | }, 679 | "peerDependencies": { 680 | "eslint": "^7.0.0 || ^8.0.0" 681 | }, 682 | "peerDependenciesMeta": { 683 | "typescript": { 684 | "optional": true 685 | } 686 | } 687 | }, 688 | "node_modules/@typescript-eslint/types": { 689 | "version": "6.21.0", 690 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", 691 | "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", 692 | "dev": true, 693 | "license": "MIT", 694 | "engines": { 695 | "node": "^16.0.0 || >=18.0.0" 696 | }, 697 | "funding": { 698 | "type": "opencollective", 699 | "url": "https://opencollective.com/typescript-eslint" 700 | } 701 | }, 702 | "node_modules/@typescript-eslint/typescript-estree": { 703 | "version": "6.21.0", 704 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", 705 | "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", 706 | "dev": true, 707 | "license": "BSD-2-Clause", 708 | "dependencies": { 709 | "@typescript-eslint/types": "6.21.0", 710 | "@typescript-eslint/visitor-keys": "6.21.0", 711 | "debug": "^4.3.4", 712 | "globby": "^11.1.0", 713 | "is-glob": "^4.0.3", 714 | "minimatch": "9.0.3", 715 | "semver": "^7.5.4", 716 | "ts-api-utils": "^1.0.1" 717 | }, 718 | "engines": { 719 | "node": "^16.0.0 || >=18.0.0" 720 | }, 721 | "funding": { 722 | "type": "opencollective", 723 | "url": "https://opencollective.com/typescript-eslint" 724 | }, 725 | "peerDependenciesMeta": { 726 | "typescript": { 727 | "optional": true 728 | } 729 | } 730 | }, 731 | "node_modules/@typescript-eslint/utils": { 732 | "version": "6.21.0", 733 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", 734 | "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", 735 | "dev": true, 736 | "license": "MIT", 737 | "dependencies": { 738 | "@eslint-community/eslint-utils": "^4.4.0", 739 | "@types/json-schema": "^7.0.12", 740 | "@types/semver": "^7.5.0", 741 | "@typescript-eslint/scope-manager": "6.21.0", 742 | "@typescript-eslint/types": "6.21.0", 743 | "@typescript-eslint/typescript-estree": "6.21.0", 744 | "semver": "^7.5.4" 745 | }, 746 | "engines": { 747 | "node": "^16.0.0 || >=18.0.0" 748 | }, 749 | "funding": { 750 | "type": "opencollective", 751 | "url": "https://opencollective.com/typescript-eslint" 752 | }, 753 | "peerDependencies": { 754 | "eslint": "^7.0.0 || ^8.0.0" 755 | } 756 | }, 757 | "node_modules/@typescript-eslint/visitor-keys": { 758 | "version": "6.21.0", 759 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", 760 | "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", 761 | "dev": true, 762 | "license": "MIT", 763 | "dependencies": { 764 | "@typescript-eslint/types": "6.21.0", 765 | "eslint-visitor-keys": "^3.4.1" 766 | }, 767 | "engines": { 768 | "node": "^16.0.0 || >=18.0.0" 769 | }, 770 | "funding": { 771 | "type": "opencollective", 772 | "url": "https://opencollective.com/typescript-eslint" 773 | } 774 | }, 775 | "node_modules/@ungap/structured-clone": { 776 | "version": "1.2.0", 777 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 778 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 779 | "dev": true, 780 | "license": "ISC", 781 | "peer": true 782 | }, 783 | "node_modules/acorn": { 784 | "version": "8.14.0", 785 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 786 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 787 | "dev": true, 788 | "license": "MIT", 789 | "bin": { 790 | "acorn": "bin/acorn" 791 | }, 792 | "engines": { 793 | "node": ">=0.4.0" 794 | } 795 | }, 796 | "node_modules/acorn-jsx": { 797 | "version": "5.3.2", 798 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 799 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 800 | "dev": true, 801 | "license": "MIT", 802 | "peer": true, 803 | "peerDependencies": { 804 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 805 | } 806 | }, 807 | "node_modules/ajv": { 808 | "version": "6.12.6", 809 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 810 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 811 | "dev": true, 812 | "license": "MIT", 813 | "peer": true, 814 | "dependencies": { 815 | "fast-deep-equal": "^3.1.1", 816 | "fast-json-stable-stringify": "^2.0.0", 817 | "json-schema-traverse": "^0.4.1", 818 | "uri-js": "^4.2.2" 819 | }, 820 | "funding": { 821 | "type": "github", 822 | "url": "https://github.com/sponsors/epoberezkin" 823 | } 824 | }, 825 | "node_modules/ansi-regex": { 826 | "version": "5.0.1", 827 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 828 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 829 | "dev": true, 830 | "license": "MIT", 831 | "peer": true, 832 | "engines": { 833 | "node": ">=8" 834 | } 835 | }, 836 | "node_modules/ansi-styles": { 837 | "version": "4.3.0", 838 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 839 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 840 | "dev": true, 841 | "license": "MIT", 842 | "peer": true, 843 | "dependencies": { 844 | "color-convert": "^2.0.1" 845 | }, 846 | "engines": { 847 | "node": ">=8" 848 | }, 849 | "funding": { 850 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 851 | } 852 | }, 853 | "node_modules/argparse": { 854 | "version": "2.0.1", 855 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 856 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 857 | "dev": true, 858 | "license": "Python-2.0", 859 | "peer": true 860 | }, 861 | "node_modules/array-buffer-byte-length": { 862 | "version": "1.0.1", 863 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", 864 | "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", 865 | "dev": true, 866 | "license": "MIT", 867 | "dependencies": { 868 | "call-bind": "^1.0.5", 869 | "is-array-buffer": "^3.0.4" 870 | }, 871 | "engines": { 872 | "node": ">= 0.4" 873 | }, 874 | "funding": { 875 | "url": "https://github.com/sponsors/ljharb" 876 | } 877 | }, 878 | "node_modules/array-union": { 879 | "version": "2.1.0", 880 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 881 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 882 | "dev": true, 883 | "license": "MIT", 884 | "engines": { 885 | "node": ">=8" 886 | } 887 | }, 888 | "node_modules/arraybuffer.prototype.slice": { 889 | "version": "1.0.3", 890 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", 891 | "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", 892 | "dev": true, 893 | "license": "MIT", 894 | "dependencies": { 895 | "array-buffer-byte-length": "^1.0.1", 896 | "call-bind": "^1.0.5", 897 | "define-properties": "^1.2.1", 898 | "es-abstract": "^1.22.3", 899 | "es-errors": "^1.2.1", 900 | "get-intrinsic": "^1.2.3", 901 | "is-array-buffer": "^3.0.4", 902 | "is-shared-array-buffer": "^1.0.2" 903 | }, 904 | "engines": { 905 | "node": ">= 0.4" 906 | }, 907 | "funding": { 908 | "url": "https://github.com/sponsors/ljharb" 909 | } 910 | }, 911 | "node_modules/available-typed-arrays": { 912 | "version": "1.0.7", 913 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 914 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 915 | "dev": true, 916 | "license": "MIT", 917 | "dependencies": { 918 | "possible-typed-array-names": "^1.0.0" 919 | }, 920 | "engines": { 921 | "node": ">= 0.4" 922 | }, 923 | "funding": { 924 | "url": "https://github.com/sponsors/ljharb" 925 | } 926 | }, 927 | "node_modules/balanced-match": { 928 | "version": "1.0.2", 929 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 930 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 931 | "dev": true, 932 | "license": "MIT" 933 | }, 934 | "node_modules/brace-expansion": { 935 | "version": "2.0.1", 936 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 937 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 938 | "dev": true, 939 | "license": "MIT", 940 | "dependencies": { 941 | "balanced-match": "^1.0.0" 942 | } 943 | }, 944 | "node_modules/braces": { 945 | "version": "3.0.3", 946 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 947 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 948 | "dev": true, 949 | "license": "MIT", 950 | "dependencies": { 951 | "fill-range": "^7.1.1" 952 | }, 953 | "engines": { 954 | "node": ">=8" 955 | } 956 | }, 957 | "node_modules/buffer-from": { 958 | "version": "1.1.2", 959 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 960 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 961 | "dev": true, 962 | "license": "MIT" 963 | }, 964 | "node_modules/call-bind": { 965 | "version": "1.0.7", 966 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 967 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 968 | "dev": true, 969 | "license": "MIT", 970 | "dependencies": { 971 | "es-define-property": "^1.0.0", 972 | "es-errors": "^1.3.0", 973 | "function-bind": "^1.1.2", 974 | "get-intrinsic": "^1.2.4", 975 | "set-function-length": "^1.2.1" 976 | }, 977 | "engines": { 978 | "node": ">= 0.4" 979 | }, 980 | "funding": { 981 | "url": "https://github.com/sponsors/ljharb" 982 | } 983 | }, 984 | "node_modules/callsites": { 985 | "version": "3.1.0", 986 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 987 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 988 | "dev": true, 989 | "license": "MIT", 990 | "peer": true, 991 | "engines": { 992 | "node": ">=6" 993 | } 994 | }, 995 | "node_modules/chalk": { 996 | "version": "4.1.2", 997 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 998 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 999 | "dev": true, 1000 | "license": "MIT", 1001 | "peer": true, 1002 | "dependencies": { 1003 | "ansi-styles": "^4.1.0", 1004 | "supports-color": "^7.1.0" 1005 | }, 1006 | "engines": { 1007 | "node": ">=10" 1008 | }, 1009 | "funding": { 1010 | "url": "https://github.com/chalk/chalk?sponsor=1" 1011 | } 1012 | }, 1013 | "node_modules/color-convert": { 1014 | "version": "2.0.1", 1015 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1016 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1017 | "dev": true, 1018 | "license": "MIT", 1019 | "peer": true, 1020 | "dependencies": { 1021 | "color-name": "~1.1.4" 1022 | }, 1023 | "engines": { 1024 | "node": ">=7.0.0" 1025 | } 1026 | }, 1027 | "node_modules/color-name": { 1028 | "version": "1.1.4", 1029 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1030 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1031 | "dev": true, 1032 | "license": "MIT", 1033 | "peer": true 1034 | }, 1035 | "node_modules/commander": { 1036 | "version": "2.20.3", 1037 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 1038 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 1039 | "dev": true, 1040 | "license": "MIT" 1041 | }, 1042 | "node_modules/concat-map": { 1043 | "version": "0.0.1", 1044 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1045 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1046 | "dev": true, 1047 | "license": "MIT" 1048 | }, 1049 | "node_modules/cross-spawn": { 1050 | "version": "7.0.6", 1051 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1052 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1053 | "dev": true, 1054 | "license": "MIT", 1055 | "peer": true, 1056 | "dependencies": { 1057 | "path-key": "^3.1.0", 1058 | "shebang-command": "^2.0.0", 1059 | "which": "^2.0.1" 1060 | }, 1061 | "engines": { 1062 | "node": ">= 8" 1063 | } 1064 | }, 1065 | "node_modules/data-view-buffer": { 1066 | "version": "1.0.1", 1067 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", 1068 | "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", 1069 | "dev": true, 1070 | "license": "MIT", 1071 | "dependencies": { 1072 | "call-bind": "^1.0.6", 1073 | "es-errors": "^1.3.0", 1074 | "is-data-view": "^1.0.1" 1075 | }, 1076 | "engines": { 1077 | "node": ">= 0.4" 1078 | }, 1079 | "funding": { 1080 | "url": "https://github.com/sponsors/ljharb" 1081 | } 1082 | }, 1083 | "node_modules/data-view-byte-length": { 1084 | "version": "1.0.1", 1085 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", 1086 | "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", 1087 | "dev": true, 1088 | "license": "MIT", 1089 | "dependencies": { 1090 | "call-bind": "^1.0.7", 1091 | "es-errors": "^1.3.0", 1092 | "is-data-view": "^1.0.1" 1093 | }, 1094 | "engines": { 1095 | "node": ">= 0.4" 1096 | }, 1097 | "funding": { 1098 | "url": "https://github.com/sponsors/ljharb" 1099 | } 1100 | }, 1101 | "node_modules/data-view-byte-offset": { 1102 | "version": "1.0.0", 1103 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", 1104 | "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", 1105 | "dev": true, 1106 | "license": "MIT", 1107 | "dependencies": { 1108 | "call-bind": "^1.0.6", 1109 | "es-errors": "^1.3.0", 1110 | "is-data-view": "^1.0.1" 1111 | }, 1112 | "engines": { 1113 | "node": ">= 0.4" 1114 | }, 1115 | "funding": { 1116 | "url": "https://github.com/sponsors/ljharb" 1117 | } 1118 | }, 1119 | "node_modules/debug": { 1120 | "version": "4.3.7", 1121 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1122 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1123 | "dev": true, 1124 | "license": "MIT", 1125 | "dependencies": { 1126 | "ms": "^2.1.3" 1127 | }, 1128 | "engines": { 1129 | "node": ">=6.0" 1130 | }, 1131 | "peerDependenciesMeta": { 1132 | "supports-color": { 1133 | "optional": true 1134 | } 1135 | } 1136 | }, 1137 | "node_modules/deep-is": { 1138 | "version": "0.1.4", 1139 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1140 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1141 | "dev": true, 1142 | "license": "MIT", 1143 | "peer": true 1144 | }, 1145 | "node_modules/define-data-property": { 1146 | "version": "1.1.4", 1147 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1148 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1149 | "dev": true, 1150 | "license": "MIT", 1151 | "dependencies": { 1152 | "es-define-property": "^1.0.0", 1153 | "es-errors": "^1.3.0", 1154 | "gopd": "^1.0.1" 1155 | }, 1156 | "engines": { 1157 | "node": ">= 0.4" 1158 | }, 1159 | "funding": { 1160 | "url": "https://github.com/sponsors/ljharb" 1161 | } 1162 | }, 1163 | "node_modules/define-properties": { 1164 | "version": "1.2.1", 1165 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1166 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1167 | "dev": true, 1168 | "license": "MIT", 1169 | "dependencies": { 1170 | "define-data-property": "^1.0.1", 1171 | "has-property-descriptors": "^1.0.0", 1172 | "object-keys": "^1.1.1" 1173 | }, 1174 | "engines": { 1175 | "node": ">= 0.4" 1176 | }, 1177 | "funding": { 1178 | "url": "https://github.com/sponsors/ljharb" 1179 | } 1180 | }, 1181 | "node_modules/dir-glob": { 1182 | "version": "3.0.1", 1183 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1184 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1185 | "dev": true, 1186 | "license": "MIT", 1187 | "dependencies": { 1188 | "path-type": "^4.0.0" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | } 1193 | }, 1194 | "node_modules/doctrine": { 1195 | "version": "3.0.0", 1196 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1197 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1198 | "dev": true, 1199 | "license": "Apache-2.0", 1200 | "peer": true, 1201 | "dependencies": { 1202 | "esutils": "^2.0.2" 1203 | }, 1204 | "engines": { 1205 | "node": ">=6.0.0" 1206 | } 1207 | }, 1208 | "node_modules/error-ex": { 1209 | "version": "1.3.2", 1210 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1211 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1212 | "dev": true, 1213 | "license": "MIT", 1214 | "dependencies": { 1215 | "is-arrayish": "^0.2.1" 1216 | } 1217 | }, 1218 | "node_modules/es-abstract": { 1219 | "version": "1.23.5", 1220 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.5.tgz", 1221 | "integrity": "sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==", 1222 | "dev": true, 1223 | "license": "MIT", 1224 | "dependencies": { 1225 | "array-buffer-byte-length": "^1.0.1", 1226 | "arraybuffer.prototype.slice": "^1.0.3", 1227 | "available-typed-arrays": "^1.0.7", 1228 | "call-bind": "^1.0.7", 1229 | "data-view-buffer": "^1.0.1", 1230 | "data-view-byte-length": "^1.0.1", 1231 | "data-view-byte-offset": "^1.0.0", 1232 | "es-define-property": "^1.0.0", 1233 | "es-errors": "^1.3.0", 1234 | "es-object-atoms": "^1.0.0", 1235 | "es-set-tostringtag": "^2.0.3", 1236 | "es-to-primitive": "^1.2.1", 1237 | "function.prototype.name": "^1.1.6", 1238 | "get-intrinsic": "^1.2.4", 1239 | "get-symbol-description": "^1.0.2", 1240 | "globalthis": "^1.0.4", 1241 | "gopd": "^1.0.1", 1242 | "has-property-descriptors": "^1.0.2", 1243 | "has-proto": "^1.0.3", 1244 | "has-symbols": "^1.0.3", 1245 | "hasown": "^2.0.2", 1246 | "internal-slot": "^1.0.7", 1247 | "is-array-buffer": "^3.0.4", 1248 | "is-callable": "^1.2.7", 1249 | "is-data-view": "^1.0.1", 1250 | "is-negative-zero": "^2.0.3", 1251 | "is-regex": "^1.1.4", 1252 | "is-shared-array-buffer": "^1.0.3", 1253 | "is-string": "^1.0.7", 1254 | "is-typed-array": "^1.1.13", 1255 | "is-weakref": "^1.0.2", 1256 | "object-inspect": "^1.13.3", 1257 | "object-keys": "^1.1.1", 1258 | "object.assign": "^4.1.5", 1259 | "regexp.prototype.flags": "^1.5.3", 1260 | "safe-array-concat": "^1.1.2", 1261 | "safe-regex-test": "^1.0.3", 1262 | "string.prototype.trim": "^1.2.9", 1263 | "string.prototype.trimend": "^1.0.8", 1264 | "string.prototype.trimstart": "^1.0.8", 1265 | "typed-array-buffer": "^1.0.2", 1266 | "typed-array-byte-length": "^1.0.1", 1267 | "typed-array-byte-offset": "^1.0.2", 1268 | "typed-array-length": "^1.0.6", 1269 | "unbox-primitive": "^1.0.2", 1270 | "which-typed-array": "^1.1.15" 1271 | }, 1272 | "engines": { 1273 | "node": ">= 0.4" 1274 | }, 1275 | "funding": { 1276 | "url": "https://github.com/sponsors/ljharb" 1277 | } 1278 | }, 1279 | "node_modules/es-define-property": { 1280 | "version": "1.0.0", 1281 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1282 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1283 | "dev": true, 1284 | "license": "MIT", 1285 | "dependencies": { 1286 | "get-intrinsic": "^1.2.4" 1287 | }, 1288 | "engines": { 1289 | "node": ">= 0.4" 1290 | } 1291 | }, 1292 | "node_modules/es-errors": { 1293 | "version": "1.3.0", 1294 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1295 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1296 | "dev": true, 1297 | "license": "MIT", 1298 | "engines": { 1299 | "node": ">= 0.4" 1300 | } 1301 | }, 1302 | "node_modules/es-object-atoms": { 1303 | "version": "1.0.0", 1304 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", 1305 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", 1306 | "dev": true, 1307 | "license": "MIT", 1308 | "dependencies": { 1309 | "es-errors": "^1.3.0" 1310 | }, 1311 | "engines": { 1312 | "node": ">= 0.4" 1313 | } 1314 | }, 1315 | "node_modules/es-set-tostringtag": { 1316 | "version": "2.0.3", 1317 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", 1318 | "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", 1319 | "dev": true, 1320 | "license": "MIT", 1321 | "dependencies": { 1322 | "get-intrinsic": "^1.2.4", 1323 | "has-tostringtag": "^1.0.2", 1324 | "hasown": "^2.0.1" 1325 | }, 1326 | "engines": { 1327 | "node": ">= 0.4" 1328 | } 1329 | }, 1330 | "node_modules/es-to-primitive": { 1331 | "version": "1.3.0", 1332 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", 1333 | "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", 1334 | "dev": true, 1335 | "license": "MIT", 1336 | "dependencies": { 1337 | "is-callable": "^1.2.7", 1338 | "is-date-object": "^1.0.5", 1339 | "is-symbol": "^1.0.4" 1340 | }, 1341 | "engines": { 1342 | "node": ">= 0.4" 1343 | }, 1344 | "funding": { 1345 | "url": "https://github.com/sponsors/ljharb" 1346 | } 1347 | }, 1348 | "node_modules/escape-string-regexp": { 1349 | "version": "4.0.0", 1350 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1351 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1352 | "dev": true, 1353 | "license": "MIT", 1354 | "peer": true, 1355 | "engines": { 1356 | "node": ">=10" 1357 | }, 1358 | "funding": { 1359 | "url": "https://github.com/sponsors/sindresorhus" 1360 | } 1361 | }, 1362 | "node_modules/eslint": { 1363 | "version": "8.57.1", 1364 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1365 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1366 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1367 | "dev": true, 1368 | "license": "MIT", 1369 | "peer": true, 1370 | "dependencies": { 1371 | "@eslint-community/eslint-utils": "^4.2.0", 1372 | "@eslint-community/regexpp": "^4.6.1", 1373 | "@eslint/eslintrc": "^2.1.4", 1374 | "@eslint/js": "8.57.1", 1375 | "@humanwhocodes/config-array": "^0.13.0", 1376 | "@humanwhocodes/module-importer": "^1.0.1", 1377 | "@nodelib/fs.walk": "^1.2.8", 1378 | "@ungap/structured-clone": "^1.2.0", 1379 | "ajv": "^6.12.4", 1380 | "chalk": "^4.0.0", 1381 | "cross-spawn": "^7.0.2", 1382 | "debug": "^4.3.2", 1383 | "doctrine": "^3.0.0", 1384 | "escape-string-regexp": "^4.0.0", 1385 | "eslint-scope": "^7.2.2", 1386 | "eslint-visitor-keys": "^3.4.3", 1387 | "espree": "^9.6.1", 1388 | "esquery": "^1.4.2", 1389 | "esutils": "^2.0.2", 1390 | "fast-deep-equal": "^3.1.3", 1391 | "file-entry-cache": "^6.0.1", 1392 | "find-up": "^5.0.0", 1393 | "glob-parent": "^6.0.2", 1394 | "globals": "^13.19.0", 1395 | "graphemer": "^1.4.0", 1396 | "ignore": "^5.2.0", 1397 | "imurmurhash": "^0.1.4", 1398 | "is-glob": "^4.0.0", 1399 | "is-path-inside": "^3.0.3", 1400 | "js-yaml": "^4.1.0", 1401 | "json-stable-stringify-without-jsonify": "^1.0.1", 1402 | "levn": "^0.4.1", 1403 | "lodash.merge": "^4.6.2", 1404 | "minimatch": "^3.1.2", 1405 | "natural-compare": "^1.4.0", 1406 | "optionator": "^0.9.3", 1407 | "strip-ansi": "^6.0.1", 1408 | "text-table": "^0.2.0" 1409 | }, 1410 | "bin": { 1411 | "eslint": "bin/eslint.js" 1412 | }, 1413 | "engines": { 1414 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1415 | }, 1416 | "funding": { 1417 | "url": "https://opencollective.com/eslint" 1418 | } 1419 | }, 1420 | "node_modules/eslint-scope": { 1421 | "version": "7.2.2", 1422 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1423 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1424 | "dev": true, 1425 | "license": "BSD-2-Clause", 1426 | "peer": true, 1427 | "dependencies": { 1428 | "esrecurse": "^4.3.0", 1429 | "estraverse": "^5.2.0" 1430 | }, 1431 | "engines": { 1432 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1433 | }, 1434 | "funding": { 1435 | "url": "https://opencollective.com/eslint" 1436 | } 1437 | }, 1438 | "node_modules/eslint-visitor-keys": { 1439 | "version": "3.4.3", 1440 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1441 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1442 | "dev": true, 1443 | "license": "Apache-2.0", 1444 | "engines": { 1445 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1446 | }, 1447 | "funding": { 1448 | "url": "https://opencollective.com/eslint" 1449 | } 1450 | }, 1451 | "node_modules/eslint/node_modules/brace-expansion": { 1452 | "version": "1.1.11", 1453 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1454 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1455 | "dev": true, 1456 | "license": "MIT", 1457 | "peer": true, 1458 | "dependencies": { 1459 | "balanced-match": "^1.0.0", 1460 | "concat-map": "0.0.1" 1461 | } 1462 | }, 1463 | "node_modules/eslint/node_modules/minimatch": { 1464 | "version": "3.1.2", 1465 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1466 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1467 | "dev": true, 1468 | "license": "ISC", 1469 | "peer": true, 1470 | "dependencies": { 1471 | "brace-expansion": "^1.1.7" 1472 | }, 1473 | "engines": { 1474 | "node": "*" 1475 | } 1476 | }, 1477 | "node_modules/espree": { 1478 | "version": "9.6.1", 1479 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1480 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1481 | "dev": true, 1482 | "license": "BSD-2-Clause", 1483 | "peer": true, 1484 | "dependencies": { 1485 | "acorn": "^8.9.0", 1486 | "acorn-jsx": "^5.3.2", 1487 | "eslint-visitor-keys": "^3.4.1" 1488 | }, 1489 | "engines": { 1490 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1491 | }, 1492 | "funding": { 1493 | "url": "https://opencollective.com/eslint" 1494 | } 1495 | }, 1496 | "node_modules/esquery": { 1497 | "version": "1.6.0", 1498 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1499 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1500 | "dev": true, 1501 | "license": "BSD-3-Clause", 1502 | "peer": true, 1503 | "dependencies": { 1504 | "estraverse": "^5.1.0" 1505 | }, 1506 | "engines": { 1507 | "node": ">=0.10" 1508 | } 1509 | }, 1510 | "node_modules/esrecurse": { 1511 | "version": "4.3.0", 1512 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1513 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1514 | "dev": true, 1515 | "license": "BSD-2-Clause", 1516 | "peer": true, 1517 | "dependencies": { 1518 | "estraverse": "^5.2.0" 1519 | }, 1520 | "engines": { 1521 | "node": ">=4.0" 1522 | } 1523 | }, 1524 | "node_modules/estraverse": { 1525 | "version": "5.3.0", 1526 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1527 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1528 | "dev": true, 1529 | "license": "BSD-2-Clause", 1530 | "peer": true, 1531 | "engines": { 1532 | "node": ">=4.0" 1533 | } 1534 | }, 1535 | "node_modules/esutils": { 1536 | "version": "2.0.3", 1537 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1538 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1539 | "dev": true, 1540 | "license": "BSD-2-Clause", 1541 | "peer": true, 1542 | "engines": { 1543 | "node": ">=0.10.0" 1544 | } 1545 | }, 1546 | "node_modules/fast-deep-equal": { 1547 | "version": "3.1.3", 1548 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1549 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1550 | "dev": true, 1551 | "license": "MIT", 1552 | "peer": true 1553 | }, 1554 | "node_modules/fast-glob": { 1555 | "version": "3.3.2", 1556 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1557 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1558 | "dev": true, 1559 | "license": "MIT", 1560 | "dependencies": { 1561 | "@nodelib/fs.stat": "^2.0.2", 1562 | "@nodelib/fs.walk": "^1.2.3", 1563 | "glob-parent": "^5.1.2", 1564 | "merge2": "^1.3.0", 1565 | "micromatch": "^4.0.4" 1566 | }, 1567 | "engines": { 1568 | "node": ">=8.6.0" 1569 | } 1570 | }, 1571 | "node_modules/fast-glob/node_modules/glob-parent": { 1572 | "version": "5.1.2", 1573 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1574 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1575 | "dev": true, 1576 | "license": "ISC", 1577 | "dependencies": { 1578 | "is-glob": "^4.0.1" 1579 | }, 1580 | "engines": { 1581 | "node": ">= 6" 1582 | } 1583 | }, 1584 | "node_modules/fast-json-stable-stringify": { 1585 | "version": "2.1.0", 1586 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1587 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1588 | "dev": true, 1589 | "license": "MIT", 1590 | "peer": true 1591 | }, 1592 | "node_modules/fast-levenshtein": { 1593 | "version": "2.0.6", 1594 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1595 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1596 | "dev": true, 1597 | "license": "MIT", 1598 | "peer": true 1599 | }, 1600 | "node_modules/fastq": { 1601 | "version": "1.17.1", 1602 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1603 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1604 | "dev": true, 1605 | "license": "ISC", 1606 | "dependencies": { 1607 | "reusify": "^1.0.4" 1608 | } 1609 | }, 1610 | "node_modules/file-entry-cache": { 1611 | "version": "6.0.1", 1612 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1613 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1614 | "dev": true, 1615 | "license": "MIT", 1616 | "peer": true, 1617 | "dependencies": { 1618 | "flat-cache": "^3.0.4" 1619 | }, 1620 | "engines": { 1621 | "node": "^10.12.0 || >=12.0.0" 1622 | } 1623 | }, 1624 | "node_modules/fill-range": { 1625 | "version": "7.1.1", 1626 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1627 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1628 | "dev": true, 1629 | "license": "MIT", 1630 | "dependencies": { 1631 | "to-regex-range": "^5.0.1" 1632 | }, 1633 | "engines": { 1634 | "node": ">=8" 1635 | } 1636 | }, 1637 | "node_modules/find-up": { 1638 | "version": "5.0.0", 1639 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1640 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1641 | "dev": true, 1642 | "license": "MIT", 1643 | "peer": true, 1644 | "dependencies": { 1645 | "locate-path": "^6.0.0", 1646 | "path-exists": "^4.0.0" 1647 | }, 1648 | "engines": { 1649 | "node": ">=10" 1650 | }, 1651 | "funding": { 1652 | "url": "https://github.com/sponsors/sindresorhus" 1653 | } 1654 | }, 1655 | "node_modules/flat-cache": { 1656 | "version": "3.2.0", 1657 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1658 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1659 | "dev": true, 1660 | "license": "MIT", 1661 | "peer": true, 1662 | "dependencies": { 1663 | "flatted": "^3.2.9", 1664 | "keyv": "^4.5.3", 1665 | "rimraf": "^3.0.2" 1666 | }, 1667 | "engines": { 1668 | "node": "^10.12.0 || >=12.0.0" 1669 | } 1670 | }, 1671 | "node_modules/flatted": { 1672 | "version": "3.3.2", 1673 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1674 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1675 | "dev": true, 1676 | "license": "ISC", 1677 | "peer": true 1678 | }, 1679 | "node_modules/for-each": { 1680 | "version": "0.3.3", 1681 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1682 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1683 | "dev": true, 1684 | "license": "MIT", 1685 | "dependencies": { 1686 | "is-callable": "^1.1.3" 1687 | } 1688 | }, 1689 | "node_modules/fs.realpath": { 1690 | "version": "1.0.0", 1691 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1692 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1693 | "dev": true, 1694 | "license": "ISC", 1695 | "peer": true 1696 | }, 1697 | "node_modules/fsevents": { 1698 | "version": "2.3.3", 1699 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1700 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1701 | "dev": true, 1702 | "hasInstallScript": true, 1703 | "license": "MIT", 1704 | "optional": true, 1705 | "os": [ 1706 | "darwin" 1707 | ], 1708 | "engines": { 1709 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1710 | } 1711 | }, 1712 | "node_modules/function-bind": { 1713 | "version": "1.1.2", 1714 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1715 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1716 | "dev": true, 1717 | "license": "MIT", 1718 | "funding": { 1719 | "url": "https://github.com/sponsors/ljharb" 1720 | } 1721 | }, 1722 | "node_modules/function.prototype.name": { 1723 | "version": "1.1.6", 1724 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 1725 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 1726 | "dev": true, 1727 | "license": "MIT", 1728 | "dependencies": { 1729 | "call-bind": "^1.0.2", 1730 | "define-properties": "^1.2.0", 1731 | "es-abstract": "^1.22.1", 1732 | "functions-have-names": "^1.2.3" 1733 | }, 1734 | "engines": { 1735 | "node": ">= 0.4" 1736 | }, 1737 | "funding": { 1738 | "url": "https://github.com/sponsors/ljharb" 1739 | } 1740 | }, 1741 | "node_modules/functions-have-names": { 1742 | "version": "1.2.3", 1743 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1744 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1745 | "dev": true, 1746 | "license": "MIT", 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/ljharb" 1749 | } 1750 | }, 1751 | "node_modules/get-intrinsic": { 1752 | "version": "1.2.4", 1753 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1754 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1755 | "dev": true, 1756 | "license": "MIT", 1757 | "dependencies": { 1758 | "es-errors": "^1.3.0", 1759 | "function-bind": "^1.1.2", 1760 | "has-proto": "^1.0.1", 1761 | "has-symbols": "^1.0.3", 1762 | "hasown": "^2.0.0" 1763 | }, 1764 | "engines": { 1765 | "node": ">= 0.4" 1766 | }, 1767 | "funding": { 1768 | "url": "https://github.com/sponsors/ljharb" 1769 | } 1770 | }, 1771 | "node_modules/get-symbol-description": { 1772 | "version": "1.0.2", 1773 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", 1774 | "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", 1775 | "dev": true, 1776 | "license": "MIT", 1777 | "dependencies": { 1778 | "call-bind": "^1.0.5", 1779 | "es-errors": "^1.3.0", 1780 | "get-intrinsic": "^1.2.4" 1781 | }, 1782 | "engines": { 1783 | "node": ">= 0.4" 1784 | }, 1785 | "funding": { 1786 | "url": "https://github.com/sponsors/ljharb" 1787 | } 1788 | }, 1789 | "node_modules/glob": { 1790 | "version": "7.2.3", 1791 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1792 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1793 | "deprecated": "Glob versions prior to v9 are no longer supported", 1794 | "dev": true, 1795 | "license": "ISC", 1796 | "peer": true, 1797 | "dependencies": { 1798 | "fs.realpath": "^1.0.0", 1799 | "inflight": "^1.0.4", 1800 | "inherits": "2", 1801 | "minimatch": "^3.1.1", 1802 | "once": "^1.3.0", 1803 | "path-is-absolute": "^1.0.0" 1804 | }, 1805 | "engines": { 1806 | "node": "*" 1807 | }, 1808 | "funding": { 1809 | "url": "https://github.com/sponsors/isaacs" 1810 | } 1811 | }, 1812 | "node_modules/glob-parent": { 1813 | "version": "6.0.2", 1814 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1815 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1816 | "dev": true, 1817 | "license": "ISC", 1818 | "peer": true, 1819 | "dependencies": { 1820 | "is-glob": "^4.0.3" 1821 | }, 1822 | "engines": { 1823 | "node": ">=10.13.0" 1824 | } 1825 | }, 1826 | "node_modules/glob/node_modules/brace-expansion": { 1827 | "version": "1.1.11", 1828 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1829 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1830 | "dev": true, 1831 | "license": "MIT", 1832 | "peer": true, 1833 | "dependencies": { 1834 | "balanced-match": "^1.0.0", 1835 | "concat-map": "0.0.1" 1836 | } 1837 | }, 1838 | "node_modules/glob/node_modules/minimatch": { 1839 | "version": "3.1.2", 1840 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1841 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1842 | "dev": true, 1843 | "license": "ISC", 1844 | "peer": true, 1845 | "dependencies": { 1846 | "brace-expansion": "^1.1.7" 1847 | }, 1848 | "engines": { 1849 | "node": "*" 1850 | } 1851 | }, 1852 | "node_modules/globals": { 1853 | "version": "13.24.0", 1854 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1855 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1856 | "dev": true, 1857 | "license": "MIT", 1858 | "peer": true, 1859 | "dependencies": { 1860 | "type-fest": "^0.20.2" 1861 | }, 1862 | "engines": { 1863 | "node": ">=8" 1864 | }, 1865 | "funding": { 1866 | "url": "https://github.com/sponsors/sindresorhus" 1867 | } 1868 | }, 1869 | "node_modules/globalthis": { 1870 | "version": "1.0.4", 1871 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 1872 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 1873 | "dev": true, 1874 | "license": "MIT", 1875 | "dependencies": { 1876 | "define-properties": "^1.2.1", 1877 | "gopd": "^1.0.1" 1878 | }, 1879 | "engines": { 1880 | "node": ">= 0.4" 1881 | }, 1882 | "funding": { 1883 | "url": "https://github.com/sponsors/ljharb" 1884 | } 1885 | }, 1886 | "node_modules/globby": { 1887 | "version": "11.1.0", 1888 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1889 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1890 | "dev": true, 1891 | "license": "MIT", 1892 | "dependencies": { 1893 | "array-union": "^2.1.0", 1894 | "dir-glob": "^3.0.1", 1895 | "fast-glob": "^3.2.9", 1896 | "ignore": "^5.2.0", 1897 | "merge2": "^1.4.1", 1898 | "slash": "^3.0.0" 1899 | }, 1900 | "engines": { 1901 | "node": ">=10" 1902 | }, 1903 | "funding": { 1904 | "url": "https://github.com/sponsors/sindresorhus" 1905 | } 1906 | }, 1907 | "node_modules/gopd": { 1908 | "version": "1.2.0", 1909 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 1910 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 1911 | "dev": true, 1912 | "license": "MIT", 1913 | "engines": { 1914 | "node": ">= 0.4" 1915 | }, 1916 | "funding": { 1917 | "url": "https://github.com/sponsors/ljharb" 1918 | } 1919 | }, 1920 | "node_modules/graceful-fs": { 1921 | "version": "4.2.11", 1922 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1923 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1924 | "dev": true, 1925 | "license": "ISC" 1926 | }, 1927 | "node_modules/graphemer": { 1928 | "version": "1.4.0", 1929 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1930 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1931 | "dev": true, 1932 | "license": "MIT" 1933 | }, 1934 | "node_modules/has-bigints": { 1935 | "version": "1.0.2", 1936 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1937 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1938 | "dev": true, 1939 | "license": "MIT", 1940 | "funding": { 1941 | "url": "https://github.com/sponsors/ljharb" 1942 | } 1943 | }, 1944 | "node_modules/has-flag": { 1945 | "version": "4.0.0", 1946 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1947 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1948 | "dev": true, 1949 | "license": "MIT", 1950 | "peer": true, 1951 | "engines": { 1952 | "node": ">=8" 1953 | } 1954 | }, 1955 | "node_modules/has-property-descriptors": { 1956 | "version": "1.0.2", 1957 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1958 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1959 | "dev": true, 1960 | "license": "MIT", 1961 | "dependencies": { 1962 | "es-define-property": "^1.0.0" 1963 | }, 1964 | "funding": { 1965 | "url": "https://github.com/sponsors/ljharb" 1966 | } 1967 | }, 1968 | "node_modules/has-proto": { 1969 | "version": "1.1.0", 1970 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz", 1971 | "integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==", 1972 | "dev": true, 1973 | "license": "MIT", 1974 | "dependencies": { 1975 | "call-bind": "^1.0.7" 1976 | }, 1977 | "engines": { 1978 | "node": ">= 0.4" 1979 | }, 1980 | "funding": { 1981 | "url": "https://github.com/sponsors/ljharb" 1982 | } 1983 | }, 1984 | "node_modules/has-symbols": { 1985 | "version": "1.1.0", 1986 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 1987 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 1988 | "dev": true, 1989 | "license": "MIT", 1990 | "engines": { 1991 | "node": ">= 0.4" 1992 | }, 1993 | "funding": { 1994 | "url": "https://github.com/sponsors/ljharb" 1995 | } 1996 | }, 1997 | "node_modules/has-tostringtag": { 1998 | "version": "1.0.2", 1999 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 2000 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 2001 | "dev": true, 2002 | "license": "MIT", 2003 | "dependencies": { 2004 | "has-symbols": "^1.0.3" 2005 | }, 2006 | "engines": { 2007 | "node": ">= 0.4" 2008 | }, 2009 | "funding": { 2010 | "url": "https://github.com/sponsors/ljharb" 2011 | } 2012 | }, 2013 | "node_modules/hasown": { 2014 | "version": "2.0.2", 2015 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2016 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2017 | "dev": true, 2018 | "license": "MIT", 2019 | "dependencies": { 2020 | "function-bind": "^1.1.2" 2021 | }, 2022 | "engines": { 2023 | "node": ">= 0.4" 2024 | } 2025 | }, 2026 | "node_modules/hosted-git-info": { 2027 | "version": "2.8.9", 2028 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", 2029 | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", 2030 | "dev": true, 2031 | "license": "ISC" 2032 | }, 2033 | "node_modules/ignore": { 2034 | "version": "5.3.2", 2035 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2036 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2037 | "dev": true, 2038 | "license": "MIT", 2039 | "engines": { 2040 | "node": ">= 4" 2041 | } 2042 | }, 2043 | "node_modules/import-fresh": { 2044 | "version": "3.3.0", 2045 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2046 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2047 | "dev": true, 2048 | "license": "MIT", 2049 | "peer": true, 2050 | "dependencies": { 2051 | "parent-module": "^1.0.0", 2052 | "resolve-from": "^4.0.0" 2053 | }, 2054 | "engines": { 2055 | "node": ">=6" 2056 | }, 2057 | "funding": { 2058 | "url": "https://github.com/sponsors/sindresorhus" 2059 | } 2060 | }, 2061 | "node_modules/imurmurhash": { 2062 | "version": "0.1.4", 2063 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2064 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2065 | "dev": true, 2066 | "license": "MIT", 2067 | "peer": true, 2068 | "engines": { 2069 | "node": ">=0.8.19" 2070 | } 2071 | }, 2072 | "node_modules/inflight": { 2073 | "version": "1.0.6", 2074 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2075 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2076 | "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.", 2077 | "dev": true, 2078 | "license": "ISC", 2079 | "peer": true, 2080 | "dependencies": { 2081 | "once": "^1.3.0", 2082 | "wrappy": "1" 2083 | } 2084 | }, 2085 | "node_modules/inherits": { 2086 | "version": "2.0.4", 2087 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2088 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2089 | "dev": true, 2090 | "license": "ISC", 2091 | "peer": true 2092 | }, 2093 | "node_modules/internal-slot": { 2094 | "version": "1.0.7", 2095 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", 2096 | "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", 2097 | "dev": true, 2098 | "license": "MIT", 2099 | "dependencies": { 2100 | "es-errors": "^1.3.0", 2101 | "hasown": "^2.0.0", 2102 | "side-channel": "^1.0.4" 2103 | }, 2104 | "engines": { 2105 | "node": ">= 0.4" 2106 | } 2107 | }, 2108 | "node_modules/is-array-buffer": { 2109 | "version": "3.0.4", 2110 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", 2111 | "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", 2112 | "dev": true, 2113 | "license": "MIT", 2114 | "dependencies": { 2115 | "call-bind": "^1.0.2", 2116 | "get-intrinsic": "^1.2.1" 2117 | }, 2118 | "engines": { 2119 | "node": ">= 0.4" 2120 | }, 2121 | "funding": { 2122 | "url": "https://github.com/sponsors/ljharb" 2123 | } 2124 | }, 2125 | "node_modules/is-arrayish": { 2126 | "version": "0.2.1", 2127 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2128 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2129 | "dev": true, 2130 | "license": "MIT" 2131 | }, 2132 | "node_modules/is-async-function": { 2133 | "version": "2.0.0", 2134 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", 2135 | "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", 2136 | "dev": true, 2137 | "license": "MIT", 2138 | "dependencies": { 2139 | "has-tostringtag": "^1.0.0" 2140 | }, 2141 | "engines": { 2142 | "node": ">= 0.4" 2143 | }, 2144 | "funding": { 2145 | "url": "https://github.com/sponsors/ljharb" 2146 | } 2147 | }, 2148 | "node_modules/is-bigint": { 2149 | "version": "1.1.0", 2150 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", 2151 | "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", 2152 | "dev": true, 2153 | "license": "MIT", 2154 | "dependencies": { 2155 | "has-bigints": "^1.0.2" 2156 | }, 2157 | "engines": { 2158 | "node": ">= 0.4" 2159 | }, 2160 | "funding": { 2161 | "url": "https://github.com/sponsors/ljharb" 2162 | } 2163 | }, 2164 | "node_modules/is-boolean-object": { 2165 | "version": "1.2.0", 2166 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.0.tgz", 2167 | "integrity": "sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==", 2168 | "dev": true, 2169 | "license": "MIT", 2170 | "dependencies": { 2171 | "call-bind": "^1.0.7", 2172 | "has-tostringtag": "^1.0.2" 2173 | }, 2174 | "engines": { 2175 | "node": ">= 0.4" 2176 | }, 2177 | "funding": { 2178 | "url": "https://github.com/sponsors/ljharb" 2179 | } 2180 | }, 2181 | "node_modules/is-callable": { 2182 | "version": "1.2.7", 2183 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2184 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2185 | "dev": true, 2186 | "license": "MIT", 2187 | "engines": { 2188 | "node": ">= 0.4" 2189 | }, 2190 | "funding": { 2191 | "url": "https://github.com/sponsors/ljharb" 2192 | } 2193 | }, 2194 | "node_modules/is-core-module": { 2195 | "version": "2.15.1", 2196 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 2197 | "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 2198 | "dev": true, 2199 | "license": "MIT", 2200 | "dependencies": { 2201 | "hasown": "^2.0.2" 2202 | }, 2203 | "engines": { 2204 | "node": ">= 0.4" 2205 | }, 2206 | "funding": { 2207 | "url": "https://github.com/sponsors/ljharb" 2208 | } 2209 | }, 2210 | "node_modules/is-data-view": { 2211 | "version": "1.0.1", 2212 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", 2213 | "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", 2214 | "dev": true, 2215 | "license": "MIT", 2216 | "dependencies": { 2217 | "is-typed-array": "^1.1.13" 2218 | }, 2219 | "engines": { 2220 | "node": ">= 0.4" 2221 | }, 2222 | "funding": { 2223 | "url": "https://github.com/sponsors/ljharb" 2224 | } 2225 | }, 2226 | "node_modules/is-date-object": { 2227 | "version": "1.0.5", 2228 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2229 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2230 | "dev": true, 2231 | "license": "MIT", 2232 | "dependencies": { 2233 | "has-tostringtag": "^1.0.0" 2234 | }, 2235 | "engines": { 2236 | "node": ">= 0.4" 2237 | }, 2238 | "funding": { 2239 | "url": "https://github.com/sponsors/ljharb" 2240 | } 2241 | }, 2242 | "node_modules/is-extglob": { 2243 | "version": "2.1.1", 2244 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2245 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2246 | "dev": true, 2247 | "license": "MIT", 2248 | "engines": { 2249 | "node": ">=0.10.0" 2250 | } 2251 | }, 2252 | "node_modules/is-finalizationregistry": { 2253 | "version": "1.1.0", 2254 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz", 2255 | "integrity": "sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==", 2256 | "dev": true, 2257 | "license": "MIT", 2258 | "dependencies": { 2259 | "call-bind": "^1.0.7" 2260 | }, 2261 | "engines": { 2262 | "node": ">= 0.4" 2263 | }, 2264 | "funding": { 2265 | "url": "https://github.com/sponsors/ljharb" 2266 | } 2267 | }, 2268 | "node_modules/is-generator-function": { 2269 | "version": "1.0.10", 2270 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 2271 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 2272 | "dev": true, 2273 | "license": "MIT", 2274 | "dependencies": { 2275 | "has-tostringtag": "^1.0.0" 2276 | }, 2277 | "engines": { 2278 | "node": ">= 0.4" 2279 | }, 2280 | "funding": { 2281 | "url": "https://github.com/sponsors/ljharb" 2282 | } 2283 | }, 2284 | "node_modules/is-glob": { 2285 | "version": "4.0.3", 2286 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2287 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2288 | "dev": true, 2289 | "license": "MIT", 2290 | "dependencies": { 2291 | "is-extglob": "^2.1.1" 2292 | }, 2293 | "engines": { 2294 | "node": ">=0.10.0" 2295 | } 2296 | }, 2297 | "node_modules/is-map": { 2298 | "version": "2.0.3", 2299 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", 2300 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", 2301 | "dev": true, 2302 | "license": "MIT", 2303 | "engines": { 2304 | "node": ">= 0.4" 2305 | }, 2306 | "funding": { 2307 | "url": "https://github.com/sponsors/ljharb" 2308 | } 2309 | }, 2310 | "node_modules/is-negative-zero": { 2311 | "version": "2.0.3", 2312 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", 2313 | "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", 2314 | "dev": true, 2315 | "license": "MIT", 2316 | "engines": { 2317 | "node": ">= 0.4" 2318 | }, 2319 | "funding": { 2320 | "url": "https://github.com/sponsors/ljharb" 2321 | } 2322 | }, 2323 | "node_modules/is-number": { 2324 | "version": "7.0.0", 2325 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2326 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2327 | "dev": true, 2328 | "license": "MIT", 2329 | "engines": { 2330 | "node": ">=0.12.0" 2331 | } 2332 | }, 2333 | "node_modules/is-number-object": { 2334 | "version": "1.1.0", 2335 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.0.tgz", 2336 | "integrity": "sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==", 2337 | "dev": true, 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "call-bind": "^1.0.7", 2341 | "has-tostringtag": "^1.0.2" 2342 | }, 2343 | "engines": { 2344 | "node": ">= 0.4" 2345 | }, 2346 | "funding": { 2347 | "url": "https://github.com/sponsors/ljharb" 2348 | } 2349 | }, 2350 | "node_modules/is-path-inside": { 2351 | "version": "3.0.3", 2352 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2353 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2354 | "dev": true, 2355 | "license": "MIT", 2356 | "peer": true, 2357 | "engines": { 2358 | "node": ">=8" 2359 | } 2360 | }, 2361 | "node_modules/is-regex": { 2362 | "version": "1.2.0", 2363 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.0.tgz", 2364 | "integrity": "sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA==", 2365 | "dev": true, 2366 | "license": "MIT", 2367 | "dependencies": { 2368 | "call-bind": "^1.0.7", 2369 | "gopd": "^1.1.0", 2370 | "has-tostringtag": "^1.0.2", 2371 | "hasown": "^2.0.2" 2372 | }, 2373 | "engines": { 2374 | "node": ">= 0.4" 2375 | }, 2376 | "funding": { 2377 | "url": "https://github.com/sponsors/ljharb" 2378 | } 2379 | }, 2380 | "node_modules/is-set": { 2381 | "version": "2.0.3", 2382 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", 2383 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", 2384 | "dev": true, 2385 | "license": "MIT", 2386 | "engines": { 2387 | "node": ">= 0.4" 2388 | }, 2389 | "funding": { 2390 | "url": "https://github.com/sponsors/ljharb" 2391 | } 2392 | }, 2393 | "node_modules/is-shared-array-buffer": { 2394 | "version": "1.0.3", 2395 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", 2396 | "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", 2397 | "dev": true, 2398 | "license": "MIT", 2399 | "dependencies": { 2400 | "call-bind": "^1.0.7" 2401 | }, 2402 | "engines": { 2403 | "node": ">= 0.4" 2404 | }, 2405 | "funding": { 2406 | "url": "https://github.com/sponsors/ljharb" 2407 | } 2408 | }, 2409 | "node_modules/is-string": { 2410 | "version": "1.1.0", 2411 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.0.tgz", 2412 | "integrity": "sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==", 2413 | "dev": true, 2414 | "license": "MIT", 2415 | "dependencies": { 2416 | "call-bind": "^1.0.7", 2417 | "has-tostringtag": "^1.0.2" 2418 | }, 2419 | "engines": { 2420 | "node": ">= 0.4" 2421 | }, 2422 | "funding": { 2423 | "url": "https://github.com/sponsors/ljharb" 2424 | } 2425 | }, 2426 | "node_modules/is-symbol": { 2427 | "version": "1.1.0", 2428 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.0.tgz", 2429 | "integrity": "sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==", 2430 | "dev": true, 2431 | "license": "MIT", 2432 | "dependencies": { 2433 | "call-bind": "^1.0.7", 2434 | "has-symbols": "^1.0.3", 2435 | "safe-regex-test": "^1.0.3" 2436 | }, 2437 | "engines": { 2438 | "node": ">= 0.4" 2439 | }, 2440 | "funding": { 2441 | "url": "https://github.com/sponsors/ljharb" 2442 | } 2443 | }, 2444 | "node_modules/is-typed-array": { 2445 | "version": "1.1.13", 2446 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", 2447 | "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", 2448 | "dev": true, 2449 | "license": "MIT", 2450 | "dependencies": { 2451 | "which-typed-array": "^1.1.14" 2452 | }, 2453 | "engines": { 2454 | "node": ">= 0.4" 2455 | }, 2456 | "funding": { 2457 | "url": "https://github.com/sponsors/ljharb" 2458 | } 2459 | }, 2460 | "node_modules/is-weakmap": { 2461 | "version": "2.0.2", 2462 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", 2463 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", 2464 | "dev": true, 2465 | "license": "MIT", 2466 | "engines": { 2467 | "node": ">= 0.4" 2468 | }, 2469 | "funding": { 2470 | "url": "https://github.com/sponsors/ljharb" 2471 | } 2472 | }, 2473 | "node_modules/is-weakref": { 2474 | "version": "1.0.2", 2475 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2476 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2477 | "dev": true, 2478 | "license": "MIT", 2479 | "dependencies": { 2480 | "call-bind": "^1.0.2" 2481 | }, 2482 | "funding": { 2483 | "url": "https://github.com/sponsors/ljharb" 2484 | } 2485 | }, 2486 | "node_modules/is-weakset": { 2487 | "version": "2.0.3", 2488 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", 2489 | "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", 2490 | "dev": true, 2491 | "license": "MIT", 2492 | "dependencies": { 2493 | "call-bind": "^1.0.7", 2494 | "get-intrinsic": "^1.2.4" 2495 | }, 2496 | "engines": { 2497 | "node": ">= 0.4" 2498 | }, 2499 | "funding": { 2500 | "url": "https://github.com/sponsors/ljharb" 2501 | } 2502 | }, 2503 | "node_modules/isarray": { 2504 | "version": "2.0.5", 2505 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2506 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 2507 | "dev": true, 2508 | "license": "MIT" 2509 | }, 2510 | "node_modules/isexe": { 2511 | "version": "2.0.0", 2512 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2513 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2514 | "dev": true, 2515 | "license": "ISC" 2516 | }, 2517 | "node_modules/js-yaml": { 2518 | "version": "4.1.0", 2519 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2520 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2521 | "dev": true, 2522 | "license": "MIT", 2523 | "peer": true, 2524 | "dependencies": { 2525 | "argparse": "^2.0.1" 2526 | }, 2527 | "bin": { 2528 | "js-yaml": "bin/js-yaml.js" 2529 | } 2530 | }, 2531 | "node_modules/json-buffer": { 2532 | "version": "3.0.1", 2533 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2534 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2535 | "dev": true, 2536 | "license": "MIT", 2537 | "peer": true 2538 | }, 2539 | "node_modules/json-parse-better-errors": { 2540 | "version": "1.0.2", 2541 | "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 2542 | "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 2543 | "dev": true, 2544 | "license": "MIT" 2545 | }, 2546 | "node_modules/json-schema-traverse": { 2547 | "version": "0.4.1", 2548 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2549 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2550 | "dev": true, 2551 | "license": "MIT", 2552 | "peer": true 2553 | }, 2554 | "node_modules/json-stable-stringify-without-jsonify": { 2555 | "version": "1.0.1", 2556 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2557 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2558 | "dev": true, 2559 | "license": "MIT", 2560 | "peer": true 2561 | }, 2562 | "node_modules/keyv": { 2563 | "version": "4.5.4", 2564 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2565 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2566 | "dev": true, 2567 | "license": "MIT", 2568 | "peer": true, 2569 | "dependencies": { 2570 | "json-buffer": "3.0.1" 2571 | } 2572 | }, 2573 | "node_modules/levn": { 2574 | "version": "0.4.1", 2575 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2576 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2577 | "dev": true, 2578 | "license": "MIT", 2579 | "peer": true, 2580 | "dependencies": { 2581 | "prelude-ls": "^1.2.1", 2582 | "type-check": "~0.4.0" 2583 | }, 2584 | "engines": { 2585 | "node": ">= 0.8.0" 2586 | } 2587 | }, 2588 | "node_modules/load-json-file": { 2589 | "version": "4.0.0", 2590 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", 2591 | "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "dependencies": { 2595 | "graceful-fs": "^4.1.2", 2596 | "parse-json": "^4.0.0", 2597 | "pify": "^3.0.0", 2598 | "strip-bom": "^3.0.0" 2599 | }, 2600 | "engines": { 2601 | "node": ">=4" 2602 | } 2603 | }, 2604 | "node_modules/locate-path": { 2605 | "version": "6.0.0", 2606 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2607 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2608 | "dev": true, 2609 | "license": "MIT", 2610 | "peer": true, 2611 | "dependencies": { 2612 | "p-locate": "^5.0.0" 2613 | }, 2614 | "engines": { 2615 | "node": ">=10" 2616 | }, 2617 | "funding": { 2618 | "url": "https://github.com/sponsors/sindresorhus" 2619 | } 2620 | }, 2621 | "node_modules/lodash.merge": { 2622 | "version": "4.6.2", 2623 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2624 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2625 | "dev": true, 2626 | "license": "MIT", 2627 | "peer": true 2628 | }, 2629 | "node_modules/memorystream": { 2630 | "version": "0.3.1", 2631 | "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", 2632 | "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", 2633 | "dev": true, 2634 | "engines": { 2635 | "node": ">= 0.10.0" 2636 | } 2637 | }, 2638 | "node_modules/merge2": { 2639 | "version": "1.4.1", 2640 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2641 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2642 | "dev": true, 2643 | "license": "MIT", 2644 | "engines": { 2645 | "node": ">= 8" 2646 | } 2647 | }, 2648 | "node_modules/micromatch": { 2649 | "version": "4.0.8", 2650 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2651 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2652 | "dev": true, 2653 | "license": "MIT", 2654 | "dependencies": { 2655 | "braces": "^3.0.3", 2656 | "picomatch": "^2.3.1" 2657 | }, 2658 | "engines": { 2659 | "node": ">=8.6" 2660 | } 2661 | }, 2662 | "node_modules/minimatch": { 2663 | "version": "9.0.3", 2664 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 2665 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 2666 | "dev": true, 2667 | "license": "ISC", 2668 | "dependencies": { 2669 | "brace-expansion": "^2.0.1" 2670 | }, 2671 | "engines": { 2672 | "node": ">=16 || 14 >=14.17" 2673 | }, 2674 | "funding": { 2675 | "url": "https://github.com/sponsors/isaacs" 2676 | } 2677 | }, 2678 | "node_modules/ms": { 2679 | "version": "2.1.3", 2680 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2681 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2682 | "dev": true, 2683 | "license": "MIT" 2684 | }, 2685 | "node_modules/natural-compare": { 2686 | "version": "1.4.0", 2687 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2688 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2689 | "dev": true, 2690 | "license": "MIT" 2691 | }, 2692 | "node_modules/nice-try": { 2693 | "version": "1.0.5", 2694 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 2695 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 2696 | "dev": true, 2697 | "license": "MIT" 2698 | }, 2699 | "node_modules/normalize-package-data": { 2700 | "version": "2.5.0", 2701 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", 2702 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", 2703 | "dev": true, 2704 | "license": "BSD-2-Clause", 2705 | "dependencies": { 2706 | "hosted-git-info": "^2.1.4", 2707 | "resolve": "^1.10.0", 2708 | "semver": "2 || 3 || 4 || 5", 2709 | "validate-npm-package-license": "^3.0.1" 2710 | } 2711 | }, 2712 | "node_modules/normalize-package-data/node_modules/semver": { 2713 | "version": "5.7.2", 2714 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 2715 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 2716 | "dev": true, 2717 | "license": "ISC", 2718 | "bin": { 2719 | "semver": "bin/semver" 2720 | } 2721 | }, 2722 | "node_modules/npm-run-all": { 2723 | "version": "4.1.5", 2724 | "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", 2725 | "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", 2726 | "dev": true, 2727 | "license": "MIT", 2728 | "dependencies": { 2729 | "ansi-styles": "^3.2.1", 2730 | "chalk": "^2.4.1", 2731 | "cross-spawn": "^6.0.5", 2732 | "memorystream": "^0.3.1", 2733 | "minimatch": "^3.0.4", 2734 | "pidtree": "^0.3.0", 2735 | "read-pkg": "^3.0.0", 2736 | "shell-quote": "^1.6.1", 2737 | "string.prototype.padend": "^3.0.0" 2738 | }, 2739 | "bin": { 2740 | "npm-run-all": "bin/npm-run-all/index.js", 2741 | "run-p": "bin/run-p/index.js", 2742 | "run-s": "bin/run-s/index.js" 2743 | }, 2744 | "engines": { 2745 | "node": ">= 4" 2746 | } 2747 | }, 2748 | "node_modules/npm-run-all/node_modules/ansi-styles": { 2749 | "version": "3.2.1", 2750 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 2751 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 2752 | "dev": true, 2753 | "license": "MIT", 2754 | "dependencies": { 2755 | "color-convert": "^1.9.0" 2756 | }, 2757 | "engines": { 2758 | "node": ">=4" 2759 | } 2760 | }, 2761 | "node_modules/npm-run-all/node_modules/brace-expansion": { 2762 | "version": "1.1.11", 2763 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2764 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2765 | "dev": true, 2766 | "license": "MIT", 2767 | "dependencies": { 2768 | "balanced-match": "^1.0.0", 2769 | "concat-map": "0.0.1" 2770 | } 2771 | }, 2772 | "node_modules/npm-run-all/node_modules/chalk": { 2773 | "version": "2.4.2", 2774 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 2775 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 2776 | "dev": true, 2777 | "license": "MIT", 2778 | "dependencies": { 2779 | "ansi-styles": "^3.2.1", 2780 | "escape-string-regexp": "^1.0.5", 2781 | "supports-color": "^5.3.0" 2782 | }, 2783 | "engines": { 2784 | "node": ">=4" 2785 | } 2786 | }, 2787 | "node_modules/npm-run-all/node_modules/color-convert": { 2788 | "version": "1.9.3", 2789 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 2790 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 2791 | "dev": true, 2792 | "license": "MIT", 2793 | "dependencies": { 2794 | "color-name": "1.1.3" 2795 | } 2796 | }, 2797 | "node_modules/npm-run-all/node_modules/color-name": { 2798 | "version": "1.1.3", 2799 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 2800 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 2801 | "dev": true, 2802 | "license": "MIT" 2803 | }, 2804 | "node_modules/npm-run-all/node_modules/cross-spawn": { 2805 | "version": "6.0.6", 2806 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", 2807 | "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", 2808 | "dev": true, 2809 | "license": "MIT", 2810 | "dependencies": { 2811 | "nice-try": "^1.0.4", 2812 | "path-key": "^2.0.1", 2813 | "semver": "^5.5.0", 2814 | "shebang-command": "^1.2.0", 2815 | "which": "^1.2.9" 2816 | }, 2817 | "engines": { 2818 | "node": ">=4.8" 2819 | } 2820 | }, 2821 | "node_modules/npm-run-all/node_modules/escape-string-regexp": { 2822 | "version": "1.0.5", 2823 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 2824 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 2825 | "dev": true, 2826 | "license": "MIT", 2827 | "engines": { 2828 | "node": ">=0.8.0" 2829 | } 2830 | }, 2831 | "node_modules/npm-run-all/node_modules/has-flag": { 2832 | "version": "3.0.0", 2833 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2834 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2835 | "dev": true, 2836 | "license": "MIT", 2837 | "engines": { 2838 | "node": ">=4" 2839 | } 2840 | }, 2841 | "node_modules/npm-run-all/node_modules/minimatch": { 2842 | "version": "3.1.2", 2843 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2844 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2845 | "dev": true, 2846 | "license": "ISC", 2847 | "dependencies": { 2848 | "brace-expansion": "^1.1.7" 2849 | }, 2850 | "engines": { 2851 | "node": "*" 2852 | } 2853 | }, 2854 | "node_modules/npm-run-all/node_modules/path-key": { 2855 | "version": "2.0.1", 2856 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 2857 | "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", 2858 | "dev": true, 2859 | "license": "MIT", 2860 | "engines": { 2861 | "node": ">=4" 2862 | } 2863 | }, 2864 | "node_modules/npm-run-all/node_modules/semver": { 2865 | "version": "5.7.2", 2866 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 2867 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 2868 | "dev": true, 2869 | "license": "ISC", 2870 | "bin": { 2871 | "semver": "bin/semver" 2872 | } 2873 | }, 2874 | "node_modules/npm-run-all/node_modules/shebang-command": { 2875 | "version": "1.2.0", 2876 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2877 | "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", 2878 | "dev": true, 2879 | "license": "MIT", 2880 | "dependencies": { 2881 | "shebang-regex": "^1.0.0" 2882 | }, 2883 | "engines": { 2884 | "node": ">=0.10.0" 2885 | } 2886 | }, 2887 | "node_modules/npm-run-all/node_modules/shebang-regex": { 2888 | "version": "1.0.0", 2889 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2890 | "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", 2891 | "dev": true, 2892 | "license": "MIT", 2893 | "engines": { 2894 | "node": ">=0.10.0" 2895 | } 2896 | }, 2897 | "node_modules/npm-run-all/node_modules/supports-color": { 2898 | "version": "5.5.0", 2899 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2900 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2901 | "dev": true, 2902 | "license": "MIT", 2903 | "dependencies": { 2904 | "has-flag": "^3.0.0" 2905 | }, 2906 | "engines": { 2907 | "node": ">=4" 2908 | } 2909 | }, 2910 | "node_modules/npm-run-all/node_modules/which": { 2911 | "version": "1.3.1", 2912 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2913 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2914 | "dev": true, 2915 | "license": "ISC", 2916 | "dependencies": { 2917 | "isexe": "^2.0.0" 2918 | }, 2919 | "bin": { 2920 | "which": "bin/which" 2921 | } 2922 | }, 2923 | "node_modules/object-inspect": { 2924 | "version": "1.13.3", 2925 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", 2926 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", 2927 | "dev": true, 2928 | "license": "MIT", 2929 | "engines": { 2930 | "node": ">= 0.4" 2931 | }, 2932 | "funding": { 2933 | "url": "https://github.com/sponsors/ljharb" 2934 | } 2935 | }, 2936 | "node_modules/object-keys": { 2937 | "version": "1.1.1", 2938 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2939 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2940 | "dev": true, 2941 | "license": "MIT", 2942 | "engines": { 2943 | "node": ">= 0.4" 2944 | } 2945 | }, 2946 | "node_modules/object.assign": { 2947 | "version": "4.1.5", 2948 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", 2949 | "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", 2950 | "dev": true, 2951 | "license": "MIT", 2952 | "dependencies": { 2953 | "call-bind": "^1.0.5", 2954 | "define-properties": "^1.2.1", 2955 | "has-symbols": "^1.0.3", 2956 | "object-keys": "^1.1.1" 2957 | }, 2958 | "engines": { 2959 | "node": ">= 0.4" 2960 | }, 2961 | "funding": { 2962 | "url": "https://github.com/sponsors/ljharb" 2963 | } 2964 | }, 2965 | "node_modules/once": { 2966 | "version": "1.4.0", 2967 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2968 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2969 | "dev": true, 2970 | "license": "ISC", 2971 | "peer": true, 2972 | "dependencies": { 2973 | "wrappy": "1" 2974 | } 2975 | }, 2976 | "node_modules/optionator": { 2977 | "version": "0.9.4", 2978 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2979 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2980 | "dev": true, 2981 | "license": "MIT", 2982 | "peer": true, 2983 | "dependencies": { 2984 | "deep-is": "^0.1.3", 2985 | "fast-levenshtein": "^2.0.6", 2986 | "levn": "^0.4.1", 2987 | "prelude-ls": "^1.2.1", 2988 | "type-check": "^0.4.0", 2989 | "word-wrap": "^1.2.5" 2990 | }, 2991 | "engines": { 2992 | "node": ">= 0.8.0" 2993 | } 2994 | }, 2995 | "node_modules/p-limit": { 2996 | "version": "3.1.0", 2997 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2998 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2999 | "dev": true, 3000 | "license": "MIT", 3001 | "peer": true, 3002 | "dependencies": { 3003 | "yocto-queue": "^0.1.0" 3004 | }, 3005 | "engines": { 3006 | "node": ">=10" 3007 | }, 3008 | "funding": { 3009 | "url": "https://github.com/sponsors/sindresorhus" 3010 | } 3011 | }, 3012 | "node_modules/p-locate": { 3013 | "version": "5.0.0", 3014 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3015 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3016 | "dev": true, 3017 | "license": "MIT", 3018 | "peer": true, 3019 | "dependencies": { 3020 | "p-limit": "^3.0.2" 3021 | }, 3022 | "engines": { 3023 | "node": ">=10" 3024 | }, 3025 | "funding": { 3026 | "url": "https://github.com/sponsors/sindresorhus" 3027 | } 3028 | }, 3029 | "node_modules/parent-module": { 3030 | "version": "1.0.1", 3031 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3032 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3033 | "dev": true, 3034 | "license": "MIT", 3035 | "peer": true, 3036 | "dependencies": { 3037 | "callsites": "^3.0.0" 3038 | }, 3039 | "engines": { 3040 | "node": ">=6" 3041 | } 3042 | }, 3043 | "node_modules/parse-json": { 3044 | "version": "4.0.0", 3045 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 3046 | "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", 3047 | "dev": true, 3048 | "license": "MIT", 3049 | "dependencies": { 3050 | "error-ex": "^1.3.1", 3051 | "json-parse-better-errors": "^1.0.1" 3052 | }, 3053 | "engines": { 3054 | "node": ">=4" 3055 | } 3056 | }, 3057 | "node_modules/path-exists": { 3058 | "version": "4.0.0", 3059 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3060 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3061 | "dev": true, 3062 | "license": "MIT", 3063 | "peer": true, 3064 | "engines": { 3065 | "node": ">=8" 3066 | } 3067 | }, 3068 | "node_modules/path-is-absolute": { 3069 | "version": "1.0.1", 3070 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3071 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3072 | "dev": true, 3073 | "license": "MIT", 3074 | "peer": true, 3075 | "engines": { 3076 | "node": ">=0.10.0" 3077 | } 3078 | }, 3079 | "node_modules/path-key": { 3080 | "version": "3.1.1", 3081 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3082 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3083 | "dev": true, 3084 | "license": "MIT", 3085 | "peer": true, 3086 | "engines": { 3087 | "node": ">=8" 3088 | } 3089 | }, 3090 | "node_modules/path-parse": { 3091 | "version": "1.0.7", 3092 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3093 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3094 | "dev": true, 3095 | "license": "MIT" 3096 | }, 3097 | "node_modules/path-type": { 3098 | "version": "4.0.0", 3099 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3100 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3101 | "dev": true, 3102 | "license": "MIT", 3103 | "engines": { 3104 | "node": ">=8" 3105 | } 3106 | }, 3107 | "node_modules/picomatch": { 3108 | "version": "2.3.1", 3109 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3110 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3111 | "dev": true, 3112 | "license": "MIT", 3113 | "engines": { 3114 | "node": ">=8.6" 3115 | }, 3116 | "funding": { 3117 | "url": "https://github.com/sponsors/jonschlinkert" 3118 | } 3119 | }, 3120 | "node_modules/pidtree": { 3121 | "version": "0.3.1", 3122 | "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", 3123 | "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", 3124 | "dev": true, 3125 | "license": "MIT", 3126 | "bin": { 3127 | "pidtree": "bin/pidtree.js" 3128 | }, 3129 | "engines": { 3130 | "node": ">=0.10" 3131 | } 3132 | }, 3133 | "node_modules/pify": { 3134 | "version": "3.0.0", 3135 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 3136 | "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", 3137 | "dev": true, 3138 | "license": "MIT", 3139 | "engines": { 3140 | "node": ">=4" 3141 | } 3142 | }, 3143 | "node_modules/possible-typed-array-names": { 3144 | "version": "1.0.0", 3145 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", 3146 | "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", 3147 | "dev": true, 3148 | "license": "MIT", 3149 | "engines": { 3150 | "node": ">= 0.4" 3151 | } 3152 | }, 3153 | "node_modules/prelude-ls": { 3154 | "version": "1.2.1", 3155 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3156 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3157 | "dev": true, 3158 | "license": "MIT", 3159 | "peer": true, 3160 | "engines": { 3161 | "node": ">= 0.8.0" 3162 | } 3163 | }, 3164 | "node_modules/prettier": { 3165 | "version": "3.4.2", 3166 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", 3167 | "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", 3168 | "dev": true, 3169 | "license": "MIT", 3170 | "bin": { 3171 | "prettier": "bin/prettier.cjs" 3172 | }, 3173 | "engines": { 3174 | "node": ">=14" 3175 | }, 3176 | "funding": { 3177 | "url": "https://github.com/prettier/prettier?sponsor=1" 3178 | } 3179 | }, 3180 | "node_modules/punycode": { 3181 | "version": "2.3.1", 3182 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3183 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3184 | "dev": true, 3185 | "license": "MIT", 3186 | "peer": true, 3187 | "engines": { 3188 | "node": ">=6" 3189 | } 3190 | }, 3191 | "node_modules/queue-microtask": { 3192 | "version": "1.2.3", 3193 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3194 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3195 | "dev": true, 3196 | "funding": [ 3197 | { 3198 | "type": "github", 3199 | "url": "https://github.com/sponsors/feross" 3200 | }, 3201 | { 3202 | "type": "patreon", 3203 | "url": "https://www.patreon.com/feross" 3204 | }, 3205 | { 3206 | "type": "consulting", 3207 | "url": "https://feross.org/support" 3208 | } 3209 | ], 3210 | "license": "MIT" 3211 | }, 3212 | "node_modules/randombytes": { 3213 | "version": "2.1.0", 3214 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 3215 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 3216 | "dev": true, 3217 | "license": "MIT", 3218 | "dependencies": { 3219 | "safe-buffer": "^5.1.0" 3220 | } 3221 | }, 3222 | "node_modules/read-pkg": { 3223 | "version": "3.0.0", 3224 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", 3225 | "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", 3226 | "dev": true, 3227 | "license": "MIT", 3228 | "dependencies": { 3229 | "load-json-file": "^4.0.0", 3230 | "normalize-package-data": "^2.3.2", 3231 | "path-type": "^3.0.0" 3232 | }, 3233 | "engines": { 3234 | "node": ">=4" 3235 | } 3236 | }, 3237 | "node_modules/read-pkg/node_modules/path-type": { 3238 | "version": "3.0.0", 3239 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", 3240 | "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", 3241 | "dev": true, 3242 | "license": "MIT", 3243 | "dependencies": { 3244 | "pify": "^3.0.0" 3245 | }, 3246 | "engines": { 3247 | "node": ">=4" 3248 | } 3249 | }, 3250 | "node_modules/reflect.getprototypeof": { 3251 | "version": "1.0.7", 3252 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz", 3253 | "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==", 3254 | "dev": true, 3255 | "license": "MIT", 3256 | "dependencies": { 3257 | "call-bind": "^1.0.7", 3258 | "define-properties": "^1.2.1", 3259 | "es-abstract": "^1.23.5", 3260 | "es-errors": "^1.3.0", 3261 | "get-intrinsic": "^1.2.4", 3262 | "gopd": "^1.0.1", 3263 | "which-builtin-type": "^1.1.4" 3264 | }, 3265 | "engines": { 3266 | "node": ">= 0.4" 3267 | }, 3268 | "funding": { 3269 | "url": "https://github.com/sponsors/ljharb" 3270 | } 3271 | }, 3272 | "node_modules/regexp.prototype.flags": { 3273 | "version": "1.5.3", 3274 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", 3275 | "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", 3276 | "dev": true, 3277 | "license": "MIT", 3278 | "dependencies": { 3279 | "call-bind": "^1.0.7", 3280 | "define-properties": "^1.2.1", 3281 | "es-errors": "^1.3.0", 3282 | "set-function-name": "^2.0.2" 3283 | }, 3284 | "engines": { 3285 | "node": ">= 0.4" 3286 | }, 3287 | "funding": { 3288 | "url": "https://github.com/sponsors/ljharb" 3289 | } 3290 | }, 3291 | "node_modules/resolve": { 3292 | "version": "1.22.8", 3293 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3294 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3295 | "dev": true, 3296 | "license": "MIT", 3297 | "dependencies": { 3298 | "is-core-module": "^2.13.0", 3299 | "path-parse": "^1.0.7", 3300 | "supports-preserve-symlinks-flag": "^1.0.0" 3301 | }, 3302 | "bin": { 3303 | "resolve": "bin/resolve" 3304 | }, 3305 | "funding": { 3306 | "url": "https://github.com/sponsors/ljharb" 3307 | } 3308 | }, 3309 | "node_modules/resolve-from": { 3310 | "version": "4.0.0", 3311 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3312 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3313 | "dev": true, 3314 | "license": "MIT", 3315 | "peer": true, 3316 | "engines": { 3317 | "node": ">=4" 3318 | } 3319 | }, 3320 | "node_modules/reusify": { 3321 | "version": "1.0.4", 3322 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3323 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3324 | "dev": true, 3325 | "license": "MIT", 3326 | "engines": { 3327 | "iojs": ">=1.0.0", 3328 | "node": ">=0.10.0" 3329 | } 3330 | }, 3331 | "node_modules/rimraf": { 3332 | "version": "3.0.2", 3333 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3334 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3335 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 3336 | "dev": true, 3337 | "license": "ISC", 3338 | "peer": true, 3339 | "dependencies": { 3340 | "glob": "^7.1.3" 3341 | }, 3342 | "bin": { 3343 | "rimraf": "bin.js" 3344 | }, 3345 | "funding": { 3346 | "url": "https://github.com/sponsors/isaacs" 3347 | } 3348 | }, 3349 | "node_modules/rollup": { 3350 | "version": "4.28.0", 3351 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", 3352 | "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", 3353 | "dev": true, 3354 | "license": "MIT", 3355 | "dependencies": { 3356 | "@types/estree": "1.0.6" 3357 | }, 3358 | "bin": { 3359 | "rollup": "dist/bin/rollup" 3360 | }, 3361 | "engines": { 3362 | "node": ">=18.0.0", 3363 | "npm": ">=8.0.0" 3364 | }, 3365 | "optionalDependencies": { 3366 | "@rollup/rollup-android-arm-eabi": "4.28.0", 3367 | "@rollup/rollup-android-arm64": "4.28.0", 3368 | "@rollup/rollup-darwin-arm64": "4.28.0", 3369 | "@rollup/rollup-darwin-x64": "4.28.0", 3370 | "@rollup/rollup-freebsd-arm64": "4.28.0", 3371 | "@rollup/rollup-freebsd-x64": "4.28.0", 3372 | "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", 3373 | "@rollup/rollup-linux-arm-musleabihf": "4.28.0", 3374 | "@rollup/rollup-linux-arm64-gnu": "4.28.0", 3375 | "@rollup/rollup-linux-arm64-musl": "4.28.0", 3376 | "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", 3377 | "@rollup/rollup-linux-riscv64-gnu": "4.28.0", 3378 | "@rollup/rollup-linux-s390x-gnu": "4.28.0", 3379 | "@rollup/rollup-linux-x64-gnu": "4.28.0", 3380 | "@rollup/rollup-linux-x64-musl": "4.28.0", 3381 | "@rollup/rollup-win32-arm64-msvc": "4.28.0", 3382 | "@rollup/rollup-win32-ia32-msvc": "4.28.0", 3383 | "@rollup/rollup-win32-x64-msvc": "4.28.0", 3384 | "fsevents": "~2.3.2" 3385 | } 3386 | }, 3387 | "node_modules/run-parallel": { 3388 | "version": "1.2.0", 3389 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3390 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3391 | "dev": true, 3392 | "funding": [ 3393 | { 3394 | "type": "github", 3395 | "url": "https://github.com/sponsors/feross" 3396 | }, 3397 | { 3398 | "type": "patreon", 3399 | "url": "https://www.patreon.com/feross" 3400 | }, 3401 | { 3402 | "type": "consulting", 3403 | "url": "https://feross.org/support" 3404 | } 3405 | ], 3406 | "license": "MIT", 3407 | "dependencies": { 3408 | "queue-microtask": "^1.2.2" 3409 | } 3410 | }, 3411 | "node_modules/safe-array-concat": { 3412 | "version": "1.1.2", 3413 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", 3414 | "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", 3415 | "dev": true, 3416 | "license": "MIT", 3417 | "dependencies": { 3418 | "call-bind": "^1.0.7", 3419 | "get-intrinsic": "^1.2.4", 3420 | "has-symbols": "^1.0.3", 3421 | "isarray": "^2.0.5" 3422 | }, 3423 | "engines": { 3424 | "node": ">=0.4" 3425 | }, 3426 | "funding": { 3427 | "url": "https://github.com/sponsors/ljharb" 3428 | } 3429 | }, 3430 | "node_modules/safe-buffer": { 3431 | "version": "5.2.1", 3432 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3433 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3434 | "dev": true, 3435 | "funding": [ 3436 | { 3437 | "type": "github", 3438 | "url": "https://github.com/sponsors/feross" 3439 | }, 3440 | { 3441 | "type": "patreon", 3442 | "url": "https://www.patreon.com/feross" 3443 | }, 3444 | { 3445 | "type": "consulting", 3446 | "url": "https://feross.org/support" 3447 | } 3448 | ], 3449 | "license": "MIT" 3450 | }, 3451 | "node_modules/safe-regex-test": { 3452 | "version": "1.0.3", 3453 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", 3454 | "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", 3455 | "dev": true, 3456 | "license": "MIT", 3457 | "dependencies": { 3458 | "call-bind": "^1.0.6", 3459 | "es-errors": "^1.3.0", 3460 | "is-regex": "^1.1.4" 3461 | }, 3462 | "engines": { 3463 | "node": ">= 0.4" 3464 | }, 3465 | "funding": { 3466 | "url": "https://github.com/sponsors/ljharb" 3467 | } 3468 | }, 3469 | "node_modules/semver": { 3470 | "version": "7.6.3", 3471 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3472 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3473 | "dev": true, 3474 | "license": "ISC", 3475 | "bin": { 3476 | "semver": "bin/semver.js" 3477 | }, 3478 | "engines": { 3479 | "node": ">=10" 3480 | } 3481 | }, 3482 | "node_modules/serialize-javascript": { 3483 | "version": "6.0.2", 3484 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 3485 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 3486 | "dev": true, 3487 | "license": "BSD-3-Clause", 3488 | "dependencies": { 3489 | "randombytes": "^2.1.0" 3490 | } 3491 | }, 3492 | "node_modules/set-function-length": { 3493 | "version": "1.2.2", 3494 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 3495 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 3496 | "dev": true, 3497 | "license": "MIT", 3498 | "dependencies": { 3499 | "define-data-property": "^1.1.4", 3500 | "es-errors": "^1.3.0", 3501 | "function-bind": "^1.1.2", 3502 | "get-intrinsic": "^1.2.4", 3503 | "gopd": "^1.0.1", 3504 | "has-property-descriptors": "^1.0.2" 3505 | }, 3506 | "engines": { 3507 | "node": ">= 0.4" 3508 | } 3509 | }, 3510 | "node_modules/set-function-name": { 3511 | "version": "2.0.2", 3512 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 3513 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 3514 | "dev": true, 3515 | "license": "MIT", 3516 | "dependencies": { 3517 | "define-data-property": "^1.1.4", 3518 | "es-errors": "^1.3.0", 3519 | "functions-have-names": "^1.2.3", 3520 | "has-property-descriptors": "^1.0.2" 3521 | }, 3522 | "engines": { 3523 | "node": ">= 0.4" 3524 | } 3525 | }, 3526 | "node_modules/shebang-command": { 3527 | "version": "2.0.0", 3528 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3529 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3530 | "dev": true, 3531 | "license": "MIT", 3532 | "peer": true, 3533 | "dependencies": { 3534 | "shebang-regex": "^3.0.0" 3535 | }, 3536 | "engines": { 3537 | "node": ">=8" 3538 | } 3539 | }, 3540 | "node_modules/shebang-regex": { 3541 | "version": "3.0.0", 3542 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3543 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3544 | "dev": true, 3545 | "license": "MIT", 3546 | "peer": true, 3547 | "engines": { 3548 | "node": ">=8" 3549 | } 3550 | }, 3551 | "node_modules/shell-quote": { 3552 | "version": "1.8.2", 3553 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", 3554 | "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", 3555 | "dev": true, 3556 | "license": "MIT", 3557 | "engines": { 3558 | "node": ">= 0.4" 3559 | }, 3560 | "funding": { 3561 | "url": "https://github.com/sponsors/ljharb" 3562 | } 3563 | }, 3564 | "node_modules/side-channel": { 3565 | "version": "1.0.6", 3566 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 3567 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 3568 | "dev": true, 3569 | "license": "MIT", 3570 | "dependencies": { 3571 | "call-bind": "^1.0.7", 3572 | "es-errors": "^1.3.0", 3573 | "get-intrinsic": "^1.2.4", 3574 | "object-inspect": "^1.13.1" 3575 | }, 3576 | "engines": { 3577 | "node": ">= 0.4" 3578 | }, 3579 | "funding": { 3580 | "url": "https://github.com/sponsors/ljharb" 3581 | } 3582 | }, 3583 | "node_modules/slash": { 3584 | "version": "3.0.0", 3585 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3586 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3587 | "dev": true, 3588 | "license": "MIT", 3589 | "engines": { 3590 | "node": ">=8" 3591 | } 3592 | }, 3593 | "node_modules/smob": { 3594 | "version": "1.5.0", 3595 | "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", 3596 | "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", 3597 | "dev": true, 3598 | "license": "MIT" 3599 | }, 3600 | "node_modules/source-map": { 3601 | "version": "0.6.1", 3602 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3603 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3604 | "dev": true, 3605 | "license": "BSD-3-Clause", 3606 | "engines": { 3607 | "node": ">=0.10.0" 3608 | } 3609 | }, 3610 | "node_modules/source-map-support": { 3611 | "version": "0.5.21", 3612 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 3613 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 3614 | "dev": true, 3615 | "license": "MIT", 3616 | "dependencies": { 3617 | "buffer-from": "^1.0.0", 3618 | "source-map": "^0.6.0" 3619 | } 3620 | }, 3621 | "node_modules/spdx-correct": { 3622 | "version": "3.2.0", 3623 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 3624 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 3625 | "dev": true, 3626 | "license": "Apache-2.0", 3627 | "dependencies": { 3628 | "spdx-expression-parse": "^3.0.0", 3629 | "spdx-license-ids": "^3.0.0" 3630 | } 3631 | }, 3632 | "node_modules/spdx-exceptions": { 3633 | "version": "2.5.0", 3634 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", 3635 | "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", 3636 | "dev": true, 3637 | "license": "CC-BY-3.0" 3638 | }, 3639 | "node_modules/spdx-expression-parse": { 3640 | "version": "3.0.1", 3641 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 3642 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 3643 | "dev": true, 3644 | "license": "MIT", 3645 | "dependencies": { 3646 | "spdx-exceptions": "^2.1.0", 3647 | "spdx-license-ids": "^3.0.0" 3648 | } 3649 | }, 3650 | "node_modules/spdx-license-ids": { 3651 | "version": "3.0.20", 3652 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", 3653 | "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", 3654 | "dev": true, 3655 | "license": "CC0-1.0" 3656 | }, 3657 | "node_modules/string.prototype.padend": { 3658 | "version": "3.1.6", 3659 | "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz", 3660 | "integrity": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==", 3661 | "dev": true, 3662 | "license": "MIT", 3663 | "dependencies": { 3664 | "call-bind": "^1.0.7", 3665 | "define-properties": "^1.2.1", 3666 | "es-abstract": "^1.23.2", 3667 | "es-object-atoms": "^1.0.0" 3668 | }, 3669 | "engines": { 3670 | "node": ">= 0.4" 3671 | }, 3672 | "funding": { 3673 | "url": "https://github.com/sponsors/ljharb" 3674 | } 3675 | }, 3676 | "node_modules/string.prototype.trim": { 3677 | "version": "1.2.9", 3678 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", 3679 | "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", 3680 | "dev": true, 3681 | "license": "MIT", 3682 | "dependencies": { 3683 | "call-bind": "^1.0.7", 3684 | "define-properties": "^1.2.1", 3685 | "es-abstract": "^1.23.0", 3686 | "es-object-atoms": "^1.0.0" 3687 | }, 3688 | "engines": { 3689 | "node": ">= 0.4" 3690 | }, 3691 | "funding": { 3692 | "url": "https://github.com/sponsors/ljharb" 3693 | } 3694 | }, 3695 | "node_modules/string.prototype.trimend": { 3696 | "version": "1.0.8", 3697 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", 3698 | "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", 3699 | "dev": true, 3700 | "license": "MIT", 3701 | "dependencies": { 3702 | "call-bind": "^1.0.7", 3703 | "define-properties": "^1.2.1", 3704 | "es-object-atoms": "^1.0.0" 3705 | }, 3706 | "funding": { 3707 | "url": "https://github.com/sponsors/ljharb" 3708 | } 3709 | }, 3710 | "node_modules/string.prototype.trimstart": { 3711 | "version": "1.0.8", 3712 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", 3713 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", 3714 | "dev": true, 3715 | "license": "MIT", 3716 | "dependencies": { 3717 | "call-bind": "^1.0.7", 3718 | "define-properties": "^1.2.1", 3719 | "es-object-atoms": "^1.0.0" 3720 | }, 3721 | "engines": { 3722 | "node": ">= 0.4" 3723 | }, 3724 | "funding": { 3725 | "url": "https://github.com/sponsors/ljharb" 3726 | } 3727 | }, 3728 | "node_modules/strip-ansi": { 3729 | "version": "6.0.1", 3730 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3731 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3732 | "dev": true, 3733 | "license": "MIT", 3734 | "peer": true, 3735 | "dependencies": { 3736 | "ansi-regex": "^5.0.1" 3737 | }, 3738 | "engines": { 3739 | "node": ">=8" 3740 | } 3741 | }, 3742 | "node_modules/strip-bom": { 3743 | "version": "3.0.0", 3744 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3745 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3746 | "dev": true, 3747 | "license": "MIT", 3748 | "engines": { 3749 | "node": ">=4" 3750 | } 3751 | }, 3752 | "node_modules/strip-json-comments": { 3753 | "version": "3.1.1", 3754 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3755 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3756 | "dev": true, 3757 | "license": "MIT", 3758 | "peer": true, 3759 | "engines": { 3760 | "node": ">=8" 3761 | }, 3762 | "funding": { 3763 | "url": "https://github.com/sponsors/sindresorhus" 3764 | } 3765 | }, 3766 | "node_modules/supports-color": { 3767 | "version": "7.2.0", 3768 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3769 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3770 | "dev": true, 3771 | "license": "MIT", 3772 | "peer": true, 3773 | "dependencies": { 3774 | "has-flag": "^4.0.0" 3775 | }, 3776 | "engines": { 3777 | "node": ">=8" 3778 | } 3779 | }, 3780 | "node_modules/supports-preserve-symlinks-flag": { 3781 | "version": "1.0.0", 3782 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3783 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3784 | "dev": true, 3785 | "license": "MIT", 3786 | "engines": { 3787 | "node": ">= 0.4" 3788 | }, 3789 | "funding": { 3790 | "url": "https://github.com/sponsors/ljharb" 3791 | } 3792 | }, 3793 | "node_modules/terser": { 3794 | "version": "5.37.0", 3795 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", 3796 | "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", 3797 | "dev": true, 3798 | "license": "BSD-2-Clause", 3799 | "dependencies": { 3800 | "@jridgewell/source-map": "^0.3.3", 3801 | "acorn": "^8.8.2", 3802 | "commander": "^2.20.0", 3803 | "source-map-support": "~0.5.20" 3804 | }, 3805 | "bin": { 3806 | "terser": "bin/terser" 3807 | }, 3808 | "engines": { 3809 | "node": ">=10" 3810 | } 3811 | }, 3812 | "node_modules/text-table": { 3813 | "version": "0.2.0", 3814 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3815 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3816 | "dev": true, 3817 | "license": "MIT", 3818 | "peer": true 3819 | }, 3820 | "node_modules/to-regex-range": { 3821 | "version": "5.0.1", 3822 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3823 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3824 | "dev": true, 3825 | "license": "MIT", 3826 | "dependencies": { 3827 | "is-number": "^7.0.0" 3828 | }, 3829 | "engines": { 3830 | "node": ">=8.0" 3831 | } 3832 | }, 3833 | "node_modules/ts-api-utils": { 3834 | "version": "1.4.3", 3835 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", 3836 | "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", 3837 | "dev": true, 3838 | "license": "MIT", 3839 | "engines": { 3840 | "node": ">=16" 3841 | }, 3842 | "peerDependencies": { 3843 | "typescript": ">=4.2.0" 3844 | } 3845 | }, 3846 | "node_modules/type-check": { 3847 | "version": "0.4.0", 3848 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3849 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3850 | "dev": true, 3851 | "license": "MIT", 3852 | "peer": true, 3853 | "dependencies": { 3854 | "prelude-ls": "^1.2.1" 3855 | }, 3856 | "engines": { 3857 | "node": ">= 0.8.0" 3858 | } 3859 | }, 3860 | "node_modules/type-fest": { 3861 | "version": "0.20.2", 3862 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3863 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3864 | "dev": true, 3865 | "license": "(MIT OR CC0-1.0)", 3866 | "peer": true, 3867 | "engines": { 3868 | "node": ">=10" 3869 | }, 3870 | "funding": { 3871 | "url": "https://github.com/sponsors/sindresorhus" 3872 | } 3873 | }, 3874 | "node_modules/typed-array-buffer": { 3875 | "version": "1.0.2", 3876 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", 3877 | "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", 3878 | "dev": true, 3879 | "license": "MIT", 3880 | "dependencies": { 3881 | "call-bind": "^1.0.7", 3882 | "es-errors": "^1.3.0", 3883 | "is-typed-array": "^1.1.13" 3884 | }, 3885 | "engines": { 3886 | "node": ">= 0.4" 3887 | } 3888 | }, 3889 | "node_modules/typed-array-byte-length": { 3890 | "version": "1.0.1", 3891 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", 3892 | "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", 3893 | "dev": true, 3894 | "license": "MIT", 3895 | "dependencies": { 3896 | "call-bind": "^1.0.7", 3897 | "for-each": "^0.3.3", 3898 | "gopd": "^1.0.1", 3899 | "has-proto": "^1.0.3", 3900 | "is-typed-array": "^1.1.13" 3901 | }, 3902 | "engines": { 3903 | "node": ">= 0.4" 3904 | }, 3905 | "funding": { 3906 | "url": "https://github.com/sponsors/ljharb" 3907 | } 3908 | }, 3909 | "node_modules/typed-array-byte-offset": { 3910 | "version": "1.0.3", 3911 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", 3912 | "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", 3913 | "dev": true, 3914 | "license": "MIT", 3915 | "dependencies": { 3916 | "available-typed-arrays": "^1.0.7", 3917 | "call-bind": "^1.0.7", 3918 | "for-each": "^0.3.3", 3919 | "gopd": "^1.0.1", 3920 | "has-proto": "^1.0.3", 3921 | "is-typed-array": "^1.1.13", 3922 | "reflect.getprototypeof": "^1.0.6" 3923 | }, 3924 | "engines": { 3925 | "node": ">= 0.4" 3926 | }, 3927 | "funding": { 3928 | "url": "https://github.com/sponsors/ljharb" 3929 | } 3930 | }, 3931 | "node_modules/typed-array-length": { 3932 | "version": "1.0.7", 3933 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", 3934 | "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", 3935 | "dev": true, 3936 | "license": "MIT", 3937 | "dependencies": { 3938 | "call-bind": "^1.0.7", 3939 | "for-each": "^0.3.3", 3940 | "gopd": "^1.0.1", 3941 | "is-typed-array": "^1.1.13", 3942 | "possible-typed-array-names": "^1.0.0", 3943 | "reflect.getprototypeof": "^1.0.6" 3944 | }, 3945 | "engines": { 3946 | "node": ">= 0.4" 3947 | }, 3948 | "funding": { 3949 | "url": "https://github.com/sponsors/ljharb" 3950 | } 3951 | }, 3952 | "node_modules/typescript": { 3953 | "version": "5.7.2", 3954 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", 3955 | "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", 3956 | "dev": true, 3957 | "license": "Apache-2.0", 3958 | "bin": { 3959 | "tsc": "bin/tsc", 3960 | "tsserver": "bin/tsserver" 3961 | }, 3962 | "engines": { 3963 | "node": ">=14.17" 3964 | } 3965 | }, 3966 | "node_modules/unbox-primitive": { 3967 | "version": "1.0.2", 3968 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3969 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3970 | "dev": true, 3971 | "license": "MIT", 3972 | "dependencies": { 3973 | "call-bind": "^1.0.2", 3974 | "has-bigints": "^1.0.2", 3975 | "has-symbols": "^1.0.3", 3976 | "which-boxed-primitive": "^1.0.2" 3977 | }, 3978 | "funding": { 3979 | "url": "https://github.com/sponsors/ljharb" 3980 | } 3981 | }, 3982 | "node_modules/uri-js": { 3983 | "version": "4.4.1", 3984 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3985 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3986 | "dev": true, 3987 | "license": "BSD-2-Clause", 3988 | "peer": true, 3989 | "dependencies": { 3990 | "punycode": "^2.1.0" 3991 | } 3992 | }, 3993 | "node_modules/validate-npm-package-license": { 3994 | "version": "3.0.4", 3995 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 3996 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 3997 | "dev": true, 3998 | "license": "Apache-2.0", 3999 | "dependencies": { 4000 | "spdx-correct": "^3.0.0", 4001 | "spdx-expression-parse": "^3.0.0" 4002 | } 4003 | }, 4004 | "node_modules/which": { 4005 | "version": "2.0.2", 4006 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4007 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4008 | "dev": true, 4009 | "license": "ISC", 4010 | "peer": true, 4011 | "dependencies": { 4012 | "isexe": "^2.0.0" 4013 | }, 4014 | "bin": { 4015 | "node-which": "bin/node-which" 4016 | }, 4017 | "engines": { 4018 | "node": ">= 8" 4019 | } 4020 | }, 4021 | "node_modules/which-boxed-primitive": { 4022 | "version": "1.1.0", 4023 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz", 4024 | "integrity": "sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==", 4025 | "dev": true, 4026 | "license": "MIT", 4027 | "dependencies": { 4028 | "is-bigint": "^1.1.0", 4029 | "is-boolean-object": "^1.2.0", 4030 | "is-number-object": "^1.1.0", 4031 | "is-string": "^1.1.0", 4032 | "is-symbol": "^1.1.0" 4033 | }, 4034 | "engines": { 4035 | "node": ">= 0.4" 4036 | }, 4037 | "funding": { 4038 | "url": "https://github.com/sponsors/ljharb" 4039 | } 4040 | }, 4041 | "node_modules/which-builtin-type": { 4042 | "version": "1.2.0", 4043 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz", 4044 | "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==", 4045 | "dev": true, 4046 | "license": "MIT", 4047 | "dependencies": { 4048 | "call-bind": "^1.0.7", 4049 | "function.prototype.name": "^1.1.6", 4050 | "has-tostringtag": "^1.0.2", 4051 | "is-async-function": "^2.0.0", 4052 | "is-date-object": "^1.0.5", 4053 | "is-finalizationregistry": "^1.1.0", 4054 | "is-generator-function": "^1.0.10", 4055 | "is-regex": "^1.1.4", 4056 | "is-weakref": "^1.0.2", 4057 | "isarray": "^2.0.5", 4058 | "which-boxed-primitive": "^1.0.2", 4059 | "which-collection": "^1.0.2", 4060 | "which-typed-array": "^1.1.15" 4061 | }, 4062 | "engines": { 4063 | "node": ">= 0.4" 4064 | }, 4065 | "funding": { 4066 | "url": "https://github.com/sponsors/ljharb" 4067 | } 4068 | }, 4069 | "node_modules/which-collection": { 4070 | "version": "1.0.2", 4071 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 4072 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 4073 | "dev": true, 4074 | "license": "MIT", 4075 | "dependencies": { 4076 | "is-map": "^2.0.3", 4077 | "is-set": "^2.0.3", 4078 | "is-weakmap": "^2.0.2", 4079 | "is-weakset": "^2.0.3" 4080 | }, 4081 | "engines": { 4082 | "node": ">= 0.4" 4083 | }, 4084 | "funding": { 4085 | "url": "https://github.com/sponsors/ljharb" 4086 | } 4087 | }, 4088 | "node_modules/which-typed-array": { 4089 | "version": "1.1.16", 4090 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz", 4091 | "integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==", 4092 | "dev": true, 4093 | "license": "MIT", 4094 | "dependencies": { 4095 | "available-typed-arrays": "^1.0.7", 4096 | "call-bind": "^1.0.7", 4097 | "for-each": "^0.3.3", 4098 | "gopd": "^1.0.1", 4099 | "has-tostringtag": "^1.0.2" 4100 | }, 4101 | "engines": { 4102 | "node": ">= 0.4" 4103 | }, 4104 | "funding": { 4105 | "url": "https://github.com/sponsors/ljharb" 4106 | } 4107 | }, 4108 | "node_modules/word-wrap": { 4109 | "version": "1.2.5", 4110 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 4111 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 4112 | "dev": true, 4113 | "license": "MIT", 4114 | "peer": true, 4115 | "engines": { 4116 | "node": ">=0.10.0" 4117 | } 4118 | }, 4119 | "node_modules/wrappy": { 4120 | "version": "1.0.2", 4121 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4122 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4123 | "dev": true, 4124 | "license": "ISC", 4125 | "peer": true 4126 | }, 4127 | "node_modules/yocto-queue": { 4128 | "version": "0.1.0", 4129 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4130 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4131 | "dev": true, 4132 | "license": "MIT", 4133 | "peer": true, 4134 | "engines": { 4135 | "node": ">=10" 4136 | }, 4137 | "funding": { 4138 | "url": "https://github.com/sponsors/sindresorhus" 4139 | } 4140 | } 4141 | } 4142 | } 4143 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "performance-event-timing-polyfill", 3 | "version": "0.5.4", 4 | "description": "Provide a polyfill for the PerformanceEventTiming interface", 5 | "type": "module", 6 | "main": "dist/performance-event-timing-polyfill.umd.js", 7 | "module": "dist/performance-event-timing-polyfill.js", 8 | "unpkg": "dist/performance-event-timing-polyfill.iife.js", 9 | "files": [ 10 | "dist", 11 | "src" 12 | ], 13 | "scripts": { 14 | "build": "run-s clean build:ts build:js", 15 | "build:ts": "tsc -b", 16 | "build:js": "rollup -c", 17 | "release:major": "npm version major -m 'Release v%s' && npm publish", 18 | "release:minor": "npm version minor -m 'Release v%s' && npm publish", 19 | "release:patch": "npm version patch -m 'Release v%s' && npm publish", 20 | "clean": "rm -rf dist tsconfig.tsbuildinfo", 21 | "dev": "run-p watch", 22 | "watch": "run-p watch:*", 23 | "watch:ts": "tsc -b -w", 24 | "watch:js": "rollup -c -w" 25 | }, 26 | "keywords": [ 27 | "crux", 28 | "performance", 29 | "metrics", 30 | "timing", 31 | "polyfill", 32 | "PerformanceEventTiming", 33 | "Performance Event Timing Polyfill", 34 | "Core Web Vitals", 35 | "INP" 36 | ], 37 | "author": { 38 | "name": "Uxify", 39 | "email": "support@uxify.com", 40 | "url": "https://uxify.com/" 41 | }, 42 | "license": "Apache-2.0", 43 | "repository": { 44 | "type": "git", 45 | "url": "https://github.com/uxify-ltd/performance-event-timing-polyfill.git" 46 | }, 47 | "bugs": { 48 | "url": "https://github.com/uxify-ltd/performance-event-timing-polyfill/issues" 49 | }, 50 | "prettier": { 51 | "arrowParens": "always", 52 | "bracketSpacing": false, 53 | "quoteProps": "preserve", 54 | "singleQuote": true 55 | }, 56 | "devDependencies": { 57 | "@rollup/plugin-terser": "^0.4.4", 58 | "@typescript-eslint/eslint-plugin": "^6.16.0", 59 | "@typescript-eslint/parser": "^6.16.0", 60 | "prettier": "^3.1.1", 61 | "rollup": "^4.9.1", 62 | "typescript": "^5.3.3", 63 | "npm-run-all": "^4.1.5" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2024 Uxify Ltd 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | */ 15 | 16 | import terser from '@rollup/plugin-terser'; 17 | 18 | const configurePlugins = ({module}) => { 19 | return [ 20 | terser({ 21 | module, 22 | mangle: true, 23 | compress: true, 24 | }), 25 | ]; 26 | }; 27 | 28 | const configs = [ 29 | { 30 | context: 'this', 31 | input: 'dist/modules/index.js', 32 | output: { 33 | format: 'esm', 34 | file: './dist/performance-event-timing-polyfill.js', 35 | }, 36 | plugins: configurePlugins({module: true}), 37 | }, 38 | { 39 | context: 'this', 40 | input: 'dist/modules/index.js', 41 | output: { 42 | format: 'umd', 43 | file: './dist/performance-event-timing-polyfill.umd.cjs', 44 | name: 'performanceEventTimingPolyfill', 45 | }, 46 | plugins: configurePlugins({module: true}), 47 | }, 48 | { 49 | context: 'this', 50 | input: 'dist/modules/index.js', 51 | output: { 52 | format: 'iife', 53 | file: './dist/performance-event-timing-polyfill.iife.js', 54 | name: 'performanceEventTimingPolyfill', 55 | }, 56 | plugins: configurePlugins({module: false}), 57 | }, 58 | ]; 59 | 60 | export default configs; 61 | -------------------------------------------------------------------------------- /src/eventObserver.ts: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2024 Uxify Ltd 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | */ 15 | 16 | import {EventEndResult, InteractionMeasure} from './types.js'; 17 | 18 | export const interactionEvents = { 19 | pointer: ['pointerdown', 'pointerup', 'click'], 20 | keyboard: ['keydown', 'keyup'], 21 | }; 22 | 23 | const interactionLastEvents: string[] = [ 24 | 'click', 25 | 'auxclick', 26 | 'keyup', 27 | 'pointercancel', 28 | 'contextmenu', 29 | ]; 30 | 31 | const interactionCallbacks: ((entries: InteractionMeasure[]) => void)[] = []; 32 | const scheduledFrames: Record = {}; 33 | const chan = new MessageChannel(); 34 | const events = [ 35 | 'pointerdown', 36 | 'mousedown', 37 | 'pointerup', 38 | 'mouseup', 39 | 'click', 40 | 'auxclick', 41 | 'contextmenu', 42 | 'pointercancel', 43 | 'keydown', 44 | 'keypress', 45 | 'keyup', 46 | ]; 47 | const preferNativeTimes = false; //Using native timestamps leads to weird results (e.g. negative processing times). Need to figure out why 48 | const storedCallbacks: {[key: number]: Function} = {}; 49 | const flushedInteractions: Set = new Set(); 50 | 51 | let isInitialized = false; 52 | let flushTimeout: number = 0; 53 | let measures: InteractionMeasure[] = []; 54 | let activeInteractionId: number = 0; 55 | let callbackIdCounter: number = 0; 56 | let lastResolve: ((e: Event) => void) | null = null; 57 | let currentFrameStart = performance.now(); 58 | 59 | export const onInteraction = (cb: (entries: InteractionMeasure[]) => void) => { 60 | interactionCallbacks.push(cb); 61 | }; 62 | 63 | const getCallbackId = (cb: Function): number => { 64 | storedCallbacks[callbackIdCounter] = cb; 65 | return callbackIdCounter++; 66 | }; 67 | 68 | const trackEvent = (evName: string) => { 69 | window.addEventListener( 70 | evName, 71 | (e) => { 72 | const procStart = performance.now(); 73 | 74 | switch (evName) { 75 | case 'pointerdown': 76 | case 'keydown': 77 | activeInteractionId++; 78 | break; 79 | } 80 | 81 | if (flushedInteractions.has(activeInteractionId)) { 82 | // Pointercancel can occur before contextmenu for example 83 | // in which case the interaction measures might be flushed early. 84 | // For these cases we should ignore events received after the flush (contextmenu after pointercancel) 85 | return; 86 | } 87 | 88 | const measure = { 89 | startTime: procStart, 90 | duration: 0, 91 | target: e.target, 92 | eventType: e.type, // name 93 | eventTime: e.timeStamp, //startTime 94 | interactionId: activeInteractionId, 95 | paintEnd: 0, 96 | 97 | endTime: 0, 98 | inputDelay: procStart - e.timeStamp, 99 | processingDuration: 0, 100 | presentationDelay: 0, 101 | }; 102 | 103 | measureEventDuration(e, measure); 104 | measurePresentationDelay(measure); 105 | }, 106 | true, 107 | ); 108 | }; 109 | 110 | const frameLogger = () => { 111 | currentFrameStart = performance.now(); 112 | requestAnimationFrame(frameLogger); 113 | }; 114 | 115 | const getCompleteInteractionMeasures = (): InteractionMeasure[] => { 116 | if (!measures.length) return []; 117 | 118 | const groupedInteractions: Record = {}; 119 | measures.forEach((m) => { 120 | if (!groupedInteractions[m.interactionId]) { 121 | groupedInteractions[m.interactionId] = []; 122 | } 123 | groupedInteractions[m.interactionId].push(m); 124 | }); 125 | 126 | return Object.values(groupedInteractions) 127 | .filter( 128 | (measures: InteractionMeasure[]) => 129 | measures[measures.length - 1].paintEnd > 0 && 130 | interactionLastEvents.includes(measures[measures.length - 1].eventType), 131 | ) 132 | .flat(); 133 | }; 134 | 135 | const measurePresentationDelay = (measure: InteractionMeasure) => { 136 | clearTimeout(flushTimeout); 137 | const rafExists = scheduledFrames[currentFrameStart]; 138 | if (!rafExists) { 139 | scheduledFrames[currentFrameStart] = []; 140 | } 141 | scheduledFrames[currentFrameStart].push(measure); 142 | if (rafExists) return; 143 | const callFrameTime = currentFrameStart; 144 | 145 | requestAnimationFrame(() => { 146 | const startFrameTime = currentFrameStart; 147 | onNextTick((referenceTimeStamp: number) => { 148 | const diff = referenceTimeStamp - startFrameTime; 149 | scheduledFrames[callFrameTime].forEach((measure) => { 150 | measure.presentationDelay = diff; 151 | measure.paintEnd = referenceTimeStamp; 152 | }); 153 | flushTimeout = setTimeout(flushMeasures, 20) as any; 154 | delete scheduledFrames[callFrameTime]; 155 | }); 156 | }); 157 | }; 158 | 159 | const onNextTick = (cb: Function) => { 160 | let cbFired = false; 161 | requestAnimationFrame((animationQueueStart) => { 162 | if (cbFired) return; 163 | cb( 164 | preferNativeTimes ? animationQueueStart : currentFrameStart, 165 | 'animationFrame', 166 | ); 167 | cbFired = true; 168 | }); 169 | chan.port2.postMessage( 170 | getCallbackId((e: MessageEvent) => { 171 | if (cbFired) return; 172 | cb(preferNativeTimes ? e.timeStamp : performance.now(), 'channelMessage'); 173 | cbFired = true; 174 | }), 175 | ); 176 | lastResolve = (e: Event) => { 177 | if (cbFired) return; 178 | cb(preferNativeTimes ? e.timeStamp : performance.now(), 'eventFired'); 179 | cbFired = true; 180 | }; 181 | }; 182 | 183 | const measureEventDuration = (e: Event, measure: InteractionMeasure) => { 184 | lastResolve && lastResolve(e); 185 | const evName = e.type; 186 | new Promise((res) => { 187 | onNextTick((referenceTimeStamp: number) => { 188 | res({ 189 | evName, 190 | timeStamp: referenceTimeStamp, 191 | }); 192 | }); 193 | }).then(({timeStamp}) => { 194 | const dur = timeStamp - measure.startTime; 195 | measure.duration = dur; 196 | measure.endTime = timeStamp; 197 | measure.processingDuration = dur; 198 | measures.push(measure); 199 | }); 200 | }; 201 | 202 | const flushMeasures = () => { 203 | if (!measures.length) return; 204 | 205 | const completeInteractionMeasures = getCompleteInteractionMeasures(); 206 | 207 | if (!completeInteractionMeasures.length) return; 208 | 209 | interactionCallbacks.forEach((cb) => { 210 | cb(completeInteractionMeasures); 211 | }); 212 | 213 | for (const m of completeInteractionMeasures) { 214 | flushedInteractions.add(m.interactionId); 215 | measures.splice(measures.indexOf(m), 1); 216 | } 217 | }; 218 | 219 | export const initObserver = () => { 220 | if (isInitialized) return; 221 | isInitialized = true; 222 | 223 | chan.port1.onmessage = (e) => { 224 | storedCallbacks[e.data](e); 225 | delete storedCallbacks[e.data]; 226 | }; 227 | 228 | for (const ev of events) { 229 | trackEvent(ev); 230 | } 231 | 232 | // Mobile Safari won't dispatch click unless there is at least one click listener on the document or its children 233 | document.addEventListener('click', () => {}, true); 234 | 235 | requestAnimationFrame(frameLogger); 236 | }; 237 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2024 Uxify Ltd 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | */ 15 | 16 | import {initPolyfill} from './polyfill.js'; 17 | 18 | initPolyfill(); 19 | 20 | export {onInteraction} from './eventObserver.js'; 21 | export {initPolyfill} from './polyfill.js'; 22 | export * from './types.js'; 23 | -------------------------------------------------------------------------------- /src/polyfill.ts: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2024 Uxify Ltd 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | */ 15 | 16 | import { 17 | initObserver, 18 | onInteraction, 19 | interactionEvents, 20 | } from './eventObserver.js'; 21 | import { 22 | InteractionMeasure, 23 | PerformanceEventTimingInitPolyfill, 24 | PerformanceObserverInitPolyfill, 25 | } from './types.js'; 26 | 27 | let firstInteraction: PerformanceEventTiming | null = null; 28 | const supportedTypes: string[] = ['event', 'first-input']; 29 | const hasNativeEventTimingSupport = 30 | 'PerformanceEventTiming' in self && 31 | 'interactionId' in PerformanceEventTiming.prototype; 32 | 33 | export const initPolyfill = () => { 34 | initObserver(); 35 | 36 | if (!('PerformanceObserver' in self)) { 37 | return; 38 | } 39 | 40 | if ( 41 | // @ts-ignore 42 | !window.forceEventTimingPolyfill && 43 | hasNativeEventTimingSupport 44 | ) { 45 | return; 46 | } 47 | 48 | class PerformanceEventTimingPolyfill { 49 | startTime!: number; 50 | duration!: number; 51 | entryType!: string; 52 | name!: string; 53 | cancelable!: boolean; 54 | interactionId!: number; 55 | processingEnd!: number; 56 | processingStart!: number; 57 | target!: Node | null; 58 | toJSON!: () => string; 59 | intoFirstInputEntry!: () => PerformanceEventTimingPolyfill; 60 | 61 | //constructor(init: PerformanceEventTimingInitPolyfill) { 62 | // Object.assign(this, init); 63 | //} 64 | 65 | static fromObject( 66 | init: PerformanceEventTimingInitPolyfill, 67 | ): PerformanceEventTimingPolyfill { 68 | const entry = new PerformanceEventTimingPolyfill(); 69 | Object.assign(entry, init); 70 | return entry; 71 | } 72 | } 73 | 74 | PerformanceEventTimingPolyfill.prototype.startTime = 0; 75 | PerformanceEventTimingPolyfill.prototype.duration = 0; 76 | PerformanceEventTimingPolyfill.prototype.entryType = 'event'; 77 | PerformanceEventTimingPolyfill.prototype.name = 'event'; 78 | PerformanceEventTimingPolyfill.prototype.cancelable = true; 79 | PerformanceEventTimingPolyfill.prototype.interactionId = 0; 80 | PerformanceEventTimingPolyfill.prototype.processingEnd = 0; 81 | PerformanceEventTimingPolyfill.prototype.processingStart = 0; 82 | PerformanceEventTimingPolyfill.prototype.target = null; 83 | PerformanceEventTimingPolyfill.prototype.toJSON = function () { 84 | const result: Record = {}; 85 | for (const key of Object.keys(this)) { 86 | result[key] = (this as any)[key]; 87 | } 88 | return JSON.stringify(result); 89 | }; 90 | 91 | PerformanceEventTimingPolyfill.prototype.intoFirstInputEntry = function () { 92 | const clone: Record = {}; 93 | for (const key of Object.keys(this)) { 94 | clone[key] = (this as any)[key]; 95 | } 96 | 97 | clone.entryType = 'first-input'; 98 | return PerformanceEventTimingPolyfill.fromObject( 99 | clone as PerformanceEventTimingInitPolyfill, 100 | ); 101 | }; 102 | 103 | (self as typeof globalThis).PerformanceEventTiming = 104 | PerformanceEventTimingPolyfill as typeof PerformanceEventTiming; 105 | 106 | class PerformanceObserverEntryListPolyfill { 107 | #entries: PerformanceEventTiming[]; 108 | 109 | constructor(entries: PerformanceEventTiming[], threshold?: number) { 110 | this.#entries = entries.filter( 111 | (entry) => entry.duration >= (threshold || 16), 112 | ); 113 | } 114 | 115 | getEntries() { 116 | return this.#entries; 117 | } 118 | 119 | getEntriesByName(name: string, type?: string): PerformanceEntryList { 120 | return this.#entries.filter( 121 | (entry) => entry.name === name && (!type || entry.entryType === type), 122 | ); 123 | } 124 | 125 | getEntriesByType(type: string): PerformanceEntryList { 126 | return this.#entries.filter((entry) => entry.entryType === type); 127 | } 128 | } 129 | 130 | // @ts-ignore 131 | class PerformanceObserverPolyfill extends PerformanceObserver { 132 | static #nativePO = PerformanceObserver; 133 | static #types: string[] | undefined = undefined; 134 | #callback: PerformanceObserverCallback; 135 | threshold: number = 104; 136 | 137 | constructor(callback: PerformanceObserverCallback) { 138 | super(callback); 139 | this.#callback = callback; 140 | } 141 | 142 | observe(options: PerformanceObserverInitPolyfill) { 143 | if ( 144 | options.entryTypes != undefined && 145 | (options.durationThreshold != undefined || 146 | options.buffered != undefined || 147 | options.type != undefined) 148 | ) { 149 | // Not allowed so we just ignore the options 150 | options.entryTypes = undefined; 151 | } 152 | 153 | let nativeObserveCalled = false; 154 | 155 | if (options.entryTypes) { 156 | if ( 157 | options.entryTypes.some((type) => supportedTypes.indexOf(type) == -1) 158 | ) { 159 | super.observe(options); 160 | nativeObserveCalled = true; 161 | } 162 | if ( 163 | !options.entryTypes.some((type) => supportedTypes.indexOf(type) > -1) 164 | ) { 165 | return; 166 | } 167 | } 168 | 169 | if ( 170 | !options.type || 171 | supportedTypes.indexOf(options.type.toLowerCase()) == -1 172 | ) { 173 | super.observe(options); 174 | return; 175 | } 176 | 177 | if ( 178 | // @ts-ignore 179 | !window.forceEventTimingPolyfill && 180 | hasNativeEventTimingSupport && 181 | !nativeObserveCalled 182 | ) { 183 | super.observe(options); 184 | return; 185 | } 186 | 187 | callbacks.push([this.#callback, this]); 188 | 189 | if (options.durationThreshold != undefined && !options.entryTypes) { 190 | this.threshold = Math.max(options.durationThreshold, 16); 191 | } 192 | 193 | if (options.buffered && !options.entryTypes) { 194 | if (options.type == 'first-input') { 195 | if (firstInteraction) { 196 | this.#callback( 197 | new PerformanceObserverEntryListPolyfill( 198 | [firstInteraction], 199 | this.threshold, 200 | ), 201 | this, 202 | ); 203 | } 204 | return; 205 | } 206 | 207 | this.#callback( 208 | new PerformanceObserverEntryListPolyfill(buffer, this.threshold), 209 | this, 210 | ); 211 | } 212 | } 213 | 214 | disconnect() { 215 | super.disconnect(); 216 | const index = callbacks.indexOf([this.#callback, this]); 217 | if (index !== -1) { 218 | callbacks.splice(index, 1); 219 | } 220 | } 221 | 222 | static get supportedEntryTypes() { 223 | if (PerformanceObserverPolyfill.#types == undefined) { 224 | PerformanceObserverPolyfill.#types = Array.from( 225 | PerformanceObserverPolyfill.#nativePO.supportedEntryTypes, 226 | ); 227 | 228 | if (PerformanceObserverPolyfill.#types.indexOf('event') == -1) { 229 | PerformanceObserverPolyfill.#types.push('event'); 230 | PerformanceObserverPolyfill.#types.push('first-input'); 231 | } 232 | } 233 | 234 | return PerformanceObserverPolyfill.#types; 235 | } 236 | } 237 | 238 | // @ts-ignore 239 | (self as typeof globalThis).PerformanceObserver = PerformanceObserverPolyfill; 240 | 241 | const buffer: PerformanceEventTiming[] = []; 242 | const callbacks: [ 243 | PerformanceObserverCallback, 244 | PerformanceObserverPolyfill, 245 | ][] = []; 246 | 247 | const roundToNearestMultipleOfEight = (num: number) => { 248 | const r = num % 8; 249 | const adder = 8 - r < 4 ? -(8 - r) : 8 - r; 250 | num += r > 0 ? 8 - adder : 0; 251 | return num; 252 | }; 253 | 254 | onInteraction((entries: InteractionMeasure[]) => { 255 | const interactions: Record = {}; 256 | const interactionEventsFlat = Object.values(interactionEvents).flat(); 257 | 258 | entries.forEach((m) => { 259 | if (!interactions[m.interactionId]) { 260 | interactions[m.interactionId] = []; 261 | } 262 | 263 | interactions[m.interactionId].push( 264 | PerformanceEventTimingPolyfill.fromObject({ 265 | startTime: m.eventTime, 266 | //duration: Math.round(m.inputDelay + m.duration + m.presentationDelay), 267 | duration: roundToNearestMultipleOfEight( 268 | //Math.round(m.endTime + m.presentationDelay - m.eventTime), 269 | Math.round(m.paintEnd - m.eventTime), 270 | ), 271 | interactionId: 272 | interactionEventsFlat.indexOf(m.eventType) > -1 273 | ? m.interactionId 274 | : 0, 275 | processingStart: m.startTime, 276 | processingEnd: m.startTime + m.processingDuration, 277 | entryType: 'event', 278 | name: m.eventType, 279 | target: m.target as Node, 280 | }), 281 | ); 282 | }); 283 | 284 | const interactionsListFlat = Object.values(interactions).flat(); 285 | 286 | buffer.push(...interactionsListFlat); 287 | 288 | for (const [callback, observer] of callbacks) { 289 | const interactionsList = new PerformanceObserverEntryListPolyfill( 290 | interactionsListFlat, 291 | observer.threshold, 292 | ); 293 | 294 | if (!interactionsList.getEntries().length) { 295 | continue; 296 | } 297 | 298 | callback(interactionsList, observer); 299 | } 300 | 301 | if (!firstInteraction && buffer.length) { 302 | firstInteraction = ( 303 | buffer[0] as PerformanceEventTimingPolyfill 304 | ).intoFirstInputEntry(); 305 | 306 | for (const [callback, observer] of callbacks) { 307 | const interactionsList = new PerformanceObserverEntryListPolyfill( 308 | [firstInteraction], 309 | observer.threshold, 310 | ); 311 | 312 | if (!interactionsList.getEntries().length) { 313 | continue; 314 | } 315 | 316 | callback(interactionsList, observer); 317 | } 318 | } 319 | }); 320 | }; 321 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2024 Uxify Ltd 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | */ 15 | 16 | export type EventEndResult = { 17 | evName: string; 18 | timeStamp: number; 19 | }; 20 | 21 | export type InteractionMeasure = { 22 | startTime: number; 23 | endTime: number; 24 | duration: number; 25 | target: EventTarget | null; 26 | inputDelay: number; 27 | processingDuration: number; 28 | presentationDelay: number; 29 | eventType: string; 30 | eventTime: number; 31 | interactionId: number; 32 | paintEnd: number; 33 | }; 34 | 35 | export type PerformanceEventTimingInitPolyfill = { 36 | startTime: number; 37 | duration: number; 38 | entryType: string; 39 | name: string; 40 | interactionId: number; 41 | processingEnd: number; 42 | processingStart: number; 43 | target: Node | null; 44 | }; 45 | 46 | export interface PerformanceObserverInitPolyfill 47 | extends PerformanceObserverInit { 48 | durationThreshold?: number; 49 | } 50 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "rootDir": "./src", 4 | "outDir": "./dist/modules", 5 | "target": "ES2020", 6 | "lib": ["ES2020", "dom"], 7 | "moduleResolution": "node", 8 | "strict": true, 9 | "allowJs": true, 10 | "composite": true, 11 | "declaration": true, 12 | "noUnusedLocals": true, 13 | "esModuleInterop": true, 14 | "noImplicitReturns": true, 15 | "noUnusedParameters": true, 16 | "preserveConstEnums": true, 17 | "tsBuildInfoFile": "./tsconfig.tsbuildinfo" 18 | }, 19 | "include": ["src/**/*.ts"], 20 | "exclude": [] 21 | } 22 | --------------------------------------------------------------------------------