├── LICENSE.md ├── README.md ├── bin └── build.js ├── composer.json ├── package-lock.json ├── postcss.config.cjs ├── resources ├── css │ └── index.css ├── dist │ ├── .gitkeep │ ├── filament-simple-alert.css │ └── filament-simple-alert.js ├── js │ └── index.js ├── screenshots │ └── thumbnail.png └── views │ ├── .gitkeep │ └── components │ ├── simple-alert-entry.blade.php │ ├── simple-alert-field.blade.php │ └── simple-alert.blade.php └── src ├── Components ├── Concerns │ ├── HasActionVerticalAlignment.php │ ├── HasBorder.php │ ├── HasColor.php │ ├── HasDescription.php │ ├── HasIcon.php │ ├── HasIconVerticalAlignment.php │ ├── HasLink.php │ ├── HasSimple.php │ └── HasTitle.php ├── Forms │ └── SimpleAlert.php └── Infolists │ └── SimpleAlert.php ├── Facades └── SimpleAlert.php ├── SimpleAlert.php ├── SimpleAlertPlugin.php └── SimpleAlertServiceProvider.php /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) CodeWithDennis 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Filament Simple Alert 2 | 3 | [![Latest Version on Packagist](https://img.shields.io/packagist/v/codewithdennis/filament-simple-alert.svg?style=flat-square)](https://packagist.org/packages/codewithdennis/filament-simple-alert) 4 | [![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/codewithdennis/filament-simple-alert/pint.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/codewithdennis/filament-simple-alert/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain) 5 | [![Total Downloads](https://img.shields.io/packagist/dt/codewithdennis/filament-simple-alert.svg?style=flat-square)](https://packagist.org/packages/codewithdennis/filament-simple-alert) 6 | 7 | This package offers a straightforward and easy-to-use alert component for your Filament application. It allows you to quickly implement customizable alert messages, enhancing the user experience by 8 | providing clear and concise notifications. 9 | 10 | ![Simple Alert](https://github.com/CodeWithDennis/filament-simple-alert/raw/main/resources/screenshots/thumbnail.png) 11 | 12 | ## Installation 13 | 14 | You can install the package via composer: 15 | 16 | ```bash 17 | composer require codewithdennis/filament-simple-alert 18 | ``` 19 | 20 | Make sure you add the following to your `tailwind.config.js file. 21 | 22 | ```bash 23 | './vendor/codewithdennis/filament-simple-alert/resources/**/*.blade.php', 24 | ``` 25 | 26 | ### Custom Theme 27 | 28 | You will need to [create a custom theme](https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme) for the styles to be applied correctly. 29 | 30 | ## Usage 31 | 32 | The alerts can be used in your `infolists` or `forms`, make sure you pick the right component. 33 | 34 | ```php 35 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 36 | ``` 37 | 38 | ```php 39 | use CodeWithDennis\SimpleAlert\Components\Forms\SimpleAlert; 40 | ``` 41 | 42 | ### Simple Alerts 43 | 44 | There are 4 types of simple alerts: `danger`, `info`, `success`, and `warning`. 45 | 46 | ```php 47 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 48 | 49 | SimpleAlert::make('example') 50 | ->danger() 51 | ->info() 52 | ->success() 53 | ->warning() 54 | ``` 55 | 56 | If you would like to use a [different color](https://filamentphp.com/docs/3.x/support/colors), you can use the `color` method. 57 | 58 | ```php 59 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 60 | 61 | SimpleAlert::make('example') 62 | ->color('purple') 63 | ``` 64 | 65 | ### Icon 66 | 67 | By default, simple alerts come with an icon. For example, the `->danger()` method includes a `heroicon-s-x-circle` icon. If you want to use a different icon, you can use the icon method. 68 | 69 | ```php 70 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 71 | //use Illuminate\Support\HtmlString; 72 | 73 | SimpleAlert::make('example') 74 | ->color('purple') 75 | ->icon('heroicon-s-users') 76 | //->icon(new HtmlString('🤓')) 77 | //->icon(new HtmlString(Blade::render('my-custom-icon-component'))) 78 | ``` 79 | 80 | #### Icon Vertical Alignment 81 | 82 | You can change the vertical alignment of the icon by using the `iconVerticalAlignment` method. 83 | 84 | ```php 85 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 86 | 87 | SimpleAlert::make('example') 88 | ->iconVerticalAlignment('start'), // possible values: start, center 89 | ``` 90 | 91 | ### Title 92 | 93 | You can add a title to the alert by using the `title` method. 94 | 95 | ```php 96 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 97 | 98 | SimpleAlert::make('example') 99 | ->title('Hoorraayy! Your request has been approved! 🎉') 100 | ``` 101 | 102 | ### Description 103 | 104 | You can add a description to the alert by using the `description` method. 105 | 106 | ```php 107 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 108 | 109 | SimpleAlert::make('example') 110 | ->description('This is the description') 111 | ``` 112 | 113 | ### Border 114 | 115 | You can add a border to the alert by using the `border` method. 116 | 117 | ```php 118 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 119 | 120 | SimpleAlert::make('example') 121 | ->border() 122 | ``` 123 | ### Actions 124 | 125 | You can also add actions to the alert by using the `actions` method. All regular action features are supported. 126 | 127 | ```php 128 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 129 | use Filament\Forms\Components\Actions; 130 | 131 | SimpleAlert::make('example') 132 | ->columnSpanFull() 133 | ->success() 134 | ->title('Simple Alert') 135 | ->description('This is an example of a simple alert.') 136 | ->actions([ 137 | Action::make('read-example') 138 | ->label('Read more') 139 | ->url('https://filamentphp.com') 140 | ->openUrlInNewTab() 141 | ->color('info'), 142 | ]), 143 | ``` 144 | 145 | #### Actions Vertical Alignment 146 | 147 | You can change the vertical alignment of the actions by using the `actionsVerticalAlignment` method. 148 | 149 | ```php 150 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 151 | use Filament\Forms\Components\Actions; 152 | 153 | SimpleAlert::make('example') 154 | ->actionsVerticalAlignment('start'), // possible values: start, center 155 | ``` 156 | 157 | 158 | ### Example 159 | 160 | ```php 161 | use CodeWithDennis\SimpleAlert\Components\Infolists\SimpleAlert; 162 | use Filament\Forms\Components\Actions; 163 | 164 | SimpleAlert::make('example') 165 | ->success() 166 | ->title(new HtmlString('Hoorraayy! Your request has been approved! 🎉')) 167 | ->description('Lorem ipsum dolor sit amet consectetur adipisicing elit.') 168 | ->actions([ 169 | Action::make('filament') 170 | ->label('Details') 171 | ->icon('heroicon-m-arrow-long-right') 172 | ->iconPosition(IconPosition::After) 173 | ->link() 174 | ->url('https://filamentphp.com') 175 | ->openUrlInNewTab() 176 | ->color('success'), 177 | ]), 178 | ``` 179 | 180 | ## Contributing 181 | 182 | Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details. 183 | 184 | ## Credits 185 | 186 | - [CodeWithDennis](https://github.com/CodeWithDennis) 187 | - [All Contributors](../../contributors) 188 | 189 | ## License 190 | 191 | The MIT License (MIT). Please see [License File](LICENSE.md) for more information. 192 | -------------------------------------------------------------------------------- /bin/build.js: -------------------------------------------------------------------------------- 1 | import esbuild from 'esbuild' 2 | 3 | const isDev = process.argv.includes('--dev') 4 | 5 | async function compile(options) { 6 | const context = await esbuild.context(options) 7 | 8 | if (isDev) { 9 | await context.watch() 10 | } else { 11 | await context.rebuild() 12 | await context.dispose() 13 | } 14 | } 15 | 16 | const defaultOptions = { 17 | define: { 18 | 'process.env.NODE_ENV': isDev ? `'development'` : `'production'`, 19 | }, 20 | bundle: true, 21 | mainFields: ['module', 'main'], 22 | platform: 'neutral', 23 | sourcemap: isDev ? 'inline' : false, 24 | sourcesContent: isDev, 25 | treeShaking: true, 26 | target: ['es2020'], 27 | minify: !isDev, 28 | plugins: [{ 29 | name: 'watchPlugin', 30 | setup: function (build) { 31 | build.onStart(() => { 32 | console.log(`Build started at ${new Date(Date.now()).toLocaleTimeString()}: ${build.initialOptions.outfile}`) 33 | }) 34 | 35 | build.onEnd((result) => { 36 | if (result.errors.length > 0) { 37 | console.log(`Build failed at ${new Date(Date.now()).toLocaleTimeString()}: ${build.initialOptions.outfile}`, result.errors) 38 | } else { 39 | console.log(`Build finished at ${new Date(Date.now()).toLocaleTimeString()}: ${build.initialOptions.outfile}`) 40 | } 41 | }) 42 | } 43 | }], 44 | } 45 | 46 | compile({ 47 | ...defaultOptions, 48 | entryPoints: ['./resources/js/index.js'], 49 | outfile: './resources/dist/filament-simple-alert.js', 50 | }) 51 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codewithdennis/filament-simple-alert", 3 | "description": "A plugin for adding straightforward alerts to your filament pages", 4 | "keywords": [ 5 | "CodeWithDennis", 6 | "laravel", 7 | "filament-simple-alert" 8 | ], 9 | "homepage": "https://github.com/codewithdennis/filament-simple-alert", 10 | "support": { 11 | "issues": "https://github.com/codewithdennis/filament-simple-alert/issues", 12 | "source": "https://github.com/codewithdennis/filament-simple-alert" 13 | }, 14 | "license": "MIT", 15 | "authors": [ 16 | { 17 | "name": "CodeWithDennis", 18 | "role": "Developer" 19 | } 20 | ], 21 | "require": { 22 | "php": "^8.1", 23 | "filament/filament": "^3.0", 24 | "spatie/laravel-package-tools": "^1.15.0" 25 | }, 26 | "require-dev": { 27 | "laravel/pint": "^1.16", 28 | "nunomaduro/collision": "^7.9", 29 | "orchestra/testbench": "^8.0", 30 | "pestphp/pest": "^2.1", 31 | "pestphp/pest-plugin-arch": "^2.0", 32 | "pestphp/pest-plugin-laravel": "^2.0" 33 | }, 34 | "autoload": { 35 | "psr-4": { 36 | "CodeWithDennis\\SimpleAlert\\": "src/", 37 | "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/" 38 | } 39 | }, 40 | "autoload-dev": { 41 | "psr-4": { 42 | "CodeWithDennis\\SimpleAlert\\Tests\\": "tests/" 43 | } 44 | }, 45 | "scripts": { 46 | "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", 47 | "test": "vendor/bin/pest", 48 | "test-coverage": "vendor/bin/pest --coverage" 49 | }, 50 | "config": { 51 | "sort-packages": true, 52 | "allow-plugins": { 53 | "pestphp/pest-plugin": true, 54 | "phpstan/extension-installer": true 55 | } 56 | }, 57 | "extra": { 58 | "laravel": { 59 | "providers": [ 60 | "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider" 61 | ], 62 | "aliases": { 63 | "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert" 64 | } 65 | } 66 | }, 67 | "minimum-stability": "dev", 68 | "prefer-stable": true 69 | } 70 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "filament-simple-alert", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "devDependencies": { 8 | "@awcodes/filament-plugin-purge": "^1.1.1", 9 | "@tailwindcss/forms": "^0.5.4", 10 | "@tailwindcss/typography": "^0.5.9", 11 | "autoprefixer": "^10.4.14", 12 | "esbuild": "^0.19.2", 13 | "npm-run-all": "^4.1.5", 14 | "postcss": "^8.4.26", 15 | "postcss-import": "^15.1.0", 16 | "prettier": "^2.7.1", 17 | "prettier-plugin-tailwindcss": "^0.1.13", 18 | "tailwindcss": "^3.3.3" 19 | } 20 | }, 21 | "node_modules/@alloc/quick-lru": { 22 | "version": "5.2.0", 23 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 24 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 25 | "dev": true, 26 | "engines": { 27 | "node": ">=10" 28 | }, 29 | "funding": { 30 | "url": "https://github.com/sponsors/sindresorhus" 31 | } 32 | }, 33 | "node_modules/@awcodes/filament-plugin-purge": { 34 | "version": "1.1.2", 35 | "resolved": "https://registry.npmjs.org/@awcodes/filament-plugin-purge/-/filament-plugin-purge-1.1.2.tgz", 36 | "integrity": "sha512-eFFGA3IPSya8ldUQWUMHk5HxidU/XnL3fEGIdX6Lza/bz4U7hgOdGT64CxLKbhEF1eFJbM7hFsxAfrfZm85x5g==", 37 | "dev": true, 38 | "dependencies": { 39 | "axios": "^1.4.0", 40 | "chalk": "^5.0.1", 41 | "css-tree": "^2.2.1", 42 | "ora": "^6.1.2" 43 | }, 44 | "bin": { 45 | "filament-purge": "filament-purge.js" 46 | } 47 | }, 48 | "node_modules/@esbuild/aix-ppc64": { 49 | "version": "0.19.12", 50 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", 51 | "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", 52 | "cpu": [ 53 | "ppc64" 54 | ], 55 | "dev": true, 56 | "optional": true, 57 | "os": [ 58 | "aix" 59 | ], 60 | "engines": { 61 | "node": ">=12" 62 | } 63 | }, 64 | "node_modules/@esbuild/android-arm": { 65 | "version": "0.19.12", 66 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", 67 | "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", 68 | "cpu": [ 69 | "arm" 70 | ], 71 | "dev": true, 72 | "optional": true, 73 | "os": [ 74 | "android" 75 | ], 76 | "engines": { 77 | "node": ">=12" 78 | } 79 | }, 80 | "node_modules/@esbuild/android-arm64": { 81 | "version": "0.19.12", 82 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", 83 | "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", 84 | "cpu": [ 85 | "arm64" 86 | ], 87 | "dev": true, 88 | "optional": true, 89 | "os": [ 90 | "android" 91 | ], 92 | "engines": { 93 | "node": ">=12" 94 | } 95 | }, 96 | "node_modules/@esbuild/android-x64": { 97 | "version": "0.19.12", 98 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", 99 | "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", 100 | "cpu": [ 101 | "x64" 102 | ], 103 | "dev": true, 104 | "optional": true, 105 | "os": [ 106 | "android" 107 | ], 108 | "engines": { 109 | "node": ">=12" 110 | } 111 | }, 112 | "node_modules/@esbuild/darwin-arm64": { 113 | "version": "0.19.12", 114 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", 115 | "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", 116 | "cpu": [ 117 | "arm64" 118 | ], 119 | "dev": true, 120 | "optional": true, 121 | "os": [ 122 | "darwin" 123 | ], 124 | "engines": { 125 | "node": ">=12" 126 | } 127 | }, 128 | "node_modules/@esbuild/darwin-x64": { 129 | "version": "0.19.12", 130 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", 131 | "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", 132 | "cpu": [ 133 | "x64" 134 | ], 135 | "dev": true, 136 | "optional": true, 137 | "os": [ 138 | "darwin" 139 | ], 140 | "engines": { 141 | "node": ">=12" 142 | } 143 | }, 144 | "node_modules/@esbuild/freebsd-arm64": { 145 | "version": "0.19.12", 146 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", 147 | "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", 148 | "cpu": [ 149 | "arm64" 150 | ], 151 | "dev": true, 152 | "optional": true, 153 | "os": [ 154 | "freebsd" 155 | ], 156 | "engines": { 157 | "node": ">=12" 158 | } 159 | }, 160 | "node_modules/@esbuild/freebsd-x64": { 161 | "version": "0.19.12", 162 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", 163 | "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", 164 | "cpu": [ 165 | "x64" 166 | ], 167 | "dev": true, 168 | "optional": true, 169 | "os": [ 170 | "freebsd" 171 | ], 172 | "engines": { 173 | "node": ">=12" 174 | } 175 | }, 176 | "node_modules/@esbuild/linux-arm": { 177 | "version": "0.19.12", 178 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", 179 | "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", 180 | "cpu": [ 181 | "arm" 182 | ], 183 | "dev": true, 184 | "optional": true, 185 | "os": [ 186 | "linux" 187 | ], 188 | "engines": { 189 | "node": ">=12" 190 | } 191 | }, 192 | "node_modules/@esbuild/linux-arm64": { 193 | "version": "0.19.12", 194 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", 195 | "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", 196 | "cpu": [ 197 | "arm64" 198 | ], 199 | "dev": true, 200 | "optional": true, 201 | "os": [ 202 | "linux" 203 | ], 204 | "engines": { 205 | "node": ">=12" 206 | } 207 | }, 208 | "node_modules/@esbuild/linux-ia32": { 209 | "version": "0.19.12", 210 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", 211 | "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", 212 | "cpu": [ 213 | "ia32" 214 | ], 215 | "dev": true, 216 | "optional": true, 217 | "os": [ 218 | "linux" 219 | ], 220 | "engines": { 221 | "node": ">=12" 222 | } 223 | }, 224 | "node_modules/@esbuild/linux-loong64": { 225 | "version": "0.19.12", 226 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", 227 | "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", 228 | "cpu": [ 229 | "loong64" 230 | ], 231 | "dev": true, 232 | "optional": true, 233 | "os": [ 234 | "linux" 235 | ], 236 | "engines": { 237 | "node": ">=12" 238 | } 239 | }, 240 | "node_modules/@esbuild/linux-mips64el": { 241 | "version": "0.19.12", 242 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", 243 | "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", 244 | "cpu": [ 245 | "mips64el" 246 | ], 247 | "dev": true, 248 | "optional": true, 249 | "os": [ 250 | "linux" 251 | ], 252 | "engines": { 253 | "node": ">=12" 254 | } 255 | }, 256 | "node_modules/@esbuild/linux-ppc64": { 257 | "version": "0.19.12", 258 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", 259 | "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", 260 | "cpu": [ 261 | "ppc64" 262 | ], 263 | "dev": true, 264 | "optional": true, 265 | "os": [ 266 | "linux" 267 | ], 268 | "engines": { 269 | "node": ">=12" 270 | } 271 | }, 272 | "node_modules/@esbuild/linux-riscv64": { 273 | "version": "0.19.12", 274 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", 275 | "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", 276 | "cpu": [ 277 | "riscv64" 278 | ], 279 | "dev": true, 280 | "optional": true, 281 | "os": [ 282 | "linux" 283 | ], 284 | "engines": { 285 | "node": ">=12" 286 | } 287 | }, 288 | "node_modules/@esbuild/linux-s390x": { 289 | "version": "0.19.12", 290 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", 291 | "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", 292 | "cpu": [ 293 | "s390x" 294 | ], 295 | "dev": true, 296 | "optional": true, 297 | "os": [ 298 | "linux" 299 | ], 300 | "engines": { 301 | "node": ">=12" 302 | } 303 | }, 304 | "node_modules/@esbuild/linux-x64": { 305 | "version": "0.19.12", 306 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", 307 | "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", 308 | "cpu": [ 309 | "x64" 310 | ], 311 | "dev": true, 312 | "optional": true, 313 | "os": [ 314 | "linux" 315 | ], 316 | "engines": { 317 | "node": ">=12" 318 | } 319 | }, 320 | "node_modules/@esbuild/netbsd-x64": { 321 | "version": "0.19.12", 322 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", 323 | "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", 324 | "cpu": [ 325 | "x64" 326 | ], 327 | "dev": true, 328 | "optional": true, 329 | "os": [ 330 | "netbsd" 331 | ], 332 | "engines": { 333 | "node": ">=12" 334 | } 335 | }, 336 | "node_modules/@esbuild/openbsd-x64": { 337 | "version": "0.19.12", 338 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", 339 | "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", 340 | "cpu": [ 341 | "x64" 342 | ], 343 | "dev": true, 344 | "optional": true, 345 | "os": [ 346 | "openbsd" 347 | ], 348 | "engines": { 349 | "node": ">=12" 350 | } 351 | }, 352 | "node_modules/@esbuild/sunos-x64": { 353 | "version": "0.19.12", 354 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", 355 | "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", 356 | "cpu": [ 357 | "x64" 358 | ], 359 | "dev": true, 360 | "optional": true, 361 | "os": [ 362 | "sunos" 363 | ], 364 | "engines": { 365 | "node": ">=12" 366 | } 367 | }, 368 | "node_modules/@esbuild/win32-arm64": { 369 | "version": "0.19.12", 370 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", 371 | "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", 372 | "cpu": [ 373 | "arm64" 374 | ], 375 | "dev": true, 376 | "optional": true, 377 | "os": [ 378 | "win32" 379 | ], 380 | "engines": { 381 | "node": ">=12" 382 | } 383 | }, 384 | "node_modules/@esbuild/win32-ia32": { 385 | "version": "0.19.12", 386 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", 387 | "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", 388 | "cpu": [ 389 | "ia32" 390 | ], 391 | "dev": true, 392 | "optional": true, 393 | "os": [ 394 | "win32" 395 | ], 396 | "engines": { 397 | "node": ">=12" 398 | } 399 | }, 400 | "node_modules/@esbuild/win32-x64": { 401 | "version": "0.19.12", 402 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", 403 | "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", 404 | "cpu": [ 405 | "x64" 406 | ], 407 | "dev": true, 408 | "optional": true, 409 | "os": [ 410 | "win32" 411 | ], 412 | "engines": { 413 | "node": ">=12" 414 | } 415 | }, 416 | "node_modules/@isaacs/cliui": { 417 | "version": "8.0.2", 418 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 419 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 420 | "dev": true, 421 | "dependencies": { 422 | "string-width": "^5.1.2", 423 | "string-width-cjs": "npm:string-width@^4.2.0", 424 | "strip-ansi": "^7.0.1", 425 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 426 | "wrap-ansi": "^8.1.0", 427 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 428 | }, 429 | "engines": { 430 | "node": ">=12" 431 | } 432 | }, 433 | "node_modules/@jridgewell/gen-mapping": { 434 | "version": "0.3.5", 435 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 436 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 437 | "dev": true, 438 | "dependencies": { 439 | "@jridgewell/set-array": "^1.2.1", 440 | "@jridgewell/sourcemap-codec": "^1.4.10", 441 | "@jridgewell/trace-mapping": "^0.3.24" 442 | }, 443 | "engines": { 444 | "node": ">=6.0.0" 445 | } 446 | }, 447 | "node_modules/@jridgewell/resolve-uri": { 448 | "version": "3.1.2", 449 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 450 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 451 | "dev": true, 452 | "engines": { 453 | "node": ">=6.0.0" 454 | } 455 | }, 456 | "node_modules/@jridgewell/set-array": { 457 | "version": "1.2.1", 458 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 459 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 460 | "dev": true, 461 | "engines": { 462 | "node": ">=6.0.0" 463 | } 464 | }, 465 | "node_modules/@jridgewell/sourcemap-codec": { 466 | "version": "1.4.15", 467 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 468 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 469 | "dev": true 470 | }, 471 | "node_modules/@jridgewell/trace-mapping": { 472 | "version": "0.3.25", 473 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 474 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 475 | "dev": true, 476 | "dependencies": { 477 | "@jridgewell/resolve-uri": "^3.1.0", 478 | "@jridgewell/sourcemap-codec": "^1.4.14" 479 | } 480 | }, 481 | "node_modules/@nodelib/fs.scandir": { 482 | "version": "2.1.5", 483 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 484 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 485 | "dev": true, 486 | "dependencies": { 487 | "@nodelib/fs.stat": "2.0.5", 488 | "run-parallel": "^1.1.9" 489 | }, 490 | "engines": { 491 | "node": ">= 8" 492 | } 493 | }, 494 | "node_modules/@nodelib/fs.stat": { 495 | "version": "2.0.5", 496 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 497 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 498 | "dev": true, 499 | "engines": { 500 | "node": ">= 8" 501 | } 502 | }, 503 | "node_modules/@nodelib/fs.walk": { 504 | "version": "1.2.8", 505 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 506 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 507 | "dev": true, 508 | "dependencies": { 509 | "@nodelib/fs.scandir": "2.1.5", 510 | "fastq": "^1.6.0" 511 | }, 512 | "engines": { 513 | "node": ">= 8" 514 | } 515 | }, 516 | "node_modules/@pkgjs/parseargs": { 517 | "version": "0.11.0", 518 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 519 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 520 | "dev": true, 521 | "optional": true, 522 | "engines": { 523 | "node": ">=14" 524 | } 525 | }, 526 | "node_modules/@tailwindcss/forms": { 527 | "version": "0.5.7", 528 | "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", 529 | "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", 530 | "dev": true, 531 | "dependencies": { 532 | "mini-svg-data-uri": "^1.2.3" 533 | }, 534 | "peerDependencies": { 535 | "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" 536 | } 537 | }, 538 | "node_modules/@tailwindcss/typography": { 539 | "version": "0.5.13", 540 | "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.13.tgz", 541 | "integrity": "sha512-ADGcJ8dX21dVVHIwTRgzrcunY6YY9uSlAHHGVKvkA+vLc5qLwEszvKts40lx7z0qc4clpjclwLeK5rVCV2P/uw==", 542 | "dev": true, 543 | "dependencies": { 544 | "lodash.castarray": "^4.4.0", 545 | "lodash.isplainobject": "^4.0.6", 546 | "lodash.merge": "^4.6.2", 547 | "postcss-selector-parser": "6.0.10" 548 | }, 549 | "peerDependencies": { 550 | "tailwindcss": ">=3.0.0 || insiders" 551 | } 552 | }, 553 | "node_modules/ansi-regex": { 554 | "version": "6.0.1", 555 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 556 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 557 | "dev": true, 558 | "engines": { 559 | "node": ">=12" 560 | }, 561 | "funding": { 562 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 563 | } 564 | }, 565 | "node_modules/ansi-styles": { 566 | "version": "3.2.1", 567 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 568 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 569 | "dev": true, 570 | "dependencies": { 571 | "color-convert": "^1.9.0" 572 | }, 573 | "engines": { 574 | "node": ">=4" 575 | } 576 | }, 577 | "node_modules/any-promise": { 578 | "version": "1.3.0", 579 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 580 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 581 | "dev": true 582 | }, 583 | "node_modules/anymatch": { 584 | "version": "3.1.3", 585 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 586 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 587 | "dev": true, 588 | "dependencies": { 589 | "normalize-path": "^3.0.0", 590 | "picomatch": "^2.0.4" 591 | }, 592 | "engines": { 593 | "node": ">= 8" 594 | } 595 | }, 596 | "node_modules/arg": { 597 | "version": "5.0.2", 598 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 599 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 600 | "dev": true 601 | }, 602 | "node_modules/array-buffer-byte-length": { 603 | "version": "1.0.1", 604 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", 605 | "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", 606 | "dev": true, 607 | "dependencies": { 608 | "call-bind": "^1.0.5", 609 | "is-array-buffer": "^3.0.4" 610 | }, 611 | "engines": { 612 | "node": ">= 0.4" 613 | }, 614 | "funding": { 615 | "url": "https://github.com/sponsors/ljharb" 616 | } 617 | }, 618 | "node_modules/arraybuffer.prototype.slice": { 619 | "version": "1.0.3", 620 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", 621 | "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", 622 | "dev": true, 623 | "dependencies": { 624 | "array-buffer-byte-length": "^1.0.1", 625 | "call-bind": "^1.0.5", 626 | "define-properties": "^1.2.1", 627 | "es-abstract": "^1.22.3", 628 | "es-errors": "^1.2.1", 629 | "get-intrinsic": "^1.2.3", 630 | "is-array-buffer": "^3.0.4", 631 | "is-shared-array-buffer": "^1.0.2" 632 | }, 633 | "engines": { 634 | "node": ">= 0.4" 635 | }, 636 | "funding": { 637 | "url": "https://github.com/sponsors/ljharb" 638 | } 639 | }, 640 | "node_modules/asynckit": { 641 | "version": "0.4.0", 642 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 643 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 644 | "dev": true 645 | }, 646 | "node_modules/autoprefixer": { 647 | "version": "10.4.19", 648 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", 649 | "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", 650 | "dev": true, 651 | "funding": [ 652 | { 653 | "type": "opencollective", 654 | "url": "https://opencollective.com/postcss/" 655 | }, 656 | { 657 | "type": "tidelift", 658 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 659 | }, 660 | { 661 | "type": "github", 662 | "url": "https://github.com/sponsors/ai" 663 | } 664 | ], 665 | "dependencies": { 666 | "browserslist": "^4.23.0", 667 | "caniuse-lite": "^1.0.30001599", 668 | "fraction.js": "^4.3.7", 669 | "normalize-range": "^0.1.2", 670 | "picocolors": "^1.0.0", 671 | "postcss-value-parser": "^4.2.0" 672 | }, 673 | "bin": { 674 | "autoprefixer": "bin/autoprefixer" 675 | }, 676 | "engines": { 677 | "node": "^10 || ^12 || >=14" 678 | }, 679 | "peerDependencies": { 680 | "postcss": "^8.1.0" 681 | } 682 | }, 683 | "node_modules/available-typed-arrays": { 684 | "version": "1.0.7", 685 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 686 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 687 | "dev": true, 688 | "dependencies": { 689 | "possible-typed-array-names": "^1.0.0" 690 | }, 691 | "engines": { 692 | "node": ">= 0.4" 693 | }, 694 | "funding": { 695 | "url": "https://github.com/sponsors/ljharb" 696 | } 697 | }, 698 | "node_modules/axios": { 699 | "version": "1.7.2", 700 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", 701 | "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", 702 | "dev": true, 703 | "dependencies": { 704 | "follow-redirects": "^1.15.6", 705 | "form-data": "^4.0.0", 706 | "proxy-from-env": "^1.1.0" 707 | } 708 | }, 709 | "node_modules/balanced-match": { 710 | "version": "1.0.2", 711 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 712 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 713 | "dev": true 714 | }, 715 | "node_modules/base64-js": { 716 | "version": "1.5.1", 717 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 718 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 719 | "dev": true, 720 | "funding": [ 721 | { 722 | "type": "github", 723 | "url": "https://github.com/sponsors/feross" 724 | }, 725 | { 726 | "type": "patreon", 727 | "url": "https://www.patreon.com/feross" 728 | }, 729 | { 730 | "type": "consulting", 731 | "url": "https://feross.org/support" 732 | } 733 | ] 734 | }, 735 | "node_modules/binary-extensions": { 736 | "version": "2.3.0", 737 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 738 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 739 | "dev": true, 740 | "engines": { 741 | "node": ">=8" 742 | }, 743 | "funding": { 744 | "url": "https://github.com/sponsors/sindresorhus" 745 | } 746 | }, 747 | "node_modules/bl": { 748 | "version": "5.1.0", 749 | "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", 750 | "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", 751 | "dev": true, 752 | "dependencies": { 753 | "buffer": "^6.0.3", 754 | "inherits": "^2.0.4", 755 | "readable-stream": "^3.4.0" 756 | } 757 | }, 758 | "node_modules/brace-expansion": { 759 | "version": "1.1.11", 760 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 761 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 762 | "dev": true, 763 | "dependencies": { 764 | "balanced-match": "^1.0.0", 765 | "concat-map": "0.0.1" 766 | } 767 | }, 768 | "node_modules/braces": { 769 | "version": "3.0.3", 770 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 771 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 772 | "dev": true, 773 | "dependencies": { 774 | "fill-range": "^7.1.1" 775 | }, 776 | "engines": { 777 | "node": ">=8" 778 | } 779 | }, 780 | "node_modules/browserslist": { 781 | "version": "4.23.1", 782 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", 783 | "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", 784 | "dev": true, 785 | "funding": [ 786 | { 787 | "type": "opencollective", 788 | "url": "https://opencollective.com/browserslist" 789 | }, 790 | { 791 | "type": "tidelift", 792 | "url": "https://tidelift.com/funding/github/npm/browserslist" 793 | }, 794 | { 795 | "type": "github", 796 | "url": "https://github.com/sponsors/ai" 797 | } 798 | ], 799 | "dependencies": { 800 | "caniuse-lite": "^1.0.30001629", 801 | "electron-to-chromium": "^1.4.796", 802 | "node-releases": "^2.0.14", 803 | "update-browserslist-db": "^1.0.16" 804 | }, 805 | "bin": { 806 | "browserslist": "cli.js" 807 | }, 808 | "engines": { 809 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 810 | } 811 | }, 812 | "node_modules/buffer": { 813 | "version": "6.0.3", 814 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 815 | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 816 | "dev": true, 817 | "funding": [ 818 | { 819 | "type": "github", 820 | "url": "https://github.com/sponsors/feross" 821 | }, 822 | { 823 | "type": "patreon", 824 | "url": "https://www.patreon.com/feross" 825 | }, 826 | { 827 | "type": "consulting", 828 | "url": "https://feross.org/support" 829 | } 830 | ], 831 | "dependencies": { 832 | "base64-js": "^1.3.1", 833 | "ieee754": "^1.2.1" 834 | } 835 | }, 836 | "node_modules/call-bind": { 837 | "version": "1.0.7", 838 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 839 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 840 | "dev": true, 841 | "dependencies": { 842 | "es-define-property": "^1.0.0", 843 | "es-errors": "^1.3.0", 844 | "function-bind": "^1.1.2", 845 | "get-intrinsic": "^1.2.4", 846 | "set-function-length": "^1.2.1" 847 | }, 848 | "engines": { 849 | "node": ">= 0.4" 850 | }, 851 | "funding": { 852 | "url": "https://github.com/sponsors/ljharb" 853 | } 854 | }, 855 | "node_modules/camelcase-css": { 856 | "version": "2.0.1", 857 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 858 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 859 | "dev": true, 860 | "engines": { 861 | "node": ">= 6" 862 | } 863 | }, 864 | "node_modules/caniuse-lite": { 865 | "version": "1.0.30001638", 866 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", 867 | "integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==", 868 | "dev": true, 869 | "funding": [ 870 | { 871 | "type": "opencollective", 872 | "url": "https://opencollective.com/browserslist" 873 | }, 874 | { 875 | "type": "tidelift", 876 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 877 | }, 878 | { 879 | "type": "github", 880 | "url": "https://github.com/sponsors/ai" 881 | } 882 | ] 883 | }, 884 | "node_modules/chalk": { 885 | "version": "5.3.0", 886 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", 887 | "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", 888 | "dev": true, 889 | "engines": { 890 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 891 | }, 892 | "funding": { 893 | "url": "https://github.com/chalk/chalk?sponsor=1" 894 | } 895 | }, 896 | "node_modules/chokidar": { 897 | "version": "3.6.0", 898 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 899 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 900 | "dev": true, 901 | "dependencies": { 902 | "anymatch": "~3.1.2", 903 | "braces": "~3.0.2", 904 | "glob-parent": "~5.1.2", 905 | "is-binary-path": "~2.1.0", 906 | "is-glob": "~4.0.1", 907 | "normalize-path": "~3.0.0", 908 | "readdirp": "~3.6.0" 909 | }, 910 | "engines": { 911 | "node": ">= 8.10.0" 912 | }, 913 | "funding": { 914 | "url": "https://paulmillr.com/funding/" 915 | }, 916 | "optionalDependencies": { 917 | "fsevents": "~2.3.2" 918 | } 919 | }, 920 | "node_modules/chokidar/node_modules/glob-parent": { 921 | "version": "5.1.2", 922 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 923 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 924 | "dev": true, 925 | "dependencies": { 926 | "is-glob": "^4.0.1" 927 | }, 928 | "engines": { 929 | "node": ">= 6" 930 | } 931 | }, 932 | "node_modules/cli-cursor": { 933 | "version": "4.0.0", 934 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", 935 | "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", 936 | "dev": true, 937 | "dependencies": { 938 | "restore-cursor": "^4.0.0" 939 | }, 940 | "engines": { 941 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 942 | }, 943 | "funding": { 944 | "url": "https://github.com/sponsors/sindresorhus" 945 | } 946 | }, 947 | "node_modules/cli-spinners": { 948 | "version": "2.9.2", 949 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", 950 | "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", 951 | "dev": true, 952 | "engines": { 953 | "node": ">=6" 954 | }, 955 | "funding": { 956 | "url": "https://github.com/sponsors/sindresorhus" 957 | } 958 | }, 959 | "node_modules/clone": { 960 | "version": "1.0.4", 961 | "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", 962 | "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", 963 | "dev": true, 964 | "engines": { 965 | "node": ">=0.8" 966 | } 967 | }, 968 | "node_modules/color-convert": { 969 | "version": "1.9.3", 970 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 971 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 972 | "dev": true, 973 | "dependencies": { 974 | "color-name": "1.1.3" 975 | } 976 | }, 977 | "node_modules/color-name": { 978 | "version": "1.1.3", 979 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 980 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 981 | "dev": true 982 | }, 983 | "node_modules/combined-stream": { 984 | "version": "1.0.8", 985 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 986 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 987 | "dev": true, 988 | "dependencies": { 989 | "delayed-stream": "~1.0.0" 990 | }, 991 | "engines": { 992 | "node": ">= 0.8" 993 | } 994 | }, 995 | "node_modules/commander": { 996 | "version": "4.1.1", 997 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 998 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 999 | "dev": true, 1000 | "engines": { 1001 | "node": ">= 6" 1002 | } 1003 | }, 1004 | "node_modules/concat-map": { 1005 | "version": "0.0.1", 1006 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1007 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1008 | "dev": true 1009 | }, 1010 | "node_modules/cross-spawn": { 1011 | "version": "6.0.5", 1012 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 1013 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 1014 | "dev": true, 1015 | "dependencies": { 1016 | "nice-try": "^1.0.4", 1017 | "path-key": "^2.0.1", 1018 | "semver": "^5.5.0", 1019 | "shebang-command": "^1.2.0", 1020 | "which": "^1.2.9" 1021 | }, 1022 | "engines": { 1023 | "node": ">=4.8" 1024 | } 1025 | }, 1026 | "node_modules/css-tree": { 1027 | "version": "2.3.1", 1028 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 1029 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 1030 | "dev": true, 1031 | "dependencies": { 1032 | "mdn-data": "2.0.30", 1033 | "source-map-js": "^1.0.1" 1034 | }, 1035 | "engines": { 1036 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 1037 | } 1038 | }, 1039 | "node_modules/cssesc": { 1040 | "version": "3.0.0", 1041 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1042 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1043 | "dev": true, 1044 | "bin": { 1045 | "cssesc": "bin/cssesc" 1046 | }, 1047 | "engines": { 1048 | "node": ">=4" 1049 | } 1050 | }, 1051 | "node_modules/data-view-buffer": { 1052 | "version": "1.0.1", 1053 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", 1054 | "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", 1055 | "dev": true, 1056 | "dependencies": { 1057 | "call-bind": "^1.0.6", 1058 | "es-errors": "^1.3.0", 1059 | "is-data-view": "^1.0.1" 1060 | }, 1061 | "engines": { 1062 | "node": ">= 0.4" 1063 | }, 1064 | "funding": { 1065 | "url": "https://github.com/sponsors/ljharb" 1066 | } 1067 | }, 1068 | "node_modules/data-view-byte-length": { 1069 | "version": "1.0.1", 1070 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", 1071 | "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", 1072 | "dev": true, 1073 | "dependencies": { 1074 | "call-bind": "^1.0.7", 1075 | "es-errors": "^1.3.0", 1076 | "is-data-view": "^1.0.1" 1077 | }, 1078 | "engines": { 1079 | "node": ">= 0.4" 1080 | }, 1081 | "funding": { 1082 | "url": "https://github.com/sponsors/ljharb" 1083 | } 1084 | }, 1085 | "node_modules/data-view-byte-offset": { 1086 | "version": "1.0.0", 1087 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", 1088 | "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", 1089 | "dev": true, 1090 | "dependencies": { 1091 | "call-bind": "^1.0.6", 1092 | "es-errors": "^1.3.0", 1093 | "is-data-view": "^1.0.1" 1094 | }, 1095 | "engines": { 1096 | "node": ">= 0.4" 1097 | }, 1098 | "funding": { 1099 | "url": "https://github.com/sponsors/ljharb" 1100 | } 1101 | }, 1102 | "node_modules/defaults": { 1103 | "version": "1.0.4", 1104 | "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", 1105 | "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", 1106 | "dev": true, 1107 | "dependencies": { 1108 | "clone": "^1.0.2" 1109 | }, 1110 | "funding": { 1111 | "url": "https://github.com/sponsors/sindresorhus" 1112 | } 1113 | }, 1114 | "node_modules/define-data-property": { 1115 | "version": "1.1.4", 1116 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1117 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1118 | "dev": true, 1119 | "dependencies": { 1120 | "es-define-property": "^1.0.0", 1121 | "es-errors": "^1.3.0", 1122 | "gopd": "^1.0.1" 1123 | }, 1124 | "engines": { 1125 | "node": ">= 0.4" 1126 | }, 1127 | "funding": { 1128 | "url": "https://github.com/sponsors/ljharb" 1129 | } 1130 | }, 1131 | "node_modules/define-properties": { 1132 | "version": "1.2.1", 1133 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1134 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1135 | "dev": true, 1136 | "dependencies": { 1137 | "define-data-property": "^1.0.1", 1138 | "has-property-descriptors": "^1.0.0", 1139 | "object-keys": "^1.1.1" 1140 | }, 1141 | "engines": { 1142 | "node": ">= 0.4" 1143 | }, 1144 | "funding": { 1145 | "url": "https://github.com/sponsors/ljharb" 1146 | } 1147 | }, 1148 | "node_modules/delayed-stream": { 1149 | "version": "1.0.0", 1150 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1151 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1152 | "dev": true, 1153 | "engines": { 1154 | "node": ">=0.4.0" 1155 | } 1156 | }, 1157 | "node_modules/didyoumean": { 1158 | "version": "1.2.2", 1159 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1160 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 1161 | "dev": true 1162 | }, 1163 | "node_modules/dlv": { 1164 | "version": "1.1.3", 1165 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1166 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 1167 | "dev": true 1168 | }, 1169 | "node_modules/eastasianwidth": { 1170 | "version": "0.2.0", 1171 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1172 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1173 | "dev": true 1174 | }, 1175 | "node_modules/electron-to-chromium": { 1176 | "version": "1.4.812", 1177 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.812.tgz", 1178 | "integrity": "sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg==", 1179 | "dev": true 1180 | }, 1181 | "node_modules/emoji-regex": { 1182 | "version": "9.2.2", 1183 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1184 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1185 | "dev": true 1186 | }, 1187 | "node_modules/error-ex": { 1188 | "version": "1.3.2", 1189 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1190 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1191 | "dev": true, 1192 | "dependencies": { 1193 | "is-arrayish": "^0.2.1" 1194 | } 1195 | }, 1196 | "node_modules/es-abstract": { 1197 | "version": "1.23.3", 1198 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", 1199 | "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", 1200 | "dev": true, 1201 | "dependencies": { 1202 | "array-buffer-byte-length": "^1.0.1", 1203 | "arraybuffer.prototype.slice": "^1.0.3", 1204 | "available-typed-arrays": "^1.0.7", 1205 | "call-bind": "^1.0.7", 1206 | "data-view-buffer": "^1.0.1", 1207 | "data-view-byte-length": "^1.0.1", 1208 | "data-view-byte-offset": "^1.0.0", 1209 | "es-define-property": "^1.0.0", 1210 | "es-errors": "^1.3.0", 1211 | "es-object-atoms": "^1.0.0", 1212 | "es-set-tostringtag": "^2.0.3", 1213 | "es-to-primitive": "^1.2.1", 1214 | "function.prototype.name": "^1.1.6", 1215 | "get-intrinsic": "^1.2.4", 1216 | "get-symbol-description": "^1.0.2", 1217 | "globalthis": "^1.0.3", 1218 | "gopd": "^1.0.1", 1219 | "has-property-descriptors": "^1.0.2", 1220 | "has-proto": "^1.0.3", 1221 | "has-symbols": "^1.0.3", 1222 | "hasown": "^2.0.2", 1223 | "internal-slot": "^1.0.7", 1224 | "is-array-buffer": "^3.0.4", 1225 | "is-callable": "^1.2.7", 1226 | "is-data-view": "^1.0.1", 1227 | "is-negative-zero": "^2.0.3", 1228 | "is-regex": "^1.1.4", 1229 | "is-shared-array-buffer": "^1.0.3", 1230 | "is-string": "^1.0.7", 1231 | "is-typed-array": "^1.1.13", 1232 | "is-weakref": "^1.0.2", 1233 | "object-inspect": "^1.13.1", 1234 | "object-keys": "^1.1.1", 1235 | "object.assign": "^4.1.5", 1236 | "regexp.prototype.flags": "^1.5.2", 1237 | "safe-array-concat": "^1.1.2", 1238 | "safe-regex-test": "^1.0.3", 1239 | "string.prototype.trim": "^1.2.9", 1240 | "string.prototype.trimend": "^1.0.8", 1241 | "string.prototype.trimstart": "^1.0.8", 1242 | "typed-array-buffer": "^1.0.2", 1243 | "typed-array-byte-length": "^1.0.1", 1244 | "typed-array-byte-offset": "^1.0.2", 1245 | "typed-array-length": "^1.0.6", 1246 | "unbox-primitive": "^1.0.2", 1247 | "which-typed-array": "^1.1.15" 1248 | }, 1249 | "engines": { 1250 | "node": ">= 0.4" 1251 | }, 1252 | "funding": { 1253 | "url": "https://github.com/sponsors/ljharb" 1254 | } 1255 | }, 1256 | "node_modules/es-define-property": { 1257 | "version": "1.0.0", 1258 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 1259 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 1260 | "dev": true, 1261 | "dependencies": { 1262 | "get-intrinsic": "^1.2.4" 1263 | }, 1264 | "engines": { 1265 | "node": ">= 0.4" 1266 | } 1267 | }, 1268 | "node_modules/es-errors": { 1269 | "version": "1.3.0", 1270 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1271 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1272 | "dev": true, 1273 | "engines": { 1274 | "node": ">= 0.4" 1275 | } 1276 | }, 1277 | "node_modules/es-object-atoms": { 1278 | "version": "1.0.0", 1279 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", 1280 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", 1281 | "dev": true, 1282 | "dependencies": { 1283 | "es-errors": "^1.3.0" 1284 | }, 1285 | "engines": { 1286 | "node": ">= 0.4" 1287 | } 1288 | }, 1289 | "node_modules/es-set-tostringtag": { 1290 | "version": "2.0.3", 1291 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", 1292 | "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", 1293 | "dev": true, 1294 | "dependencies": { 1295 | "get-intrinsic": "^1.2.4", 1296 | "has-tostringtag": "^1.0.2", 1297 | "hasown": "^2.0.1" 1298 | }, 1299 | "engines": { 1300 | "node": ">= 0.4" 1301 | } 1302 | }, 1303 | "node_modules/es-to-primitive": { 1304 | "version": "1.2.1", 1305 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1306 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1307 | "dev": true, 1308 | "dependencies": { 1309 | "is-callable": "^1.1.4", 1310 | "is-date-object": "^1.0.1", 1311 | "is-symbol": "^1.0.2" 1312 | }, 1313 | "engines": { 1314 | "node": ">= 0.4" 1315 | }, 1316 | "funding": { 1317 | "url": "https://github.com/sponsors/ljharb" 1318 | } 1319 | }, 1320 | "node_modules/esbuild": { 1321 | "version": "0.19.12", 1322 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", 1323 | "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", 1324 | "dev": true, 1325 | "hasInstallScript": true, 1326 | "bin": { 1327 | "esbuild": "bin/esbuild" 1328 | }, 1329 | "engines": { 1330 | "node": ">=12" 1331 | }, 1332 | "optionalDependencies": { 1333 | "@esbuild/aix-ppc64": "0.19.12", 1334 | "@esbuild/android-arm": "0.19.12", 1335 | "@esbuild/android-arm64": "0.19.12", 1336 | "@esbuild/android-x64": "0.19.12", 1337 | "@esbuild/darwin-arm64": "0.19.12", 1338 | "@esbuild/darwin-x64": "0.19.12", 1339 | "@esbuild/freebsd-arm64": "0.19.12", 1340 | "@esbuild/freebsd-x64": "0.19.12", 1341 | "@esbuild/linux-arm": "0.19.12", 1342 | "@esbuild/linux-arm64": "0.19.12", 1343 | "@esbuild/linux-ia32": "0.19.12", 1344 | "@esbuild/linux-loong64": "0.19.12", 1345 | "@esbuild/linux-mips64el": "0.19.12", 1346 | "@esbuild/linux-ppc64": "0.19.12", 1347 | "@esbuild/linux-riscv64": "0.19.12", 1348 | "@esbuild/linux-s390x": "0.19.12", 1349 | "@esbuild/linux-x64": "0.19.12", 1350 | "@esbuild/netbsd-x64": "0.19.12", 1351 | "@esbuild/openbsd-x64": "0.19.12", 1352 | "@esbuild/sunos-x64": "0.19.12", 1353 | "@esbuild/win32-arm64": "0.19.12", 1354 | "@esbuild/win32-ia32": "0.19.12", 1355 | "@esbuild/win32-x64": "0.19.12" 1356 | } 1357 | }, 1358 | "node_modules/escalade": { 1359 | "version": "3.1.2", 1360 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 1361 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 1362 | "dev": true, 1363 | "engines": { 1364 | "node": ">=6" 1365 | } 1366 | }, 1367 | "node_modules/escape-string-regexp": { 1368 | "version": "1.0.5", 1369 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1370 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 1371 | "dev": true, 1372 | "engines": { 1373 | "node": ">=0.8.0" 1374 | } 1375 | }, 1376 | "node_modules/fast-glob": { 1377 | "version": "3.3.2", 1378 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1379 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1380 | "dev": true, 1381 | "dependencies": { 1382 | "@nodelib/fs.stat": "^2.0.2", 1383 | "@nodelib/fs.walk": "^1.2.3", 1384 | "glob-parent": "^5.1.2", 1385 | "merge2": "^1.3.0", 1386 | "micromatch": "^4.0.4" 1387 | }, 1388 | "engines": { 1389 | "node": ">=8.6.0" 1390 | } 1391 | }, 1392 | "node_modules/fast-glob/node_modules/glob-parent": { 1393 | "version": "5.1.2", 1394 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1395 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1396 | "dev": true, 1397 | "dependencies": { 1398 | "is-glob": "^4.0.1" 1399 | }, 1400 | "engines": { 1401 | "node": ">= 6" 1402 | } 1403 | }, 1404 | "node_modules/fastq": { 1405 | "version": "1.17.1", 1406 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1407 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1408 | "dev": true, 1409 | "dependencies": { 1410 | "reusify": "^1.0.4" 1411 | } 1412 | }, 1413 | "node_modules/fill-range": { 1414 | "version": "7.1.1", 1415 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1416 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1417 | "dev": true, 1418 | "dependencies": { 1419 | "to-regex-range": "^5.0.1" 1420 | }, 1421 | "engines": { 1422 | "node": ">=8" 1423 | } 1424 | }, 1425 | "node_modules/follow-redirects": { 1426 | "version": "1.15.6", 1427 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", 1428 | "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", 1429 | "dev": true, 1430 | "funding": [ 1431 | { 1432 | "type": "individual", 1433 | "url": "https://github.com/sponsors/RubenVerborgh" 1434 | } 1435 | ], 1436 | "engines": { 1437 | "node": ">=4.0" 1438 | }, 1439 | "peerDependenciesMeta": { 1440 | "debug": { 1441 | "optional": true 1442 | } 1443 | } 1444 | }, 1445 | "node_modules/for-each": { 1446 | "version": "0.3.3", 1447 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1448 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1449 | "dev": true, 1450 | "dependencies": { 1451 | "is-callable": "^1.1.3" 1452 | } 1453 | }, 1454 | "node_modules/foreground-child": { 1455 | "version": "3.2.1", 1456 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", 1457 | "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", 1458 | "dev": true, 1459 | "dependencies": { 1460 | "cross-spawn": "^7.0.0", 1461 | "signal-exit": "^4.0.1" 1462 | }, 1463 | "engines": { 1464 | "node": ">=14" 1465 | }, 1466 | "funding": { 1467 | "url": "https://github.com/sponsors/isaacs" 1468 | } 1469 | }, 1470 | "node_modules/foreground-child/node_modules/cross-spawn": { 1471 | "version": "7.0.3", 1472 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1473 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1474 | "dev": true, 1475 | "dependencies": { 1476 | "path-key": "^3.1.0", 1477 | "shebang-command": "^2.0.0", 1478 | "which": "^2.0.1" 1479 | }, 1480 | "engines": { 1481 | "node": ">= 8" 1482 | } 1483 | }, 1484 | "node_modules/foreground-child/node_modules/path-key": { 1485 | "version": "3.1.1", 1486 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1487 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1488 | "dev": true, 1489 | "engines": { 1490 | "node": ">=8" 1491 | } 1492 | }, 1493 | "node_modules/foreground-child/node_modules/shebang-command": { 1494 | "version": "2.0.0", 1495 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1496 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1497 | "dev": true, 1498 | "dependencies": { 1499 | "shebang-regex": "^3.0.0" 1500 | }, 1501 | "engines": { 1502 | "node": ">=8" 1503 | } 1504 | }, 1505 | "node_modules/foreground-child/node_modules/shebang-regex": { 1506 | "version": "3.0.0", 1507 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1508 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1509 | "dev": true, 1510 | "engines": { 1511 | "node": ">=8" 1512 | } 1513 | }, 1514 | "node_modules/foreground-child/node_modules/signal-exit": { 1515 | "version": "4.1.0", 1516 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 1517 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 1518 | "dev": true, 1519 | "engines": { 1520 | "node": ">=14" 1521 | }, 1522 | "funding": { 1523 | "url": "https://github.com/sponsors/isaacs" 1524 | } 1525 | }, 1526 | "node_modules/foreground-child/node_modules/which": { 1527 | "version": "2.0.2", 1528 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1529 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1530 | "dev": true, 1531 | "dependencies": { 1532 | "isexe": "^2.0.0" 1533 | }, 1534 | "bin": { 1535 | "node-which": "bin/node-which" 1536 | }, 1537 | "engines": { 1538 | "node": ">= 8" 1539 | } 1540 | }, 1541 | "node_modules/form-data": { 1542 | "version": "4.0.0", 1543 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1544 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1545 | "dev": true, 1546 | "dependencies": { 1547 | "asynckit": "^0.4.0", 1548 | "combined-stream": "^1.0.8", 1549 | "mime-types": "^2.1.12" 1550 | }, 1551 | "engines": { 1552 | "node": ">= 6" 1553 | } 1554 | }, 1555 | "node_modules/fraction.js": { 1556 | "version": "4.3.7", 1557 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1558 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1559 | "dev": true, 1560 | "engines": { 1561 | "node": "*" 1562 | }, 1563 | "funding": { 1564 | "type": "patreon", 1565 | "url": "https://github.com/sponsors/rawify" 1566 | } 1567 | }, 1568 | "node_modules/fsevents": { 1569 | "version": "2.3.3", 1570 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1571 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1572 | "dev": true, 1573 | "hasInstallScript": true, 1574 | "optional": true, 1575 | "os": [ 1576 | "darwin" 1577 | ], 1578 | "engines": { 1579 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1580 | } 1581 | }, 1582 | "node_modules/function-bind": { 1583 | "version": "1.1.2", 1584 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1585 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1586 | "dev": true, 1587 | "funding": { 1588 | "url": "https://github.com/sponsors/ljharb" 1589 | } 1590 | }, 1591 | "node_modules/function.prototype.name": { 1592 | "version": "1.1.6", 1593 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 1594 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 1595 | "dev": true, 1596 | "dependencies": { 1597 | "call-bind": "^1.0.2", 1598 | "define-properties": "^1.2.0", 1599 | "es-abstract": "^1.22.1", 1600 | "functions-have-names": "^1.2.3" 1601 | }, 1602 | "engines": { 1603 | "node": ">= 0.4" 1604 | }, 1605 | "funding": { 1606 | "url": "https://github.com/sponsors/ljharb" 1607 | } 1608 | }, 1609 | "node_modules/functions-have-names": { 1610 | "version": "1.2.3", 1611 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1612 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1613 | "dev": true, 1614 | "funding": { 1615 | "url": "https://github.com/sponsors/ljharb" 1616 | } 1617 | }, 1618 | "node_modules/get-intrinsic": { 1619 | "version": "1.2.4", 1620 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 1621 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 1622 | "dev": true, 1623 | "dependencies": { 1624 | "es-errors": "^1.3.0", 1625 | "function-bind": "^1.1.2", 1626 | "has-proto": "^1.0.1", 1627 | "has-symbols": "^1.0.3", 1628 | "hasown": "^2.0.0" 1629 | }, 1630 | "engines": { 1631 | "node": ">= 0.4" 1632 | }, 1633 | "funding": { 1634 | "url": "https://github.com/sponsors/ljharb" 1635 | } 1636 | }, 1637 | "node_modules/get-symbol-description": { 1638 | "version": "1.0.2", 1639 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", 1640 | "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", 1641 | "dev": true, 1642 | "dependencies": { 1643 | "call-bind": "^1.0.5", 1644 | "es-errors": "^1.3.0", 1645 | "get-intrinsic": "^1.2.4" 1646 | }, 1647 | "engines": { 1648 | "node": ">= 0.4" 1649 | }, 1650 | "funding": { 1651 | "url": "https://github.com/sponsors/ljharb" 1652 | } 1653 | }, 1654 | "node_modules/glob": { 1655 | "version": "10.4.2", 1656 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", 1657 | "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", 1658 | "dev": true, 1659 | "dependencies": { 1660 | "foreground-child": "^3.1.0", 1661 | "jackspeak": "^3.1.2", 1662 | "minimatch": "^9.0.4", 1663 | "minipass": "^7.1.2", 1664 | "package-json-from-dist": "^1.0.0", 1665 | "path-scurry": "^1.11.1" 1666 | }, 1667 | "bin": { 1668 | "glob": "dist/esm/bin.mjs" 1669 | }, 1670 | "engines": { 1671 | "node": ">=16 || 14 >=14.18" 1672 | }, 1673 | "funding": { 1674 | "url": "https://github.com/sponsors/isaacs" 1675 | } 1676 | }, 1677 | "node_modules/glob-parent": { 1678 | "version": "6.0.2", 1679 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1680 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1681 | "dev": true, 1682 | "dependencies": { 1683 | "is-glob": "^4.0.3" 1684 | }, 1685 | "engines": { 1686 | "node": ">=10.13.0" 1687 | } 1688 | }, 1689 | "node_modules/glob/node_modules/brace-expansion": { 1690 | "version": "2.0.1", 1691 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1692 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1693 | "dev": true, 1694 | "dependencies": { 1695 | "balanced-match": "^1.0.0" 1696 | } 1697 | }, 1698 | "node_modules/glob/node_modules/minimatch": { 1699 | "version": "9.0.5", 1700 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1701 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1702 | "dev": true, 1703 | "dependencies": { 1704 | "brace-expansion": "^2.0.1" 1705 | }, 1706 | "engines": { 1707 | "node": ">=16 || 14 >=14.17" 1708 | }, 1709 | "funding": { 1710 | "url": "https://github.com/sponsors/isaacs" 1711 | } 1712 | }, 1713 | "node_modules/globalthis": { 1714 | "version": "1.0.4", 1715 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 1716 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 1717 | "dev": true, 1718 | "dependencies": { 1719 | "define-properties": "^1.2.1", 1720 | "gopd": "^1.0.1" 1721 | }, 1722 | "engines": { 1723 | "node": ">= 0.4" 1724 | }, 1725 | "funding": { 1726 | "url": "https://github.com/sponsors/ljharb" 1727 | } 1728 | }, 1729 | "node_modules/gopd": { 1730 | "version": "1.0.1", 1731 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1732 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1733 | "dev": true, 1734 | "dependencies": { 1735 | "get-intrinsic": "^1.1.3" 1736 | }, 1737 | "funding": { 1738 | "url": "https://github.com/sponsors/ljharb" 1739 | } 1740 | }, 1741 | "node_modules/graceful-fs": { 1742 | "version": "4.2.11", 1743 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1744 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1745 | "dev": true 1746 | }, 1747 | "node_modules/has-bigints": { 1748 | "version": "1.0.2", 1749 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1750 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1751 | "dev": true, 1752 | "funding": { 1753 | "url": "https://github.com/sponsors/ljharb" 1754 | } 1755 | }, 1756 | "node_modules/has-flag": { 1757 | "version": "3.0.0", 1758 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1759 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 1760 | "dev": true, 1761 | "engines": { 1762 | "node": ">=4" 1763 | } 1764 | }, 1765 | "node_modules/has-property-descriptors": { 1766 | "version": "1.0.2", 1767 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 1768 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 1769 | "dev": true, 1770 | "dependencies": { 1771 | "es-define-property": "^1.0.0" 1772 | }, 1773 | "funding": { 1774 | "url": "https://github.com/sponsors/ljharb" 1775 | } 1776 | }, 1777 | "node_modules/has-proto": { 1778 | "version": "1.0.3", 1779 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 1780 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 1781 | "dev": true, 1782 | "engines": { 1783 | "node": ">= 0.4" 1784 | }, 1785 | "funding": { 1786 | "url": "https://github.com/sponsors/ljharb" 1787 | } 1788 | }, 1789 | "node_modules/has-symbols": { 1790 | "version": "1.0.3", 1791 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1792 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1793 | "dev": true, 1794 | "engines": { 1795 | "node": ">= 0.4" 1796 | }, 1797 | "funding": { 1798 | "url": "https://github.com/sponsors/ljharb" 1799 | } 1800 | }, 1801 | "node_modules/has-tostringtag": { 1802 | "version": "1.0.2", 1803 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1804 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1805 | "dev": true, 1806 | "dependencies": { 1807 | "has-symbols": "^1.0.3" 1808 | }, 1809 | "engines": { 1810 | "node": ">= 0.4" 1811 | }, 1812 | "funding": { 1813 | "url": "https://github.com/sponsors/ljharb" 1814 | } 1815 | }, 1816 | "node_modules/hasown": { 1817 | "version": "2.0.2", 1818 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1819 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1820 | "dev": true, 1821 | "dependencies": { 1822 | "function-bind": "^1.1.2" 1823 | }, 1824 | "engines": { 1825 | "node": ">= 0.4" 1826 | } 1827 | }, 1828 | "node_modules/hosted-git-info": { 1829 | "version": "2.8.9", 1830 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", 1831 | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", 1832 | "dev": true 1833 | }, 1834 | "node_modules/ieee754": { 1835 | "version": "1.2.1", 1836 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1837 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1838 | "dev": true, 1839 | "funding": [ 1840 | { 1841 | "type": "github", 1842 | "url": "https://github.com/sponsors/feross" 1843 | }, 1844 | { 1845 | "type": "patreon", 1846 | "url": "https://www.patreon.com/feross" 1847 | }, 1848 | { 1849 | "type": "consulting", 1850 | "url": "https://feross.org/support" 1851 | } 1852 | ] 1853 | }, 1854 | "node_modules/inherits": { 1855 | "version": "2.0.4", 1856 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1857 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1858 | "dev": true 1859 | }, 1860 | "node_modules/internal-slot": { 1861 | "version": "1.0.7", 1862 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", 1863 | "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", 1864 | "dev": true, 1865 | "dependencies": { 1866 | "es-errors": "^1.3.0", 1867 | "hasown": "^2.0.0", 1868 | "side-channel": "^1.0.4" 1869 | }, 1870 | "engines": { 1871 | "node": ">= 0.4" 1872 | } 1873 | }, 1874 | "node_modules/is-array-buffer": { 1875 | "version": "3.0.4", 1876 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", 1877 | "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", 1878 | "dev": true, 1879 | "dependencies": { 1880 | "call-bind": "^1.0.2", 1881 | "get-intrinsic": "^1.2.1" 1882 | }, 1883 | "engines": { 1884 | "node": ">= 0.4" 1885 | }, 1886 | "funding": { 1887 | "url": "https://github.com/sponsors/ljharb" 1888 | } 1889 | }, 1890 | "node_modules/is-arrayish": { 1891 | "version": "0.2.1", 1892 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1893 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 1894 | "dev": true 1895 | }, 1896 | "node_modules/is-bigint": { 1897 | "version": "1.0.4", 1898 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 1899 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 1900 | "dev": true, 1901 | "dependencies": { 1902 | "has-bigints": "^1.0.1" 1903 | }, 1904 | "funding": { 1905 | "url": "https://github.com/sponsors/ljharb" 1906 | } 1907 | }, 1908 | "node_modules/is-binary-path": { 1909 | "version": "2.1.0", 1910 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1911 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1912 | "dev": true, 1913 | "dependencies": { 1914 | "binary-extensions": "^2.0.0" 1915 | }, 1916 | "engines": { 1917 | "node": ">=8" 1918 | } 1919 | }, 1920 | "node_modules/is-boolean-object": { 1921 | "version": "1.1.2", 1922 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 1923 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 1924 | "dev": true, 1925 | "dependencies": { 1926 | "call-bind": "^1.0.2", 1927 | "has-tostringtag": "^1.0.0" 1928 | }, 1929 | "engines": { 1930 | "node": ">= 0.4" 1931 | }, 1932 | "funding": { 1933 | "url": "https://github.com/sponsors/ljharb" 1934 | } 1935 | }, 1936 | "node_modules/is-callable": { 1937 | "version": "1.2.7", 1938 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 1939 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 1940 | "dev": true, 1941 | "engines": { 1942 | "node": ">= 0.4" 1943 | }, 1944 | "funding": { 1945 | "url": "https://github.com/sponsors/ljharb" 1946 | } 1947 | }, 1948 | "node_modules/is-core-module": { 1949 | "version": "2.14.0", 1950 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", 1951 | "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", 1952 | "dev": true, 1953 | "dependencies": { 1954 | "hasown": "^2.0.2" 1955 | }, 1956 | "engines": { 1957 | "node": ">= 0.4" 1958 | }, 1959 | "funding": { 1960 | "url": "https://github.com/sponsors/ljharb" 1961 | } 1962 | }, 1963 | "node_modules/is-data-view": { 1964 | "version": "1.0.1", 1965 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", 1966 | "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", 1967 | "dev": true, 1968 | "dependencies": { 1969 | "is-typed-array": "^1.1.13" 1970 | }, 1971 | "engines": { 1972 | "node": ">= 0.4" 1973 | }, 1974 | "funding": { 1975 | "url": "https://github.com/sponsors/ljharb" 1976 | } 1977 | }, 1978 | "node_modules/is-date-object": { 1979 | "version": "1.0.5", 1980 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 1981 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 1982 | "dev": true, 1983 | "dependencies": { 1984 | "has-tostringtag": "^1.0.0" 1985 | }, 1986 | "engines": { 1987 | "node": ">= 0.4" 1988 | }, 1989 | "funding": { 1990 | "url": "https://github.com/sponsors/ljharb" 1991 | } 1992 | }, 1993 | "node_modules/is-extglob": { 1994 | "version": "2.1.1", 1995 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1996 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1997 | "dev": true, 1998 | "engines": { 1999 | "node": ">=0.10.0" 2000 | } 2001 | }, 2002 | "node_modules/is-fullwidth-code-point": { 2003 | "version": "3.0.0", 2004 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2005 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2006 | "dev": true, 2007 | "engines": { 2008 | "node": ">=8" 2009 | } 2010 | }, 2011 | "node_modules/is-glob": { 2012 | "version": "4.0.3", 2013 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2014 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2015 | "dev": true, 2016 | "dependencies": { 2017 | "is-extglob": "^2.1.1" 2018 | }, 2019 | "engines": { 2020 | "node": ">=0.10.0" 2021 | } 2022 | }, 2023 | "node_modules/is-interactive": { 2024 | "version": "2.0.0", 2025 | "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", 2026 | "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", 2027 | "dev": true, 2028 | "engines": { 2029 | "node": ">=12" 2030 | }, 2031 | "funding": { 2032 | "url": "https://github.com/sponsors/sindresorhus" 2033 | } 2034 | }, 2035 | "node_modules/is-negative-zero": { 2036 | "version": "2.0.3", 2037 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", 2038 | "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", 2039 | "dev": true, 2040 | "engines": { 2041 | "node": ">= 0.4" 2042 | }, 2043 | "funding": { 2044 | "url": "https://github.com/sponsors/ljharb" 2045 | } 2046 | }, 2047 | "node_modules/is-number": { 2048 | "version": "7.0.0", 2049 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2050 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2051 | "dev": true, 2052 | "engines": { 2053 | "node": ">=0.12.0" 2054 | } 2055 | }, 2056 | "node_modules/is-number-object": { 2057 | "version": "1.0.7", 2058 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2059 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2060 | "dev": true, 2061 | "dependencies": { 2062 | "has-tostringtag": "^1.0.0" 2063 | }, 2064 | "engines": { 2065 | "node": ">= 0.4" 2066 | }, 2067 | "funding": { 2068 | "url": "https://github.com/sponsors/ljharb" 2069 | } 2070 | }, 2071 | "node_modules/is-regex": { 2072 | "version": "1.1.4", 2073 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2074 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2075 | "dev": true, 2076 | "dependencies": { 2077 | "call-bind": "^1.0.2", 2078 | "has-tostringtag": "^1.0.0" 2079 | }, 2080 | "engines": { 2081 | "node": ">= 0.4" 2082 | }, 2083 | "funding": { 2084 | "url": "https://github.com/sponsors/ljharb" 2085 | } 2086 | }, 2087 | "node_modules/is-shared-array-buffer": { 2088 | "version": "1.0.3", 2089 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", 2090 | "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", 2091 | "dev": true, 2092 | "dependencies": { 2093 | "call-bind": "^1.0.7" 2094 | }, 2095 | "engines": { 2096 | "node": ">= 0.4" 2097 | }, 2098 | "funding": { 2099 | "url": "https://github.com/sponsors/ljharb" 2100 | } 2101 | }, 2102 | "node_modules/is-string": { 2103 | "version": "1.0.7", 2104 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2105 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2106 | "dev": true, 2107 | "dependencies": { 2108 | "has-tostringtag": "^1.0.0" 2109 | }, 2110 | "engines": { 2111 | "node": ">= 0.4" 2112 | }, 2113 | "funding": { 2114 | "url": "https://github.com/sponsors/ljharb" 2115 | } 2116 | }, 2117 | "node_modules/is-symbol": { 2118 | "version": "1.0.4", 2119 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2120 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2121 | "dev": true, 2122 | "dependencies": { 2123 | "has-symbols": "^1.0.2" 2124 | }, 2125 | "engines": { 2126 | "node": ">= 0.4" 2127 | }, 2128 | "funding": { 2129 | "url": "https://github.com/sponsors/ljharb" 2130 | } 2131 | }, 2132 | "node_modules/is-typed-array": { 2133 | "version": "1.1.13", 2134 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", 2135 | "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", 2136 | "dev": true, 2137 | "dependencies": { 2138 | "which-typed-array": "^1.1.14" 2139 | }, 2140 | "engines": { 2141 | "node": ">= 0.4" 2142 | }, 2143 | "funding": { 2144 | "url": "https://github.com/sponsors/ljharb" 2145 | } 2146 | }, 2147 | "node_modules/is-unicode-supported": { 2148 | "version": "1.3.0", 2149 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", 2150 | "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", 2151 | "dev": true, 2152 | "engines": { 2153 | "node": ">=12" 2154 | }, 2155 | "funding": { 2156 | "url": "https://github.com/sponsors/sindresorhus" 2157 | } 2158 | }, 2159 | "node_modules/is-weakref": { 2160 | "version": "1.0.2", 2161 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2162 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2163 | "dev": true, 2164 | "dependencies": { 2165 | "call-bind": "^1.0.2" 2166 | }, 2167 | "funding": { 2168 | "url": "https://github.com/sponsors/ljharb" 2169 | } 2170 | }, 2171 | "node_modules/isarray": { 2172 | "version": "2.0.5", 2173 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2174 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 2175 | "dev": true 2176 | }, 2177 | "node_modules/isexe": { 2178 | "version": "2.0.0", 2179 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2180 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2181 | "dev": true 2182 | }, 2183 | "node_modules/jackspeak": { 2184 | "version": "3.4.0", 2185 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", 2186 | "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", 2187 | "dev": true, 2188 | "dependencies": { 2189 | "@isaacs/cliui": "^8.0.2" 2190 | }, 2191 | "engines": { 2192 | "node": ">=14" 2193 | }, 2194 | "funding": { 2195 | "url": "https://github.com/sponsors/isaacs" 2196 | }, 2197 | "optionalDependencies": { 2198 | "@pkgjs/parseargs": "^0.11.0" 2199 | } 2200 | }, 2201 | "node_modules/jiti": { 2202 | "version": "1.21.6", 2203 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 2204 | "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 2205 | "dev": true, 2206 | "bin": { 2207 | "jiti": "bin/jiti.js" 2208 | } 2209 | }, 2210 | "node_modules/json-parse-better-errors": { 2211 | "version": "1.0.2", 2212 | "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 2213 | "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 2214 | "dev": true 2215 | }, 2216 | "node_modules/lilconfig": { 2217 | "version": "2.1.0", 2218 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2219 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2220 | "dev": true, 2221 | "engines": { 2222 | "node": ">=10" 2223 | } 2224 | }, 2225 | "node_modules/lines-and-columns": { 2226 | "version": "1.2.4", 2227 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2228 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2229 | "dev": true 2230 | }, 2231 | "node_modules/load-json-file": { 2232 | "version": "4.0.0", 2233 | "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", 2234 | "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", 2235 | "dev": true, 2236 | "dependencies": { 2237 | "graceful-fs": "^4.1.2", 2238 | "parse-json": "^4.0.0", 2239 | "pify": "^3.0.0", 2240 | "strip-bom": "^3.0.0" 2241 | }, 2242 | "engines": { 2243 | "node": ">=4" 2244 | } 2245 | }, 2246 | "node_modules/load-json-file/node_modules/pify": { 2247 | "version": "3.0.0", 2248 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 2249 | "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", 2250 | "dev": true, 2251 | "engines": { 2252 | "node": ">=4" 2253 | } 2254 | }, 2255 | "node_modules/lodash.castarray": { 2256 | "version": "4.4.0", 2257 | "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", 2258 | "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", 2259 | "dev": true 2260 | }, 2261 | "node_modules/lodash.isplainobject": { 2262 | "version": "4.0.6", 2263 | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", 2264 | "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", 2265 | "dev": true 2266 | }, 2267 | "node_modules/lodash.merge": { 2268 | "version": "4.6.2", 2269 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2270 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2271 | "dev": true 2272 | }, 2273 | "node_modules/log-symbols": { 2274 | "version": "5.1.0", 2275 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", 2276 | "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", 2277 | "dev": true, 2278 | "dependencies": { 2279 | "chalk": "^5.0.0", 2280 | "is-unicode-supported": "^1.1.0" 2281 | }, 2282 | "engines": { 2283 | "node": ">=12" 2284 | }, 2285 | "funding": { 2286 | "url": "https://github.com/sponsors/sindresorhus" 2287 | } 2288 | }, 2289 | "node_modules/lru-cache": { 2290 | "version": "10.2.2", 2291 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", 2292 | "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", 2293 | "dev": true, 2294 | "engines": { 2295 | "node": "14 || >=16.14" 2296 | } 2297 | }, 2298 | "node_modules/mdn-data": { 2299 | "version": "2.0.30", 2300 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 2301 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", 2302 | "dev": true 2303 | }, 2304 | "node_modules/memorystream": { 2305 | "version": "0.3.1", 2306 | "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", 2307 | "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", 2308 | "dev": true, 2309 | "engines": { 2310 | "node": ">= 0.10.0" 2311 | } 2312 | }, 2313 | "node_modules/merge2": { 2314 | "version": "1.4.1", 2315 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2316 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2317 | "dev": true, 2318 | "engines": { 2319 | "node": ">= 8" 2320 | } 2321 | }, 2322 | "node_modules/micromatch": { 2323 | "version": "4.0.7", 2324 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 2325 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 2326 | "dev": true, 2327 | "dependencies": { 2328 | "braces": "^3.0.3", 2329 | "picomatch": "^2.3.1" 2330 | }, 2331 | "engines": { 2332 | "node": ">=8.6" 2333 | } 2334 | }, 2335 | "node_modules/mime-db": { 2336 | "version": "1.52.0", 2337 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2338 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2339 | "dev": true, 2340 | "engines": { 2341 | "node": ">= 0.6" 2342 | } 2343 | }, 2344 | "node_modules/mime-types": { 2345 | "version": "2.1.35", 2346 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2347 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2348 | "dev": true, 2349 | "dependencies": { 2350 | "mime-db": "1.52.0" 2351 | }, 2352 | "engines": { 2353 | "node": ">= 0.6" 2354 | } 2355 | }, 2356 | "node_modules/mimic-fn": { 2357 | "version": "2.1.0", 2358 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 2359 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 2360 | "dev": true, 2361 | "engines": { 2362 | "node": ">=6" 2363 | } 2364 | }, 2365 | "node_modules/mini-svg-data-uri": { 2366 | "version": "1.4.4", 2367 | "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", 2368 | "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", 2369 | "dev": true, 2370 | "bin": { 2371 | "mini-svg-data-uri": "cli.js" 2372 | } 2373 | }, 2374 | "node_modules/minimatch": { 2375 | "version": "3.1.2", 2376 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2377 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2378 | "dev": true, 2379 | "dependencies": { 2380 | "brace-expansion": "^1.1.7" 2381 | }, 2382 | "engines": { 2383 | "node": "*" 2384 | } 2385 | }, 2386 | "node_modules/minipass": { 2387 | "version": "7.1.2", 2388 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2389 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2390 | "dev": true, 2391 | "engines": { 2392 | "node": ">=16 || 14 >=14.17" 2393 | } 2394 | }, 2395 | "node_modules/mz": { 2396 | "version": "2.7.0", 2397 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2398 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2399 | "dev": true, 2400 | "dependencies": { 2401 | "any-promise": "^1.0.0", 2402 | "object-assign": "^4.0.1", 2403 | "thenify-all": "^1.0.0" 2404 | } 2405 | }, 2406 | "node_modules/nanoid": { 2407 | "version": "3.3.7", 2408 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 2409 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 2410 | "dev": true, 2411 | "funding": [ 2412 | { 2413 | "type": "github", 2414 | "url": "https://github.com/sponsors/ai" 2415 | } 2416 | ], 2417 | "bin": { 2418 | "nanoid": "bin/nanoid.cjs" 2419 | }, 2420 | "engines": { 2421 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2422 | } 2423 | }, 2424 | "node_modules/nice-try": { 2425 | "version": "1.0.5", 2426 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 2427 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 2428 | "dev": true 2429 | }, 2430 | "node_modules/node-releases": { 2431 | "version": "2.0.14", 2432 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 2433 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 2434 | "dev": true 2435 | }, 2436 | "node_modules/normalize-package-data": { 2437 | "version": "2.5.0", 2438 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", 2439 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", 2440 | "dev": true, 2441 | "dependencies": { 2442 | "hosted-git-info": "^2.1.4", 2443 | "resolve": "^1.10.0", 2444 | "semver": "2 || 3 || 4 || 5", 2445 | "validate-npm-package-license": "^3.0.1" 2446 | } 2447 | }, 2448 | "node_modules/normalize-path": { 2449 | "version": "3.0.0", 2450 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2451 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2452 | "dev": true, 2453 | "engines": { 2454 | "node": ">=0.10.0" 2455 | } 2456 | }, 2457 | "node_modules/normalize-range": { 2458 | "version": "0.1.2", 2459 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2460 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2461 | "dev": true, 2462 | "engines": { 2463 | "node": ">=0.10.0" 2464 | } 2465 | }, 2466 | "node_modules/npm-run-all": { 2467 | "version": "4.1.5", 2468 | "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", 2469 | "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", 2470 | "dev": true, 2471 | "dependencies": { 2472 | "ansi-styles": "^3.2.1", 2473 | "chalk": "^2.4.1", 2474 | "cross-spawn": "^6.0.5", 2475 | "memorystream": "^0.3.1", 2476 | "minimatch": "^3.0.4", 2477 | "pidtree": "^0.3.0", 2478 | "read-pkg": "^3.0.0", 2479 | "shell-quote": "^1.6.1", 2480 | "string.prototype.padend": "^3.0.0" 2481 | }, 2482 | "bin": { 2483 | "npm-run-all": "bin/npm-run-all/index.js", 2484 | "run-p": "bin/run-p/index.js", 2485 | "run-s": "bin/run-s/index.js" 2486 | }, 2487 | "engines": { 2488 | "node": ">= 4" 2489 | } 2490 | }, 2491 | "node_modules/npm-run-all/node_modules/chalk": { 2492 | "version": "2.4.2", 2493 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 2494 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 2495 | "dev": true, 2496 | "dependencies": { 2497 | "ansi-styles": "^3.2.1", 2498 | "escape-string-regexp": "^1.0.5", 2499 | "supports-color": "^5.3.0" 2500 | }, 2501 | "engines": { 2502 | "node": ">=4" 2503 | } 2504 | }, 2505 | "node_modules/object-assign": { 2506 | "version": "4.1.1", 2507 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2508 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2509 | "dev": true, 2510 | "engines": { 2511 | "node": ">=0.10.0" 2512 | } 2513 | }, 2514 | "node_modules/object-hash": { 2515 | "version": "3.0.0", 2516 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 2517 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2518 | "dev": true, 2519 | "engines": { 2520 | "node": ">= 6" 2521 | } 2522 | }, 2523 | "node_modules/object-inspect": { 2524 | "version": "1.13.2", 2525 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", 2526 | "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", 2527 | "dev": true, 2528 | "engines": { 2529 | "node": ">= 0.4" 2530 | }, 2531 | "funding": { 2532 | "url": "https://github.com/sponsors/ljharb" 2533 | } 2534 | }, 2535 | "node_modules/object-keys": { 2536 | "version": "1.1.1", 2537 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2538 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2539 | "dev": true, 2540 | "engines": { 2541 | "node": ">= 0.4" 2542 | } 2543 | }, 2544 | "node_modules/object.assign": { 2545 | "version": "4.1.5", 2546 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", 2547 | "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", 2548 | "dev": true, 2549 | "dependencies": { 2550 | "call-bind": "^1.0.5", 2551 | "define-properties": "^1.2.1", 2552 | "has-symbols": "^1.0.3", 2553 | "object-keys": "^1.1.1" 2554 | }, 2555 | "engines": { 2556 | "node": ">= 0.4" 2557 | }, 2558 | "funding": { 2559 | "url": "https://github.com/sponsors/ljharb" 2560 | } 2561 | }, 2562 | "node_modules/onetime": { 2563 | "version": "5.1.2", 2564 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 2565 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 2566 | "dev": true, 2567 | "dependencies": { 2568 | "mimic-fn": "^2.1.0" 2569 | }, 2570 | "engines": { 2571 | "node": ">=6" 2572 | }, 2573 | "funding": { 2574 | "url": "https://github.com/sponsors/sindresorhus" 2575 | } 2576 | }, 2577 | "node_modules/ora": { 2578 | "version": "6.3.1", 2579 | "resolved": "https://registry.npmjs.org/ora/-/ora-6.3.1.tgz", 2580 | "integrity": "sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==", 2581 | "dev": true, 2582 | "dependencies": { 2583 | "chalk": "^5.0.0", 2584 | "cli-cursor": "^4.0.0", 2585 | "cli-spinners": "^2.6.1", 2586 | "is-interactive": "^2.0.0", 2587 | "is-unicode-supported": "^1.1.0", 2588 | "log-symbols": "^5.1.0", 2589 | "stdin-discarder": "^0.1.0", 2590 | "strip-ansi": "^7.0.1", 2591 | "wcwidth": "^1.0.1" 2592 | }, 2593 | "engines": { 2594 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2595 | }, 2596 | "funding": { 2597 | "url": "https://github.com/sponsors/sindresorhus" 2598 | } 2599 | }, 2600 | "node_modules/package-json-from-dist": { 2601 | "version": "1.0.0", 2602 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", 2603 | "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", 2604 | "dev": true 2605 | }, 2606 | "node_modules/parse-json": { 2607 | "version": "4.0.0", 2608 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 2609 | "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", 2610 | "dev": true, 2611 | "dependencies": { 2612 | "error-ex": "^1.3.1", 2613 | "json-parse-better-errors": "^1.0.1" 2614 | }, 2615 | "engines": { 2616 | "node": ">=4" 2617 | } 2618 | }, 2619 | "node_modules/path-key": { 2620 | "version": "2.0.1", 2621 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 2622 | "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", 2623 | "dev": true, 2624 | "engines": { 2625 | "node": ">=4" 2626 | } 2627 | }, 2628 | "node_modules/path-parse": { 2629 | "version": "1.0.7", 2630 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2631 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2632 | "dev": true 2633 | }, 2634 | "node_modules/path-scurry": { 2635 | "version": "1.11.1", 2636 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2637 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2638 | "dev": true, 2639 | "dependencies": { 2640 | "lru-cache": "^10.2.0", 2641 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2642 | }, 2643 | "engines": { 2644 | "node": ">=16 || 14 >=14.18" 2645 | }, 2646 | "funding": { 2647 | "url": "https://github.com/sponsors/isaacs" 2648 | } 2649 | }, 2650 | "node_modules/path-type": { 2651 | "version": "3.0.0", 2652 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", 2653 | "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", 2654 | "dev": true, 2655 | "dependencies": { 2656 | "pify": "^3.0.0" 2657 | }, 2658 | "engines": { 2659 | "node": ">=4" 2660 | } 2661 | }, 2662 | "node_modules/path-type/node_modules/pify": { 2663 | "version": "3.0.0", 2664 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 2665 | "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", 2666 | "dev": true, 2667 | "engines": { 2668 | "node": ">=4" 2669 | } 2670 | }, 2671 | "node_modules/picocolors": { 2672 | "version": "1.0.1", 2673 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 2674 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 2675 | "dev": true 2676 | }, 2677 | "node_modules/picomatch": { 2678 | "version": "2.3.1", 2679 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2680 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2681 | "dev": true, 2682 | "engines": { 2683 | "node": ">=8.6" 2684 | }, 2685 | "funding": { 2686 | "url": "https://github.com/sponsors/jonschlinkert" 2687 | } 2688 | }, 2689 | "node_modules/pidtree": { 2690 | "version": "0.3.1", 2691 | "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", 2692 | "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", 2693 | "dev": true, 2694 | "bin": { 2695 | "pidtree": "bin/pidtree.js" 2696 | }, 2697 | "engines": { 2698 | "node": ">=0.10" 2699 | } 2700 | }, 2701 | "node_modules/pify": { 2702 | "version": "2.3.0", 2703 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 2704 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 2705 | "dev": true, 2706 | "engines": { 2707 | "node": ">=0.10.0" 2708 | } 2709 | }, 2710 | "node_modules/pirates": { 2711 | "version": "4.0.6", 2712 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 2713 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 2714 | "dev": true, 2715 | "engines": { 2716 | "node": ">= 6" 2717 | } 2718 | }, 2719 | "node_modules/possible-typed-array-names": { 2720 | "version": "1.0.0", 2721 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", 2722 | "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", 2723 | "dev": true, 2724 | "engines": { 2725 | "node": ">= 0.4" 2726 | } 2727 | }, 2728 | "node_modules/postcss": { 2729 | "version": "8.4.38", 2730 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 2731 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 2732 | "dev": true, 2733 | "funding": [ 2734 | { 2735 | "type": "opencollective", 2736 | "url": "https://opencollective.com/postcss/" 2737 | }, 2738 | { 2739 | "type": "tidelift", 2740 | "url": "https://tidelift.com/funding/github/npm/postcss" 2741 | }, 2742 | { 2743 | "type": "github", 2744 | "url": "https://github.com/sponsors/ai" 2745 | } 2746 | ], 2747 | "dependencies": { 2748 | "nanoid": "^3.3.7", 2749 | "picocolors": "^1.0.0", 2750 | "source-map-js": "^1.2.0" 2751 | }, 2752 | "engines": { 2753 | "node": "^10 || ^12 || >=14" 2754 | } 2755 | }, 2756 | "node_modules/postcss-import": { 2757 | "version": "15.1.0", 2758 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 2759 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 2760 | "dev": true, 2761 | "dependencies": { 2762 | "postcss-value-parser": "^4.0.0", 2763 | "read-cache": "^1.0.0", 2764 | "resolve": "^1.1.7" 2765 | }, 2766 | "engines": { 2767 | "node": ">=14.0.0" 2768 | }, 2769 | "peerDependencies": { 2770 | "postcss": "^8.0.0" 2771 | } 2772 | }, 2773 | "node_modules/postcss-js": { 2774 | "version": "4.0.1", 2775 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 2776 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 2777 | "dev": true, 2778 | "dependencies": { 2779 | "camelcase-css": "^2.0.1" 2780 | }, 2781 | "engines": { 2782 | "node": "^12 || ^14 || >= 16" 2783 | }, 2784 | "funding": { 2785 | "type": "opencollective", 2786 | "url": "https://opencollective.com/postcss/" 2787 | }, 2788 | "peerDependencies": { 2789 | "postcss": "^8.4.21" 2790 | } 2791 | }, 2792 | "node_modules/postcss-load-config": { 2793 | "version": "4.0.2", 2794 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 2795 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 2796 | "dev": true, 2797 | "funding": [ 2798 | { 2799 | "type": "opencollective", 2800 | "url": "https://opencollective.com/postcss/" 2801 | }, 2802 | { 2803 | "type": "github", 2804 | "url": "https://github.com/sponsors/ai" 2805 | } 2806 | ], 2807 | "dependencies": { 2808 | "lilconfig": "^3.0.0", 2809 | "yaml": "^2.3.4" 2810 | }, 2811 | "engines": { 2812 | "node": ">= 14" 2813 | }, 2814 | "peerDependencies": { 2815 | "postcss": ">=8.0.9", 2816 | "ts-node": ">=9.0.0" 2817 | }, 2818 | "peerDependenciesMeta": { 2819 | "postcss": { 2820 | "optional": true 2821 | }, 2822 | "ts-node": { 2823 | "optional": true 2824 | } 2825 | } 2826 | }, 2827 | "node_modules/postcss-load-config/node_modules/lilconfig": { 2828 | "version": "3.1.2", 2829 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", 2830 | "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", 2831 | "dev": true, 2832 | "engines": { 2833 | "node": ">=14" 2834 | }, 2835 | "funding": { 2836 | "url": "https://github.com/sponsors/antonk52" 2837 | } 2838 | }, 2839 | "node_modules/postcss-nested": { 2840 | "version": "6.0.1", 2841 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 2842 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 2843 | "dev": true, 2844 | "dependencies": { 2845 | "postcss-selector-parser": "^6.0.11" 2846 | }, 2847 | "engines": { 2848 | "node": ">=12.0" 2849 | }, 2850 | "funding": { 2851 | "type": "opencollective", 2852 | "url": "https://opencollective.com/postcss/" 2853 | }, 2854 | "peerDependencies": { 2855 | "postcss": "^8.2.14" 2856 | } 2857 | }, 2858 | "node_modules/postcss-nested/node_modules/postcss-selector-parser": { 2859 | "version": "6.1.0", 2860 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", 2861 | "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", 2862 | "dev": true, 2863 | "dependencies": { 2864 | "cssesc": "^3.0.0", 2865 | "util-deprecate": "^1.0.2" 2866 | }, 2867 | "engines": { 2868 | "node": ">=4" 2869 | } 2870 | }, 2871 | "node_modules/postcss-selector-parser": { 2872 | "version": "6.0.10", 2873 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", 2874 | "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", 2875 | "dev": true, 2876 | "dependencies": { 2877 | "cssesc": "^3.0.0", 2878 | "util-deprecate": "^1.0.2" 2879 | }, 2880 | "engines": { 2881 | "node": ">=4" 2882 | } 2883 | }, 2884 | "node_modules/postcss-value-parser": { 2885 | "version": "4.2.0", 2886 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 2887 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 2888 | "dev": true 2889 | }, 2890 | "node_modules/prettier": { 2891 | "version": "2.8.8", 2892 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", 2893 | "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", 2894 | "dev": true, 2895 | "bin": { 2896 | "prettier": "bin-prettier.js" 2897 | }, 2898 | "engines": { 2899 | "node": ">=10.13.0" 2900 | }, 2901 | "funding": { 2902 | "url": "https://github.com/prettier/prettier?sponsor=1" 2903 | } 2904 | }, 2905 | "node_modules/prettier-plugin-tailwindcss": { 2906 | "version": "0.1.13", 2907 | "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.13.tgz", 2908 | "integrity": "sha512-/EKQURUrxLu66CMUg4+1LwGdxnz8of7IDvrSLqEtDqhLH61SAlNNUSr90UTvZaemujgl3OH/VHg+fyGltrNixw==", 2909 | "dev": true, 2910 | "engines": { 2911 | "node": ">=12.17.0" 2912 | }, 2913 | "peerDependencies": { 2914 | "prettier": ">=2.2.0" 2915 | } 2916 | }, 2917 | "node_modules/proxy-from-env": { 2918 | "version": "1.1.0", 2919 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 2920 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 2921 | "dev": true 2922 | }, 2923 | "node_modules/queue-microtask": { 2924 | "version": "1.2.3", 2925 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2926 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2927 | "dev": true, 2928 | "funding": [ 2929 | { 2930 | "type": "github", 2931 | "url": "https://github.com/sponsors/feross" 2932 | }, 2933 | { 2934 | "type": "patreon", 2935 | "url": "https://www.patreon.com/feross" 2936 | }, 2937 | { 2938 | "type": "consulting", 2939 | "url": "https://feross.org/support" 2940 | } 2941 | ] 2942 | }, 2943 | "node_modules/read-cache": { 2944 | "version": "1.0.0", 2945 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 2946 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 2947 | "dev": true, 2948 | "dependencies": { 2949 | "pify": "^2.3.0" 2950 | } 2951 | }, 2952 | "node_modules/read-pkg": { 2953 | "version": "3.0.0", 2954 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", 2955 | "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", 2956 | "dev": true, 2957 | "dependencies": { 2958 | "load-json-file": "^4.0.0", 2959 | "normalize-package-data": "^2.3.2", 2960 | "path-type": "^3.0.0" 2961 | }, 2962 | "engines": { 2963 | "node": ">=4" 2964 | } 2965 | }, 2966 | "node_modules/readable-stream": { 2967 | "version": "3.6.2", 2968 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 2969 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 2970 | "dev": true, 2971 | "dependencies": { 2972 | "inherits": "^2.0.3", 2973 | "string_decoder": "^1.1.1", 2974 | "util-deprecate": "^1.0.1" 2975 | }, 2976 | "engines": { 2977 | "node": ">= 6" 2978 | } 2979 | }, 2980 | "node_modules/readdirp": { 2981 | "version": "3.6.0", 2982 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2983 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2984 | "dev": true, 2985 | "dependencies": { 2986 | "picomatch": "^2.2.1" 2987 | }, 2988 | "engines": { 2989 | "node": ">=8.10.0" 2990 | } 2991 | }, 2992 | "node_modules/regexp.prototype.flags": { 2993 | "version": "1.5.2", 2994 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", 2995 | "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", 2996 | "dev": true, 2997 | "dependencies": { 2998 | "call-bind": "^1.0.6", 2999 | "define-properties": "^1.2.1", 3000 | "es-errors": "^1.3.0", 3001 | "set-function-name": "^2.0.1" 3002 | }, 3003 | "engines": { 3004 | "node": ">= 0.4" 3005 | }, 3006 | "funding": { 3007 | "url": "https://github.com/sponsors/ljharb" 3008 | } 3009 | }, 3010 | "node_modules/resolve": { 3011 | "version": "1.22.8", 3012 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3013 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3014 | "dev": true, 3015 | "dependencies": { 3016 | "is-core-module": "^2.13.0", 3017 | "path-parse": "^1.0.7", 3018 | "supports-preserve-symlinks-flag": "^1.0.0" 3019 | }, 3020 | "bin": { 3021 | "resolve": "bin/resolve" 3022 | }, 3023 | "funding": { 3024 | "url": "https://github.com/sponsors/ljharb" 3025 | } 3026 | }, 3027 | "node_modules/restore-cursor": { 3028 | "version": "4.0.0", 3029 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", 3030 | "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", 3031 | "dev": true, 3032 | "dependencies": { 3033 | "onetime": "^5.1.0", 3034 | "signal-exit": "^3.0.2" 3035 | }, 3036 | "engines": { 3037 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3038 | }, 3039 | "funding": { 3040 | "url": "https://github.com/sponsors/sindresorhus" 3041 | } 3042 | }, 3043 | "node_modules/reusify": { 3044 | "version": "1.0.4", 3045 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3046 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3047 | "dev": true, 3048 | "engines": { 3049 | "iojs": ">=1.0.0", 3050 | "node": ">=0.10.0" 3051 | } 3052 | }, 3053 | "node_modules/run-parallel": { 3054 | "version": "1.2.0", 3055 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3056 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3057 | "dev": true, 3058 | "funding": [ 3059 | { 3060 | "type": "github", 3061 | "url": "https://github.com/sponsors/feross" 3062 | }, 3063 | { 3064 | "type": "patreon", 3065 | "url": "https://www.patreon.com/feross" 3066 | }, 3067 | { 3068 | "type": "consulting", 3069 | "url": "https://feross.org/support" 3070 | } 3071 | ], 3072 | "dependencies": { 3073 | "queue-microtask": "^1.2.2" 3074 | } 3075 | }, 3076 | "node_modules/safe-array-concat": { 3077 | "version": "1.1.2", 3078 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", 3079 | "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", 3080 | "dev": true, 3081 | "dependencies": { 3082 | "call-bind": "^1.0.7", 3083 | "get-intrinsic": "^1.2.4", 3084 | "has-symbols": "^1.0.3", 3085 | "isarray": "^2.0.5" 3086 | }, 3087 | "engines": { 3088 | "node": ">=0.4" 3089 | }, 3090 | "funding": { 3091 | "url": "https://github.com/sponsors/ljharb" 3092 | } 3093 | }, 3094 | "node_modules/safe-buffer": { 3095 | "version": "5.2.1", 3096 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3097 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3098 | "dev": true, 3099 | "funding": [ 3100 | { 3101 | "type": "github", 3102 | "url": "https://github.com/sponsors/feross" 3103 | }, 3104 | { 3105 | "type": "patreon", 3106 | "url": "https://www.patreon.com/feross" 3107 | }, 3108 | { 3109 | "type": "consulting", 3110 | "url": "https://feross.org/support" 3111 | } 3112 | ] 3113 | }, 3114 | "node_modules/safe-regex-test": { 3115 | "version": "1.0.3", 3116 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", 3117 | "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", 3118 | "dev": true, 3119 | "dependencies": { 3120 | "call-bind": "^1.0.6", 3121 | "es-errors": "^1.3.0", 3122 | "is-regex": "^1.1.4" 3123 | }, 3124 | "engines": { 3125 | "node": ">= 0.4" 3126 | }, 3127 | "funding": { 3128 | "url": "https://github.com/sponsors/ljharb" 3129 | } 3130 | }, 3131 | "node_modules/semver": { 3132 | "version": "5.7.2", 3133 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 3134 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 3135 | "dev": true, 3136 | "bin": { 3137 | "semver": "bin/semver" 3138 | } 3139 | }, 3140 | "node_modules/set-function-length": { 3141 | "version": "1.2.2", 3142 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 3143 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 3144 | "dev": true, 3145 | "dependencies": { 3146 | "define-data-property": "^1.1.4", 3147 | "es-errors": "^1.3.0", 3148 | "function-bind": "^1.1.2", 3149 | "get-intrinsic": "^1.2.4", 3150 | "gopd": "^1.0.1", 3151 | "has-property-descriptors": "^1.0.2" 3152 | }, 3153 | "engines": { 3154 | "node": ">= 0.4" 3155 | } 3156 | }, 3157 | "node_modules/set-function-name": { 3158 | "version": "2.0.2", 3159 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 3160 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 3161 | "dev": true, 3162 | "dependencies": { 3163 | "define-data-property": "^1.1.4", 3164 | "es-errors": "^1.3.0", 3165 | "functions-have-names": "^1.2.3", 3166 | "has-property-descriptors": "^1.0.2" 3167 | }, 3168 | "engines": { 3169 | "node": ">= 0.4" 3170 | } 3171 | }, 3172 | "node_modules/shebang-command": { 3173 | "version": "1.2.0", 3174 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 3175 | "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", 3176 | "dev": true, 3177 | "dependencies": { 3178 | "shebang-regex": "^1.0.0" 3179 | }, 3180 | "engines": { 3181 | "node": ">=0.10.0" 3182 | } 3183 | }, 3184 | "node_modules/shebang-regex": { 3185 | "version": "1.0.0", 3186 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 3187 | "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", 3188 | "dev": true, 3189 | "engines": { 3190 | "node": ">=0.10.0" 3191 | } 3192 | }, 3193 | "node_modules/shell-quote": { 3194 | "version": "1.8.1", 3195 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", 3196 | "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", 3197 | "dev": true, 3198 | "funding": { 3199 | "url": "https://github.com/sponsors/ljharb" 3200 | } 3201 | }, 3202 | "node_modules/side-channel": { 3203 | "version": "1.0.6", 3204 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 3205 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 3206 | "dev": true, 3207 | "dependencies": { 3208 | "call-bind": "^1.0.7", 3209 | "es-errors": "^1.3.0", 3210 | "get-intrinsic": "^1.2.4", 3211 | "object-inspect": "^1.13.1" 3212 | }, 3213 | "engines": { 3214 | "node": ">= 0.4" 3215 | }, 3216 | "funding": { 3217 | "url": "https://github.com/sponsors/ljharb" 3218 | } 3219 | }, 3220 | "node_modules/signal-exit": { 3221 | "version": "3.0.7", 3222 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3223 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3224 | "dev": true 3225 | }, 3226 | "node_modules/source-map-js": { 3227 | "version": "1.2.0", 3228 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 3229 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 3230 | "dev": true, 3231 | "engines": { 3232 | "node": ">=0.10.0" 3233 | } 3234 | }, 3235 | "node_modules/spdx-correct": { 3236 | "version": "3.2.0", 3237 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 3238 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 3239 | "dev": true, 3240 | "dependencies": { 3241 | "spdx-expression-parse": "^3.0.0", 3242 | "spdx-license-ids": "^3.0.0" 3243 | } 3244 | }, 3245 | "node_modules/spdx-exceptions": { 3246 | "version": "2.5.0", 3247 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", 3248 | "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", 3249 | "dev": true 3250 | }, 3251 | "node_modules/spdx-expression-parse": { 3252 | "version": "3.0.1", 3253 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 3254 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 3255 | "dev": true, 3256 | "dependencies": { 3257 | "spdx-exceptions": "^2.1.0", 3258 | "spdx-license-ids": "^3.0.0" 3259 | } 3260 | }, 3261 | "node_modules/spdx-license-ids": { 3262 | "version": "3.0.18", 3263 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", 3264 | "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", 3265 | "dev": true 3266 | }, 3267 | "node_modules/stdin-discarder": { 3268 | "version": "0.1.0", 3269 | "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.1.0.tgz", 3270 | "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", 3271 | "dev": true, 3272 | "dependencies": { 3273 | "bl": "^5.0.0" 3274 | }, 3275 | "engines": { 3276 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3277 | }, 3278 | "funding": { 3279 | "url": "https://github.com/sponsors/sindresorhus" 3280 | } 3281 | }, 3282 | "node_modules/string_decoder": { 3283 | "version": "1.3.0", 3284 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 3285 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 3286 | "dev": true, 3287 | "dependencies": { 3288 | "safe-buffer": "~5.2.0" 3289 | } 3290 | }, 3291 | "node_modules/string-width": { 3292 | "version": "5.1.2", 3293 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 3294 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3295 | "dev": true, 3296 | "dependencies": { 3297 | "eastasianwidth": "^0.2.0", 3298 | "emoji-regex": "^9.2.2", 3299 | "strip-ansi": "^7.0.1" 3300 | }, 3301 | "engines": { 3302 | "node": ">=12" 3303 | }, 3304 | "funding": { 3305 | "url": "https://github.com/sponsors/sindresorhus" 3306 | } 3307 | }, 3308 | "node_modules/string-width-cjs": { 3309 | "name": "string-width", 3310 | "version": "4.2.3", 3311 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3312 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3313 | "dev": true, 3314 | "dependencies": { 3315 | "emoji-regex": "^8.0.0", 3316 | "is-fullwidth-code-point": "^3.0.0", 3317 | "strip-ansi": "^6.0.1" 3318 | }, 3319 | "engines": { 3320 | "node": ">=8" 3321 | } 3322 | }, 3323 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 3324 | "version": "5.0.1", 3325 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3326 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3327 | "dev": true, 3328 | "engines": { 3329 | "node": ">=8" 3330 | } 3331 | }, 3332 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3333 | "version": "8.0.0", 3334 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3335 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3336 | "dev": true 3337 | }, 3338 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 3339 | "version": "6.0.1", 3340 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3341 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3342 | "dev": true, 3343 | "dependencies": { 3344 | "ansi-regex": "^5.0.1" 3345 | }, 3346 | "engines": { 3347 | "node": ">=8" 3348 | } 3349 | }, 3350 | "node_modules/string.prototype.padend": { 3351 | "version": "3.1.6", 3352 | "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz", 3353 | "integrity": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==", 3354 | "dev": true, 3355 | "dependencies": { 3356 | "call-bind": "^1.0.7", 3357 | "define-properties": "^1.2.1", 3358 | "es-abstract": "^1.23.2", 3359 | "es-object-atoms": "^1.0.0" 3360 | }, 3361 | "engines": { 3362 | "node": ">= 0.4" 3363 | }, 3364 | "funding": { 3365 | "url": "https://github.com/sponsors/ljharb" 3366 | } 3367 | }, 3368 | "node_modules/string.prototype.trim": { 3369 | "version": "1.2.9", 3370 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", 3371 | "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", 3372 | "dev": true, 3373 | "dependencies": { 3374 | "call-bind": "^1.0.7", 3375 | "define-properties": "^1.2.1", 3376 | "es-abstract": "^1.23.0", 3377 | "es-object-atoms": "^1.0.0" 3378 | }, 3379 | "engines": { 3380 | "node": ">= 0.4" 3381 | }, 3382 | "funding": { 3383 | "url": "https://github.com/sponsors/ljharb" 3384 | } 3385 | }, 3386 | "node_modules/string.prototype.trimend": { 3387 | "version": "1.0.8", 3388 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", 3389 | "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", 3390 | "dev": true, 3391 | "dependencies": { 3392 | "call-bind": "^1.0.7", 3393 | "define-properties": "^1.2.1", 3394 | "es-object-atoms": "^1.0.0" 3395 | }, 3396 | "funding": { 3397 | "url": "https://github.com/sponsors/ljharb" 3398 | } 3399 | }, 3400 | "node_modules/string.prototype.trimstart": { 3401 | "version": "1.0.8", 3402 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", 3403 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", 3404 | "dev": true, 3405 | "dependencies": { 3406 | "call-bind": "^1.0.7", 3407 | "define-properties": "^1.2.1", 3408 | "es-object-atoms": "^1.0.0" 3409 | }, 3410 | "engines": { 3411 | "node": ">= 0.4" 3412 | }, 3413 | "funding": { 3414 | "url": "https://github.com/sponsors/ljharb" 3415 | } 3416 | }, 3417 | "node_modules/strip-ansi": { 3418 | "version": "7.1.0", 3419 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3420 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3421 | "dev": true, 3422 | "dependencies": { 3423 | "ansi-regex": "^6.0.1" 3424 | }, 3425 | "engines": { 3426 | "node": ">=12" 3427 | }, 3428 | "funding": { 3429 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3430 | } 3431 | }, 3432 | "node_modules/strip-ansi-cjs": { 3433 | "name": "strip-ansi", 3434 | "version": "6.0.1", 3435 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3436 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3437 | "dev": true, 3438 | "dependencies": { 3439 | "ansi-regex": "^5.0.1" 3440 | }, 3441 | "engines": { 3442 | "node": ">=8" 3443 | } 3444 | }, 3445 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3446 | "version": "5.0.1", 3447 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3448 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3449 | "dev": true, 3450 | "engines": { 3451 | "node": ">=8" 3452 | } 3453 | }, 3454 | "node_modules/strip-bom": { 3455 | "version": "3.0.0", 3456 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3457 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3458 | "dev": true, 3459 | "engines": { 3460 | "node": ">=4" 3461 | } 3462 | }, 3463 | "node_modules/sucrase": { 3464 | "version": "3.35.0", 3465 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 3466 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 3467 | "dev": true, 3468 | "dependencies": { 3469 | "@jridgewell/gen-mapping": "^0.3.2", 3470 | "commander": "^4.0.0", 3471 | "glob": "^10.3.10", 3472 | "lines-and-columns": "^1.1.6", 3473 | "mz": "^2.7.0", 3474 | "pirates": "^4.0.1", 3475 | "ts-interface-checker": "^0.1.9" 3476 | }, 3477 | "bin": { 3478 | "sucrase": "bin/sucrase", 3479 | "sucrase-node": "bin/sucrase-node" 3480 | }, 3481 | "engines": { 3482 | "node": ">=16 || 14 >=14.17" 3483 | } 3484 | }, 3485 | "node_modules/supports-color": { 3486 | "version": "5.5.0", 3487 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3488 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3489 | "dev": true, 3490 | "dependencies": { 3491 | "has-flag": "^3.0.0" 3492 | }, 3493 | "engines": { 3494 | "node": ">=4" 3495 | } 3496 | }, 3497 | "node_modules/supports-preserve-symlinks-flag": { 3498 | "version": "1.0.0", 3499 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3500 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3501 | "dev": true, 3502 | "engines": { 3503 | "node": ">= 0.4" 3504 | }, 3505 | "funding": { 3506 | "url": "https://github.com/sponsors/ljharb" 3507 | } 3508 | }, 3509 | "node_modules/tailwindcss": { 3510 | "version": "3.4.4", 3511 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", 3512 | "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", 3513 | "dev": true, 3514 | "dependencies": { 3515 | "@alloc/quick-lru": "^5.2.0", 3516 | "arg": "^5.0.2", 3517 | "chokidar": "^3.5.3", 3518 | "didyoumean": "^1.2.2", 3519 | "dlv": "^1.1.3", 3520 | "fast-glob": "^3.3.0", 3521 | "glob-parent": "^6.0.2", 3522 | "is-glob": "^4.0.3", 3523 | "jiti": "^1.21.0", 3524 | "lilconfig": "^2.1.0", 3525 | "micromatch": "^4.0.5", 3526 | "normalize-path": "^3.0.0", 3527 | "object-hash": "^3.0.0", 3528 | "picocolors": "^1.0.0", 3529 | "postcss": "^8.4.23", 3530 | "postcss-import": "^15.1.0", 3531 | "postcss-js": "^4.0.1", 3532 | "postcss-load-config": "^4.0.1", 3533 | "postcss-nested": "^6.0.1", 3534 | "postcss-selector-parser": "^6.0.11", 3535 | "resolve": "^1.22.2", 3536 | "sucrase": "^3.32.0" 3537 | }, 3538 | "bin": { 3539 | "tailwind": "lib/cli.js", 3540 | "tailwindcss": "lib/cli.js" 3541 | }, 3542 | "engines": { 3543 | "node": ">=14.0.0" 3544 | } 3545 | }, 3546 | "node_modules/tailwindcss/node_modules/postcss-selector-parser": { 3547 | "version": "6.1.0", 3548 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", 3549 | "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", 3550 | "dev": true, 3551 | "dependencies": { 3552 | "cssesc": "^3.0.0", 3553 | "util-deprecate": "^1.0.2" 3554 | }, 3555 | "engines": { 3556 | "node": ">=4" 3557 | } 3558 | }, 3559 | "node_modules/thenify": { 3560 | "version": "3.3.1", 3561 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3562 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3563 | "dev": true, 3564 | "dependencies": { 3565 | "any-promise": "^1.0.0" 3566 | } 3567 | }, 3568 | "node_modules/thenify-all": { 3569 | "version": "1.6.0", 3570 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3571 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3572 | "dev": true, 3573 | "dependencies": { 3574 | "thenify": ">= 3.1.0 < 4" 3575 | }, 3576 | "engines": { 3577 | "node": ">=0.8" 3578 | } 3579 | }, 3580 | "node_modules/to-regex-range": { 3581 | "version": "5.0.1", 3582 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3583 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3584 | "dev": true, 3585 | "dependencies": { 3586 | "is-number": "^7.0.0" 3587 | }, 3588 | "engines": { 3589 | "node": ">=8.0" 3590 | } 3591 | }, 3592 | "node_modules/ts-interface-checker": { 3593 | "version": "0.1.13", 3594 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3595 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 3596 | "dev": true 3597 | }, 3598 | "node_modules/typed-array-buffer": { 3599 | "version": "1.0.2", 3600 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", 3601 | "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", 3602 | "dev": true, 3603 | "dependencies": { 3604 | "call-bind": "^1.0.7", 3605 | "es-errors": "^1.3.0", 3606 | "is-typed-array": "^1.1.13" 3607 | }, 3608 | "engines": { 3609 | "node": ">= 0.4" 3610 | } 3611 | }, 3612 | "node_modules/typed-array-byte-length": { 3613 | "version": "1.0.1", 3614 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", 3615 | "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", 3616 | "dev": true, 3617 | "dependencies": { 3618 | "call-bind": "^1.0.7", 3619 | "for-each": "^0.3.3", 3620 | "gopd": "^1.0.1", 3621 | "has-proto": "^1.0.3", 3622 | "is-typed-array": "^1.1.13" 3623 | }, 3624 | "engines": { 3625 | "node": ">= 0.4" 3626 | }, 3627 | "funding": { 3628 | "url": "https://github.com/sponsors/ljharb" 3629 | } 3630 | }, 3631 | "node_modules/typed-array-byte-offset": { 3632 | "version": "1.0.2", 3633 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", 3634 | "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", 3635 | "dev": true, 3636 | "dependencies": { 3637 | "available-typed-arrays": "^1.0.7", 3638 | "call-bind": "^1.0.7", 3639 | "for-each": "^0.3.3", 3640 | "gopd": "^1.0.1", 3641 | "has-proto": "^1.0.3", 3642 | "is-typed-array": "^1.1.13" 3643 | }, 3644 | "engines": { 3645 | "node": ">= 0.4" 3646 | }, 3647 | "funding": { 3648 | "url": "https://github.com/sponsors/ljharb" 3649 | } 3650 | }, 3651 | "node_modules/typed-array-length": { 3652 | "version": "1.0.6", 3653 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", 3654 | "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", 3655 | "dev": true, 3656 | "dependencies": { 3657 | "call-bind": "^1.0.7", 3658 | "for-each": "^0.3.3", 3659 | "gopd": "^1.0.1", 3660 | "has-proto": "^1.0.3", 3661 | "is-typed-array": "^1.1.13", 3662 | "possible-typed-array-names": "^1.0.0" 3663 | }, 3664 | "engines": { 3665 | "node": ">= 0.4" 3666 | }, 3667 | "funding": { 3668 | "url": "https://github.com/sponsors/ljharb" 3669 | } 3670 | }, 3671 | "node_modules/unbox-primitive": { 3672 | "version": "1.0.2", 3673 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3674 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3675 | "dev": true, 3676 | "dependencies": { 3677 | "call-bind": "^1.0.2", 3678 | "has-bigints": "^1.0.2", 3679 | "has-symbols": "^1.0.3", 3680 | "which-boxed-primitive": "^1.0.2" 3681 | }, 3682 | "funding": { 3683 | "url": "https://github.com/sponsors/ljharb" 3684 | } 3685 | }, 3686 | "node_modules/update-browserslist-db": { 3687 | "version": "1.0.16", 3688 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", 3689 | "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", 3690 | "dev": true, 3691 | "funding": [ 3692 | { 3693 | "type": "opencollective", 3694 | "url": "https://opencollective.com/browserslist" 3695 | }, 3696 | { 3697 | "type": "tidelift", 3698 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3699 | }, 3700 | { 3701 | "type": "github", 3702 | "url": "https://github.com/sponsors/ai" 3703 | } 3704 | ], 3705 | "dependencies": { 3706 | "escalade": "^3.1.2", 3707 | "picocolors": "^1.0.1" 3708 | }, 3709 | "bin": { 3710 | "update-browserslist-db": "cli.js" 3711 | }, 3712 | "peerDependencies": { 3713 | "browserslist": ">= 4.21.0" 3714 | } 3715 | }, 3716 | "node_modules/util-deprecate": { 3717 | "version": "1.0.2", 3718 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3719 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3720 | "dev": true 3721 | }, 3722 | "node_modules/validate-npm-package-license": { 3723 | "version": "3.0.4", 3724 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 3725 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 3726 | "dev": true, 3727 | "dependencies": { 3728 | "spdx-correct": "^3.0.0", 3729 | "spdx-expression-parse": "^3.0.0" 3730 | } 3731 | }, 3732 | "node_modules/wcwidth": { 3733 | "version": "1.0.1", 3734 | "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", 3735 | "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", 3736 | "dev": true, 3737 | "dependencies": { 3738 | "defaults": "^1.0.3" 3739 | } 3740 | }, 3741 | "node_modules/which": { 3742 | "version": "1.3.1", 3743 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 3744 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 3745 | "dev": true, 3746 | "dependencies": { 3747 | "isexe": "^2.0.0" 3748 | }, 3749 | "bin": { 3750 | "which": "bin/which" 3751 | } 3752 | }, 3753 | "node_modules/which-boxed-primitive": { 3754 | "version": "1.0.2", 3755 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3756 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3757 | "dev": true, 3758 | "dependencies": { 3759 | "is-bigint": "^1.0.1", 3760 | "is-boolean-object": "^1.1.0", 3761 | "is-number-object": "^1.0.4", 3762 | "is-string": "^1.0.5", 3763 | "is-symbol": "^1.0.3" 3764 | }, 3765 | "funding": { 3766 | "url": "https://github.com/sponsors/ljharb" 3767 | } 3768 | }, 3769 | "node_modules/which-typed-array": { 3770 | "version": "1.1.15", 3771 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", 3772 | "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", 3773 | "dev": true, 3774 | "dependencies": { 3775 | "available-typed-arrays": "^1.0.7", 3776 | "call-bind": "^1.0.7", 3777 | "for-each": "^0.3.3", 3778 | "gopd": "^1.0.1", 3779 | "has-tostringtag": "^1.0.2" 3780 | }, 3781 | "engines": { 3782 | "node": ">= 0.4" 3783 | }, 3784 | "funding": { 3785 | "url": "https://github.com/sponsors/ljharb" 3786 | } 3787 | }, 3788 | "node_modules/wrap-ansi": { 3789 | "version": "8.1.0", 3790 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3791 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3792 | "dev": true, 3793 | "dependencies": { 3794 | "ansi-styles": "^6.1.0", 3795 | "string-width": "^5.0.1", 3796 | "strip-ansi": "^7.0.1" 3797 | }, 3798 | "engines": { 3799 | "node": ">=12" 3800 | }, 3801 | "funding": { 3802 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3803 | } 3804 | }, 3805 | "node_modules/wrap-ansi-cjs": { 3806 | "name": "wrap-ansi", 3807 | "version": "7.0.0", 3808 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3809 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3810 | "dev": true, 3811 | "dependencies": { 3812 | "ansi-styles": "^4.0.0", 3813 | "string-width": "^4.1.0", 3814 | "strip-ansi": "^6.0.0" 3815 | }, 3816 | "engines": { 3817 | "node": ">=10" 3818 | }, 3819 | "funding": { 3820 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3821 | } 3822 | }, 3823 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3824 | "version": "5.0.1", 3825 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3826 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3827 | "dev": true, 3828 | "engines": { 3829 | "node": ">=8" 3830 | } 3831 | }, 3832 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 3833 | "version": "4.3.0", 3834 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3835 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3836 | "dev": true, 3837 | "dependencies": { 3838 | "color-convert": "^2.0.1" 3839 | }, 3840 | "engines": { 3841 | "node": ">=8" 3842 | }, 3843 | "funding": { 3844 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3845 | } 3846 | }, 3847 | "node_modules/wrap-ansi-cjs/node_modules/color-convert": { 3848 | "version": "2.0.1", 3849 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 3850 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 3851 | "dev": true, 3852 | "dependencies": { 3853 | "color-name": "~1.1.4" 3854 | }, 3855 | "engines": { 3856 | "node": ">=7.0.0" 3857 | } 3858 | }, 3859 | "node_modules/wrap-ansi-cjs/node_modules/color-name": { 3860 | "version": "1.1.4", 3861 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 3862 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 3863 | "dev": true 3864 | }, 3865 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3866 | "version": "8.0.0", 3867 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3868 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3869 | "dev": true 3870 | }, 3871 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3872 | "version": "4.2.3", 3873 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3874 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3875 | "dev": true, 3876 | "dependencies": { 3877 | "emoji-regex": "^8.0.0", 3878 | "is-fullwidth-code-point": "^3.0.0", 3879 | "strip-ansi": "^6.0.1" 3880 | }, 3881 | "engines": { 3882 | "node": ">=8" 3883 | } 3884 | }, 3885 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3886 | "version": "6.0.1", 3887 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3888 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3889 | "dev": true, 3890 | "dependencies": { 3891 | "ansi-regex": "^5.0.1" 3892 | }, 3893 | "engines": { 3894 | "node": ">=8" 3895 | } 3896 | }, 3897 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3898 | "version": "6.2.1", 3899 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 3900 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 3901 | "dev": true, 3902 | "engines": { 3903 | "node": ">=12" 3904 | }, 3905 | "funding": { 3906 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3907 | } 3908 | }, 3909 | "node_modules/yaml": { 3910 | "version": "2.4.5", 3911 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz", 3912 | "integrity": "sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==", 3913 | "dev": true, 3914 | "bin": { 3915 | "yaml": "bin.mjs" 3916 | }, 3917 | "engines": { 3918 | "node": ">= 14" 3919 | } 3920 | } 3921 | } 3922 | } 3923 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | "postcss-import": {}, 4 | "tailwindcss/nesting": {}, 5 | tailwindcss: {}, 6 | autoprefixer: {}, 7 | }, 8 | } 9 | -------------------------------------------------------------------------------- /resources/css/index.css: -------------------------------------------------------------------------------- 1 | /*@import '../../vendor/filament/filament/resources/css/theme.css';*/ 2 | 3 | @tailwind utilities; -------------------------------------------------------------------------------- /resources/dist/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithDennis/filament-simple-alert/50bb18626b8b6c3b9780a778e9781f726574e1e7/resources/dist/.gitkeep -------------------------------------------------------------------------------- /resources/dist/filament-simple-alert.css: -------------------------------------------------------------------------------- 1 | .-m-0{margin:0}.-ms-0{margin-inline-start:0}.mt-0{margin-top:0}.h-1{height:.25rem}.\!bg-gray-50,.\!bg-gray-700{--tw-bg-opacity:1!important}.bg-gray-400,.bg-gray-50{--tw-bg-opacity:1}.px-0{padding-left:0;padding-right:0}.py-0{padding-top:0;padding-bottom:0}.before\:w-0:before{content:var(--tw-content);width:0}.focus-visible\:ring-1:focus-visible,.focus-visible\:ring-2:focus-visible{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.400\)\]:disabled::-moz-placeholder,.disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.400\)\]:disabled::placeholder{-webkit-text-fill-color:rgba(var(--gray-400),1)}.group\/item:focus-visible .group-focus-visible\/item\:underline,.group\/link:focus-visible .group-focus-visible\/link\:underline{text-decoration-line:underline}.dark\:disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.500\)\]:disabled:is(.dark *)::-moz-placeholder,.dark\:disabled\:placeholder\:\[-webkit-text-fill-color\:theme\(colors\.gray\.500\)\]:disabled:is(.dark *)::placeholder{-webkit-text-fill-color:rgba(var(--gray-500),1)}@media (min-width:640px){.sm\:py-1{padding-top:.25rem;padding-bottom:.25rem}.sm\:pt-1{padding-top:.25rem}}:checked+*>.\[\:checked\+\*\>\&\]\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}input:checked+.\[input\:checked\+\&\]\:bg-custom-600{--tw-bg-opacity:1;background-color:rgba(var(--c-600),var(--tw-bg-opacity))}input:checked+.\[input\:checked\+\&\]\:bg-gray-400{--tw-bg-opacity:1;background-color:rgba(var(--gray-400),var(--tw-bg-opacity))}input:checked+.\[input\:checked\+\&\]\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}input:checked+.\[input\:checked\+\&\]\:ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}input:checked+.\[input\:checked\+\&\]\:hover\:bg-custom-500:hover{--tw-bg-opacity:1;background-color:rgba(var(--c-500),var(--tw-bg-opacity))}input:checked+.\[input\:checked\+\&\]\:hover\:bg-gray-300:hover{--tw-bg-opacity:1;background-color:rgba(var(--gray-300),var(--tw-bg-opacity))}input:checked+.dark\:\[input\:checked\+\&\]\:bg-custom-500:is(.dark *){--tw-bg-opacity:1;background-color:rgba(var(--c-500),var(--tw-bg-opacity))}input:checked+.dark\:\[input\:checked\+\&\]\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgba(var(--gray-600),var(--tw-bg-opacity))}input:checked+.dark\:\[input\:checked\+\&\]\:hover\:bg-custom-400:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgba(var(--c-400),var(--tw-bg-opacity))}input:checked+.dark\:\[input\:checked\+\&\]\:hover\:bg-gray-500:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgba(var(--gray-500),var(--tw-bg-opacity))}input:checked:focus-visible+.\[input\:checked\:focus-visible\+\&\]\:ring-custom-500\/50{--tw-ring-color:rgba(var(--c-500),0.5)}input:checked:focus-visible+.dark\:\[input\:checked\:focus-visible\+\&\]\:ring-custom-400\/50:is(.dark *){--tw-ring-color:rgba(var(--c-400),0.5)}input:focus-visible+.\[input\:focus-visible\+\&\]\:z-10{z-index:10}input:focus-visible+.\[input\:focus-visible\+\&\]\:ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}input:focus-visible+.\[input\:focus-visible\+\&\]\:ring-gray-950\/10{--tw-ring-color:rgba(var(--gray-950),0.1)}input:focus-visible+.dark\:\[input\:focus-visible\+\&\]\:ring-white\/20:is(.dark *){--tw-ring-color:#fff3} -------------------------------------------------------------------------------- /resources/dist/filament-simple-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithDennis/filament-simple-alert/50bb18626b8b6c3b9780a778e9781f726574e1e7/resources/dist/filament-simple-alert.js -------------------------------------------------------------------------------- /resources/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithDennis/filament-simple-alert/50bb18626b8b6c3b9780a778e9781f726574e1e7/resources/js/index.js -------------------------------------------------------------------------------- /resources/screenshots/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithDennis/filament-simple-alert/50bb18626b8b6c3b9780a778e9781f726574e1e7/resources/screenshots/thumbnail.png -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithDennis/filament-simple-alert/50bb18626b8b6c3b9780a778e9781f726574e1e7/resources/views/.gitkeep -------------------------------------------------------------------------------- /resources/views/components/simple-alert-entry.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /resources/views/components/simple-alert-field.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /resources/views/components/simple-alert.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'actions' => null, 3 | 'actionsVerticalAlignment' => 'center', 4 | 'border' => false, 5 | 'color' => null, 6 | 'description' => null, 7 | 'icon' => null, 8 | 'iconVerticalAlignment' => 'center', 9 | 'link' => null, 10 | 'linkBlank' => false, 11 | 'linkLabel' => null, 12 | 'title' => null, 13 | ]) 14 | 15 | @php 16 | use function Filament\Support\get_color_css_variables; 17 | 18 | $colors = \Illuminate\Support\Arr::toCssStyles([ 19 | get_color_css_variables($color, shades: [50, 100, 400, 500, 700, 800]), 20 | ]); 21 | @endphp 22 | 23 |
class([ 25 | 'filament-simple-alert rounded-md bg-custom-50 p-4 dark:bg-custom-400/10', 26 | 'ring-1 ring-custom-100 dark:ring-custom-500/70' => $border, 27 | ]) }} 28 | style="{{ $colors }}"> 29 |
30 | @if($icon) 31 |
35 | 39 |
40 | @endif 41 |
42 | @if($title || $description) 43 |
44 | @if($title) 45 |

46 | {{ $title }} 47 |

48 | @endif 49 | @if($description) 50 |

51 | {{ $description }} 52 |

53 | @endif 54 |
55 | @endif 56 | @if($link || $actions) 57 |
61 |
62 | @if($link) 63 |

64 | 65 | {{ $linkLabel }} 66 | 67 | 68 |

69 | @endif 70 | @if($actions) 71 |
72 | @foreach ($actions as $action) 73 | @if ($action->isVisible()) 74 | {{ $action }} 75 | @endif 76 | @endforeach 77 |
78 | @endif 79 |
80 |
81 | @endif 82 |
83 |
84 |
85 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasActionVerticalAlignment.php: -------------------------------------------------------------------------------- 1 | actionsVerticalAlignment = $actionsVerticalAlignment; 14 | 15 | return $this; 16 | } 17 | 18 | public function getActionsVerticalAlignment(): ?string 19 | { 20 | return $this->evaluate($this->actionsVerticalAlignment); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasBorder.php: -------------------------------------------------------------------------------- 1 | border = $condition; 14 | 15 | return $this; 16 | } 17 | 18 | public function getBorder(): bool 19 | { 20 | return $this->evaluate($this->border); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasColor.php: -------------------------------------------------------------------------------- 1 | color = $color; 14 | 15 | return $this; 16 | } 17 | 18 | public function getColor(): string 19 | { 20 | return $this->evaluate($this->color); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasDescription.php: -------------------------------------------------------------------------------- 1 | description = $description; 15 | 16 | return $this; 17 | } 18 | 19 | public function getDescription(): string|Htmlable|null 20 | { 21 | return $this->evaluate($this->description); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasIcon.php: -------------------------------------------------------------------------------- 1 | icon = $icon; 15 | 16 | return $this; 17 | } 18 | 19 | public function getIcon(): string|Htmlable|null 20 | { 21 | return $this->evaluate($this->icon); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasIconVerticalAlignment.php: -------------------------------------------------------------------------------- 1 | iconVerticalAlignment = $iconVerticalAlignment; 14 | 15 | return $this; 16 | } 17 | 18 | public function getIconVerticalAlignment(): ?string 19 | { 20 | return $this->evaluate($this->iconVerticalAlignment); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasLink.php: -------------------------------------------------------------------------------- 1 | link = $link; 21 | 22 | return $this; 23 | } 24 | 25 | /** 26 | * @deprecated Use `actions()` instead. 27 | */ 28 | public function linkLabel(Closure|string $linkLabel): static 29 | { 30 | $this->linkLabel = $linkLabel; 31 | 32 | return $this; 33 | } 34 | 35 | /** 36 | * @deprecated Use `actions()` instead. 37 | */ 38 | public function linkBlank(Closure|string $linkBlank): static 39 | { 40 | $this->linkBlank = $linkBlank; 41 | 42 | return $this; 43 | } 44 | 45 | public function getLink(): ?string 46 | { 47 | return $this->evaluate($this->link); 48 | } 49 | 50 | public function getLinkLabel(): string 51 | { 52 | return $this->evaluate($this->linkLabel); 53 | } 54 | 55 | public function getLinkBlank(): bool 56 | { 57 | return $this->evaluate($this->linkBlank); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasSimple.php: -------------------------------------------------------------------------------- 1 | color = 'danger'; 10 | $this->icon = 'heroicon-s-x-circle'; 11 | 12 | return $this; 13 | } 14 | 15 | public function info(): static 16 | { 17 | $this->color = 'info'; 18 | $this->icon = 'heroicon-s-information-circle'; 19 | 20 | return $this; 21 | } 22 | 23 | public function success(): static 24 | { 25 | $this->color = 'success'; 26 | $this->icon = 'heroicon-s-check-circle'; 27 | 28 | return $this; 29 | } 30 | 31 | public function warning(): static 32 | { 33 | $this->color = 'warning'; 34 | $this->icon = 'heroicon-s-exclamation-triangle'; 35 | 36 | return $this; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/Components/Concerns/HasTitle.php: -------------------------------------------------------------------------------- 1 | title = $title; 15 | 16 | return $this; 17 | } 18 | 19 | public function getTitle(): string|Htmlable|null 20 | { 21 | return $this->evaluate($this->title); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Components/Forms/SimpleAlert.php: -------------------------------------------------------------------------------- 1 | actions = $actions; 34 | 35 | return $this; 36 | } 37 | 38 | protected function setUp(): void 39 | { 40 | parent::setUp(); 41 | 42 | $this->dehydrated(false) 43 | ->hiddenLabel(); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/Components/Infolists/SimpleAlert.php: -------------------------------------------------------------------------------- 1 | actions = $actions; 34 | 35 | return $this; 36 | } 37 | 38 | protected function setUp(): void 39 | { 40 | parent::setUp(); 41 | 42 | $this->hiddenLabel(); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/Facades/SimpleAlert.php: -------------------------------------------------------------------------------- 1 | getId()); 34 | 35 | return $plugin; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/SimpleAlertServiceProvider.php: -------------------------------------------------------------------------------- 1 | name(static::$name) 18 | ->hasInstallCommand(function (InstallCommand $command) { 19 | $command->askToStarRepoOnGitHub('codewithdennis/filament-simple-alert'); 20 | }); 21 | 22 | if (file_exists($package->basePath('/../resources/views'))) { 23 | $package->hasViews(static::$viewNamespace); 24 | } 25 | } 26 | 27 | protected function getAssetPackageName(): ?string 28 | { 29 | return 'codewithdennis/filament-simple-alert'; 30 | } 31 | } 32 | --------------------------------------------------------------------------------