├── .github └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── README.md ├── __tests__ └── index.test.js ├── index.js ├── jest.config.js ├── package-lock.json └── package.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | test: 7 | runs-on: ubuntu-latest 8 | strategy: 9 | matrix: 10 | node-version: [16.x, 18.x, 20.x] 11 | steps: 12 | - uses: actions/checkout@v4 13 | - name: Use Node.js ${{ matrix.node-version }} 14 | uses: actions/setup-node@v4 15 | with: 16 | node-version: ${{ matrix.node-version }} 17 | - run: npm ci 18 | - run: npm test 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PostCSS Size Clamp 2 | 3 | A PostCSS plugin that generates fluid values using modern CSS `clamp()` calculations. 4 | 5 | [![NPM Version](https://img.shields.io/npm/v/postcss-size-clamp.svg)](https://www.npmjs.com/package/postcss-size-clamp) 6 | [![NPM Downloads](https://img.shields.io/npm/dm/postcss-size-clamp.svg)](https://www.npmjs.com/package/postcss-size-clamp) 7 | [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) 8 | [![PostCSS](https://img.shields.io/badge/PostCSS-8.0+-blue.svg)](https://github.com/postcss/postcss) 9 | [![Known Vulnerabilities](https://snyk.io/test/github/coderesolution/postcss-size-clamp/badge.svg)](https://snyk.io/test/github/coderesolution/postcss-size-clamp) 10 | [![Tests](https://github.com/coderesolution/postcss-size-clamp/workflows/Test/badge.svg)](https://github.com/coderesolution/postcss-size-clamp/actions) 11 | [![Bundle Size](https://img.shields.io/bundlephobia/minzip/postcss-size-clamp)](https://bundlephobia.com/package/postcss-size-clamp) 12 | [![GitHub stars](https://img.shields.io/github/stars/coderesolution/postcss-size-clamp.svg?style=social&label=Star)](https://github.com/coderesolution/postcss-size-clamp) 13 | 14 | This plugin was inspired by the excellent [postcss-responsive-type](https://github.com/madeleineostoja/postcss-responsive-type). While it started as a typography solution, it has evolved into a comprehensive fluid value generator for any CSS property. 15 | 16 | Unlike similar plugins, this plugin: 17 | 18 | - Outputs a single line of CSS using `clamp()` instead of multiple media/container queries 19 | - Pre-calculates values for optimized browser rendering 20 | - Supports container query units (`cqw`, `cqi`, `cqb`) 21 | - Supports custom container widths via CSS custom properties 22 | - Works with any CSS property that accepts pixel values 23 | - Includes property blacklisting for granular control 24 | 25 | ## Installation 26 | 27 | ```bash 28 | npm install postcss-size-clamp --save-dev 29 | ``` 30 | 31 | ## Usage 32 | 33 | ```js 34 | // postcss.config.js 35 | module.exports = { 36 | plugins: [ 37 | require('postcss-size-clamp')({ 38 | range: [420, 1620], // default viewport/container range 39 | unit: 'cqw', // default unit (vw, cqw, cqi, cqb, %) 40 | blacklist: [ // properties to ignore 41 | 'container-name', 42 | 'grid-template-areas', 43 | 'grid-template', 44 | 'grid-area', 45 | 'content', 46 | 'list-style', 47 | 'transition', 48 | 'animation', 49 | 'transform', 50 | 'display' 51 | ] 52 | }), 53 | require('postcss-preset-env'), 54 | ], 55 | }; 56 | ``` 57 | 58 | **Basic Usage** 59 | 60 | ```css 61 | .element { 62 | font-size: responsive 16px 32px; 63 | margin-block: responsive 20px 40px; 64 | padding-inline: responsive 16px 32px; 65 | gap: responsive 16px 32px; 66 | } 67 | 68 | /* Typography shorthand with line-height */ 69 | .element { 70 | font-size: responsive 16px 32px / 1.5; /* Sets both font-size and line-height */ 71 | } 72 | ``` 73 | 74 | Outputs: 75 | 76 | ```css 77 | .element { 78 | font-size: clamp(16px, calc(10.4px + 1.33333cqw), 32px); 79 | margin-block: clamp(20px, calc(14.4px + 1.33333cqw), 40px); 80 | padding-inline: clamp(16px, calc(10.4px + 1.33333cqw), 32px); 81 | gap: clamp(16px, calc(10.4px + 1.33333cqw), 32px); 82 | } 83 | 84 | .element { 85 | font-size: clamp(16px, calc(10.4px + 1.33333cqw), 32px); 86 | line-height: 1.5; 87 | } 88 | ``` 89 | 90 | **Understanding Fluid Values** 91 | 92 | The syntax `responsive px px` creates a fluid value that scales between two sizes based on the viewport or container width: 93 | 94 | ```css 95 | .example { 96 | /* At 420px viewport: font-size = 16px 97 | At 1620px viewport: font-size = 32px 98 | Between: scales proportionally */ 99 | font-size: responsive 16px 32px; 100 | } 101 | ``` 102 | 103 | The default range (420px to 1620px) determines when the value starts and stops scaling. Below 420px it stays at 16px, above 1620px it stays at 32px, and between these values it scales fluidly. 104 | 105 | **Custom Range and Units** 106 | 107 | ```css 108 | .element { 109 | margin: responsive 20px 48px; 110 | width: responsive 280px 560px; 111 | fluid-range: 768px 1920px; 112 | fluid-unit: vw; 113 | } 114 | ``` 115 | 116 | Outputs: 117 | 118 | ```css 119 | .element { 120 | margin: clamp(20px, calc(1.33333px + 2.43056vw), 48px); 121 | width: clamp(280px, calc(183.33px + 19.44444vw), 560px); 122 | } 123 | ``` 124 | 125 | **Custom Container Widths** 126 | 127 | You can use CSS custom properties to define specific container widths for fluid scaling: 128 | 129 | ```css 130 | /* Define container widths */ 131 | :root { 132 | --sidebar-width: 0.25; /* 25% of viewport width */ 133 | --main-content: 0.75; /* 75% of viewport width */ 134 | } 135 | 136 | /* Use in your components */ 137 | .sidebar { 138 | fluid-unit: --sidebar-width; 139 | padding: responsive 10px 20px; 140 | } 141 | 142 | .main-content { 143 | fluid-unit: --main-content; 144 | font-size: responsive 16px 24px; 145 | } 146 | ``` 147 | 148 | Outputs: 149 | 150 | ```css 151 | .sidebar { 152 | padding: clamp(10px, calc(10px + (20 - 10) * (var(--sidebar-width) - 420px) / (1620 - 420))), 20px); 153 | } 154 | 155 | .main-content { 156 | font-size: clamp(16px, calc(16px + (24 - 16) * (var(--main-content) - 420px) / (1620 - 420))), 24px); 157 | } 158 | ``` 159 | 160 | ## Features 161 | 162 | **Global Configuration** 163 | Set default ranges and units in your PostCSS config: 164 | 165 | ```js 166 | require('postcss-size-clamp')({ 167 | range: [420, 1620], // min and max viewport/container width 168 | unit: 'cqw', // viewport or container query unit 169 | blacklist: ['container-name'] // properties to ignore 170 | }); 171 | ``` 172 | 173 | **Supported Units** 174 | 175 | - `vw`: Viewport width 176 | - `cqw`: Container query width 177 | - `cqi`: Container query inline size 178 | - `cqb`: Container query block size 179 | - `%`: Percentage of the width 180 | - `--*`: Custom property (must start with '--' and contain a decimal value between 0 and 1) 181 | 182 | **Per-Declaration Overrides** 183 | Override global settings using `fluid-range` and `fluid-unit` properties: 184 | 185 | ```css 186 | .custom { 187 | padding: responsive 16px 32px; 188 | fluid-range: 320px 1440px; 189 | fluid-unit: cqi; 190 | } 191 | ``` 192 | 193 | **Property Blacklist** 194 | Some properties might not work well with fluid values or could cause issues. These can be blacklisted globally: 195 | 196 | ```js 197 | require('postcss-size-clamp')({ 198 | blacklist: [ 199 | 'container-name', // Container queries 200 | 'display', // Non-numeric properties 201 | 'position', // Non-numeric properties 202 | 'grid-template', // Complex values 203 | 'transform' // Complex values 204 | ] 205 | }); 206 | ``` 207 | 208 | ## Browser Support 209 | 210 | While `clamp()` has [excellent browser support](https://caniuse.com/?search=css-clamp), we recommend using this plugin with `postcss-preset-env` for maximum compatibility. Place this plugin before `postcss-preset-env` in your PostCSS config to take advantage of its browser compatibility features. 211 | 212 | ## Performance 213 | 214 | This plugin pre-calculates numerical values where possible, resulting in optimized CSS output. Instead of multiple media queries or complex calculations, it generates a single, efficient line of CSS that browsers can process quickly. 215 | 216 | ## License 217 | 218 | MIT -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- 1 | const postcss = require('postcss'); 2 | const plugin = require('../index'); 3 | 4 | async function run(input, opts = {}) { 5 | const result = await postcss([plugin(opts)]).process(input, { 6 | from: undefined, 7 | }); 8 | return result.css; 9 | } 10 | 11 | describe('postcss-size-clamp', () => { 12 | it('converts basic responsive properties', async () => { 13 | const input = '.test { margin: responsive 16px 32px; }'; 14 | const output = await run(input); 15 | expect(output).toContain('clamp(16px'); 16 | expect(output).toContain('32px)'); 17 | }); 18 | 19 | it('handles multiple responsive properties', async () => { 20 | const input = ` 21 | .test { 22 | margin: responsive 16px 32px; 23 | font-size: responsive 14px 24px; 24 | } 25 | `; 26 | const output = await run(input); 27 | expect(output).toContain('margin: clamp(16px'); 28 | expect(output).toContain('font-size: clamp(14px'); 29 | }); 30 | 31 | it('handles line height shorthand for typography', async () => { 32 | const input = '.test { font-size: responsive 16px 32px / 1.5; }'; 33 | const output = await run(input); 34 | expect(output).toContain('line-height: 1.5'); 35 | }); 36 | 37 | it('respects custom fluid range', async () => { 38 | const input = ` 39 | .test { 40 | margin: responsive 20px 48px; 41 | fluid-range: 768px 1920px; 42 | } 43 | `; 44 | const output = await run(input); 45 | expect(output).toContain('clamp(20px'); 46 | expect(output).toContain('48px)'); 47 | }); 48 | 49 | it('respects custom fluid unit', async () => { 50 | const input = ` 51 | .test { 52 | padding: responsive 14px 24px; 53 | fluid-unit: vw; 54 | } 55 | `; 56 | const output = await run(input); 57 | expect(output).toContain('vw'); 58 | }); 59 | 60 | it('handles plugin options', async () => { 61 | const input = '.test { margin: responsive 16px 32px; }'; 62 | const output = await run(input, { 63 | range: [320, 1440], 64 | unit: 'cqi', 65 | }); 66 | expect(output).toContain('cqi'); 67 | }); 68 | 69 | it('respects property blacklist', async () => { 70 | const input = '.test { container-name: responsive 16px 32px; }'; 71 | const output = await run(input, { 72 | blacklist: ['container-name'], 73 | }); 74 | expect(output).toBe(input); 75 | }); 76 | 77 | it('throws error for invalid syntax', async () => { 78 | const input = '.test { margin: responsive 16px; }'; 79 | await expect(run(input)).rejects.toThrow(); 80 | }); 81 | 82 | it('applies fluid range to all responsive properties in rule', async () => { 83 | const input = ` 84 | .test { 85 | margin: responsive 10px 20px; 86 | padding: responsive 15px 30px; 87 | fluid-range: 320px 1440px; 88 | } 89 | `; 90 | const output = await run(input); 91 | expect(output).toContain('margin: clamp(10px'); 92 | expect(output).toContain('padding: clamp(15px'); 93 | }); 94 | 95 | it('removes fluid-range and fluid-unit properties from output', async () => { 96 | const input = ` 97 | .test { 98 | margin: responsive 20px 48px; 99 | padding: responsive 16px 32px; 100 | fluid-range: 768px 1920px; 101 | fluid-unit: vw; 102 | } 103 | `; 104 | const output = await run(input); 105 | expect(output).not.toContain('fluid-range'); 106 | expect(output).not.toContain('fluid-unit'); 107 | expect(output).toContain('margin: clamp'); 108 | expect(output).toContain('padding: clamp'); 109 | }); 110 | 111 | it('uses cached fluid values for multiple declarations in same rule', async () => { 112 | const input = ` 113 | .test { 114 | fluid-range: 768px 1920px; 115 | fluid-unit: vw; 116 | margin: responsive 20px 40px; 117 | padding: responsive 10px 20px; 118 | gap: responsive 15px 30px; 119 | } 120 | `; 121 | const output = await run(input); 122 | const occurrences = (output.match(/100vw - 768px/g) || []).length; 123 | expect(occurrences).toBe(3); // Should appear in all three responsive properties 124 | }); 125 | 126 | it('maintains separate fluid values for different rules', async () => { 127 | const input = ` 128 | .test-1 { 129 | fluid-range: 768px 1920px; 130 | fluid-unit: vw; 131 | margin: responsive 20px 40px; 132 | } 133 | .test-2 { 134 | fluid-range: 320px 1440px; 135 | fluid-unit: cqi; 136 | margin: responsive 20px 40px; 137 | } 138 | `; 139 | const output = await run(input); 140 | expect(output).toContain('100vw - 768px'); 141 | expect(output).toContain('100cqi - 320px'); 142 | }); 143 | 144 | it('falls back to global defaults when no fluid values are defined', async () => { 145 | const input = ` 146 | .parent { 147 | .child { 148 | margin: responsive 20px 40px; 149 | } 150 | } 151 | `; 152 | const output = await run(input); 153 | expect(output).toContain('100vw - 420px'); // Default values 154 | }); 155 | 156 | it('supports all valid fluid units', async () => { 157 | const units = ['cqb', '%']; 158 | for (const unit of units) { 159 | const input = ` 160 | .test { 161 | margin: responsive 14px 24px; 162 | fluid-unit: ${unit}; 163 | } 164 | `; 165 | const output = await run(input); 166 | expect(output).toContain(unit); 167 | } 168 | }); 169 | 170 | it('throws error for invalid unit in plugin options', async () => { 171 | await expect(run('.test { margin: responsive 16px 32px; }', { 172 | unit: 'invalid' 173 | })).rejects.toThrow('Invalid unit'); 174 | }); 175 | 176 | it('throws error for invalid fluid-unit value', async () => { 177 | const input = ` 178 | .test { 179 | margin: responsive 14px 24px; 180 | fluid-unit: invalid-unit; 181 | } 182 | `; 183 | await expect(run(input)).rejects.toThrow('Invalid unit'); 184 | }); 185 | 186 | it('supports custom container width properties', async () => { 187 | const input = ` 188 | .test { 189 | margin: responsive 14px 24px; 190 | fluid-unit: --container-width; 191 | } 192 | `; 193 | const output = await run(input); 194 | expect(output).toContain('var(--container-width)'); 195 | }); 196 | }); 197 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const DEFAULT_OPTIONS = { 2 | range: [420, 1620], 3 | unit: 'vw', 4 | blacklist: [ 5 | 'container-name', 6 | 'grid-template-areas', 7 | 'grid-template', 8 | 'grid-area', 9 | 'content', 10 | 'list-style', 11 | 'transition', 12 | 'animation', 13 | 'transform', 14 | 'display' 15 | ] 16 | }; 17 | 18 | const VALID_UNITS = ['vw', 'cqw', 'cqi', 'cqb', '%', '--*']; 19 | 20 | module.exports = (opts = {}) => { 21 | const options = { 22 | ...DEFAULT_OPTIONS, 23 | ...opts, 24 | }; 25 | 26 | if (!VALID_UNITS.includes(options.unit) && !options.unit.startsWith('--')) { 27 | throw new Error(`Invalid unit. Must be one of: ${VALID_UNITS.join(', ')} or a custom property starting with --`); 28 | } 29 | 30 | return { 31 | postcssPlugin: 'postcss-size-clamp', 32 | Declaration(decl) { 33 | // Skip blacklisted properties 34 | if (options.blacklist.includes(decl.prop)) return; 35 | 36 | const value = decl.value.trim(); 37 | if (!value.startsWith('responsive')) return; 38 | 39 | // Cache the fluid values on the parent rule if not already done 40 | if (!decl.parent._fluidValues) { 41 | // Check for fluid-range and fluid-unit in current rule only 42 | const fluidRangeDecl = decl.parent.nodes.find( 43 | node => node.type === 'decl' && node.prop === 'fluid-range' 44 | ); 45 | 46 | const fluidUnitDecl = decl.parent.nodes.find( 47 | node => node.type === 'decl' && node.prop === 'fluid-unit' 48 | ); 49 | 50 | // Cache the values 51 | decl.parent._fluidValues = { 52 | range: options.range, 53 | unit: options.unit 54 | }; 55 | 56 | if (fluidRangeDecl) { 57 | const range = fluidRangeDecl.value 58 | .split(' ') 59 | .map(val => parseFloat(val.replace('px', ''))) 60 | .filter(val => !isNaN(val)); 61 | 62 | if (range.length === 2) { 63 | decl.parent._fluidValues.range = range; 64 | } 65 | fluidRangeDecl.remove(); 66 | } 67 | 68 | if (fluidUnitDecl) { 69 | const unit = fluidUnitDecl.value; 70 | if (!VALID_UNITS.includes(unit) && !unit.startsWith('--')) { 71 | throw fluidUnitDecl.error(`Invalid unit. Must be one of: ${VALID_UNITS.join(', ')} or a custom property starting with --`); 72 | } 73 | decl.parent._fluidValues.unit = unit; 74 | fluidUnitDecl.remove(); 75 | } 76 | } 77 | 78 | const [minRange, maxRange] = decl.parent._fluidValues.range; 79 | let rangeUnit = decl.parent._fluidValues.unit; 80 | 81 | // Split the value to check for line-height 82 | const [fontPart, lineHeightPart] = value.split('/').map((part) => part.trim()); 83 | 84 | // Parse the font size values 85 | const parts = fontPart.split(' ').filter(Boolean); 86 | 87 | if (parts.length !== 3) { 88 | throw decl.error('Invalid responsive syntax. Use: : responsive px px'); 89 | } 90 | 91 | // Extract min and max values, removing 'px' suffix 92 | const minSize = parseFloat(parts[1]); 93 | const maxSize = parseFloat(parts[2]); 94 | 95 | if (isNaN(minSize) || isNaN(maxSize)) { 96 | throw decl.error('Invalid responsive syntax. Use: : responsive px px'); 97 | } 98 | 99 | // Generate the clamp function with custom property support 100 | const containerWidth = rangeUnit.startsWith('--') 101 | ? `var(${rangeUnit})` 102 | : `100${rangeUnit}`; 103 | 104 | const clampValue = `clamp(${minSize}px, calc(${minSize}px + (${maxSize} - ${minSize}) * ((${containerWidth} - ${minRange}px) / (${maxRange} - ${minRange}))), ${maxSize}px)`; 105 | 106 | // Replace the declaration value 107 | decl.value = clampValue; 108 | 109 | // Handle line-height if present 110 | if (lineHeightPart) { 111 | // Check if there's already a line-height declaration 112 | const existingLineHeight = decl.parent.nodes.find( 113 | (node) => node.type === 'decl' && node.prop === 'line-height' 114 | ); 115 | 116 | if (existingLineHeight) { 117 | // Update existing line-height 118 | existingLineHeight.value = lineHeightPart; 119 | } else { 120 | // Create new line-height declaration 121 | decl.cloneBefore({ 122 | prop: 'line-height', 123 | value: lineHeightPart, 124 | }); 125 | } 126 | } 127 | }, 128 | }; 129 | }; 130 | 131 | module.exports.postcss = true; 132 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testEnvironment: 'node', 3 | transform: { 4 | '^.+\\.js$': 'babel-jest', 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-size-clamp", 3 | "version": "3.2.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "postcss-size-clamp", 9 | "version": "3.2.1", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "jest": "^29.7.0", 13 | "jest-postcss": "^0.1.0", 14 | "postcss": "^8.5.3" 15 | }, 16 | "peerDependencies": { 17 | "postcss": "^8.0.0" 18 | } 19 | }, 20 | "node_modules/@ampproject/remapping": { 21 | "version": "2.3.0", 22 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 23 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 24 | "dev": true, 25 | "license": "Apache-2.0", 26 | "dependencies": { 27 | "@jridgewell/gen-mapping": "^0.3.5", 28 | "@jridgewell/trace-mapping": "^0.3.24" 29 | }, 30 | "engines": { 31 | "node": ">=6.0.0" 32 | } 33 | }, 34 | "node_modules/@babel/code-frame": { 35 | "version": "7.26.0", 36 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.0.tgz", 37 | "integrity": "sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==", 38 | "dev": true, 39 | "license": "MIT", 40 | "dependencies": { 41 | "@babel/helper-validator-identifier": "^7.25.9", 42 | "js-tokens": "^4.0.0", 43 | "picocolors": "^1.0.0" 44 | }, 45 | "engines": { 46 | "node": ">=6.9.0" 47 | } 48 | }, 49 | "node_modules/@babel/compat-data": { 50 | "version": "7.26.0", 51 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.0.tgz", 52 | "integrity": "sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==", 53 | "dev": true, 54 | "license": "MIT", 55 | "engines": { 56 | "node": ">=6.9.0" 57 | } 58 | }, 59 | "node_modules/@babel/core": { 60 | "version": "7.26.0", 61 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", 62 | "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", 63 | "dev": true, 64 | "license": "MIT", 65 | "dependencies": { 66 | "@ampproject/remapping": "^2.2.0", 67 | "@babel/code-frame": "^7.26.0", 68 | "@babel/generator": "^7.26.0", 69 | "@babel/helper-compilation-targets": "^7.25.9", 70 | "@babel/helper-module-transforms": "^7.26.0", 71 | "@babel/helpers": "^7.26.0", 72 | "@babel/parser": "^7.26.0", 73 | "@babel/template": "^7.25.9", 74 | "@babel/traverse": "^7.25.9", 75 | "@babel/types": "^7.26.0", 76 | "convert-source-map": "^2.0.0", 77 | "debug": "^4.1.0", 78 | "gensync": "^1.0.0-beta.2", 79 | "json5": "^2.2.3", 80 | "semver": "^6.3.1" 81 | }, 82 | "engines": { 83 | "node": ">=6.9.0" 84 | }, 85 | "funding": { 86 | "type": "opencollective", 87 | "url": "https://opencollective.com/babel" 88 | } 89 | }, 90 | "node_modules/@babel/generator": { 91 | "version": "7.26.0", 92 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.0.tgz", 93 | "integrity": "sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==", 94 | "dev": true, 95 | "license": "MIT", 96 | "dependencies": { 97 | "@babel/parser": "^7.26.0", 98 | "@babel/types": "^7.26.0", 99 | "@jridgewell/gen-mapping": "^0.3.5", 100 | "@jridgewell/trace-mapping": "^0.3.25", 101 | "jsesc": "^3.0.2" 102 | }, 103 | "engines": { 104 | "node": ">=6.9.0" 105 | } 106 | }, 107 | "node_modules/@babel/helper-compilation-targets": { 108 | "version": "7.25.9", 109 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", 110 | "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", 111 | "dev": true, 112 | "license": "MIT", 113 | "dependencies": { 114 | "@babel/compat-data": "^7.25.9", 115 | "@babel/helper-validator-option": "^7.25.9", 116 | "browserslist": "^4.24.0", 117 | "lru-cache": "^5.1.1", 118 | "semver": "^6.3.1" 119 | }, 120 | "engines": { 121 | "node": ">=6.9.0" 122 | } 123 | }, 124 | "node_modules/@babel/helper-module-imports": { 125 | "version": "7.25.9", 126 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 127 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 128 | "dev": true, 129 | "license": "MIT", 130 | "dependencies": { 131 | "@babel/traverse": "^7.25.9", 132 | "@babel/types": "^7.25.9" 133 | }, 134 | "engines": { 135 | "node": ">=6.9.0" 136 | } 137 | }, 138 | "node_modules/@babel/helper-module-transforms": { 139 | "version": "7.26.0", 140 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 141 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 142 | "dev": true, 143 | "license": "MIT", 144 | "dependencies": { 145 | "@babel/helper-module-imports": "^7.25.9", 146 | "@babel/helper-validator-identifier": "^7.25.9", 147 | "@babel/traverse": "^7.25.9" 148 | }, 149 | "engines": { 150 | "node": ">=6.9.0" 151 | }, 152 | "peerDependencies": { 153 | "@babel/core": "^7.0.0" 154 | } 155 | }, 156 | "node_modules/@babel/helper-plugin-utils": { 157 | "version": "7.25.9", 158 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", 159 | "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", 160 | "dev": true, 161 | "license": "MIT", 162 | "engines": { 163 | "node": ">=6.9.0" 164 | } 165 | }, 166 | "node_modules/@babel/helper-string-parser": { 167 | "version": "7.25.9", 168 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 169 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 170 | "dev": true, 171 | "license": "MIT", 172 | "engines": { 173 | "node": ">=6.9.0" 174 | } 175 | }, 176 | "node_modules/@babel/helper-validator-identifier": { 177 | "version": "7.25.9", 178 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 179 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 180 | "dev": true, 181 | "license": "MIT", 182 | "engines": { 183 | "node": ">=6.9.0" 184 | } 185 | }, 186 | "node_modules/@babel/helper-validator-option": { 187 | "version": "7.25.9", 188 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 189 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 190 | "dev": true, 191 | "license": "MIT", 192 | "engines": { 193 | "node": ">=6.9.0" 194 | } 195 | }, 196 | "node_modules/@babel/helpers": { 197 | "version": "7.26.0", 198 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", 199 | "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", 200 | "dev": true, 201 | "license": "MIT", 202 | "dependencies": { 203 | "@babel/template": "^7.25.9", 204 | "@babel/types": "^7.26.0" 205 | }, 206 | "engines": { 207 | "node": ">=6.9.0" 208 | } 209 | }, 210 | "node_modules/@babel/parser": { 211 | "version": "7.26.1", 212 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.1.tgz", 213 | "integrity": "sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==", 214 | "dev": true, 215 | "license": "MIT", 216 | "dependencies": { 217 | "@babel/types": "^7.26.0" 218 | }, 219 | "bin": { 220 | "parser": "bin/babel-parser.js" 221 | }, 222 | "engines": { 223 | "node": ">=6.0.0" 224 | } 225 | }, 226 | "node_modules/@babel/plugin-syntax-async-generators": { 227 | "version": "7.8.4", 228 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 229 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 230 | "dev": true, 231 | "license": "MIT", 232 | "dependencies": { 233 | "@babel/helper-plugin-utils": "^7.8.0" 234 | }, 235 | "peerDependencies": { 236 | "@babel/core": "^7.0.0-0" 237 | } 238 | }, 239 | "node_modules/@babel/plugin-syntax-bigint": { 240 | "version": "7.8.3", 241 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 242 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 243 | "dev": true, 244 | "license": "MIT", 245 | "dependencies": { 246 | "@babel/helper-plugin-utils": "^7.8.0" 247 | }, 248 | "peerDependencies": { 249 | "@babel/core": "^7.0.0-0" 250 | } 251 | }, 252 | "node_modules/@babel/plugin-syntax-class-properties": { 253 | "version": "7.12.13", 254 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 255 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 256 | "dev": true, 257 | "license": "MIT", 258 | "dependencies": { 259 | "@babel/helper-plugin-utils": "^7.12.13" 260 | }, 261 | "peerDependencies": { 262 | "@babel/core": "^7.0.0-0" 263 | } 264 | }, 265 | "node_modules/@babel/plugin-syntax-class-static-block": { 266 | "version": "7.14.5", 267 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 268 | "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 269 | "dev": true, 270 | "license": "MIT", 271 | "dependencies": { 272 | "@babel/helper-plugin-utils": "^7.14.5" 273 | }, 274 | "engines": { 275 | "node": ">=6.9.0" 276 | }, 277 | "peerDependencies": { 278 | "@babel/core": "^7.0.0-0" 279 | } 280 | }, 281 | "node_modules/@babel/plugin-syntax-import-attributes": { 282 | "version": "7.26.0", 283 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", 284 | "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", 285 | "dev": true, 286 | "license": "MIT", 287 | "dependencies": { 288 | "@babel/helper-plugin-utils": "^7.25.9" 289 | }, 290 | "engines": { 291 | "node": ">=6.9.0" 292 | }, 293 | "peerDependencies": { 294 | "@babel/core": "^7.0.0-0" 295 | } 296 | }, 297 | "node_modules/@babel/plugin-syntax-import-meta": { 298 | "version": "7.10.4", 299 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 300 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 301 | "dev": true, 302 | "license": "MIT", 303 | "dependencies": { 304 | "@babel/helper-plugin-utils": "^7.10.4" 305 | }, 306 | "peerDependencies": { 307 | "@babel/core": "^7.0.0-0" 308 | } 309 | }, 310 | "node_modules/@babel/plugin-syntax-json-strings": { 311 | "version": "7.8.3", 312 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 313 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 314 | "dev": true, 315 | "license": "MIT", 316 | "dependencies": { 317 | "@babel/helper-plugin-utils": "^7.8.0" 318 | }, 319 | "peerDependencies": { 320 | "@babel/core": "^7.0.0-0" 321 | } 322 | }, 323 | "node_modules/@babel/plugin-syntax-jsx": { 324 | "version": "7.25.9", 325 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", 326 | "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", 327 | "dev": true, 328 | "license": "MIT", 329 | "dependencies": { 330 | "@babel/helper-plugin-utils": "^7.25.9" 331 | }, 332 | "engines": { 333 | "node": ">=6.9.0" 334 | }, 335 | "peerDependencies": { 336 | "@babel/core": "^7.0.0-0" 337 | } 338 | }, 339 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 340 | "version": "7.10.4", 341 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 342 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 343 | "dev": true, 344 | "license": "MIT", 345 | "dependencies": { 346 | "@babel/helper-plugin-utils": "^7.10.4" 347 | }, 348 | "peerDependencies": { 349 | "@babel/core": "^7.0.0-0" 350 | } 351 | }, 352 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 353 | "version": "7.8.3", 354 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 355 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 356 | "dev": true, 357 | "license": "MIT", 358 | "dependencies": { 359 | "@babel/helper-plugin-utils": "^7.8.0" 360 | }, 361 | "peerDependencies": { 362 | "@babel/core": "^7.0.0-0" 363 | } 364 | }, 365 | "node_modules/@babel/plugin-syntax-numeric-separator": { 366 | "version": "7.10.4", 367 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 368 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 369 | "dev": true, 370 | "license": "MIT", 371 | "dependencies": { 372 | "@babel/helper-plugin-utils": "^7.10.4" 373 | }, 374 | "peerDependencies": { 375 | "@babel/core": "^7.0.0-0" 376 | } 377 | }, 378 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 379 | "version": "7.8.3", 380 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 381 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 382 | "dev": true, 383 | "license": "MIT", 384 | "dependencies": { 385 | "@babel/helper-plugin-utils": "^7.8.0" 386 | }, 387 | "peerDependencies": { 388 | "@babel/core": "^7.0.0-0" 389 | } 390 | }, 391 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 392 | "version": "7.8.3", 393 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 394 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 395 | "dev": true, 396 | "license": "MIT", 397 | "dependencies": { 398 | "@babel/helper-plugin-utils": "^7.8.0" 399 | }, 400 | "peerDependencies": { 401 | "@babel/core": "^7.0.0-0" 402 | } 403 | }, 404 | "node_modules/@babel/plugin-syntax-optional-chaining": { 405 | "version": "7.8.3", 406 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 407 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 408 | "dev": true, 409 | "license": "MIT", 410 | "dependencies": { 411 | "@babel/helper-plugin-utils": "^7.8.0" 412 | }, 413 | "peerDependencies": { 414 | "@babel/core": "^7.0.0-0" 415 | } 416 | }, 417 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 418 | "version": "7.14.5", 419 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 420 | "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 421 | "dev": true, 422 | "license": "MIT", 423 | "dependencies": { 424 | "@babel/helper-plugin-utils": "^7.14.5" 425 | }, 426 | "engines": { 427 | "node": ">=6.9.0" 428 | }, 429 | "peerDependencies": { 430 | "@babel/core": "^7.0.0-0" 431 | } 432 | }, 433 | "node_modules/@babel/plugin-syntax-top-level-await": { 434 | "version": "7.14.5", 435 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 436 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 437 | "dev": true, 438 | "license": "MIT", 439 | "dependencies": { 440 | "@babel/helper-plugin-utils": "^7.14.5" 441 | }, 442 | "engines": { 443 | "node": ">=6.9.0" 444 | }, 445 | "peerDependencies": { 446 | "@babel/core": "^7.0.0-0" 447 | } 448 | }, 449 | "node_modules/@babel/plugin-syntax-typescript": { 450 | "version": "7.25.9", 451 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", 452 | "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", 453 | "dev": true, 454 | "license": "MIT", 455 | "dependencies": { 456 | "@babel/helper-plugin-utils": "^7.25.9" 457 | }, 458 | "engines": { 459 | "node": ">=6.9.0" 460 | }, 461 | "peerDependencies": { 462 | "@babel/core": "^7.0.0-0" 463 | } 464 | }, 465 | "node_modules/@babel/template": { 466 | "version": "7.25.9", 467 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", 468 | "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", 469 | "dev": true, 470 | "license": "MIT", 471 | "dependencies": { 472 | "@babel/code-frame": "^7.25.9", 473 | "@babel/parser": "^7.25.9", 474 | "@babel/types": "^7.25.9" 475 | }, 476 | "engines": { 477 | "node": ">=6.9.0" 478 | } 479 | }, 480 | "node_modules/@babel/traverse": { 481 | "version": "7.25.9", 482 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", 483 | "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", 484 | "dev": true, 485 | "license": "MIT", 486 | "dependencies": { 487 | "@babel/code-frame": "^7.25.9", 488 | "@babel/generator": "^7.25.9", 489 | "@babel/parser": "^7.25.9", 490 | "@babel/template": "^7.25.9", 491 | "@babel/types": "^7.25.9", 492 | "debug": "^4.3.1", 493 | "globals": "^11.1.0" 494 | }, 495 | "engines": { 496 | "node": ">=6.9.0" 497 | } 498 | }, 499 | "node_modules/@babel/types": { 500 | "version": "7.26.0", 501 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", 502 | "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", 503 | "dev": true, 504 | "license": "MIT", 505 | "dependencies": { 506 | "@babel/helper-string-parser": "^7.25.9", 507 | "@babel/helper-validator-identifier": "^7.25.9" 508 | }, 509 | "engines": { 510 | "node": ">=6.9.0" 511 | } 512 | }, 513 | "node_modules/@bcoe/v8-coverage": { 514 | "version": "0.2.3", 515 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 516 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 517 | "dev": true, 518 | "license": "MIT" 519 | }, 520 | "node_modules/@istanbuljs/load-nyc-config": { 521 | "version": "1.1.0", 522 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 523 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 524 | "dev": true, 525 | "license": "ISC", 526 | "dependencies": { 527 | "camelcase": "^5.3.1", 528 | "find-up": "^4.1.0", 529 | "get-package-type": "^0.1.0", 530 | "js-yaml": "^3.13.1", 531 | "resolve-from": "^5.0.0" 532 | }, 533 | "engines": { 534 | "node": ">=8" 535 | } 536 | }, 537 | "node_modules/@istanbuljs/schema": { 538 | "version": "0.1.3", 539 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 540 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 541 | "dev": true, 542 | "license": "MIT", 543 | "engines": { 544 | "node": ">=8" 545 | } 546 | }, 547 | "node_modules/@jest/console": { 548 | "version": "29.7.0", 549 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 550 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 551 | "dev": true, 552 | "license": "MIT", 553 | "dependencies": { 554 | "@jest/types": "^29.6.3", 555 | "@types/node": "*", 556 | "chalk": "^4.0.0", 557 | "jest-message-util": "^29.7.0", 558 | "jest-util": "^29.7.0", 559 | "slash": "^3.0.0" 560 | }, 561 | "engines": { 562 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 563 | } 564 | }, 565 | "node_modules/@jest/core": { 566 | "version": "29.7.0", 567 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 568 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 569 | "dev": true, 570 | "license": "MIT", 571 | "dependencies": { 572 | "@jest/console": "^29.7.0", 573 | "@jest/reporters": "^29.7.0", 574 | "@jest/test-result": "^29.7.0", 575 | "@jest/transform": "^29.7.0", 576 | "@jest/types": "^29.6.3", 577 | "@types/node": "*", 578 | "ansi-escapes": "^4.2.1", 579 | "chalk": "^4.0.0", 580 | "ci-info": "^3.2.0", 581 | "exit": "^0.1.2", 582 | "graceful-fs": "^4.2.9", 583 | "jest-changed-files": "^29.7.0", 584 | "jest-config": "^29.7.0", 585 | "jest-haste-map": "^29.7.0", 586 | "jest-message-util": "^29.7.0", 587 | "jest-regex-util": "^29.6.3", 588 | "jest-resolve": "^29.7.0", 589 | "jest-resolve-dependencies": "^29.7.0", 590 | "jest-runner": "^29.7.0", 591 | "jest-runtime": "^29.7.0", 592 | "jest-snapshot": "^29.7.0", 593 | "jest-util": "^29.7.0", 594 | "jest-validate": "^29.7.0", 595 | "jest-watcher": "^29.7.0", 596 | "micromatch": "^4.0.4", 597 | "pretty-format": "^29.7.0", 598 | "slash": "^3.0.0", 599 | "strip-ansi": "^6.0.0" 600 | }, 601 | "engines": { 602 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 603 | }, 604 | "peerDependencies": { 605 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 606 | }, 607 | "peerDependenciesMeta": { 608 | "node-notifier": { 609 | "optional": true 610 | } 611 | } 612 | }, 613 | "node_modules/@jest/environment": { 614 | "version": "29.7.0", 615 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 616 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 617 | "dev": true, 618 | "license": "MIT", 619 | "dependencies": { 620 | "@jest/fake-timers": "^29.7.0", 621 | "@jest/types": "^29.6.3", 622 | "@types/node": "*", 623 | "jest-mock": "^29.7.0" 624 | }, 625 | "engines": { 626 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 627 | } 628 | }, 629 | "node_modules/@jest/expect": { 630 | "version": "29.7.0", 631 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 632 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 633 | "dev": true, 634 | "license": "MIT", 635 | "dependencies": { 636 | "expect": "^29.7.0", 637 | "jest-snapshot": "^29.7.0" 638 | }, 639 | "engines": { 640 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 641 | } 642 | }, 643 | "node_modules/@jest/expect-utils": { 644 | "version": "29.7.0", 645 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 646 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 647 | "dev": true, 648 | "license": "MIT", 649 | "dependencies": { 650 | "jest-get-type": "^29.6.3" 651 | }, 652 | "engines": { 653 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 654 | } 655 | }, 656 | "node_modules/@jest/fake-timers": { 657 | "version": "29.7.0", 658 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 659 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 660 | "dev": true, 661 | "license": "MIT", 662 | "dependencies": { 663 | "@jest/types": "^29.6.3", 664 | "@sinonjs/fake-timers": "^10.0.2", 665 | "@types/node": "*", 666 | "jest-message-util": "^29.7.0", 667 | "jest-mock": "^29.7.0", 668 | "jest-util": "^29.7.0" 669 | }, 670 | "engines": { 671 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 672 | } 673 | }, 674 | "node_modules/@jest/globals": { 675 | "version": "29.7.0", 676 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 677 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 678 | "dev": true, 679 | "license": "MIT", 680 | "dependencies": { 681 | "@jest/environment": "^29.7.0", 682 | "@jest/expect": "^29.7.0", 683 | "@jest/types": "^29.6.3", 684 | "jest-mock": "^29.7.0" 685 | }, 686 | "engines": { 687 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 688 | } 689 | }, 690 | "node_modules/@jest/reporters": { 691 | "version": "29.7.0", 692 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 693 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 694 | "dev": true, 695 | "license": "MIT", 696 | "dependencies": { 697 | "@bcoe/v8-coverage": "^0.2.3", 698 | "@jest/console": "^29.7.0", 699 | "@jest/test-result": "^29.7.0", 700 | "@jest/transform": "^29.7.0", 701 | "@jest/types": "^29.6.3", 702 | "@jridgewell/trace-mapping": "^0.3.18", 703 | "@types/node": "*", 704 | "chalk": "^4.0.0", 705 | "collect-v8-coverage": "^1.0.0", 706 | "exit": "^0.1.2", 707 | "glob": "^7.1.3", 708 | "graceful-fs": "^4.2.9", 709 | "istanbul-lib-coverage": "^3.0.0", 710 | "istanbul-lib-instrument": "^6.0.0", 711 | "istanbul-lib-report": "^3.0.0", 712 | "istanbul-lib-source-maps": "^4.0.0", 713 | "istanbul-reports": "^3.1.3", 714 | "jest-message-util": "^29.7.0", 715 | "jest-util": "^29.7.0", 716 | "jest-worker": "^29.7.0", 717 | "slash": "^3.0.0", 718 | "string-length": "^4.0.1", 719 | "strip-ansi": "^6.0.0", 720 | "v8-to-istanbul": "^9.0.1" 721 | }, 722 | "engines": { 723 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 724 | }, 725 | "peerDependencies": { 726 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 727 | }, 728 | "peerDependenciesMeta": { 729 | "node-notifier": { 730 | "optional": true 731 | } 732 | } 733 | }, 734 | "node_modules/@jest/schemas": { 735 | "version": "29.6.3", 736 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 737 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 738 | "dev": true, 739 | "license": "MIT", 740 | "dependencies": { 741 | "@sinclair/typebox": "^0.27.8" 742 | }, 743 | "engines": { 744 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 745 | } 746 | }, 747 | "node_modules/@jest/source-map": { 748 | "version": "29.6.3", 749 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 750 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 751 | "dev": true, 752 | "license": "MIT", 753 | "dependencies": { 754 | "@jridgewell/trace-mapping": "^0.3.18", 755 | "callsites": "^3.0.0", 756 | "graceful-fs": "^4.2.9" 757 | }, 758 | "engines": { 759 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 760 | } 761 | }, 762 | "node_modules/@jest/test-result": { 763 | "version": "29.7.0", 764 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 765 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 766 | "dev": true, 767 | "license": "MIT", 768 | "dependencies": { 769 | "@jest/console": "^29.7.0", 770 | "@jest/types": "^29.6.3", 771 | "@types/istanbul-lib-coverage": "^2.0.0", 772 | "collect-v8-coverage": "^1.0.0" 773 | }, 774 | "engines": { 775 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 776 | } 777 | }, 778 | "node_modules/@jest/test-sequencer": { 779 | "version": "29.7.0", 780 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 781 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 782 | "dev": true, 783 | "license": "MIT", 784 | "dependencies": { 785 | "@jest/test-result": "^29.7.0", 786 | "graceful-fs": "^4.2.9", 787 | "jest-haste-map": "^29.7.0", 788 | "slash": "^3.0.0" 789 | }, 790 | "engines": { 791 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 792 | } 793 | }, 794 | "node_modules/@jest/transform": { 795 | "version": "29.7.0", 796 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 797 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 798 | "dev": true, 799 | "license": "MIT", 800 | "dependencies": { 801 | "@babel/core": "^7.11.6", 802 | "@jest/types": "^29.6.3", 803 | "@jridgewell/trace-mapping": "^0.3.18", 804 | "babel-plugin-istanbul": "^6.1.1", 805 | "chalk": "^4.0.0", 806 | "convert-source-map": "^2.0.0", 807 | "fast-json-stable-stringify": "^2.1.0", 808 | "graceful-fs": "^4.2.9", 809 | "jest-haste-map": "^29.7.0", 810 | "jest-regex-util": "^29.6.3", 811 | "jest-util": "^29.7.0", 812 | "micromatch": "^4.0.4", 813 | "pirates": "^4.0.4", 814 | "slash": "^3.0.0", 815 | "write-file-atomic": "^4.0.2" 816 | }, 817 | "engines": { 818 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 819 | } 820 | }, 821 | "node_modules/@jest/types": { 822 | "version": "29.6.3", 823 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 824 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 825 | "dev": true, 826 | "license": "MIT", 827 | "dependencies": { 828 | "@jest/schemas": "^29.6.3", 829 | "@types/istanbul-lib-coverage": "^2.0.0", 830 | "@types/istanbul-reports": "^3.0.0", 831 | "@types/node": "*", 832 | "@types/yargs": "^17.0.8", 833 | "chalk": "^4.0.0" 834 | }, 835 | "engines": { 836 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 837 | } 838 | }, 839 | "node_modules/@jridgewell/gen-mapping": { 840 | "version": "0.3.5", 841 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 842 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 843 | "dev": true, 844 | "license": "MIT", 845 | "dependencies": { 846 | "@jridgewell/set-array": "^1.2.1", 847 | "@jridgewell/sourcemap-codec": "^1.4.10", 848 | "@jridgewell/trace-mapping": "^0.3.24" 849 | }, 850 | "engines": { 851 | "node": ">=6.0.0" 852 | } 853 | }, 854 | "node_modules/@jridgewell/resolve-uri": { 855 | "version": "3.1.2", 856 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 857 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 858 | "dev": true, 859 | "license": "MIT", 860 | "engines": { 861 | "node": ">=6.0.0" 862 | } 863 | }, 864 | "node_modules/@jridgewell/set-array": { 865 | "version": "1.2.1", 866 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 867 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 868 | "dev": true, 869 | "license": "MIT", 870 | "engines": { 871 | "node": ">=6.0.0" 872 | } 873 | }, 874 | "node_modules/@jridgewell/sourcemap-codec": { 875 | "version": "1.5.0", 876 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 877 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 878 | "dev": true, 879 | "license": "MIT" 880 | }, 881 | "node_modules/@jridgewell/trace-mapping": { 882 | "version": "0.3.25", 883 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 884 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 885 | "dev": true, 886 | "license": "MIT", 887 | "dependencies": { 888 | "@jridgewell/resolve-uri": "^3.1.0", 889 | "@jridgewell/sourcemap-codec": "^1.4.14" 890 | } 891 | }, 892 | "node_modules/@sinclair/typebox": { 893 | "version": "0.27.8", 894 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 895 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 896 | "dev": true, 897 | "license": "MIT" 898 | }, 899 | "node_modules/@sinonjs/commons": { 900 | "version": "3.0.1", 901 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 902 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 903 | "dev": true, 904 | "license": "BSD-3-Clause", 905 | "dependencies": { 906 | "type-detect": "4.0.8" 907 | } 908 | }, 909 | "node_modules/@sinonjs/fake-timers": { 910 | "version": "10.3.0", 911 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 912 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 913 | "dev": true, 914 | "license": "BSD-3-Clause", 915 | "dependencies": { 916 | "@sinonjs/commons": "^3.0.0" 917 | } 918 | }, 919 | "node_modules/@types/babel__core": { 920 | "version": "7.20.5", 921 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 922 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 923 | "dev": true, 924 | "license": "MIT", 925 | "dependencies": { 926 | "@babel/parser": "^7.20.7", 927 | "@babel/types": "^7.20.7", 928 | "@types/babel__generator": "*", 929 | "@types/babel__template": "*", 930 | "@types/babel__traverse": "*" 931 | } 932 | }, 933 | "node_modules/@types/babel__generator": { 934 | "version": "7.6.8", 935 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 936 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 937 | "dev": true, 938 | "license": "MIT", 939 | "dependencies": { 940 | "@babel/types": "^7.0.0" 941 | } 942 | }, 943 | "node_modules/@types/babel__template": { 944 | "version": "7.4.4", 945 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 946 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 947 | "dev": true, 948 | "license": "MIT", 949 | "dependencies": { 950 | "@babel/parser": "^7.1.0", 951 | "@babel/types": "^7.0.0" 952 | } 953 | }, 954 | "node_modules/@types/babel__traverse": { 955 | "version": "7.20.6", 956 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 957 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 958 | "dev": true, 959 | "license": "MIT", 960 | "dependencies": { 961 | "@babel/types": "^7.20.7" 962 | } 963 | }, 964 | "node_modules/@types/graceful-fs": { 965 | "version": "4.1.9", 966 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 967 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 968 | "dev": true, 969 | "license": "MIT", 970 | "dependencies": { 971 | "@types/node": "*" 972 | } 973 | }, 974 | "node_modules/@types/istanbul-lib-coverage": { 975 | "version": "2.0.6", 976 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 977 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 978 | "dev": true, 979 | "license": "MIT" 980 | }, 981 | "node_modules/@types/istanbul-lib-report": { 982 | "version": "3.0.3", 983 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 984 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 985 | "dev": true, 986 | "license": "MIT", 987 | "dependencies": { 988 | "@types/istanbul-lib-coverage": "*" 989 | } 990 | }, 991 | "node_modules/@types/istanbul-reports": { 992 | "version": "3.0.4", 993 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 994 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 995 | "dev": true, 996 | "license": "MIT", 997 | "dependencies": { 998 | "@types/istanbul-lib-report": "*" 999 | } 1000 | }, 1001 | "node_modules/@types/node": { 1002 | "version": "22.8.1", 1003 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.8.1.tgz", 1004 | "integrity": "sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==", 1005 | "dev": true, 1006 | "license": "MIT", 1007 | "dependencies": { 1008 | "undici-types": "~6.19.8" 1009 | } 1010 | }, 1011 | "node_modules/@types/stack-utils": { 1012 | "version": "2.0.3", 1013 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1014 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1015 | "dev": true, 1016 | "license": "MIT" 1017 | }, 1018 | "node_modules/@types/yargs": { 1019 | "version": "17.0.33", 1020 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1021 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1022 | "dev": true, 1023 | "license": "MIT", 1024 | "dependencies": { 1025 | "@types/yargs-parser": "*" 1026 | } 1027 | }, 1028 | "node_modules/@types/yargs-parser": { 1029 | "version": "21.0.3", 1030 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1031 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1032 | "dev": true, 1033 | "license": "MIT" 1034 | }, 1035 | "node_modules/ansi-escapes": { 1036 | "version": "4.3.2", 1037 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1038 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1039 | "dev": true, 1040 | "license": "MIT", 1041 | "dependencies": { 1042 | "type-fest": "^0.21.3" 1043 | }, 1044 | "engines": { 1045 | "node": ">=8" 1046 | }, 1047 | "funding": { 1048 | "url": "https://github.com/sponsors/sindresorhus" 1049 | } 1050 | }, 1051 | "node_modules/ansi-regex": { 1052 | "version": "5.0.1", 1053 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1054 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1055 | "dev": true, 1056 | "license": "MIT", 1057 | "engines": { 1058 | "node": ">=8" 1059 | } 1060 | }, 1061 | "node_modules/ansi-styles": { 1062 | "version": "4.3.0", 1063 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1064 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1065 | "dev": true, 1066 | "license": "MIT", 1067 | "dependencies": { 1068 | "color-convert": "^2.0.1" 1069 | }, 1070 | "engines": { 1071 | "node": ">=8" 1072 | }, 1073 | "funding": { 1074 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1075 | } 1076 | }, 1077 | "node_modules/anymatch": { 1078 | "version": "3.1.3", 1079 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1080 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1081 | "dev": true, 1082 | "license": "ISC", 1083 | "dependencies": { 1084 | "normalize-path": "^3.0.0", 1085 | "picomatch": "^2.0.4" 1086 | }, 1087 | "engines": { 1088 | "node": ">= 8" 1089 | } 1090 | }, 1091 | "node_modules/argparse": { 1092 | "version": "1.0.10", 1093 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1094 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1095 | "dev": true, 1096 | "license": "MIT", 1097 | "dependencies": { 1098 | "sprintf-js": "~1.0.2" 1099 | } 1100 | }, 1101 | "node_modules/babel-jest": { 1102 | "version": "29.7.0", 1103 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1104 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1105 | "dev": true, 1106 | "license": "MIT", 1107 | "dependencies": { 1108 | "@jest/transform": "^29.7.0", 1109 | "@types/babel__core": "^7.1.14", 1110 | "babel-plugin-istanbul": "^6.1.1", 1111 | "babel-preset-jest": "^29.6.3", 1112 | "chalk": "^4.0.0", 1113 | "graceful-fs": "^4.2.9", 1114 | "slash": "^3.0.0" 1115 | }, 1116 | "engines": { 1117 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1118 | }, 1119 | "peerDependencies": { 1120 | "@babel/core": "^7.8.0" 1121 | } 1122 | }, 1123 | "node_modules/babel-plugin-istanbul": { 1124 | "version": "6.1.1", 1125 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1126 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1127 | "dev": true, 1128 | "license": "BSD-3-Clause", 1129 | "dependencies": { 1130 | "@babel/helper-plugin-utils": "^7.0.0", 1131 | "@istanbuljs/load-nyc-config": "^1.0.0", 1132 | "@istanbuljs/schema": "^0.1.2", 1133 | "istanbul-lib-instrument": "^5.0.4", 1134 | "test-exclude": "^6.0.0" 1135 | }, 1136 | "engines": { 1137 | "node": ">=8" 1138 | } 1139 | }, 1140 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1141 | "version": "5.2.1", 1142 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1143 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1144 | "dev": true, 1145 | "license": "BSD-3-Clause", 1146 | "dependencies": { 1147 | "@babel/core": "^7.12.3", 1148 | "@babel/parser": "^7.14.7", 1149 | "@istanbuljs/schema": "^0.1.2", 1150 | "istanbul-lib-coverage": "^3.2.0", 1151 | "semver": "^6.3.0" 1152 | }, 1153 | "engines": { 1154 | "node": ">=8" 1155 | } 1156 | }, 1157 | "node_modules/babel-plugin-jest-hoist": { 1158 | "version": "29.6.3", 1159 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1160 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1161 | "dev": true, 1162 | "license": "MIT", 1163 | "dependencies": { 1164 | "@babel/template": "^7.3.3", 1165 | "@babel/types": "^7.3.3", 1166 | "@types/babel__core": "^7.1.14", 1167 | "@types/babel__traverse": "^7.0.6" 1168 | }, 1169 | "engines": { 1170 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1171 | } 1172 | }, 1173 | "node_modules/babel-preset-current-node-syntax": { 1174 | "version": "1.1.0", 1175 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", 1176 | "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", 1177 | "dev": true, 1178 | "license": "MIT", 1179 | "dependencies": { 1180 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1181 | "@babel/plugin-syntax-bigint": "^7.8.3", 1182 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1183 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1184 | "@babel/plugin-syntax-import-attributes": "^7.24.7", 1185 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1186 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1187 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1188 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1189 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1190 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1191 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1192 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1193 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1194 | "@babel/plugin-syntax-top-level-await": "^7.14.5" 1195 | }, 1196 | "peerDependencies": { 1197 | "@babel/core": "^7.0.0" 1198 | } 1199 | }, 1200 | "node_modules/babel-preset-jest": { 1201 | "version": "29.6.3", 1202 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1203 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1204 | "dev": true, 1205 | "license": "MIT", 1206 | "dependencies": { 1207 | "babel-plugin-jest-hoist": "^29.6.3", 1208 | "babel-preset-current-node-syntax": "^1.0.0" 1209 | }, 1210 | "engines": { 1211 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1212 | }, 1213 | "peerDependencies": { 1214 | "@babel/core": "^7.0.0" 1215 | } 1216 | }, 1217 | "node_modules/balanced-match": { 1218 | "version": "1.0.2", 1219 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1220 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1221 | "dev": true, 1222 | "license": "MIT" 1223 | }, 1224 | "node_modules/brace-expansion": { 1225 | "version": "1.1.11", 1226 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1227 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1228 | "dev": true, 1229 | "license": "MIT", 1230 | "dependencies": { 1231 | "balanced-match": "^1.0.0", 1232 | "concat-map": "0.0.1" 1233 | } 1234 | }, 1235 | "node_modules/braces": { 1236 | "version": "3.0.3", 1237 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1238 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1239 | "dev": true, 1240 | "license": "MIT", 1241 | "dependencies": { 1242 | "fill-range": "^7.1.1" 1243 | }, 1244 | "engines": { 1245 | "node": ">=8" 1246 | } 1247 | }, 1248 | "node_modules/browserslist": { 1249 | "version": "4.24.2", 1250 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", 1251 | "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", 1252 | "dev": true, 1253 | "funding": [ 1254 | { 1255 | "type": "opencollective", 1256 | "url": "https://opencollective.com/browserslist" 1257 | }, 1258 | { 1259 | "type": "tidelift", 1260 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1261 | }, 1262 | { 1263 | "type": "github", 1264 | "url": "https://github.com/sponsors/ai" 1265 | } 1266 | ], 1267 | "license": "MIT", 1268 | "dependencies": { 1269 | "caniuse-lite": "^1.0.30001669", 1270 | "electron-to-chromium": "^1.5.41", 1271 | "node-releases": "^2.0.18", 1272 | "update-browserslist-db": "^1.1.1" 1273 | }, 1274 | "bin": { 1275 | "browserslist": "cli.js" 1276 | }, 1277 | "engines": { 1278 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1279 | } 1280 | }, 1281 | "node_modules/bser": { 1282 | "version": "2.1.1", 1283 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1284 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1285 | "dev": true, 1286 | "license": "Apache-2.0", 1287 | "dependencies": { 1288 | "node-int64": "^0.4.0" 1289 | } 1290 | }, 1291 | "node_modules/buffer-from": { 1292 | "version": "1.1.2", 1293 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1294 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1295 | "dev": true, 1296 | "license": "MIT" 1297 | }, 1298 | "node_modules/callsites": { 1299 | "version": "3.1.0", 1300 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1301 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1302 | "dev": true, 1303 | "license": "MIT", 1304 | "engines": { 1305 | "node": ">=6" 1306 | } 1307 | }, 1308 | "node_modules/camelcase": { 1309 | "version": "5.3.1", 1310 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1311 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1312 | "dev": true, 1313 | "license": "MIT", 1314 | "engines": { 1315 | "node": ">=6" 1316 | } 1317 | }, 1318 | "node_modules/caniuse-lite": { 1319 | "version": "1.0.30001673", 1320 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001673.tgz", 1321 | "integrity": "sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==", 1322 | "dev": true, 1323 | "funding": [ 1324 | { 1325 | "type": "opencollective", 1326 | "url": "https://opencollective.com/browserslist" 1327 | }, 1328 | { 1329 | "type": "tidelift", 1330 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1331 | }, 1332 | { 1333 | "type": "github", 1334 | "url": "https://github.com/sponsors/ai" 1335 | } 1336 | ], 1337 | "license": "CC-BY-4.0" 1338 | }, 1339 | "node_modules/chalk": { 1340 | "version": "4.1.2", 1341 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1342 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1343 | "dev": true, 1344 | "license": "MIT", 1345 | "dependencies": { 1346 | "ansi-styles": "^4.1.0", 1347 | "supports-color": "^7.1.0" 1348 | }, 1349 | "engines": { 1350 | "node": ">=10" 1351 | }, 1352 | "funding": { 1353 | "url": "https://github.com/chalk/chalk?sponsor=1" 1354 | } 1355 | }, 1356 | "node_modules/char-regex": { 1357 | "version": "1.0.2", 1358 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1359 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1360 | "dev": true, 1361 | "license": "MIT", 1362 | "engines": { 1363 | "node": ">=10" 1364 | } 1365 | }, 1366 | "node_modules/ci-info": { 1367 | "version": "3.9.0", 1368 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1369 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1370 | "dev": true, 1371 | "funding": [ 1372 | { 1373 | "type": "github", 1374 | "url": "https://github.com/sponsors/sibiraj-s" 1375 | } 1376 | ], 1377 | "license": "MIT", 1378 | "engines": { 1379 | "node": ">=8" 1380 | } 1381 | }, 1382 | "node_modules/cjs-module-lexer": { 1383 | "version": "1.4.1", 1384 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", 1385 | "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", 1386 | "dev": true, 1387 | "license": "MIT" 1388 | }, 1389 | "node_modules/cliui": { 1390 | "version": "8.0.1", 1391 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1392 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1393 | "dev": true, 1394 | "license": "ISC", 1395 | "dependencies": { 1396 | "string-width": "^4.2.0", 1397 | "strip-ansi": "^6.0.1", 1398 | "wrap-ansi": "^7.0.0" 1399 | }, 1400 | "engines": { 1401 | "node": ">=12" 1402 | } 1403 | }, 1404 | "node_modules/co": { 1405 | "version": "4.6.0", 1406 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1407 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1408 | "dev": true, 1409 | "license": "MIT", 1410 | "engines": { 1411 | "iojs": ">= 1.0.0", 1412 | "node": ">= 0.12.0" 1413 | } 1414 | }, 1415 | "node_modules/collect-v8-coverage": { 1416 | "version": "1.0.2", 1417 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1418 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1419 | "dev": true, 1420 | "license": "MIT" 1421 | }, 1422 | "node_modules/color-convert": { 1423 | "version": "2.0.1", 1424 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1425 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1426 | "dev": true, 1427 | "license": "MIT", 1428 | "dependencies": { 1429 | "color-name": "~1.1.4" 1430 | }, 1431 | "engines": { 1432 | "node": ">=7.0.0" 1433 | } 1434 | }, 1435 | "node_modules/color-name": { 1436 | "version": "1.1.4", 1437 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1438 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1439 | "dev": true, 1440 | "license": "MIT" 1441 | }, 1442 | "node_modules/concat-map": { 1443 | "version": "0.0.1", 1444 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1445 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1446 | "dev": true, 1447 | "license": "MIT" 1448 | }, 1449 | "node_modules/convert-source-map": { 1450 | "version": "2.0.0", 1451 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1452 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1453 | "dev": true, 1454 | "license": "MIT" 1455 | }, 1456 | "node_modules/create-jest": { 1457 | "version": "29.7.0", 1458 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1459 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1460 | "dev": true, 1461 | "license": "MIT", 1462 | "dependencies": { 1463 | "@jest/types": "^29.6.3", 1464 | "chalk": "^4.0.0", 1465 | "exit": "^0.1.2", 1466 | "graceful-fs": "^4.2.9", 1467 | "jest-config": "^29.7.0", 1468 | "jest-util": "^29.7.0", 1469 | "prompts": "^2.0.1" 1470 | }, 1471 | "bin": { 1472 | "create-jest": "bin/create-jest.js" 1473 | }, 1474 | "engines": { 1475 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1476 | } 1477 | }, 1478 | "node_modules/cross-spawn": { 1479 | "version": "7.0.6", 1480 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1481 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1482 | "dev": true, 1483 | "license": "MIT", 1484 | "dependencies": { 1485 | "path-key": "^3.1.0", 1486 | "shebang-command": "^2.0.0", 1487 | "which": "^2.0.1" 1488 | }, 1489 | "engines": { 1490 | "node": ">= 8" 1491 | } 1492 | }, 1493 | "node_modules/debug": { 1494 | "version": "4.3.7", 1495 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1496 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1497 | "dev": true, 1498 | "license": "MIT", 1499 | "dependencies": { 1500 | "ms": "^2.1.3" 1501 | }, 1502 | "engines": { 1503 | "node": ">=6.0" 1504 | }, 1505 | "peerDependenciesMeta": { 1506 | "supports-color": { 1507 | "optional": true 1508 | } 1509 | } 1510 | }, 1511 | "node_modules/dedent": { 1512 | "version": "1.5.3", 1513 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", 1514 | "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", 1515 | "dev": true, 1516 | "license": "MIT", 1517 | "peerDependencies": { 1518 | "babel-plugin-macros": "^3.1.0" 1519 | }, 1520 | "peerDependenciesMeta": { 1521 | "babel-plugin-macros": { 1522 | "optional": true 1523 | } 1524 | } 1525 | }, 1526 | "node_modules/deepmerge": { 1527 | "version": "4.3.1", 1528 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1529 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1530 | "dev": true, 1531 | "license": "MIT", 1532 | "engines": { 1533 | "node": ">=0.10.0" 1534 | } 1535 | }, 1536 | "node_modules/detect-newline": { 1537 | "version": "3.1.0", 1538 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1539 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1540 | "dev": true, 1541 | "license": "MIT", 1542 | "engines": { 1543 | "node": ">=8" 1544 | } 1545 | }, 1546 | "node_modules/diff-sequences": { 1547 | "version": "29.6.3", 1548 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1549 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1550 | "dev": true, 1551 | "license": "MIT", 1552 | "engines": { 1553 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1554 | } 1555 | }, 1556 | "node_modules/electron-to-chromium": { 1557 | "version": "1.5.47", 1558 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.47.tgz", 1559 | "integrity": "sha512-zS5Yer0MOYw4rtK2iq43cJagHZ8sXN0jDHDKzB+86gSBSAI4v07S97mcq+Gs2vclAxSh1j7vOAHxSVgduiiuVQ==", 1560 | "dev": true, 1561 | "license": "ISC" 1562 | }, 1563 | "node_modules/emittery": { 1564 | "version": "0.13.1", 1565 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1566 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1567 | "dev": true, 1568 | "license": "MIT", 1569 | "engines": { 1570 | "node": ">=12" 1571 | }, 1572 | "funding": { 1573 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1574 | } 1575 | }, 1576 | "node_modules/emoji-regex": { 1577 | "version": "8.0.0", 1578 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1579 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1580 | "dev": true, 1581 | "license": "MIT" 1582 | }, 1583 | "node_modules/error-ex": { 1584 | "version": "1.3.2", 1585 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1586 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1587 | "dev": true, 1588 | "license": "MIT", 1589 | "dependencies": { 1590 | "is-arrayish": "^0.2.1" 1591 | } 1592 | }, 1593 | "node_modules/escalade": { 1594 | "version": "3.2.0", 1595 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1596 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1597 | "dev": true, 1598 | "license": "MIT", 1599 | "engines": { 1600 | "node": ">=6" 1601 | } 1602 | }, 1603 | "node_modules/escape-string-regexp": { 1604 | "version": "2.0.0", 1605 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1606 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1607 | "dev": true, 1608 | "license": "MIT", 1609 | "engines": { 1610 | "node": ">=8" 1611 | } 1612 | }, 1613 | "node_modules/esprima": { 1614 | "version": "4.0.1", 1615 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1616 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1617 | "dev": true, 1618 | "license": "BSD-2-Clause", 1619 | "bin": { 1620 | "esparse": "bin/esparse.js", 1621 | "esvalidate": "bin/esvalidate.js" 1622 | }, 1623 | "engines": { 1624 | "node": ">=4" 1625 | } 1626 | }, 1627 | "node_modules/execa": { 1628 | "version": "5.1.1", 1629 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1630 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1631 | "dev": true, 1632 | "license": "MIT", 1633 | "dependencies": { 1634 | "cross-spawn": "^7.0.3", 1635 | "get-stream": "^6.0.0", 1636 | "human-signals": "^2.1.0", 1637 | "is-stream": "^2.0.0", 1638 | "merge-stream": "^2.0.0", 1639 | "npm-run-path": "^4.0.1", 1640 | "onetime": "^5.1.2", 1641 | "signal-exit": "^3.0.3", 1642 | "strip-final-newline": "^2.0.0" 1643 | }, 1644 | "engines": { 1645 | "node": ">=10" 1646 | }, 1647 | "funding": { 1648 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1649 | } 1650 | }, 1651 | "node_modules/exit": { 1652 | "version": "0.1.2", 1653 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1654 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1655 | "dev": true, 1656 | "engines": { 1657 | "node": ">= 0.8.0" 1658 | } 1659 | }, 1660 | "node_modules/expect": { 1661 | "version": "29.7.0", 1662 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1663 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1664 | "dev": true, 1665 | "license": "MIT", 1666 | "dependencies": { 1667 | "@jest/expect-utils": "^29.7.0", 1668 | "jest-get-type": "^29.6.3", 1669 | "jest-matcher-utils": "^29.7.0", 1670 | "jest-message-util": "^29.7.0", 1671 | "jest-util": "^29.7.0" 1672 | }, 1673 | "engines": { 1674 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1675 | } 1676 | }, 1677 | "node_modules/fast-json-stable-stringify": { 1678 | "version": "2.1.0", 1679 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1680 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1681 | "dev": true, 1682 | "license": "MIT" 1683 | }, 1684 | "node_modules/fb-watchman": { 1685 | "version": "2.0.2", 1686 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1687 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1688 | "dev": true, 1689 | "license": "Apache-2.0", 1690 | "dependencies": { 1691 | "bser": "2.1.1" 1692 | } 1693 | }, 1694 | "node_modules/fill-range": { 1695 | "version": "7.1.1", 1696 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1697 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1698 | "dev": true, 1699 | "license": "MIT", 1700 | "dependencies": { 1701 | "to-regex-range": "^5.0.1" 1702 | }, 1703 | "engines": { 1704 | "node": ">=8" 1705 | } 1706 | }, 1707 | "node_modules/find-up": { 1708 | "version": "4.1.0", 1709 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1710 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1711 | "dev": true, 1712 | "license": "MIT", 1713 | "dependencies": { 1714 | "locate-path": "^5.0.0", 1715 | "path-exists": "^4.0.0" 1716 | }, 1717 | "engines": { 1718 | "node": ">=8" 1719 | } 1720 | }, 1721 | "node_modules/fs.realpath": { 1722 | "version": "1.0.0", 1723 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1724 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1725 | "dev": true, 1726 | "license": "ISC" 1727 | }, 1728 | "node_modules/fsevents": { 1729 | "version": "2.3.3", 1730 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1731 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1732 | "dev": true, 1733 | "hasInstallScript": true, 1734 | "license": "MIT", 1735 | "optional": true, 1736 | "os": [ 1737 | "darwin" 1738 | ], 1739 | "engines": { 1740 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1741 | } 1742 | }, 1743 | "node_modules/function-bind": { 1744 | "version": "1.1.2", 1745 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1746 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1747 | "dev": true, 1748 | "license": "MIT", 1749 | "funding": { 1750 | "url": "https://github.com/sponsors/ljharb" 1751 | } 1752 | }, 1753 | "node_modules/gensync": { 1754 | "version": "1.0.0-beta.2", 1755 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1756 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1757 | "dev": true, 1758 | "license": "MIT", 1759 | "engines": { 1760 | "node": ">=6.9.0" 1761 | } 1762 | }, 1763 | "node_modules/get-caller-file": { 1764 | "version": "2.0.5", 1765 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1766 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1767 | "dev": true, 1768 | "license": "ISC", 1769 | "engines": { 1770 | "node": "6.* || 8.* || >= 10.*" 1771 | } 1772 | }, 1773 | "node_modules/get-package-type": { 1774 | "version": "0.1.0", 1775 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1776 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1777 | "dev": true, 1778 | "license": "MIT", 1779 | "engines": { 1780 | "node": ">=8.0.0" 1781 | } 1782 | }, 1783 | "node_modules/get-stream": { 1784 | "version": "6.0.1", 1785 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1786 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1787 | "dev": true, 1788 | "license": "MIT", 1789 | "engines": { 1790 | "node": ">=10" 1791 | }, 1792 | "funding": { 1793 | "url": "https://github.com/sponsors/sindresorhus" 1794 | } 1795 | }, 1796 | "node_modules/glob": { 1797 | "version": "7.2.3", 1798 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1799 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1800 | "deprecated": "Glob versions prior to v9 are no longer supported", 1801 | "dev": true, 1802 | "license": "ISC", 1803 | "dependencies": { 1804 | "fs.realpath": "^1.0.0", 1805 | "inflight": "^1.0.4", 1806 | "inherits": "2", 1807 | "minimatch": "^3.1.1", 1808 | "once": "^1.3.0", 1809 | "path-is-absolute": "^1.0.0" 1810 | }, 1811 | "engines": { 1812 | "node": "*" 1813 | }, 1814 | "funding": { 1815 | "url": "https://github.com/sponsors/isaacs" 1816 | } 1817 | }, 1818 | "node_modules/globals": { 1819 | "version": "11.12.0", 1820 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1821 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1822 | "dev": true, 1823 | "license": "MIT", 1824 | "engines": { 1825 | "node": ">=4" 1826 | } 1827 | }, 1828 | "node_modules/graceful-fs": { 1829 | "version": "4.2.11", 1830 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1831 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1832 | "dev": true, 1833 | "license": "ISC" 1834 | }, 1835 | "node_modules/has-flag": { 1836 | "version": "4.0.0", 1837 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1838 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1839 | "dev": true, 1840 | "license": "MIT", 1841 | "engines": { 1842 | "node": ">=8" 1843 | } 1844 | }, 1845 | "node_modules/hasown": { 1846 | "version": "2.0.2", 1847 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1848 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1849 | "dev": true, 1850 | "license": "MIT", 1851 | "dependencies": { 1852 | "function-bind": "^1.1.2" 1853 | }, 1854 | "engines": { 1855 | "node": ">= 0.4" 1856 | } 1857 | }, 1858 | "node_modules/html-escaper": { 1859 | "version": "2.0.2", 1860 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 1861 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 1862 | "dev": true, 1863 | "license": "MIT" 1864 | }, 1865 | "node_modules/human-signals": { 1866 | "version": "2.1.0", 1867 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 1868 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 1869 | "dev": true, 1870 | "license": "Apache-2.0", 1871 | "engines": { 1872 | "node": ">=10.17.0" 1873 | } 1874 | }, 1875 | "node_modules/import-local": { 1876 | "version": "3.2.0", 1877 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 1878 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 1879 | "dev": true, 1880 | "license": "MIT", 1881 | "dependencies": { 1882 | "pkg-dir": "^4.2.0", 1883 | "resolve-cwd": "^3.0.0" 1884 | }, 1885 | "bin": { 1886 | "import-local-fixture": "fixtures/cli.js" 1887 | }, 1888 | "engines": { 1889 | "node": ">=8" 1890 | }, 1891 | "funding": { 1892 | "url": "https://github.com/sponsors/sindresorhus" 1893 | } 1894 | }, 1895 | "node_modules/imurmurhash": { 1896 | "version": "0.1.4", 1897 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1898 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1899 | "dev": true, 1900 | "license": "MIT", 1901 | "engines": { 1902 | "node": ">=0.8.19" 1903 | } 1904 | }, 1905 | "node_modules/inflight": { 1906 | "version": "1.0.6", 1907 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1908 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1909 | "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.", 1910 | "dev": true, 1911 | "license": "ISC", 1912 | "dependencies": { 1913 | "once": "^1.3.0", 1914 | "wrappy": "1" 1915 | } 1916 | }, 1917 | "node_modules/inherits": { 1918 | "version": "2.0.4", 1919 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1920 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1921 | "dev": true, 1922 | "license": "ISC" 1923 | }, 1924 | "node_modules/is-arrayish": { 1925 | "version": "0.2.1", 1926 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1927 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1928 | "dev": true, 1929 | "license": "MIT" 1930 | }, 1931 | "node_modules/is-core-module": { 1932 | "version": "2.15.1", 1933 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 1934 | "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 1935 | "dev": true, 1936 | "license": "MIT", 1937 | "dependencies": { 1938 | "hasown": "^2.0.2" 1939 | }, 1940 | "engines": { 1941 | "node": ">= 0.4" 1942 | }, 1943 | "funding": { 1944 | "url": "https://github.com/sponsors/ljharb" 1945 | } 1946 | }, 1947 | "node_modules/is-fullwidth-code-point": { 1948 | "version": "3.0.0", 1949 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1950 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1951 | "dev": true, 1952 | "license": "MIT", 1953 | "engines": { 1954 | "node": ">=8" 1955 | } 1956 | }, 1957 | "node_modules/is-generator-fn": { 1958 | "version": "2.1.0", 1959 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 1960 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 1961 | "dev": true, 1962 | "license": "MIT", 1963 | "engines": { 1964 | "node": ">=6" 1965 | } 1966 | }, 1967 | "node_modules/is-number": { 1968 | "version": "7.0.0", 1969 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1970 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1971 | "dev": true, 1972 | "license": "MIT", 1973 | "engines": { 1974 | "node": ">=0.12.0" 1975 | } 1976 | }, 1977 | "node_modules/is-stream": { 1978 | "version": "2.0.1", 1979 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 1980 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 1981 | "dev": true, 1982 | "license": "MIT", 1983 | "engines": { 1984 | "node": ">=8" 1985 | }, 1986 | "funding": { 1987 | "url": "https://github.com/sponsors/sindresorhus" 1988 | } 1989 | }, 1990 | "node_modules/isexe": { 1991 | "version": "2.0.0", 1992 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1993 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1994 | "dev": true, 1995 | "license": "ISC" 1996 | }, 1997 | "node_modules/istanbul-lib-coverage": { 1998 | "version": "3.2.2", 1999 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2000 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2001 | "dev": true, 2002 | "license": "BSD-3-Clause", 2003 | "engines": { 2004 | "node": ">=8" 2005 | } 2006 | }, 2007 | "node_modules/istanbul-lib-instrument": { 2008 | "version": "6.0.3", 2009 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2010 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2011 | "dev": true, 2012 | "license": "BSD-3-Clause", 2013 | "dependencies": { 2014 | "@babel/core": "^7.23.9", 2015 | "@babel/parser": "^7.23.9", 2016 | "@istanbuljs/schema": "^0.1.3", 2017 | "istanbul-lib-coverage": "^3.2.0", 2018 | "semver": "^7.5.4" 2019 | }, 2020 | "engines": { 2021 | "node": ">=10" 2022 | } 2023 | }, 2024 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2025 | "version": "7.6.3", 2026 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2027 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2028 | "dev": true, 2029 | "license": "ISC", 2030 | "bin": { 2031 | "semver": "bin/semver.js" 2032 | }, 2033 | "engines": { 2034 | "node": ">=10" 2035 | } 2036 | }, 2037 | "node_modules/istanbul-lib-report": { 2038 | "version": "3.0.1", 2039 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2040 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2041 | "dev": true, 2042 | "license": "BSD-3-Clause", 2043 | "dependencies": { 2044 | "istanbul-lib-coverage": "^3.0.0", 2045 | "make-dir": "^4.0.0", 2046 | "supports-color": "^7.1.0" 2047 | }, 2048 | "engines": { 2049 | "node": ">=10" 2050 | } 2051 | }, 2052 | "node_modules/istanbul-lib-source-maps": { 2053 | "version": "4.0.1", 2054 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2055 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2056 | "dev": true, 2057 | "license": "BSD-3-Clause", 2058 | "dependencies": { 2059 | "debug": "^4.1.1", 2060 | "istanbul-lib-coverage": "^3.0.0", 2061 | "source-map": "^0.6.1" 2062 | }, 2063 | "engines": { 2064 | "node": ">=10" 2065 | } 2066 | }, 2067 | "node_modules/istanbul-reports": { 2068 | "version": "3.1.7", 2069 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2070 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2071 | "dev": true, 2072 | "license": "BSD-3-Clause", 2073 | "dependencies": { 2074 | "html-escaper": "^2.0.0", 2075 | "istanbul-lib-report": "^3.0.0" 2076 | }, 2077 | "engines": { 2078 | "node": ">=8" 2079 | } 2080 | }, 2081 | "node_modules/jest": { 2082 | "version": "29.7.0", 2083 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2084 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2085 | "dev": true, 2086 | "license": "MIT", 2087 | "dependencies": { 2088 | "@jest/core": "^29.7.0", 2089 | "@jest/types": "^29.6.3", 2090 | "import-local": "^3.0.2", 2091 | "jest-cli": "^29.7.0" 2092 | }, 2093 | "bin": { 2094 | "jest": "bin/jest.js" 2095 | }, 2096 | "engines": { 2097 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2098 | }, 2099 | "peerDependencies": { 2100 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2101 | }, 2102 | "peerDependenciesMeta": { 2103 | "node-notifier": { 2104 | "optional": true 2105 | } 2106 | } 2107 | }, 2108 | "node_modules/jest-changed-files": { 2109 | "version": "29.7.0", 2110 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2111 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2112 | "dev": true, 2113 | "license": "MIT", 2114 | "dependencies": { 2115 | "execa": "^5.0.0", 2116 | "jest-util": "^29.7.0", 2117 | "p-limit": "^3.1.0" 2118 | }, 2119 | "engines": { 2120 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2121 | } 2122 | }, 2123 | "node_modules/jest-circus": { 2124 | "version": "29.7.0", 2125 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2126 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2127 | "dev": true, 2128 | "license": "MIT", 2129 | "dependencies": { 2130 | "@jest/environment": "^29.7.0", 2131 | "@jest/expect": "^29.7.0", 2132 | "@jest/test-result": "^29.7.0", 2133 | "@jest/types": "^29.6.3", 2134 | "@types/node": "*", 2135 | "chalk": "^4.0.0", 2136 | "co": "^4.6.0", 2137 | "dedent": "^1.0.0", 2138 | "is-generator-fn": "^2.0.0", 2139 | "jest-each": "^29.7.0", 2140 | "jest-matcher-utils": "^29.7.0", 2141 | "jest-message-util": "^29.7.0", 2142 | "jest-runtime": "^29.7.0", 2143 | "jest-snapshot": "^29.7.0", 2144 | "jest-util": "^29.7.0", 2145 | "p-limit": "^3.1.0", 2146 | "pretty-format": "^29.7.0", 2147 | "pure-rand": "^6.0.0", 2148 | "slash": "^3.0.0", 2149 | "stack-utils": "^2.0.3" 2150 | }, 2151 | "engines": { 2152 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2153 | } 2154 | }, 2155 | "node_modules/jest-cli": { 2156 | "version": "29.7.0", 2157 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2158 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2159 | "dev": true, 2160 | "license": "MIT", 2161 | "dependencies": { 2162 | "@jest/core": "^29.7.0", 2163 | "@jest/test-result": "^29.7.0", 2164 | "@jest/types": "^29.6.3", 2165 | "chalk": "^4.0.0", 2166 | "create-jest": "^29.7.0", 2167 | "exit": "^0.1.2", 2168 | "import-local": "^3.0.2", 2169 | "jest-config": "^29.7.0", 2170 | "jest-util": "^29.7.0", 2171 | "jest-validate": "^29.7.0", 2172 | "yargs": "^17.3.1" 2173 | }, 2174 | "bin": { 2175 | "jest": "bin/jest.js" 2176 | }, 2177 | "engines": { 2178 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2179 | }, 2180 | "peerDependencies": { 2181 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2182 | }, 2183 | "peerDependenciesMeta": { 2184 | "node-notifier": { 2185 | "optional": true 2186 | } 2187 | } 2188 | }, 2189 | "node_modules/jest-config": { 2190 | "version": "29.7.0", 2191 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2192 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2193 | "dev": true, 2194 | "license": "MIT", 2195 | "dependencies": { 2196 | "@babel/core": "^7.11.6", 2197 | "@jest/test-sequencer": "^29.7.0", 2198 | "@jest/types": "^29.6.3", 2199 | "babel-jest": "^29.7.0", 2200 | "chalk": "^4.0.0", 2201 | "ci-info": "^3.2.0", 2202 | "deepmerge": "^4.2.2", 2203 | "glob": "^7.1.3", 2204 | "graceful-fs": "^4.2.9", 2205 | "jest-circus": "^29.7.0", 2206 | "jest-environment-node": "^29.7.0", 2207 | "jest-get-type": "^29.6.3", 2208 | "jest-regex-util": "^29.6.3", 2209 | "jest-resolve": "^29.7.0", 2210 | "jest-runner": "^29.7.0", 2211 | "jest-util": "^29.7.0", 2212 | "jest-validate": "^29.7.0", 2213 | "micromatch": "^4.0.4", 2214 | "parse-json": "^5.2.0", 2215 | "pretty-format": "^29.7.0", 2216 | "slash": "^3.0.0", 2217 | "strip-json-comments": "^3.1.1" 2218 | }, 2219 | "engines": { 2220 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2221 | }, 2222 | "peerDependencies": { 2223 | "@types/node": "*", 2224 | "ts-node": ">=9.0.0" 2225 | }, 2226 | "peerDependenciesMeta": { 2227 | "@types/node": { 2228 | "optional": true 2229 | }, 2230 | "ts-node": { 2231 | "optional": true 2232 | } 2233 | } 2234 | }, 2235 | "node_modules/jest-diff": { 2236 | "version": "29.7.0", 2237 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2238 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2239 | "dev": true, 2240 | "license": "MIT", 2241 | "dependencies": { 2242 | "chalk": "^4.0.0", 2243 | "diff-sequences": "^29.6.3", 2244 | "jest-get-type": "^29.6.3", 2245 | "pretty-format": "^29.7.0" 2246 | }, 2247 | "engines": { 2248 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2249 | } 2250 | }, 2251 | "node_modules/jest-docblock": { 2252 | "version": "29.7.0", 2253 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2254 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2255 | "dev": true, 2256 | "license": "MIT", 2257 | "dependencies": { 2258 | "detect-newline": "^3.0.0" 2259 | }, 2260 | "engines": { 2261 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2262 | } 2263 | }, 2264 | "node_modules/jest-each": { 2265 | "version": "29.7.0", 2266 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2267 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2268 | "dev": true, 2269 | "license": "MIT", 2270 | "dependencies": { 2271 | "@jest/types": "^29.6.3", 2272 | "chalk": "^4.0.0", 2273 | "jest-get-type": "^29.6.3", 2274 | "jest-util": "^29.7.0", 2275 | "pretty-format": "^29.7.0" 2276 | }, 2277 | "engines": { 2278 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2279 | } 2280 | }, 2281 | "node_modules/jest-environment-node": { 2282 | "version": "29.7.0", 2283 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2284 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2285 | "dev": true, 2286 | "license": "MIT", 2287 | "dependencies": { 2288 | "@jest/environment": "^29.7.0", 2289 | "@jest/fake-timers": "^29.7.0", 2290 | "@jest/types": "^29.6.3", 2291 | "@types/node": "*", 2292 | "jest-mock": "^29.7.0", 2293 | "jest-util": "^29.7.0" 2294 | }, 2295 | "engines": { 2296 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2297 | } 2298 | }, 2299 | "node_modules/jest-get-type": { 2300 | "version": "29.6.3", 2301 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2302 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2303 | "dev": true, 2304 | "license": "MIT", 2305 | "engines": { 2306 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2307 | } 2308 | }, 2309 | "node_modules/jest-haste-map": { 2310 | "version": "29.7.0", 2311 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2312 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2313 | "dev": true, 2314 | "license": "MIT", 2315 | "dependencies": { 2316 | "@jest/types": "^29.6.3", 2317 | "@types/graceful-fs": "^4.1.3", 2318 | "@types/node": "*", 2319 | "anymatch": "^3.0.3", 2320 | "fb-watchman": "^2.0.0", 2321 | "graceful-fs": "^4.2.9", 2322 | "jest-regex-util": "^29.6.3", 2323 | "jest-util": "^29.7.0", 2324 | "jest-worker": "^29.7.0", 2325 | "micromatch": "^4.0.4", 2326 | "walker": "^1.0.8" 2327 | }, 2328 | "engines": { 2329 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2330 | }, 2331 | "optionalDependencies": { 2332 | "fsevents": "^2.3.2" 2333 | } 2334 | }, 2335 | "node_modules/jest-leak-detector": { 2336 | "version": "29.7.0", 2337 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2338 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2339 | "dev": true, 2340 | "license": "MIT", 2341 | "dependencies": { 2342 | "jest-get-type": "^29.6.3", 2343 | "pretty-format": "^29.7.0" 2344 | }, 2345 | "engines": { 2346 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2347 | } 2348 | }, 2349 | "node_modules/jest-matcher-utils": { 2350 | "version": "29.7.0", 2351 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2352 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2353 | "dev": true, 2354 | "license": "MIT", 2355 | "dependencies": { 2356 | "chalk": "^4.0.0", 2357 | "jest-diff": "^29.7.0", 2358 | "jest-get-type": "^29.6.3", 2359 | "pretty-format": "^29.7.0" 2360 | }, 2361 | "engines": { 2362 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2363 | } 2364 | }, 2365 | "node_modules/jest-message-util": { 2366 | "version": "29.7.0", 2367 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2368 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2369 | "dev": true, 2370 | "license": "MIT", 2371 | "dependencies": { 2372 | "@babel/code-frame": "^7.12.13", 2373 | "@jest/types": "^29.6.3", 2374 | "@types/stack-utils": "^2.0.0", 2375 | "chalk": "^4.0.0", 2376 | "graceful-fs": "^4.2.9", 2377 | "micromatch": "^4.0.4", 2378 | "pretty-format": "^29.7.0", 2379 | "slash": "^3.0.0", 2380 | "stack-utils": "^2.0.3" 2381 | }, 2382 | "engines": { 2383 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2384 | } 2385 | }, 2386 | "node_modules/jest-mock": { 2387 | "version": "29.7.0", 2388 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2389 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2390 | "dev": true, 2391 | "license": "MIT", 2392 | "dependencies": { 2393 | "@jest/types": "^29.6.3", 2394 | "@types/node": "*", 2395 | "jest-util": "^29.7.0" 2396 | }, 2397 | "engines": { 2398 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2399 | } 2400 | }, 2401 | "node_modules/jest-pnp-resolver": { 2402 | "version": "1.2.3", 2403 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2404 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2405 | "dev": true, 2406 | "license": "MIT", 2407 | "engines": { 2408 | "node": ">=6" 2409 | }, 2410 | "peerDependencies": { 2411 | "jest-resolve": "*" 2412 | }, 2413 | "peerDependenciesMeta": { 2414 | "jest-resolve": { 2415 | "optional": true 2416 | } 2417 | } 2418 | }, 2419 | "node_modules/jest-postcss": { 2420 | "version": "0.1.0", 2421 | "resolved": "https://registry.npmjs.org/jest-postcss/-/jest-postcss-0.1.0.tgz", 2422 | "integrity": "sha512-L8f5OgJm//638yP3bTbOAidc85pN2ZyPlsPXRoT/XoZSIF5DK+FLq6bOhiP3bSkGe3bTNyuKeuiKt6WBAMDulg==", 2423 | "dev": true, 2424 | "license": "MIT", 2425 | "peerDependencies": { 2426 | "jest": ">= 24.0.0", 2427 | "postcss": ">= 8.0.0", 2428 | "prettier": ">= 1.0.0" 2429 | } 2430 | }, 2431 | "node_modules/jest-regex-util": { 2432 | "version": "29.6.3", 2433 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2434 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2435 | "dev": true, 2436 | "license": "MIT", 2437 | "engines": { 2438 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2439 | } 2440 | }, 2441 | "node_modules/jest-resolve": { 2442 | "version": "29.7.0", 2443 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2444 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2445 | "dev": true, 2446 | "license": "MIT", 2447 | "dependencies": { 2448 | "chalk": "^4.0.0", 2449 | "graceful-fs": "^4.2.9", 2450 | "jest-haste-map": "^29.7.0", 2451 | "jest-pnp-resolver": "^1.2.2", 2452 | "jest-util": "^29.7.0", 2453 | "jest-validate": "^29.7.0", 2454 | "resolve": "^1.20.0", 2455 | "resolve.exports": "^2.0.0", 2456 | "slash": "^3.0.0" 2457 | }, 2458 | "engines": { 2459 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2460 | } 2461 | }, 2462 | "node_modules/jest-resolve-dependencies": { 2463 | "version": "29.7.0", 2464 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2465 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2466 | "dev": true, 2467 | "license": "MIT", 2468 | "dependencies": { 2469 | "jest-regex-util": "^29.6.3", 2470 | "jest-snapshot": "^29.7.0" 2471 | }, 2472 | "engines": { 2473 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2474 | } 2475 | }, 2476 | "node_modules/jest-runner": { 2477 | "version": "29.7.0", 2478 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2479 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2480 | "dev": true, 2481 | "license": "MIT", 2482 | "dependencies": { 2483 | "@jest/console": "^29.7.0", 2484 | "@jest/environment": "^29.7.0", 2485 | "@jest/test-result": "^29.7.0", 2486 | "@jest/transform": "^29.7.0", 2487 | "@jest/types": "^29.6.3", 2488 | "@types/node": "*", 2489 | "chalk": "^4.0.0", 2490 | "emittery": "^0.13.1", 2491 | "graceful-fs": "^4.2.9", 2492 | "jest-docblock": "^29.7.0", 2493 | "jest-environment-node": "^29.7.0", 2494 | "jest-haste-map": "^29.7.0", 2495 | "jest-leak-detector": "^29.7.0", 2496 | "jest-message-util": "^29.7.0", 2497 | "jest-resolve": "^29.7.0", 2498 | "jest-runtime": "^29.7.0", 2499 | "jest-util": "^29.7.0", 2500 | "jest-watcher": "^29.7.0", 2501 | "jest-worker": "^29.7.0", 2502 | "p-limit": "^3.1.0", 2503 | "source-map-support": "0.5.13" 2504 | }, 2505 | "engines": { 2506 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2507 | } 2508 | }, 2509 | "node_modules/jest-runtime": { 2510 | "version": "29.7.0", 2511 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2512 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2513 | "dev": true, 2514 | "license": "MIT", 2515 | "dependencies": { 2516 | "@jest/environment": "^29.7.0", 2517 | "@jest/fake-timers": "^29.7.0", 2518 | "@jest/globals": "^29.7.0", 2519 | "@jest/source-map": "^29.6.3", 2520 | "@jest/test-result": "^29.7.0", 2521 | "@jest/transform": "^29.7.0", 2522 | "@jest/types": "^29.6.3", 2523 | "@types/node": "*", 2524 | "chalk": "^4.0.0", 2525 | "cjs-module-lexer": "^1.0.0", 2526 | "collect-v8-coverage": "^1.0.0", 2527 | "glob": "^7.1.3", 2528 | "graceful-fs": "^4.2.9", 2529 | "jest-haste-map": "^29.7.0", 2530 | "jest-message-util": "^29.7.0", 2531 | "jest-mock": "^29.7.0", 2532 | "jest-regex-util": "^29.6.3", 2533 | "jest-resolve": "^29.7.0", 2534 | "jest-snapshot": "^29.7.0", 2535 | "jest-util": "^29.7.0", 2536 | "slash": "^3.0.0", 2537 | "strip-bom": "^4.0.0" 2538 | }, 2539 | "engines": { 2540 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2541 | } 2542 | }, 2543 | "node_modules/jest-snapshot": { 2544 | "version": "29.7.0", 2545 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2546 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2547 | "dev": true, 2548 | "license": "MIT", 2549 | "dependencies": { 2550 | "@babel/core": "^7.11.6", 2551 | "@babel/generator": "^7.7.2", 2552 | "@babel/plugin-syntax-jsx": "^7.7.2", 2553 | "@babel/plugin-syntax-typescript": "^7.7.2", 2554 | "@babel/types": "^7.3.3", 2555 | "@jest/expect-utils": "^29.7.0", 2556 | "@jest/transform": "^29.7.0", 2557 | "@jest/types": "^29.6.3", 2558 | "babel-preset-current-node-syntax": "^1.0.0", 2559 | "chalk": "^4.0.0", 2560 | "expect": "^29.7.0", 2561 | "graceful-fs": "^4.2.9", 2562 | "jest-diff": "^29.7.0", 2563 | "jest-get-type": "^29.6.3", 2564 | "jest-matcher-utils": "^29.7.0", 2565 | "jest-message-util": "^29.7.0", 2566 | "jest-util": "^29.7.0", 2567 | "natural-compare": "^1.4.0", 2568 | "pretty-format": "^29.7.0", 2569 | "semver": "^7.5.3" 2570 | }, 2571 | "engines": { 2572 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2573 | } 2574 | }, 2575 | "node_modules/jest-snapshot/node_modules/semver": { 2576 | "version": "7.6.3", 2577 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2578 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2579 | "dev": true, 2580 | "license": "ISC", 2581 | "bin": { 2582 | "semver": "bin/semver.js" 2583 | }, 2584 | "engines": { 2585 | "node": ">=10" 2586 | } 2587 | }, 2588 | "node_modules/jest-util": { 2589 | "version": "29.7.0", 2590 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2591 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "dependencies": { 2595 | "@jest/types": "^29.6.3", 2596 | "@types/node": "*", 2597 | "chalk": "^4.0.0", 2598 | "ci-info": "^3.2.0", 2599 | "graceful-fs": "^4.2.9", 2600 | "picomatch": "^2.2.3" 2601 | }, 2602 | "engines": { 2603 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2604 | } 2605 | }, 2606 | "node_modules/jest-validate": { 2607 | "version": "29.7.0", 2608 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2609 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2610 | "dev": true, 2611 | "license": "MIT", 2612 | "dependencies": { 2613 | "@jest/types": "^29.6.3", 2614 | "camelcase": "^6.2.0", 2615 | "chalk": "^4.0.0", 2616 | "jest-get-type": "^29.6.3", 2617 | "leven": "^3.1.0", 2618 | "pretty-format": "^29.7.0" 2619 | }, 2620 | "engines": { 2621 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2622 | } 2623 | }, 2624 | "node_modules/jest-validate/node_modules/camelcase": { 2625 | "version": "6.3.0", 2626 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2627 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2628 | "dev": true, 2629 | "license": "MIT", 2630 | "engines": { 2631 | "node": ">=10" 2632 | }, 2633 | "funding": { 2634 | "url": "https://github.com/sponsors/sindresorhus" 2635 | } 2636 | }, 2637 | "node_modules/jest-watcher": { 2638 | "version": "29.7.0", 2639 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 2640 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 2641 | "dev": true, 2642 | "license": "MIT", 2643 | "dependencies": { 2644 | "@jest/test-result": "^29.7.0", 2645 | "@jest/types": "^29.6.3", 2646 | "@types/node": "*", 2647 | "ansi-escapes": "^4.2.1", 2648 | "chalk": "^4.0.0", 2649 | "emittery": "^0.13.1", 2650 | "jest-util": "^29.7.0", 2651 | "string-length": "^4.0.1" 2652 | }, 2653 | "engines": { 2654 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2655 | } 2656 | }, 2657 | "node_modules/jest-worker": { 2658 | "version": "29.7.0", 2659 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 2660 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 2661 | "dev": true, 2662 | "license": "MIT", 2663 | "dependencies": { 2664 | "@types/node": "*", 2665 | "jest-util": "^29.7.0", 2666 | "merge-stream": "^2.0.0", 2667 | "supports-color": "^8.0.0" 2668 | }, 2669 | "engines": { 2670 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2671 | } 2672 | }, 2673 | "node_modules/jest-worker/node_modules/supports-color": { 2674 | "version": "8.1.1", 2675 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2676 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2677 | "dev": true, 2678 | "license": "MIT", 2679 | "dependencies": { 2680 | "has-flag": "^4.0.0" 2681 | }, 2682 | "engines": { 2683 | "node": ">=10" 2684 | }, 2685 | "funding": { 2686 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2687 | } 2688 | }, 2689 | "node_modules/js-tokens": { 2690 | "version": "4.0.0", 2691 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2692 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2693 | "dev": true, 2694 | "license": "MIT" 2695 | }, 2696 | "node_modules/js-yaml": { 2697 | "version": "3.14.1", 2698 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2699 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2700 | "dev": true, 2701 | "license": "MIT", 2702 | "dependencies": { 2703 | "argparse": "^1.0.7", 2704 | "esprima": "^4.0.0" 2705 | }, 2706 | "bin": { 2707 | "js-yaml": "bin/js-yaml.js" 2708 | } 2709 | }, 2710 | "node_modules/jsesc": { 2711 | "version": "3.0.2", 2712 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 2713 | "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 2714 | "dev": true, 2715 | "license": "MIT", 2716 | "bin": { 2717 | "jsesc": "bin/jsesc" 2718 | }, 2719 | "engines": { 2720 | "node": ">=6" 2721 | } 2722 | }, 2723 | "node_modules/json-parse-even-better-errors": { 2724 | "version": "2.3.1", 2725 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2726 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2727 | "dev": true, 2728 | "license": "MIT" 2729 | }, 2730 | "node_modules/json5": { 2731 | "version": "2.2.3", 2732 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2733 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2734 | "dev": true, 2735 | "license": "MIT", 2736 | "bin": { 2737 | "json5": "lib/cli.js" 2738 | }, 2739 | "engines": { 2740 | "node": ">=6" 2741 | } 2742 | }, 2743 | "node_modules/kleur": { 2744 | "version": "3.0.3", 2745 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 2746 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 2747 | "dev": true, 2748 | "license": "MIT", 2749 | "engines": { 2750 | "node": ">=6" 2751 | } 2752 | }, 2753 | "node_modules/leven": { 2754 | "version": "3.1.0", 2755 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 2756 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 2757 | "dev": true, 2758 | "license": "MIT", 2759 | "engines": { 2760 | "node": ">=6" 2761 | } 2762 | }, 2763 | "node_modules/lines-and-columns": { 2764 | "version": "1.2.4", 2765 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2766 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2767 | "dev": true, 2768 | "license": "MIT" 2769 | }, 2770 | "node_modules/locate-path": { 2771 | "version": "5.0.0", 2772 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2773 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2774 | "dev": true, 2775 | "license": "MIT", 2776 | "dependencies": { 2777 | "p-locate": "^4.1.0" 2778 | }, 2779 | "engines": { 2780 | "node": ">=8" 2781 | } 2782 | }, 2783 | "node_modules/lru-cache": { 2784 | "version": "5.1.1", 2785 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2786 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2787 | "dev": true, 2788 | "license": "ISC", 2789 | "dependencies": { 2790 | "yallist": "^3.0.2" 2791 | } 2792 | }, 2793 | "node_modules/make-dir": { 2794 | "version": "4.0.0", 2795 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 2796 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 2797 | "dev": true, 2798 | "license": "MIT", 2799 | "dependencies": { 2800 | "semver": "^7.5.3" 2801 | }, 2802 | "engines": { 2803 | "node": ">=10" 2804 | }, 2805 | "funding": { 2806 | "url": "https://github.com/sponsors/sindresorhus" 2807 | } 2808 | }, 2809 | "node_modules/make-dir/node_modules/semver": { 2810 | "version": "7.6.3", 2811 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2812 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2813 | "dev": true, 2814 | "license": "ISC", 2815 | "bin": { 2816 | "semver": "bin/semver.js" 2817 | }, 2818 | "engines": { 2819 | "node": ">=10" 2820 | } 2821 | }, 2822 | "node_modules/makeerror": { 2823 | "version": "1.0.12", 2824 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 2825 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 2826 | "dev": true, 2827 | "license": "BSD-3-Clause", 2828 | "dependencies": { 2829 | "tmpl": "1.0.5" 2830 | } 2831 | }, 2832 | "node_modules/merge-stream": { 2833 | "version": "2.0.0", 2834 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2835 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 2836 | "dev": true, 2837 | "license": "MIT" 2838 | }, 2839 | "node_modules/micromatch": { 2840 | "version": "4.0.8", 2841 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2842 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2843 | "dev": true, 2844 | "license": "MIT", 2845 | "dependencies": { 2846 | "braces": "^3.0.3", 2847 | "picomatch": "^2.3.1" 2848 | }, 2849 | "engines": { 2850 | "node": ">=8.6" 2851 | } 2852 | }, 2853 | "node_modules/mimic-fn": { 2854 | "version": "2.1.0", 2855 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 2856 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 2857 | "dev": true, 2858 | "license": "MIT", 2859 | "engines": { 2860 | "node": ">=6" 2861 | } 2862 | }, 2863 | "node_modules/minimatch": { 2864 | "version": "3.1.2", 2865 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2866 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2867 | "dev": true, 2868 | "license": "ISC", 2869 | "dependencies": { 2870 | "brace-expansion": "^1.1.7" 2871 | }, 2872 | "engines": { 2873 | "node": "*" 2874 | } 2875 | }, 2876 | "node_modules/ms": { 2877 | "version": "2.1.3", 2878 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2879 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2880 | "dev": true, 2881 | "license": "MIT" 2882 | }, 2883 | "node_modules/nanoid": { 2884 | "version": "3.3.8", 2885 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2886 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2887 | "dev": true, 2888 | "funding": [ 2889 | { 2890 | "type": "github", 2891 | "url": "https://github.com/sponsors/ai" 2892 | } 2893 | ], 2894 | "license": "MIT", 2895 | "bin": { 2896 | "nanoid": "bin/nanoid.cjs" 2897 | }, 2898 | "engines": { 2899 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2900 | } 2901 | }, 2902 | "node_modules/natural-compare": { 2903 | "version": "1.4.0", 2904 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2905 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2906 | "dev": true, 2907 | "license": "MIT" 2908 | }, 2909 | "node_modules/node-int64": { 2910 | "version": "0.4.0", 2911 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 2912 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 2913 | "dev": true, 2914 | "license": "MIT" 2915 | }, 2916 | "node_modules/node-releases": { 2917 | "version": "2.0.18", 2918 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 2919 | "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 2920 | "dev": true, 2921 | "license": "MIT" 2922 | }, 2923 | "node_modules/normalize-path": { 2924 | "version": "3.0.0", 2925 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2926 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2927 | "dev": true, 2928 | "license": "MIT", 2929 | "engines": { 2930 | "node": ">=0.10.0" 2931 | } 2932 | }, 2933 | "node_modules/npm-run-path": { 2934 | "version": "4.0.1", 2935 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 2936 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 2937 | "dev": true, 2938 | "license": "MIT", 2939 | "dependencies": { 2940 | "path-key": "^3.0.0" 2941 | }, 2942 | "engines": { 2943 | "node": ">=8" 2944 | } 2945 | }, 2946 | "node_modules/once": { 2947 | "version": "1.4.0", 2948 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2949 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2950 | "dev": true, 2951 | "license": "ISC", 2952 | "dependencies": { 2953 | "wrappy": "1" 2954 | } 2955 | }, 2956 | "node_modules/onetime": { 2957 | "version": "5.1.2", 2958 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 2959 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 2960 | "dev": true, 2961 | "license": "MIT", 2962 | "dependencies": { 2963 | "mimic-fn": "^2.1.0" 2964 | }, 2965 | "engines": { 2966 | "node": ">=6" 2967 | }, 2968 | "funding": { 2969 | "url": "https://github.com/sponsors/sindresorhus" 2970 | } 2971 | }, 2972 | "node_modules/p-limit": { 2973 | "version": "3.1.0", 2974 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2975 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2976 | "dev": true, 2977 | "license": "MIT", 2978 | "dependencies": { 2979 | "yocto-queue": "^0.1.0" 2980 | }, 2981 | "engines": { 2982 | "node": ">=10" 2983 | }, 2984 | "funding": { 2985 | "url": "https://github.com/sponsors/sindresorhus" 2986 | } 2987 | }, 2988 | "node_modules/p-locate": { 2989 | "version": "4.1.0", 2990 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 2991 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 2992 | "dev": true, 2993 | "license": "MIT", 2994 | "dependencies": { 2995 | "p-limit": "^2.2.0" 2996 | }, 2997 | "engines": { 2998 | "node": ">=8" 2999 | } 3000 | }, 3001 | "node_modules/p-locate/node_modules/p-limit": { 3002 | "version": "2.3.0", 3003 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3004 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3005 | "dev": true, 3006 | "license": "MIT", 3007 | "dependencies": { 3008 | "p-try": "^2.0.0" 3009 | }, 3010 | "engines": { 3011 | "node": ">=6" 3012 | }, 3013 | "funding": { 3014 | "url": "https://github.com/sponsors/sindresorhus" 3015 | } 3016 | }, 3017 | "node_modules/p-try": { 3018 | "version": "2.2.0", 3019 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3020 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3021 | "dev": true, 3022 | "license": "MIT", 3023 | "engines": { 3024 | "node": ">=6" 3025 | } 3026 | }, 3027 | "node_modules/parse-json": { 3028 | "version": "5.2.0", 3029 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3030 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3031 | "dev": true, 3032 | "license": "MIT", 3033 | "dependencies": { 3034 | "@babel/code-frame": "^7.0.0", 3035 | "error-ex": "^1.3.1", 3036 | "json-parse-even-better-errors": "^2.3.0", 3037 | "lines-and-columns": "^1.1.6" 3038 | }, 3039 | "engines": { 3040 | "node": ">=8" 3041 | }, 3042 | "funding": { 3043 | "url": "https://github.com/sponsors/sindresorhus" 3044 | } 3045 | }, 3046 | "node_modules/path-exists": { 3047 | "version": "4.0.0", 3048 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3049 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3050 | "dev": true, 3051 | "license": "MIT", 3052 | "engines": { 3053 | "node": ">=8" 3054 | } 3055 | }, 3056 | "node_modules/path-is-absolute": { 3057 | "version": "1.0.1", 3058 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3059 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3060 | "dev": true, 3061 | "license": "MIT", 3062 | "engines": { 3063 | "node": ">=0.10.0" 3064 | } 3065 | }, 3066 | "node_modules/path-key": { 3067 | "version": "3.1.1", 3068 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3069 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3070 | "dev": true, 3071 | "license": "MIT", 3072 | "engines": { 3073 | "node": ">=8" 3074 | } 3075 | }, 3076 | "node_modules/path-parse": { 3077 | "version": "1.0.7", 3078 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3079 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3080 | "dev": true, 3081 | "license": "MIT" 3082 | }, 3083 | "node_modules/picocolors": { 3084 | "version": "1.1.1", 3085 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3086 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3087 | "dev": true, 3088 | "license": "ISC" 3089 | }, 3090 | "node_modules/picomatch": { 3091 | "version": "2.3.1", 3092 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3093 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3094 | "dev": true, 3095 | "license": "MIT", 3096 | "engines": { 3097 | "node": ">=8.6" 3098 | }, 3099 | "funding": { 3100 | "url": "https://github.com/sponsors/jonschlinkert" 3101 | } 3102 | }, 3103 | "node_modules/pirates": { 3104 | "version": "4.0.6", 3105 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3106 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3107 | "dev": true, 3108 | "license": "MIT", 3109 | "engines": { 3110 | "node": ">= 6" 3111 | } 3112 | }, 3113 | "node_modules/pkg-dir": { 3114 | "version": "4.2.0", 3115 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3116 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3117 | "dev": true, 3118 | "license": "MIT", 3119 | "dependencies": { 3120 | "find-up": "^4.0.0" 3121 | }, 3122 | "engines": { 3123 | "node": ">=8" 3124 | } 3125 | }, 3126 | "node_modules/postcss": { 3127 | "version": "8.5.3", 3128 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 3129 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 3130 | "dev": true, 3131 | "funding": [ 3132 | { 3133 | "type": "opencollective", 3134 | "url": "https://opencollective.com/postcss/" 3135 | }, 3136 | { 3137 | "type": "tidelift", 3138 | "url": "https://tidelift.com/funding/github/npm/postcss" 3139 | }, 3140 | { 3141 | "type": "github", 3142 | "url": "https://github.com/sponsors/ai" 3143 | } 3144 | ], 3145 | "license": "MIT", 3146 | "dependencies": { 3147 | "nanoid": "^3.3.8", 3148 | "picocolors": "^1.1.1", 3149 | "source-map-js": "^1.2.1" 3150 | }, 3151 | "engines": { 3152 | "node": "^10 || ^12 || >=14" 3153 | } 3154 | }, 3155 | "node_modules/prettier": { 3156 | "version": "3.3.3", 3157 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", 3158 | "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", 3159 | "dev": true, 3160 | "license": "MIT", 3161 | "peer": true, 3162 | "bin": { 3163 | "prettier": "bin/prettier.cjs" 3164 | }, 3165 | "engines": { 3166 | "node": ">=14" 3167 | }, 3168 | "funding": { 3169 | "url": "https://github.com/prettier/prettier?sponsor=1" 3170 | } 3171 | }, 3172 | "node_modules/pretty-format": { 3173 | "version": "29.7.0", 3174 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3175 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3176 | "dev": true, 3177 | "license": "MIT", 3178 | "dependencies": { 3179 | "@jest/schemas": "^29.6.3", 3180 | "ansi-styles": "^5.0.0", 3181 | "react-is": "^18.0.0" 3182 | }, 3183 | "engines": { 3184 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3185 | } 3186 | }, 3187 | "node_modules/pretty-format/node_modules/ansi-styles": { 3188 | "version": "5.2.0", 3189 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3190 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3191 | "dev": true, 3192 | "license": "MIT", 3193 | "engines": { 3194 | "node": ">=10" 3195 | }, 3196 | "funding": { 3197 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3198 | } 3199 | }, 3200 | "node_modules/prompts": { 3201 | "version": "2.4.2", 3202 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3203 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3204 | "dev": true, 3205 | "license": "MIT", 3206 | "dependencies": { 3207 | "kleur": "^3.0.3", 3208 | "sisteransi": "^1.0.5" 3209 | }, 3210 | "engines": { 3211 | "node": ">= 6" 3212 | } 3213 | }, 3214 | "node_modules/pure-rand": { 3215 | "version": "6.1.0", 3216 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 3217 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 3218 | "dev": true, 3219 | "funding": [ 3220 | { 3221 | "type": "individual", 3222 | "url": "https://github.com/sponsors/dubzzz" 3223 | }, 3224 | { 3225 | "type": "opencollective", 3226 | "url": "https://opencollective.com/fast-check" 3227 | } 3228 | ], 3229 | "license": "MIT" 3230 | }, 3231 | "node_modules/react-is": { 3232 | "version": "18.3.1", 3233 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 3234 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 3235 | "dev": true, 3236 | "license": "MIT" 3237 | }, 3238 | "node_modules/require-directory": { 3239 | "version": "2.1.1", 3240 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3241 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3242 | "dev": true, 3243 | "license": "MIT", 3244 | "engines": { 3245 | "node": ">=0.10.0" 3246 | } 3247 | }, 3248 | "node_modules/resolve": { 3249 | "version": "1.22.8", 3250 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3251 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3252 | "dev": true, 3253 | "license": "MIT", 3254 | "dependencies": { 3255 | "is-core-module": "^2.13.0", 3256 | "path-parse": "^1.0.7", 3257 | "supports-preserve-symlinks-flag": "^1.0.0" 3258 | }, 3259 | "bin": { 3260 | "resolve": "bin/resolve" 3261 | }, 3262 | "funding": { 3263 | "url": "https://github.com/sponsors/ljharb" 3264 | } 3265 | }, 3266 | "node_modules/resolve-cwd": { 3267 | "version": "3.0.0", 3268 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3269 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3270 | "dev": true, 3271 | "license": "MIT", 3272 | "dependencies": { 3273 | "resolve-from": "^5.0.0" 3274 | }, 3275 | "engines": { 3276 | "node": ">=8" 3277 | } 3278 | }, 3279 | "node_modules/resolve-from": { 3280 | "version": "5.0.0", 3281 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3282 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3283 | "dev": true, 3284 | "license": "MIT", 3285 | "engines": { 3286 | "node": ">=8" 3287 | } 3288 | }, 3289 | "node_modules/resolve.exports": { 3290 | "version": "2.0.2", 3291 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", 3292 | "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", 3293 | "dev": true, 3294 | "license": "MIT", 3295 | "engines": { 3296 | "node": ">=10" 3297 | } 3298 | }, 3299 | "node_modules/semver": { 3300 | "version": "6.3.1", 3301 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3302 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3303 | "dev": true, 3304 | "license": "ISC", 3305 | "bin": { 3306 | "semver": "bin/semver.js" 3307 | } 3308 | }, 3309 | "node_modules/shebang-command": { 3310 | "version": "2.0.0", 3311 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3312 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3313 | "dev": true, 3314 | "license": "MIT", 3315 | "dependencies": { 3316 | "shebang-regex": "^3.0.0" 3317 | }, 3318 | "engines": { 3319 | "node": ">=8" 3320 | } 3321 | }, 3322 | "node_modules/shebang-regex": { 3323 | "version": "3.0.0", 3324 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3325 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3326 | "dev": true, 3327 | "license": "MIT", 3328 | "engines": { 3329 | "node": ">=8" 3330 | } 3331 | }, 3332 | "node_modules/signal-exit": { 3333 | "version": "3.0.7", 3334 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3335 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3336 | "dev": true, 3337 | "license": "ISC" 3338 | }, 3339 | "node_modules/sisteransi": { 3340 | "version": "1.0.5", 3341 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3342 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3343 | "dev": true, 3344 | "license": "MIT" 3345 | }, 3346 | "node_modules/slash": { 3347 | "version": "3.0.0", 3348 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3349 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3350 | "dev": true, 3351 | "license": "MIT", 3352 | "engines": { 3353 | "node": ">=8" 3354 | } 3355 | }, 3356 | "node_modules/source-map": { 3357 | "version": "0.6.1", 3358 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3359 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3360 | "dev": true, 3361 | "license": "BSD-3-Clause", 3362 | "engines": { 3363 | "node": ">=0.10.0" 3364 | } 3365 | }, 3366 | "node_modules/source-map-js": { 3367 | "version": "1.2.1", 3368 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3369 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3370 | "dev": true, 3371 | "license": "BSD-3-Clause", 3372 | "engines": { 3373 | "node": ">=0.10.0" 3374 | } 3375 | }, 3376 | "node_modules/source-map-support": { 3377 | "version": "0.5.13", 3378 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3379 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3380 | "dev": true, 3381 | "license": "MIT", 3382 | "dependencies": { 3383 | "buffer-from": "^1.0.0", 3384 | "source-map": "^0.6.0" 3385 | } 3386 | }, 3387 | "node_modules/sprintf-js": { 3388 | "version": "1.0.3", 3389 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3390 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3391 | "dev": true, 3392 | "license": "BSD-3-Clause" 3393 | }, 3394 | "node_modules/stack-utils": { 3395 | "version": "2.0.6", 3396 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3397 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3398 | "dev": true, 3399 | "license": "MIT", 3400 | "dependencies": { 3401 | "escape-string-regexp": "^2.0.0" 3402 | }, 3403 | "engines": { 3404 | "node": ">=10" 3405 | } 3406 | }, 3407 | "node_modules/string-length": { 3408 | "version": "4.0.2", 3409 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3410 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3411 | "dev": true, 3412 | "license": "MIT", 3413 | "dependencies": { 3414 | "char-regex": "^1.0.2", 3415 | "strip-ansi": "^6.0.0" 3416 | }, 3417 | "engines": { 3418 | "node": ">=10" 3419 | } 3420 | }, 3421 | "node_modules/string-width": { 3422 | "version": "4.2.3", 3423 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3424 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3425 | "dev": true, 3426 | "license": "MIT", 3427 | "dependencies": { 3428 | "emoji-regex": "^8.0.0", 3429 | "is-fullwidth-code-point": "^3.0.0", 3430 | "strip-ansi": "^6.0.1" 3431 | }, 3432 | "engines": { 3433 | "node": ">=8" 3434 | } 3435 | }, 3436 | "node_modules/strip-ansi": { 3437 | "version": "6.0.1", 3438 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3439 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3440 | "dev": true, 3441 | "license": "MIT", 3442 | "dependencies": { 3443 | "ansi-regex": "^5.0.1" 3444 | }, 3445 | "engines": { 3446 | "node": ">=8" 3447 | } 3448 | }, 3449 | "node_modules/strip-bom": { 3450 | "version": "4.0.0", 3451 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3452 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3453 | "dev": true, 3454 | "license": "MIT", 3455 | "engines": { 3456 | "node": ">=8" 3457 | } 3458 | }, 3459 | "node_modules/strip-final-newline": { 3460 | "version": "2.0.0", 3461 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3462 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3463 | "dev": true, 3464 | "license": "MIT", 3465 | "engines": { 3466 | "node": ">=6" 3467 | } 3468 | }, 3469 | "node_modules/strip-json-comments": { 3470 | "version": "3.1.1", 3471 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3472 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3473 | "dev": true, 3474 | "license": "MIT", 3475 | "engines": { 3476 | "node": ">=8" 3477 | }, 3478 | "funding": { 3479 | "url": "https://github.com/sponsors/sindresorhus" 3480 | } 3481 | }, 3482 | "node_modules/supports-color": { 3483 | "version": "7.2.0", 3484 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3485 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3486 | "dev": true, 3487 | "license": "MIT", 3488 | "dependencies": { 3489 | "has-flag": "^4.0.0" 3490 | }, 3491 | "engines": { 3492 | "node": ">=8" 3493 | } 3494 | }, 3495 | "node_modules/supports-preserve-symlinks-flag": { 3496 | "version": "1.0.0", 3497 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3498 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3499 | "dev": true, 3500 | "license": "MIT", 3501 | "engines": { 3502 | "node": ">= 0.4" 3503 | }, 3504 | "funding": { 3505 | "url": "https://github.com/sponsors/ljharb" 3506 | } 3507 | }, 3508 | "node_modules/test-exclude": { 3509 | "version": "6.0.0", 3510 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3511 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3512 | "dev": true, 3513 | "license": "ISC", 3514 | "dependencies": { 3515 | "@istanbuljs/schema": "^0.1.2", 3516 | "glob": "^7.1.4", 3517 | "minimatch": "^3.0.4" 3518 | }, 3519 | "engines": { 3520 | "node": ">=8" 3521 | } 3522 | }, 3523 | "node_modules/tmpl": { 3524 | "version": "1.0.5", 3525 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3526 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3527 | "dev": true, 3528 | "license": "BSD-3-Clause" 3529 | }, 3530 | "node_modules/to-regex-range": { 3531 | "version": "5.0.1", 3532 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3533 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3534 | "dev": true, 3535 | "license": "MIT", 3536 | "dependencies": { 3537 | "is-number": "^7.0.0" 3538 | }, 3539 | "engines": { 3540 | "node": ">=8.0" 3541 | } 3542 | }, 3543 | "node_modules/type-detect": { 3544 | "version": "4.0.8", 3545 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3546 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3547 | "dev": true, 3548 | "license": "MIT", 3549 | "engines": { 3550 | "node": ">=4" 3551 | } 3552 | }, 3553 | "node_modules/type-fest": { 3554 | "version": "0.21.3", 3555 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3556 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3557 | "dev": true, 3558 | "license": "(MIT OR CC0-1.0)", 3559 | "engines": { 3560 | "node": ">=10" 3561 | }, 3562 | "funding": { 3563 | "url": "https://github.com/sponsors/sindresorhus" 3564 | } 3565 | }, 3566 | "node_modules/undici-types": { 3567 | "version": "6.19.8", 3568 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 3569 | "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 3570 | "dev": true, 3571 | "license": "MIT" 3572 | }, 3573 | "node_modules/update-browserslist-db": { 3574 | "version": "1.1.1", 3575 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", 3576 | "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", 3577 | "dev": true, 3578 | "funding": [ 3579 | { 3580 | "type": "opencollective", 3581 | "url": "https://opencollective.com/browserslist" 3582 | }, 3583 | { 3584 | "type": "tidelift", 3585 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3586 | }, 3587 | { 3588 | "type": "github", 3589 | "url": "https://github.com/sponsors/ai" 3590 | } 3591 | ], 3592 | "license": "MIT", 3593 | "dependencies": { 3594 | "escalade": "^3.2.0", 3595 | "picocolors": "^1.1.0" 3596 | }, 3597 | "bin": { 3598 | "update-browserslist-db": "cli.js" 3599 | }, 3600 | "peerDependencies": { 3601 | "browserslist": ">= 4.21.0" 3602 | } 3603 | }, 3604 | "node_modules/v8-to-istanbul": { 3605 | "version": "9.3.0", 3606 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 3607 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 3608 | "dev": true, 3609 | "license": "ISC", 3610 | "dependencies": { 3611 | "@jridgewell/trace-mapping": "^0.3.12", 3612 | "@types/istanbul-lib-coverage": "^2.0.1", 3613 | "convert-source-map": "^2.0.0" 3614 | }, 3615 | "engines": { 3616 | "node": ">=10.12.0" 3617 | } 3618 | }, 3619 | "node_modules/walker": { 3620 | "version": "1.0.8", 3621 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3622 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3623 | "dev": true, 3624 | "license": "Apache-2.0", 3625 | "dependencies": { 3626 | "makeerror": "1.0.12" 3627 | } 3628 | }, 3629 | "node_modules/which": { 3630 | "version": "2.0.2", 3631 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3632 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3633 | "dev": true, 3634 | "license": "ISC", 3635 | "dependencies": { 3636 | "isexe": "^2.0.0" 3637 | }, 3638 | "bin": { 3639 | "node-which": "bin/node-which" 3640 | }, 3641 | "engines": { 3642 | "node": ">= 8" 3643 | } 3644 | }, 3645 | "node_modules/wrap-ansi": { 3646 | "version": "7.0.0", 3647 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3648 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3649 | "dev": true, 3650 | "license": "MIT", 3651 | "dependencies": { 3652 | "ansi-styles": "^4.0.0", 3653 | "string-width": "^4.1.0", 3654 | "strip-ansi": "^6.0.0" 3655 | }, 3656 | "engines": { 3657 | "node": ">=10" 3658 | }, 3659 | "funding": { 3660 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3661 | } 3662 | }, 3663 | "node_modules/wrappy": { 3664 | "version": "1.0.2", 3665 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3666 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3667 | "dev": true, 3668 | "license": "ISC" 3669 | }, 3670 | "node_modules/write-file-atomic": { 3671 | "version": "4.0.2", 3672 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 3673 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 3674 | "dev": true, 3675 | "license": "ISC", 3676 | "dependencies": { 3677 | "imurmurhash": "^0.1.4", 3678 | "signal-exit": "^3.0.7" 3679 | }, 3680 | "engines": { 3681 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 3682 | } 3683 | }, 3684 | "node_modules/y18n": { 3685 | "version": "5.0.8", 3686 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3687 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3688 | "dev": true, 3689 | "license": "ISC", 3690 | "engines": { 3691 | "node": ">=10" 3692 | } 3693 | }, 3694 | "node_modules/yallist": { 3695 | "version": "3.1.1", 3696 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3697 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3698 | "dev": true, 3699 | "license": "ISC" 3700 | }, 3701 | "node_modules/yargs": { 3702 | "version": "17.7.2", 3703 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 3704 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3705 | "dev": true, 3706 | "license": "MIT", 3707 | "dependencies": { 3708 | "cliui": "^8.0.1", 3709 | "escalade": "^3.1.1", 3710 | "get-caller-file": "^2.0.5", 3711 | "require-directory": "^2.1.1", 3712 | "string-width": "^4.2.3", 3713 | "y18n": "^5.0.5", 3714 | "yargs-parser": "^21.1.1" 3715 | }, 3716 | "engines": { 3717 | "node": ">=12" 3718 | } 3719 | }, 3720 | "node_modules/yargs-parser": { 3721 | "version": "21.1.1", 3722 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 3723 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3724 | "dev": true, 3725 | "license": "ISC", 3726 | "engines": { 3727 | "node": ">=12" 3728 | } 3729 | }, 3730 | "node_modules/yocto-queue": { 3731 | "version": "0.1.0", 3732 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3733 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3734 | "dev": true, 3735 | "license": "MIT", 3736 | "engines": { 3737 | "node": ">=10" 3738 | }, 3739 | "funding": { 3740 | "url": "https://github.com/sponsors/sindresorhus" 3741 | } 3742 | } 3743 | } 3744 | } 3745 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-size-clamp", 3 | "version": "3.2.1", 4 | "description": "PostCSS plugin for fluid typography using modern CSS clamp()", 5 | "main": "index.js", 6 | "keywords": [ 7 | "postcss", 8 | "postcss-plugin", 9 | "css", 10 | "fluid", 11 | "typography", 12 | "clamp" 13 | ], 14 | "author": "Code Resolution", 15 | "license": "MIT", 16 | "scripts": { 17 | "test": "jest", 18 | "postpublish": "git push --follow-tags" 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/coderesolution/postcss-size-clamp" 23 | }, 24 | "peerDependencies": { 25 | "postcss": "^8.0.0" 26 | }, 27 | "devDependencies": { 28 | "jest": "^29.7.0", 29 | "jest-postcss": "^0.1.0", 30 | "postcss": "^8.5.3" 31 | } 32 | } 33 | --------------------------------------------------------------------------------