diff --git a/backend/Dockerfile b/backend/Dockerfile index 3739bdef3..2bf6cf00f 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ #syntax=docker/dockerfile:1 -FROM dunglas/frankenphp:1.8.0-php8.3-bookworm AS build +FROM dunglas/frankenphp:1.11.3-php8.3-bookworm AS build RUN apt-get update && apt-get install -y --no-install-recommends supervisor diff --git a/backend/app/Console/Kernel.php b/backend/app/Console/Kernel.php index ea6f165c8..3e4c3daa9 100644 --- a/backend/app/Console/Kernel.php +++ b/backend/app/Console/Kernel.php @@ -6,7 +6,6 @@ use App\Jobs\CalculateModCounts; use App\Jobs\CalculatePopularity; use App\Jobs\CalculateThreadComments; -use App\Jobs\CheckUsersSubscriptionStatus; use App\Jobs\DeleteLoosePendingFiles; use App\Jobs\DeleteOldAuditLogs; use App\Jobs\DeleteUnverifiedUsers; @@ -39,7 +38,6 @@ protected function schedule(Schedule $schedule) $schedule->job(new DeleteOldAuditLogs)->everySixHours(); $schedule->job(new CalculateThreadComments)->everyTwoHours(); $schedule->job(new RemoveExpiredRequests)->everyTwoHours(); - $schedule->job(new CheckUsersSubscriptionStatus)->everyThirtyMinutes(); $schedule->job(new DeleteLoosePendingFiles)->everyThreeMinutes(); $schedule->command('sitemap:generate')->everyTwoHours(); diff --git a/backend/app/Http/Controllers/ModController.php b/backend/app/Http/Controllers/ModController.php index a252e56b6..9f6853171 100644 --- a/backend/app/Http/Controllers/ModController.php +++ b/backend/app/Http/Controllers/ModController.php @@ -26,6 +26,7 @@ use App\Services\Utils; use Arr; use Auth; +use Carbon\Carbon; use DB; use Illuminate\Contracts\Auth\Authenticatable; use Illuminate\Http\Request; @@ -369,7 +370,9 @@ public function registerView(Request $request, Mod $mod) return; } - $view = new ModView(); + $view = new ModView([ + 'created_at' => Carbon::now() + ]); $view->mod_id = $mod->id; if (isset($user)) { $view->user_id = $user->id; diff --git a/backend/app/Http/Controllers/SupporterController.php b/backend/app/Http/Controllers/SupporterController.php index e60e6fc2e..882d38680 100644 --- a/backend/app/Http/Controllers/SupporterController.php +++ b/backend/app/Http/Controllers/SupporterController.php @@ -8,10 +8,16 @@ use Carbon\Carbon; use Illuminate\Http\Request; use App\Http\Resources\BaseResource; -use App\Models\Subscription; +use App\Models\SupporterPackage; +use App\Models\SupporterSubscription; +use App\Models\SupporterTransaction; +use App\Models\User; use App\Services\APIService; -use Illuminate\Http\Response; +const PAYMENT_STATUS = [ + 1 => 'complete', + 2 => 'refunded' +]; /** * @group Supporters */ @@ -103,14 +109,122 @@ public function destroy(Supporter $supporter) $supporter->delete(); } - /** - * Checks nitro to update the subscription data - * - * @authenticated - * - * @hideFromApiDocumentation - */ - public function nitroCheck() { - return APIService::nitroCheck($this->user()); - } + // public function getTebexProject() { + // return Headless::setProject(env('TEBEX_PUBLIC_KEY')); + // } + + // public function createTebexBasketWithPackage(Request $request) { + // $val = $request->validate([ + // 'supporter_package_id' => "int|required|exists:supporter_packages,id" + // ]); + + // Checkout::setApiKeys(env('TEBEX_PROJECT_ID'), env('TEBEX_PRIVATE_KEY')); + + // $userId = $this->userId(); + // $package = SupporterPackage::find($val['supporter_package_id']); + + // $project = $this->getTebexProject(); + // $basket = $project->createBasket(env('TEBEX_RETURN_URL'), env('TEBEX_RETURN_URL')); + + // $basket->addPackage($project->getPackage($package->package_id)); + // $basket = $basket->getBasket(); + // $ident = $basket->getIdent(); + + // SupporterSubscription::create([ // Save the basket in the DB so we know who initiated this basket and who to give it to when webhook sends purchase complete + // 'user_id' => $userId, + // 'supporter_package_id' => $package->id, + // 'price' => $package->price, + // 'status' => 'waiting', + // 'provider' => 'tebex', + // 'provider_id' => 'tbx-r-'.$basket->getId() + // ]); + + // return ['ident' => $ident]; + // } + + // public function tebexWebhook() { + // // Issue: Tebex uses REMOTE_ADDR to ensure the IP is not tempered with + // // This however isn't an issue on our end as we use a Proxy and replace that header with Caddy + // if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + // $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR']; + // } + + // Webhooks::setSecretKey(env('TEBEX_WEBHOOK_SECRET_KEY')); + + // $json = file_get_contents('php://input'); + // $webhook = Webhook::parse($json); + + // // Respond to validation endpoint + // if ($webhook->isType(\Tebex\Webhook\VALIDATION_WEBHOOK)) { + // return ["id" => $webhook->getId()]; + // } else if ($webhook->isTypeOfPayment()) { + // /** + // * @var PaymentSubject + // */ + // $subject = $webhook->getSubject(); + // $prod = $subject->getProducts()[0]; + // $ref = $subject->getRecurringPaymentReference(); + // $sub = SupporterSubscription::find($ref); + + // assert(isset($sub), "Reference {$ref} does not exist on site. Fix manually."); + + // $user = User::find($sub->user_id); + // $expiryDate = Carbon::parse($prod->getExpiresAt()); + + // $transId = $subject->getTransactionId(); + // $trans = SupporterTransaction::where('provider', 'tebex')->where('provider_id', $transId); + // if (!isset($trans)) { + // $trans = SupporterTransaction::create([ + // 'user_id' => $user->id, + // 'supporter_package_id' => $sub->supporter_package_id, + // 'supporter_subcription_id' => $sub->id, + // 'price' => $sub->price, + // 'status' => 'complete', + // 'provider' => 'tebex', + // 'provider_id' => $subject->getTransactionId() + // ]); + // } + // $trans->update([ + // 'status' => PAYMENT_STATUS[$subject->getStatus()] ?? 'failed' + // ]); + + // switch ($webhook->getType()) { + // case PAYMENT_COMPLETED: + // Supporter::create([ + // 'supporter_transaction_id' => $trans->id, + // 'user_id' => $user->id, + // 'expire_date' => Carbon::create($expiryDate), + // 'expired' => false + // ]); + // break; + // case PAYMENT_DECLINED: + // case PAYMENT_REFUNDED: + // if (isset($trans->supporter)) { + // $trans->supporter->expired = true; + // $trans->supporter->save(); + // } + // break; + // } + // } else if ($webhook->isTypeOfRecurringPayment()) { + // /** + // * @var RecurringPaymentSubject + // */ + // $subject = $webhook->getSubject(); + // $ref = $subject->getReference(); + // $sub = SupporterSubscription::find($ref); + + // assert(isset($sub), "Reference {$ref} does not exist on site. Fix manually."); + + // switch ($webhook->getType()) { + // case RECURRING_PAYMENT_STARTED: + // case RECURRING_PAYMENT_RENEWED: + // case RECURRING_PAYMENT_CANCELLATION_ABORTED: + // $sub->update(['status' => 'active', 'next_payment_at' => $subject->getNextPaymentAt()]); + // break; + // case RECURRING_PAYMENT_CANCELLATION_REQUESTED: + // $sub->update(['status' => 'cancelled', 'next_payment_at' => null]); + // break; + // } + // } + // } } diff --git a/backend/app/Http/Controllers/SupporterPackageController.php b/backend/app/Http/Controllers/SupporterPackageController.php new file mode 100644 index 000000000..08feb5649 --- /dev/null +++ b/backend/app/Http/Controllers/SupporterPackageController.php @@ -0,0 +1,78 @@ +authorizeResource(SupporterPackage::class, 'supporter_package'); + } + + /** + * Display a listing of the resource. + */ + public function index(FilteredRequest $request) + { + $val = $request->val(); + return BaseResource::collectionResponse(SupporterPackage::queryGet($val, fn($q) => $q->orderBy('order'))); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $val = $request->validate([ + 'name' => 'string|min:1', + 'order' => 'int', + 'enabled' => 'boolean', + 'package_id' => "int|required", + 'price' => 'int|required', + 'duration_type' => 'in:mo,y,w,d', + 'duration_number' => 'int|min:1|max:120', + ]); + + return SupporterPackage::create($val); + } + + /** + * Display the specified resource. + */ + public function show(SupporterPackage $supporterPackage) + { + return $supporterPackage; + } + + /** + * Update the specified resource in storage. + */ + public function update(Request $request, SupporterPackage $supporterPackage) + { + $val = $request->validate([ + 'name' => 'string|min:1|nullable', + 'order' => 'int|nullable', + 'enabled' => 'boolean|nullable', + 'package_id' => "int|nullable", + 'price' => 'int|nullable', + 'duration_type' => 'in:mo,y,w,d|nullable', + 'duration_number' => 'int|min:1|max:120|nullable', + ]); + + $supporterPackage->update($val); + return $supporterPackage; + } + + /** + * Remove the specified resource from storage. + */ + public function destroy(SupporterPackage $supporterPackage) + { + $supporterPackage->delete(); + } +} diff --git a/backend/app/Http/Middleware/UserAuth.php b/backend/app/Http/Middleware/UserAuth.php index 9f033aafe..f1a77cef9 100644 --- a/backend/app/Http/Middleware/UserAuth.php +++ b/backend/app/Http/Middleware/UserAuth.php @@ -43,15 +43,6 @@ public function handle(Request $request, Closure $next) // Update the last online every 5 minutes or so. if (isset($user)) { - $signer = new \NitroPaySponsor\Signer(env('NITRO_TOKEN')); - - $user->nitroToken = $signer->sign([ - 'siteId' => '92', // required - 'userId' => $user->id, // required - ]); - - // \Log::info((array)$signer->getUserSubscription($user?->id)); - if (!isset($user->last_online) || $user->last_online->diffInSeconds($now) > 60) { $user->update([ 'last_online' => $now, diff --git a/backend/app/Http/Requests/GetModsRequest.php b/backend/app/Http/Requests/GetModsRequest.php index 7d7762096..d10d932b3 100644 --- a/backend/app/Http/Requests/GetModsRequest.php +++ b/backend/app/Http/Requests/GetModsRequest.php @@ -53,6 +53,8 @@ public function rules() 'categories.*' => 'integer|min:1|nullable', 'block_tags' => 'array|max:10', 'block_tags.*' => 'integer|min:1|nullable', + 'exclude_game_ids' => 'array|max:10', + 'exclude_game_ids.*' => 'integer|min:1|nullable', 'user_id' => 'integer|nullable|min:1', 'collab' => 'boolean|nullable', 'including_ignored' => 'boolean|nullable', diff --git a/backend/app/Jobs/CheckUsersSubscriptionStatus.php b/backend/app/Jobs/CheckUsersSubscriptionStatus.php deleted file mode 100644 index 6efb0b5fe..000000000 --- a/backend/app/Jobs/CheckUsersSubscriptionStatus.php +++ /dev/null @@ -1,37 +0,0 @@ -chunk(1000, function(Collection $users) { - foreach($users as $user) { - APIService::nitroCheck($user); - } - }); - } -} diff --git a/backend/app/Models/Supporter.php b/backend/app/Models/Supporter.php index 5798d1e9b..3c71554e4 100644 --- a/backend/app/Models/Supporter.php +++ b/backend/app/Models/Supporter.php @@ -51,4 +51,8 @@ public function user(): BelongsTo { return $this->belongsTo(User::class)->without('supporter'); } + + public function supporterTransaction() { + return $this->hasOne(SupporterTransaction::class); + } } diff --git a/backend/app/Models/SupporterPackage.php b/backend/app/Models/SupporterPackage.php new file mode 100644 index 000000000..814f7bb53 --- /dev/null +++ b/backend/app/Models/SupporterPackage.php @@ -0,0 +1,14 @@ +belongsTo(Supporter::class); + } + + public function user() { + return $this->hasOne(User::class); + } +} diff --git a/backend/app/Models/SupporterTransaction.php b/backend/app/Models/SupporterTransaction.php new file mode 100644 index 000000000..8803dd2e0 --- /dev/null +++ b/backend/app/Models/SupporterTransaction.php @@ -0,0 +1,18 @@ +belongsTo(Supporter::class); + } + + public function user() { + return $this->hasOne(User::class); + } +} diff --git a/backend/app/Models/Thread.php b/backend/app/Models/Thread.php index 96d0cfccc..a44e71036 100644 --- a/backend/app/Models/Thread.php +++ b/backend/app/Models/Thread.php @@ -115,7 +115,7 @@ */ class Thread extends Model implements SubscribableInterface { - use HasFactory, Subscribable, Reportable, Cachable; + use HasFactory, Subscribable, Reportable; protected $with = ['user', 'lastUser', 'category', 'game', 'tags']; protected $saveToReport = ['content']; diff --git a/backend/app/Policies/ModPolicy.php b/backend/app/Policies/ModPolicy.php index e305a7438..9f0767dc8 100644 --- a/backend/app/Policies/ModPolicy.php +++ b/backend/app/Policies/ModPolicy.php @@ -173,7 +173,7 @@ public function forceDelete(User $user, Mod $mod) public function createComment(User $user, Mod $mod) { if (!$user->hasPermission('create-discussions', $mod->game) || $mod->user->blockedMe) { - return false; + return $this->update($user, $mod); } if ($mod->comments_disabled) { diff --git a/backend/app/Policies/SupporterPackagePolicy.php b/backend/app/Policies/SupporterPackagePolicy.php new file mode 100644 index 000000000..f5a35cd38 --- /dev/null +++ b/backend/app/Policies/SupporterPackagePolicy.php @@ -0,0 +1,66 @@ +hasPermission('admin'); + } + + /** + * Determine whether the user can update the model. + */ + public function update(User $user, SupporterPackage $supporterPackage): bool + { + return $user->hasPermission('admin'); + } + + /** + * Determine whether the user can delete the model. + */ + public function delete(User $user, SupporterPackage $supporterPackage): bool + { + return $user->hasPermission('admin'); + } + + /** + * Determine whether the user can restore the model. + */ + public function restore(User $user, SupporterPackage $supporterPackage): bool + { + return false; + } + + /** + * Determine whether the user can permanently delete the model. + */ + public function forceDelete(User $user, SupporterPackage $supporterPackage): bool + { + return false; + } +} diff --git a/backend/app/Services/APIService.php b/backend/app/Services/APIService.php index b06392877..c7c4e9ea8 100644 --- a/backend/app/Services/APIService.php +++ b/backend/app/Services/APIService.php @@ -399,35 +399,6 @@ public static function adminData(Game $game = null) return $arr; } - public static function nitroCheck(User $user) { - $signer = new \NitroPaySponsor\Signer(env('NITRO_TOKEN')); - - $user->nitroToken = $signer->sign([ - 'siteId' => '92', // required - 'userId' => $user->id, // required - ]); - - $subInfo = $signer->getUserSubscription($user?->id); - $registeredSub = Supporter::where('provider', 'nitro')->where('user_id', $user->id)->first(); - - if (!isset($registeredSub)) { - if ($subInfo && $subInfo->status == 'active') { - $registeredSub = Supporter::create([ - 'provider' => 'nitro', - 'user_id' => $user->id - ]); - } else { - return; - } - } - - $registeredSub->expire_date = Carbon::create($subInfo->subscribedUntil); - $registeredSub->expired = $subInfo->status != 'active'; - $registeredSub->save(); - - return $registeredSub; - } - public static function checkCaptcha(Request $request) { if (app()->isProduction() && !empty(env('HCAPTCHA_SITEKEY'))) { $request->validate([ diff --git a/backend/app/Services/ModService.php b/backend/app/Services/ModService.php index 127ef0b99..5e6239f50 100644 --- a/backend/app/Services/ModService.php +++ b/backend/app/Services/ModService.php @@ -2,7 +2,6 @@ namespace App\Services; use App\Models\Category; -use App\Models\DownloadableDownload; use App\Models\File; use App\Models\Game; use App\Models\Link; @@ -16,6 +15,7 @@ use Arr; use Auth; use Cache; +use Carbon\Carbon; use Closure; use DB; use Hash; @@ -165,6 +165,10 @@ public static function filters($query, array $val, ?Closure $sortByFunc = null) }); } + if (!empty($val['exclude_game_ids'])) { + $query->whereNotIn('game_id', $val['exclude_game_ids']); + } + if (!empty($val['block_tags'])) { $query->whereDoesntHaveIn('tagsSpecial', function($q) use ($val) { $q->whereIn('taggables.tag_id', array_map('intval', $val['block_tags'])); @@ -262,9 +266,9 @@ public static function registerDownload(File|Link $downloadable) Model::withoutTimestamps(fn () => $downloadable->increment('downloads')); if (isset($user)) { - $downloadable->downloadsRelation()->create(['user_id' => $user->id, 'ip_address' => $ip]); + $downloadable->downloadsRelation()->create(['created_at' => Carbon::now(), 'user_id' => $user->id, 'ip_address' => $ip]); } else { - $downloadable->downloadsRelation()->create(['ip_address' => $ip]); + $downloadable->downloadsRelation()->create(['created_at' => Carbon::now(), 'ip_address' => $ip]); } // Create download for mod @@ -274,7 +278,9 @@ public static function registerDownload(File|Link $downloadable) return response()->noContent(201); } - $download = new ModDownload(); + $download = new ModDownload([ + 'created_at' => Carbon::now() + ]); $download->mod_id = $mod->id; $download->ip_address = $ip; if (isset($user)) { diff --git a/backend/composer.json b/backend/composer.json index c5b30eaae..c6128af69 100644 --- a/backend/composer.json +++ b/backend/composer.json @@ -8,13 +8,12 @@ "php": "^8.3", "biiiiiigmonster/hasin": "^5.0", "fileeye/mimemap": "^2.0", - "genealabs/laravel-model-caching": "^12.0", - "ggsoftwarellc/nitropay-sponsor-php": "dev-master", + "genealabs/laravel-model-caching": "^13.0", "guzzlehttp/guzzle": "^7.0.1", "hammerstone/fast-paginate": "^2.0.0", "http-interop/http-factory-guzzle": "^1.2", "illuminatech/multipart-middleware": "^1.1", - "jcupitt/vips": "2.5.0", + "jcupitt/vips": "2.6.1", "knuckleswtf/scribe": "^5.2.1", "laravel/framework": "^12.0", "laravel/octane": "^2.10.0", @@ -90,12 +89,6 @@ "php-http/discovery": true } }, - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/ModWorkshop/nitropay-sponsor-php" - } - ], "minimum-stability": "beta", "prefer-stable": true } diff --git a/backend/composer.lock b/backend/composer.lock index 79b6366d3..38c86ac57 100644 --- a/backend/composer.lock +++ b/backend/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8b2abb3de2d37a16d6ba8ce0508226b0", + "content-hash": "01dbdcd398539dd6d23b754f5abf71b0", "packages": [ { "name": "aws/aws-crt-php", @@ -62,16 +62,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.368.2", + "version": "3.370.0", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "96397db9a3fd0b5e6b3c52e363b6a55831a93b1d" + "reference": "3cfb2c787c43efa546ba3b6b596956cbef5cdd53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/96397db9a3fd0b5e6b3c52e363b6a55831a93b1d", - "reference": "96397db9a3fd0b5e6b3c52e363b6a55831a93b1d", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3cfb2c787c43efa546ba3b6b596956cbef5cdd53", + "reference": "3cfb2c787c43efa546ba3b6b596956cbef5cdd53", "shasum": "" }, "require": { @@ -85,7 +85,7 @@ "mtdowling/jmespath.php": "^2.8.0", "php": ">=8.1", "psr/http-message": "^1.0 || ^2.0", - "symfony/filesystem": "^v6.4.3 || ^v7.1.0 || ^v8.0.0" + "symfony/filesystem": "^v5.4.45 || ^v6.4.3 || ^v7.1.0 || ^v8.0.0" }, "require-dev": { "andrewsville/php-token-reflection": "^1.4", @@ -153,9 +153,9 @@ "support": { "forum": "https://github.com/aws/aws-sdk-php/discussions", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.368.2" + "source": "https://github.com/aws/aws-sdk-php/tree/3.370.0" }, - "time": "2025-12-18T19:07:30+00:00" + "time": "2026-02-20T19:09:33+00:00" }, { "name": "beberlei/assert", @@ -286,16 +286,16 @@ }, { "name": "brick/math", - "version": "0.14.1", + "version": "0.14.8", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "f05858549e5f9d7bb45875a75583240a38a281d0" + "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0", - "reference": "f05858549e5f9d7bb45875a75583240a38a281d0", + "url": "https://api.github.com/repos/brick/math/zipball/63422359a44b7f06cae63c3b429b59e8efcc0629", + "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629", "shasum": "" }, "require": { @@ -334,7 +334,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.14.1" + "source": "https://github.com/brick/math/tree/0.14.8" }, "funding": [ { @@ -342,7 +342,7 @@ "type": "github" } ], - "time": "2025-11-24T14:40:29+00:00" + "time": "2026-02-10T14:33:43+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -723,26 +723,26 @@ }, { "name": "doctrine/sql-formatter", - "version": "1.5.2", + "version": "1.5.4", "source": { "type": "git", "url": "https://github.com/doctrine/sql-formatter.git", - "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8" + "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8", - "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8", + "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/9563949f5cd3bd12a17d12fb980528bc141c5806", + "reference": "9563949f5cd3bd12a17d12fb980528bc141c5806", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "doctrine/coding-standard": "^12", - "ergebnis/phpunit-slow-test-detector": "^2.14", - "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^10.5" + "doctrine/coding-standard": "^14", + "ergebnis/phpunit-slow-test-detector": "^2.20", + "phpstan/phpstan": "^2.1.31", + "phpunit/phpunit": "^10.5.58" }, "bin": [ "bin/sql-formatter" @@ -772,9 +772,9 @@ ], "support": { "issues": "https://github.com/doctrine/sql-formatter/issues", - "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2" + "source": "https://github.com/doctrine/sql-formatter/tree/1.5.4" }, - "time": "2025-01-24T11:45:48+00:00" + "time": "2026-02-08T16:21:46+00:00" }, { "name": "dragonmantank/cron-expression", @@ -907,56 +907,6 @@ ], "time": "2025-03-06T22:45:56+00:00" }, - { - "name": "erusev/parsedown", - "version": "1.7.4", - "source": { - "type": "git", - "url": "https://github.com/erusev/parsedown.git", - "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3", - "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35" - }, - "type": "library", - "autoload": { - "psr-0": { - "Parsedown": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Emanuil Rusev", - "email": "hello@erusev.com", - "homepage": "http://erusev.com" - } - ], - "description": "Parser for Markdown.", - "homepage": "http://parsedown.org", - "keywords": [ - "markdown", - "parser" - ], - "support": { - "issues": "https://github.com/erusev/parsedown/issues", - "source": "https://github.com/erusev/parsedown/tree/1.7.x" - }, - "time": "2019-12-30T22:54:17+00:00" - }, { "name": "fakerphp/faker", "version": "v1.24.1", @@ -1022,16 +972,16 @@ }, { "name": "fileeye/mimemap", - "version": "2.2.3", + "version": "2.2.4", "source": { "type": "git", "url": "https://github.com/FileEye/MimeMap.git", - "reference": "257ab8a9d13fb2e62d900c4d2ef3c3c688e19cfc" + "reference": "83664df5aae5e5df55f37a2b7d10b0ce4b46b778" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/257ab8a9d13fb2e62d900c4d2ef3c3c688e19cfc", - "reference": "257ab8a9d13fb2e62d900c4d2ef3c3c688e19cfc", + "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/83664df5aae5e5df55f37a2b7d10b0ce4b46b778", + "reference": "83664df5aae5e5df55f37a2b7d10b0ce4b46b778", "shasum": "" }, "require": { @@ -1074,9 +1024,9 @@ ], "support": { "issues": "https://github.com/FileEye/MimeMap/issues", - "source": "https://github.com/FileEye/MimeMap/tree/2.2.3" + "source": "https://github.com/FileEye/MimeMap/tree/2.2.4" }, - "time": "2025-11-16T09:32:53+00:00" + "time": "2026-01-02T12:46:25+00:00" }, { "name": "filp/whoops", @@ -1151,16 +1101,16 @@ }, { "name": "firebase/php-jwt", - "version": "v6.11.1", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66" + "reference": "5645b43af647b6947daac1d0f659dd1fbe8d3b65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", - "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/5645b43af647b6947daac1d0f659dd1fbe8d3b65", + "reference": "5645b43af647b6947daac1d0f659dd1fbe8d3b65", "shasum": "" }, "require": { @@ -1208,9 +1158,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.11.1" + "source": "https://github.com/firebase/php-jwt/tree/v7.0.2" }, - "time": "2025-04-09T20:32:01+00:00" + "time": "2025-12-16T22:17:28+00:00" }, { "name": "fruitcake/php-cors", @@ -1285,40 +1235,38 @@ }, { "name": "genealabs/laravel-model-caching", - "version": "12.0.2", + "version": "13.0.0", "source": { "type": "git", "url": "https://github.com/mikebronner/laravel-model-caching.git", - "reference": "90901c7edd2934304d1d6c55bf8cce132c90fa5d" + "reference": "dfafc623515b0c77c7b4387a6e465f512adf6295" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mikebronner/laravel-model-caching/zipball/90901c7edd2934304d1d6c55bf8cce132c90fa5d", - "reference": "90901c7edd2934304d1d6c55bf8cce132c90fa5d", + "url": "https://api.github.com/repos/mikebronner/laravel-model-caching/zipball/dfafc623515b0c77c7b4387a6e465f512adf6295", + "reference": "dfafc623515b0c77c7b4387a6e465f512adf6295", "shasum": "" }, "require": { - "illuminate/cache": "^10.0|^11.0|^12.0", - "illuminate/config": "^10.0|^11.0|^12.0", - "illuminate/console": "^10.0|^11.0|^12.0", - "illuminate/container": "^10.0|^11.0|^12.0", - "illuminate/database": "^10.0|^11.0|^12.0", - "illuminate/http": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0", - "mikebronner/laravel-pivot-events": "^10.0|^11.0|^12.0", - "php": ">=8.1" + "illuminate/cache": "^11.0|^12.0|^13.0", + "illuminate/config": "^11.0|^12.0|^13.0", + "illuminate/console": "^11.0|^12.0|^13.0", + "illuminate/container": "^11.0|^12.0|^13.0", + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "mikebronner/laravel-pivot-events": "*", + "php": ">=8.2" }, "require-dev": { "doctrine/dbal": "^3.3|^4.2", "fakerphp/faker": "^1.11", - "laravel/legacy-factories": "^1.3", - "laravel/nova": "^5.0", - "orchestra/testbench": "^9.0|^10.0", - "orchestra/testbench-browser-kit": "^9.0|^10.0", - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^10.5|^11.5.3", + "larastan/larastan": "^2.0|^3.0", + "laravel/pint": "^1.27", + "orchestra/testbench": "^9.0|^10.0|^11.0", + "phpunit/phpunit": "^10.5|^11.5.3|^12.5.12", "slevomat/coding-standard": "^7.0|^8.14", - "squizlabs/php_codesniffer": "^3.6", + "squizlabs/php_codesniffer": "^3.6|^4.0", "symfony/thanks": "^1.2" }, "type": "library", @@ -1347,66 +1295,30 @@ "description": "Automatic caching for Eloquent models.", "support": { "issues": "https://github.com/mikebronner/laravel-model-caching/issues", - "source": "https://github.com/mikebronner/laravel-model-caching/tree/12.0.2" + "source": "https://github.com/mikebronner/laravel-model-caching/tree/13.0.0" }, - "time": "2025-02-27T00:34:22+00:00" - }, - { - "name": "ggsoftwarellc/nitropay-sponsor-php", - "version": "dev-master", - "source": { - "type": "git", - "url": "https://github.com/ModWorkshop/nitropay-sponsor-php.git", - "reference": "929b17cb9637f48bd382d547e5bb7885f6d71a0b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ModWorkshop/nitropay-sponsor-php/zipball/929b17cb9637f48bd382d547e5bb7885f6d71a0b", - "reference": "929b17cb9637f48bd382d547e5bb7885f6d71a0b", - "shasum": "" - }, - "require": { - "lcobucci/jwt": "4.3.*", - "php": ">=8.1.0" - }, - "require-dev": { - "phpunit/phpunit": "^11" - }, - "default-branch": true, - "type": "library", - "autoload": { - "psr-4": { - "NitroPaySponsor\\": "src/" - } - }, - "license": [ - "MIT" - ], - "support": { - "source": "https://github.com/ModWorkshop/nitropay-sponsor-php/tree/master" - }, - "time": "2024-10-03T09:34:52+00:00" + "time": "2026-03-01T16:23:27+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.1.3", + "version": "v1.1.4", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b", + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3" + "phpoption/phpoption": "^1.9.5" }, "require-dev": { - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7" }, "type": "library", "autoload": { @@ -1435,7 +1347,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4" }, "funding": [ { @@ -1447,7 +1359,7 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:45:45+00:00" + "time": "2025-12-27T19:43:20+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1927,16 +1839,16 @@ }, { "name": "http-interop/http-factory-guzzle", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/http-interop/http-factory-guzzle.git", - "reference": "8f06e92b95405216b237521cc64c804dd44c4a81" + "reference": "c2c859ceb05c3f42e710b60555f4c35b6a4a3995" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81", - "reference": "8f06e92b95405216b237521cc64c804dd44c4a81", + "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/c2c859ceb05c3f42e710b60555f4c35b6a4a3995", + "reference": "c2c859ceb05c3f42e710b60555f4c35b6a4a3995", "shasum": "" }, "require": { @@ -1979,9 +1891,9 @@ ], "support": { "issues": "https://github.com/http-interop/http-factory-guzzle/issues", - "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0" + "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.1" }, - "time": "2021-07-21T13:50:14+00:00" + "time": "2025-12-15T11:28:16+00:00" }, { "name": "illuminatech/multipart-middleware", @@ -2053,16 +1965,16 @@ }, { "name": "jcupitt/vips", - "version": "v2.5.0", + "version": "v2.6.1", "source": { "type": "git", "url": "https://github.com/libvips/php-vips.git", - "reference": "a54c1cceea581b592a199edd61a7c06f44a24c08" + "reference": "6dbba1bb3a4ba1e39edb71016a2aa6da5bff32ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/libvips/php-vips/zipball/a54c1cceea581b592a199edd61a7c06f44a24c08", - "reference": "a54c1cceea581b592a199edd61a7c06f44a24c08", + "url": "https://api.github.com/repos/libvips/php-vips/zipball/6dbba1bb3a4ba1e39edb71016a2aa6da5bff32ee", + "reference": "6dbba1bb3a4ba1e39edb71016a2aa6da5bff32ee", "shasum": "" }, "require": { @@ -2108,9 +2020,9 @@ ], "support": { "issues": "https://github.com/libvips/php-vips/issues", - "source": "https://github.com/libvips/php-vips/tree/v2.5.0" + "source": "https://github.com/libvips/php-vips/tree/v2.6.1" }, - "time": "2025-04-04T17:10:13+00:00" + "time": "2025-12-10T14:03:20+00:00" }, { "name": "jean85/pretty-package-versions", @@ -2174,52 +2086,51 @@ }, { "name": "knuckleswtf/scribe", - "version": "5.3.0", + "version": "5.7.0", "source": { "type": "git", "url": "https://github.com/knuckleswtf/scribe.git", - "reference": "380f9cd6de6d65d2e92930a8613d8a682e83e8c7" + "reference": "81cadf88fca6b78a943af413c3818977c264b591" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/380f9cd6de6d65d2e92930a8613d8a682e83e8c7", - "reference": "380f9cd6de6d65d2e92930a8613d8a682e83e8c7", + "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/81cadf88fca6b78a943af413c3818977c264b591", + "reference": "81cadf88fca6b78a943af413c3818977c264b591", "shasum": "" }, "require": { - "erusev/parsedown": "1.7.4", "ext-fileinfo": "*", "ext-json": "*", "ext-pdo": "*", "fakerphp/faker": "^1.23.1", - "laravel/framework": "^9.0|^10.0|^11.0|^12.0", + "laravel/framework": "^9.21 || ^10.0 || ^11.0 || ^12.0", "league/flysystem": "^3.0", "mpociot/reflection-docblock": "^1.0.1", "nikic/php-parser": "^5.0", - "nunomaduro/collision": "^6.0|^7.0|^8.0", + "nunomaduro/collision": "^6.0 || ^7.0 || ^8.0", + "parsedown/parsedown": "^1.7", "php": ">=8.1", "ramsey/uuid": "^4.2.2", - "shalvah/clara": "^3.1.0", - "shalvah/upgrader": ">=0.6.0", - "spatie/data-transfer-object": "^2.6|^3.0", - "symfony/var-exporter": "^6.0|^7.0", - "symfony/yaml": "^6.0|^7.0" + "shalvah/upgrader": "^0.6.0", + "symfony/var-exporter": "^6.0 || ^7.0", + "symfony/yaml": "^6.0 || ^7.0" }, "replace": { "mpociot/laravel-apidoc-generator": "*" }, "require-dev": { - "dms/phpunit-arraysubset-asserts": "^v0.5.0", + "dms/phpunit-arraysubset-asserts": "^0.5.0", "laravel/legacy-factories": "^1.3.0", + "laravel/pint": "^1.20", "league/fractal": "^0.20", "nikic/fast-route": "^1.3", - "orchestra/testbench": "^7.0|^8.0|^v9.10.0|^10.0", - "pestphp/pest": "^1.21|^2.0|^3.0", + "orchestra/testbench": "^7.0 || ^8.0 || ^9.10 || ^10.0", + "pestphp/pest": "^1.21 || ^2.0 || ^3.0 || ^4.0", "phpstan/phpstan": "^2.1.5", - "phpunit/phpunit": "^9.0|^10.0|^11.0", + "phpunit/phpunit": "^9.0 || ^10.0 || ^11.0 || ^12.0", "spatie/ray": "^1.41", - "symfony/css-selector": "^6.0|^7.0", - "symfony/dom-crawler": "^6.0|^7.0" + "symfony/css-selector": "^6.0 || ^7.0", + "symfony/dom-crawler": "^6.0 || ^7.0" }, "type": "library", "extra": { @@ -2248,7 +2159,7 @@ } ], "description": "Generate API documentation for humans from your Laravel codebase.✍", - "homepage": "http://github.com/knuckleswtf/scribe", + "homepage": "https://github.com/knuckleswtf/scribe", "keywords": [ "api", "documentation", @@ -2256,7 +2167,7 @@ ], "support": { "issues": "https://github.com/knuckleswtf/scribe/issues", - "source": "https://github.com/knuckleswtf/scribe/tree/5.3.0" + "source": "https://github.com/knuckleswtf/scribe/tree/5.7.0" }, "funding": [ { @@ -2264,24 +2175,24 @@ "type": "patreon" } ], - "time": "2025-07-28T22:27:25+00:00" + "time": "2026-02-04T20:03:24+00:00" }, { "name": "laminas/laminas-diactoros", - "version": "3.6.0", + "version": "3.8.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f" + "reference": "60c182916b2749480895601649563970f3f12ec4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/b068eac123f21c0e592de41deeb7403b88e0a89f", - "reference": "b068eac123f21c0e592de41deeb7403b88e0a89f", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/60c182916b2749480895601649563970f3f12ec4", + "reference": "60c182916b2749480895601649563970f3f12ec4", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "psr/http-factory": "^1.1", "psr/http-message": "^1.1 || ^2.0" }, @@ -2298,11 +2209,11 @@ "ext-gd": "*", "ext-libxml": "*", "http-interop/http-factory-tests": "^2.2.0", - "laminas/laminas-coding-standard": "~3.0.0", + "laminas/laminas-coding-standard": "~3.1.0", "php-http/psr7-integration-tests": "^1.4.0", "phpunit/phpunit": "^10.5.36", - "psalm/plugin-phpunit": "^0.19.0", - "vimeo/psalm": "^5.26.1" + "psalm/plugin-phpunit": "^0.19.5", + "vimeo/psalm": "^6.13" }, "type": "library", "extra": { @@ -2352,20 +2263,20 @@ "type": "community_bridge" } ], - "time": "2025-05-05T16:03:34+00:00" + "time": "2025-10-12T15:31:36+00:00" }, { "name": "laravel/framework", - "version": "v12.41.1", + "version": "v12.53.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "3e229b05935fd0300c632fb1f718c73046d664fc" + "reference": "f57f035c0d34503d9ff30be76159bb35a003cd1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/3e229b05935fd0300c632fb1f718c73046d664fc", - "reference": "3e229b05935fd0300c632fb1f718c73046d664fc", + "url": "https://api.github.com/repos/laravel/framework/zipball/f57f035c0d34503d9ff30be76159bb35a003cd1f", + "reference": "f57f035c0d34503d9ff30be76159bb35a003cd1f", "shasum": "" }, "require": { @@ -2453,6 +2364,7 @@ "illuminate/process": "self.version", "illuminate/queue": "self.version", "illuminate/redis": "self.version", + "illuminate/reflection": "self.version", "illuminate/routing": "self.version", "illuminate/session": "self.version", "illuminate/support": "self.version", @@ -2477,7 +2389,7 @@ "league/flysystem-sftp-v3": "^3.25.1", "mockery/mockery": "^1.6.10", "opis/json-schema": "^2.4.1", - "orchestra/testbench-core": "^10.8.0", + "orchestra/testbench-core": "^10.9.0", "pda/pheanstalk": "^5.0.6|^7.0.0", "php-http/discovery": "^1.15", "phpstan/phpstan": "^2.0", @@ -2539,6 +2451,7 @@ "src/Illuminate/Filesystem/functions.php", "src/Illuminate/Foundation/helpers.php", "src/Illuminate/Log/functions.php", + "src/Illuminate/Reflection/helpers.php", "src/Illuminate/Support/functions.php", "src/Illuminate/Support/helpers.php" ], @@ -2547,7 +2460,8 @@ "Illuminate\\Support\\": [ "src/Illuminate/Macroable/", "src/Illuminate/Collections/", - "src/Illuminate/Conditionable/" + "src/Illuminate/Conditionable/", + "src/Illuminate/Reflection/" ] } }, @@ -2571,20 +2485,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-12-03T01:02:13+00:00" + "time": "2026-02-24T14:35:15+00:00" }, { "name": "laravel/octane", - "version": "v2.12.3", + "version": "v2.13.5", "source": { "type": "git", "url": "https://github.com/laravel/octane.git", - "reference": "172e61d0b4dd9db263a59ff66213fa2d68f23dbf" + "reference": "c343716659c280a7613a0c10d3241215512355ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/octane/zipball/172e61d0b4dd9db263a59ff66213fa2d68f23dbf", - "reference": "172e61d0b4dd9db263a59ff66213fa2d68f23dbf", + "url": "https://api.github.com/repos/laravel/octane/zipball/c343716659c280a7613a0c10d3241215512355ee", + "reference": "c343716659c280a7613a0c10d3241215512355ee", "shasum": "" }, "require": { @@ -2661,34 +2575,34 @@ "issues": "https://github.com/laravel/octane/issues", "source": "https://github.com/laravel/octane" }, - "time": "2025-09-23T13:39:52+00:00" + "time": "2026-01-22T17:24:46+00:00" }, { "name": "laravel/prompts", - "version": "v0.3.8", + "version": "v0.3.13", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "096748cdfb81988f60090bbb839ce3205ace0d35" + "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/096748cdfb81988f60090bbb839ce3205ace0d35", - "reference": "096748cdfb81988f60090bbb839ce3205ace0d35", + "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d", + "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d", "shasum": "" }, "require": { "composer-runtime-api": "^2.2", "ext-mbstring": "*", "php": "^8.1", - "symfony/console": "^6.2|^7.0" + "symfony/console": "^6.2|^7.0|^8.0" }, "conflict": { "illuminate/console": ">=10.17.0 <10.25.0", "laravel/framework": ">=10.17.0 <10.25.0" }, "require-dev": { - "illuminate/collections": "^10.0|^11.0|^12.0", + "illuminate/collections": "^10.0|^11.0|^12.0|^13.0", "mockery/mockery": "^1.5", "pestphp/pest": "^2.3|^3.4|^4.0", "phpstan/phpstan": "^1.12.28", @@ -2718,22 +2632,22 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.3.8" + "source": "https://github.com/laravel/prompts/tree/v0.3.13" }, - "time": "2025-11-21T20:52:52+00:00" + "time": "2026-02-06T12:17:10+00:00" }, { "name": "laravel/pulse", - "version": "v1.4.3", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/laravel/pulse.git", - "reference": "8c57f30aa6e094c138cd191314fe060d60773c14" + "reference": "ee70e069f0386060bc668d3b63a30bae403d0485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pulse/zipball/8c57f30aa6e094c138cd191314fe060d60773c14", - "reference": "8c57f30aa6e094c138cd191314fe060d60773c14", + "url": "https://api.github.com/repos/laravel/pulse/zipball/ee70e069f0386060bc668d3b63a30bae403d0485", + "reference": "ee70e069f0386060bc668d3b63a30bae403d0485", "shasum": "" }, "require": { @@ -2752,7 +2666,7 @@ "illuminate/routing": "^10.48.4|^11.0.8|^12.0", "illuminate/support": "^10.48.4|^11.0.8|^12.0", "illuminate/view": "^10.48.4|^11.0.8|^12.0", - "livewire/livewire": "^3.6.4", + "livewire/livewire": "^3.6.4|^4.0", "nesbot/carbon": "^2.67|^3.0", "php": "^8.1", "symfony/console": "^6.0|^7.0" @@ -2763,9 +2677,9 @@ "require-dev": { "guzzlehttp/guzzle": "^7.7", "mockery/mockery": "^1.0", - "orchestra/testbench": "^8.23.1|^9.0|^10.0", - "pestphp/pest": "^2.0", - "pestphp/pest-plugin-laravel": "^2.2", + "orchestra/testbench": "^8.36|^9.15|^10.8", + "pestphp/pest": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-laravel": "^2.2|^3.0|^4.0", "phpstan/phpstan": "^1.12.21", "predis/predis": "^1.0|^2.0" }, @@ -2807,36 +2721,35 @@ "issues": "https://github.com/laravel/pulse/issues", "source": "https://github.com/laravel/pulse" }, - "time": "2025-07-18T15:54:11+00:00" + "time": "2026-01-14T22:52:32+00:00" }, { "name": "laravel/sanctum", - "version": "v4.2.0", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677" + "reference": "e3b85d6e36ad00e5db2d1dcc27c81ffdf15cbf76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/fd6df4f79f48a72992e8d29a9c0ee25422a0d677", - "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/e3b85d6e36ad00e5db2d1dcc27c81ffdf15cbf76", + "reference": "e3b85d6e36ad00e5db2d1dcc27c81ffdf15cbf76", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/console": "^11.0|^12.0", - "illuminate/contracts": "^11.0|^12.0", - "illuminate/database": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0", + "illuminate/console": "^11.0|^12.0|^13.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", "php": "^8.2", - "symfony/console": "^7.0" + "symfony/console": "^7.0|^8.0" }, "require-dev": { "mockery/mockery": "^1.6", - "orchestra/testbench": "^9.0|^10.0", - "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^11.3" + "orchestra/testbench": "^9.15|^10.8|^11.0", + "phpstan/phpstan": "^1.10" }, "type": "library", "extra": { @@ -2871,32 +2784,32 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2025-07-09T19:45:24+00:00" + "time": "2026-02-07T17:19:31+00:00" }, { "name": "laravel/scout", - "version": "v10.19.0", + "version": "v10.24.0", "source": { "type": "git", "url": "https://github.com/laravel/scout.git", - "reference": "996b2a8b5ccc583e7df667c8aac924a46bc8bdd3" + "reference": "f9864d9a727a0c0d6b95e08ed92df8c301ae6d2c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/scout/zipball/996b2a8b5ccc583e7df667c8aac924a46bc8bdd3", - "reference": "996b2a8b5ccc583e7df667c8aac924a46bc8bdd3", + "url": "https://api.github.com/repos/laravel/scout/zipball/f9864d9a727a0c0d6b95e08ed92df8c301ae6d2c", + "reference": "f9864d9a727a0c0d6b95e08ed92df8c301ae6d2c", "shasum": "" }, "require": { - "illuminate/bus": "^9.0|^10.0|^11.0|^12.0", - "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", - "illuminate/database": "^9.0|^10.0|^11.0|^12.0", - "illuminate/http": "^9.0|^10.0|^11.0|^12.0", - "illuminate/pagination": "^9.0|^10.0|^11.0|^12.0", - "illuminate/queue": "^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^9.0|^10.0|^11.0|^12.0", + "illuminate/bus": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/http": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/pagination": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/queue": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0", "php": "^8.0", - "symfony/console": "^6.0|^7.0" + "symfony/console": "^6.0|^7.0|^8.0" }, "conflict": { "algolia/algoliasearch-client-php": "<3.2.0|>=5.0.0" @@ -2905,10 +2818,9 @@ "algolia/algoliasearch-client-php": "^3.2|^4.0", "meilisearch/meilisearch-php": "^1.0", "mockery/mockery": "^1.0", - "orchestra/testbench": "^7.31|^8.11|^9.0|^10.0", + "orchestra/testbench": "^7.31|^8.36|^9.15|^10.8|^11.0", "php-http/guzzle7-adapter": "^1.0", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^9.3|^10.4|^11.5", "typesense/typesense-php": "^4.9.3" }, "suggest": { @@ -2952,31 +2864,90 @@ "issues": "https://github.com/laravel/scout/issues", "source": "https://github.com/laravel/scout" }, - "time": "2025-08-26T14:24:24+00:00" + "time": "2026-02-10T18:44:39+00:00" + }, + { + "name": "laravel/sentinel", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sentinel.git", + "reference": "7a98db53e0d9d6f61387f3141c07477f97425603" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sentinel/zipball/7a98db53e0d9d6f61387f3141c07477f97425603", + "reference": "7a98db53e0d9d6f61387f3141c07477f97425603", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/container": "^8.37|^9.0|^10.0|^11.0|^12.0|^13.0", + "php": "^8.0" + }, + "require-dev": { + "laravel/pint": "^1.27", + "orchestra/testbench": "^6.47.1|^7.56|^8.37|^9.16|^10.9|^11.0", + "phpstan/phpstan": "^2.1.33" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sentinel\\SentinelServiceProvider" + ] + }, + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sentinel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Mior Muhammad Zaki", + "email": "mior@laravel.com" + } + ], + "support": { + "source": "https://github.com/laravel/sentinel/tree/v1.0.1" + }, + "time": "2026-02-12T13:32:54+00:00" }, { "name": "laravel/serializable-closure", - "version": "v2.0.7", + "version": "v2.0.10", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "cb291e4c998ac50637c7eeb58189c14f5de5b9dd" + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/cb291e4c998ac50637c7eeb58189c14f5de5b9dd", - "reference": "cb291e4c998ac50637c7eeb58189c14f5de5b9dd", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/870fc81d2f879903dfc5b60bf8a0f94a1609e669", + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669", "shasum": "" }, "require": { "php": "^8.1" }, "require-dev": { - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", "nesbot/carbon": "^2.67|^3.0", "pestphp/pest": "^2.36|^3.0|^4.0", "phpstan/phpstan": "^2.0", - "symfony/var-dumper": "^6.2.0|^7.0.0" + "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0" }, "type": "library", "extra": { @@ -3013,25 +2984,25 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2025-11-21T20:52:36+00:00" + "time": "2026-02-20T19:59:49+00:00" }, { "name": "laravel/socialite", - "version": "v5.23.0", + "version": "v5.24.2", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5" + "reference": "5cea2eebf11ca4bc6c2f20495c82a70a9b3d1613" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5", - "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5", + "url": "https://api.github.com/repos/laravel/socialite/zipball/5cea2eebf11ca4bc6c2f20495c82a70a9b3d1613", + "reference": "5cea2eebf11ca4bc6c2f20495c82a70a9b3d1613", "shasum": "" }, "require": { "ext-json": "*", - "firebase/php-jwt": "^6.4", + "firebase/php-jwt": "^6.4|^7.0", "guzzlehttp/guzzle": "^6.0|^7.0", "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", @@ -3042,9 +3013,9 @@ }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "orchestra/testbench": "^4.18|^5.20|^6.47|^7.55|^8.36|^9.15|^10.8", "phpstan/phpstan": "^1.12.23", - "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5" + "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5|^12.0" }, "type": "library", "extra": { @@ -3085,25 +3056,26 @@ "issues": "https://github.com/laravel/socialite/issues", "source": "https://github.com/laravel/socialite" }, - "time": "2025-07-23T14:16:08+00:00" + "time": "2026-01-10T16:07:28+00:00" }, { "name": "laravel/telescope", - "version": "v5.15.1", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/laravel/telescope.git", - "reference": "45e38e057343a94c570c5daad3273e9e29819738" + "reference": "8bbc1d839317cef7106cabf028e407416e5a1dad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/telescope/zipball/45e38e057343a94c570c5daad3273e9e29819738", - "reference": "45e38e057343a94c570c5daad3273e9e29819738", + "url": "https://api.github.com/repos/laravel/telescope/zipball/8bbc1d839317cef7106cabf028e407416e5a1dad", + "reference": "8bbc1d839317cef7106cabf028e407416e5a1dad", "shasum": "" }, "require": { "ext-json": "*", - "laravel/framework": "^8.37|^9.0|^10.0|^11.0|^12.0", + "laravel/framework": "^8.37|^9.0|^10.0|^11.0|^12.0|^13.0", + "laravel/sentinel": "^1.0", "php": "^8.0", "symfony/console": "^5.3|^6.0|^7.0", "symfony/var-dumper": "^5.0|^6.0|^7.0" @@ -3112,7 +3084,7 @@ "ext-gd": "*", "guzzlehttp/guzzle": "^6.0|^7.0", "laravel/octane": "^1.4|^2.0", - "orchestra/testbench": "^6.47.1|^7.55|^8.36|^9.15|^10.8", + "orchestra/testbench": "^6.47.1|^7.55|^8.36|^9.15|^10.8|^11.0", "phpstan/phpstan": "^1.10" }, "type": "library", @@ -3151,22 +3123,22 @@ ], "support": { "issues": "https://github.com/laravel/telescope/issues", - "source": "https://github.com/laravel/telescope/tree/v5.15.1" + "source": "https://github.com/laravel/telescope/tree/5.18.0" }, - "time": "2025-11-25T14:45:17+00:00" + "time": "2026-02-20T19:55:06+00:00" }, { "name": "laravel/tinker", - "version": "v2.10.1", + "version": "v2.11.1", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" + "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", - "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", + "url": "https://api.github.com/repos/laravel/tinker/zipball/c9f80cc835649b5c1842898fb043f8cc098dd741", + "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741", "shasum": "" }, "require": { @@ -3175,7 +3147,7 @@ "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "php": "^7.2.5|^8.0", "psy/psysh": "^0.11.1|^0.12.0", - "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", @@ -3217,40 +3189,40 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.10.1" + "source": "https://github.com/laravel/tinker/tree/v2.11.1" }, - "time": "2025-01-27T14:24:01+00:00" + "time": "2026-02-06T14:12:35+00:00" }, { "name": "lcobucci/clock", - "version": "3.3.1", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b" + "reference": "a3139d9e97d47826f27e6a17bb63f13621f86058" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/db3713a61addfffd615b79bf0bc22f0ccc61b86b", - "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/a3139d9e97d47826f27e6a17bb63f13621f86058", + "reference": "a3139d9e97d47826f27e6a17bb63f13621f86058", "shasum": "" }, "require": { - "php": "~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.3.0 || ~8.4.0 || ~8.5.0", "psr/clock": "^1.0" }, "provide": { "psr/clock-implementation": "1.0" }, "require-dev": { - "infection/infection": "^0.29", - "lcobucci/coding-standard": "^11.1.0", + "infection/infection": "^0.31", + "lcobucci/coding-standard": "^11.2.0", "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.10.25", - "phpstan/phpstan-deprecation-rules": "^1.1.3", - "phpstan/phpstan-phpunit": "^1.3.13", - "phpstan/phpstan-strict-rules": "^1.5.1", - "phpunit/phpunit": "^11.3.6" + "phpstan/phpstan": "^2.0.0", + "phpstan/phpstan-deprecation-rules": "^2.0.0", + "phpstan/phpstan-phpunit": "^2.0.0", + "phpstan/phpstan-strict-rules": "^2.0.0", + "phpunit/phpunit": "^12.0.0" }, "type": "library", "autoload": { @@ -3271,7 +3243,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/3.3.1" + "source": "https://github.com/lcobucci/clock/tree/3.5.0" }, "funding": [ { @@ -3283,7 +3255,7 @@ "type": "patreon" } ], - "time": "2024-09-24T20:45:14+00:00" + "time": "2025-10-27T09:03:17+00:00" }, { "name": "lcobucci/jwt", @@ -3550,16 +3522,16 @@ }, { "name": "league/flysystem", - "version": "3.30.2", + "version": "3.32.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277" + "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277", - "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/254b1595b16b22dbddaaef9ed6ca9fdac4956725", + "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725", "shasum": "" }, "require": { @@ -3627,22 +3599,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.30.2" + "source": "https://github.com/thephpleague/flysystem/tree/3.32.0" }, - "time": "2025-11-10T17:13:11+00:00" + "time": "2026-02-25T17:01:41+00:00" }, { "name": "league/flysystem-aws-s3-v3", - "version": "3.30.1", + "version": "3.31.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git", - "reference": "d286e896083bed3190574b8b088b557b59eb66f5" + "reference": "e36a2bc60b06332c92e4435047797ded352b446f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/d286e896083bed3190574b8b088b557b59eb66f5", - "reference": "d286e896083bed3190574b8b088b557b59eb66f5", + "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/e36a2bc60b06332c92e4435047797ded352b446f", + "reference": "e36a2bc60b06332c92e4435047797ded352b446f", "shasum": "" }, "require": { @@ -3682,22 +3654,22 @@ "storage" ], "support": { - "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.30.1" + "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.31.0" }, - "time": "2025-10-20T15:27:33+00:00" + "time": "2026-01-23T15:30:45+00:00" }, { "name": "league/flysystem-local", - "version": "3.30.2", + "version": "3.31.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d" + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ab4f9d0d672f601b102936aa728801dd1a11968d", - "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079", "shasum": "" }, "require": { @@ -3731,9 +3703,9 @@ "local" ], "support": { - "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.2" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0" }, - "time": "2025-11-10T11:23:37+00:00" + "time": "2026-01-23T15:30:45+00:00" }, { "name": "league/mime-type-detection", @@ -3869,20 +3841,20 @@ }, { "name": "league/uri", - "version": "7.6.0", + "version": "7.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", - "reference": "f625804987a0a9112d954f9209d91fec52182344" + "reference": "4436c6ec8d458e4244448b069cc572d088230b76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/f625804987a0a9112d954f9209d91fec52182344", - "reference": "f625804987a0a9112d954f9209d91fec52182344", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76", + "reference": "4436c6ec8d458e4244448b069cc572d088230b76", "shasum": "" }, "require": { - "league/uri-interfaces": "^7.6", + "league/uri-interfaces": "^7.8", "php": "^8.1", "psr/http-factory": "^1" }, @@ -3896,11 +3868,11 @@ "ext-gmp": "to improve IPV4 host parsing", "ext-intl": "to handle IDN host with the best performance", "ext-uri": "to use the PHP native URI class", - "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", - "league/uri-components": "Needed to easily manipulate URI objects components", - "league/uri-polyfill": "Needed to backport the PHP URI extension for older versions of PHP", + "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain", + "league/uri-components": "to provide additional tools to manipulate URI objects components", + "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP", "php-64bit": "to improve IPV4 host parsing", - "rowbot/url": "to handle WHATWG URL", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", @@ -3955,7 +3927,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri/tree/7.6.0" + "source": "https://github.com/thephpleague/uri/tree/7.8.0" }, "funding": [ { @@ -3963,20 +3935,20 @@ "type": "github" } ], - "time": "2025-11-18T12:17:23+00:00" + "time": "2026-01-14T17:24:56+00:00" }, { "name": "league/uri-interfaces", - "version": "7.6.0", + "version": "7.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "ccbfb51c0445298e7e0b7f4481b942f589665368" + "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/ccbfb51c0445298e7e0b7f4481b942f589665368", - "reference": "ccbfb51c0445298e7e0b7f4481b942f589665368", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4", + "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4", "shasum": "" }, "require": { @@ -3989,7 +3961,7 @@ "ext-gmp": "to improve IPV4 host parsing", "ext-intl": "to handle IDN host with the best performance", "php-64bit": "to improve IPV4 host parsing", - "rowbot/url": "to handle WHATWG URL", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", @@ -4039,7 +4011,7 @@ "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", "issues": "https://github.com/thephpleague/uri-src/issues", - "source": "https://github.com/thephpleague/uri-interfaces/tree/7.6.0" + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.0" }, "funding": [ { @@ -4047,20 +4019,20 @@ "type": "github" } ], - "time": "2025-11-18T12:17:23+00:00" + "time": "2026-01-15T06:54:53+00:00" }, { "name": "livewire/livewire", - "version": "v3.6.4", + "version": "v4.1.4", "source": { "type": "git", "url": "https://github.com/livewire/livewire.git", - "reference": "ef04be759da41b14d2d129e670533180a44987dc" + "reference": "4697085e02a1f5f11410a1b5962400e3539f8843" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/livewire/livewire/zipball/ef04be759da41b14d2d129e670533180a44987dc", - "reference": "ef04be759da41b14d2d129e670533180a44987dc", + "url": "https://api.github.com/repos/livewire/livewire/zipball/4697085e02a1f5f11410a1b5962400e3539f8843", + "reference": "4697085e02a1f5f11410a1b5962400e3539f8843", "shasum": "" }, "require": { @@ -4115,7 +4087,7 @@ "description": "A front-end framework for Laravel.", "support": { "issues": "https://github.com/livewire/livewire/issues", - "source": "https://github.com/livewire/livewire/tree/v3.6.4" + "source": "https://github.com/livewire/livewire/tree/v4.1.4" }, "funding": [ { @@ -4123,26 +4095,26 @@ "type": "github" } ], - "time": "2025-07-17T05:12:15+00:00" + "time": "2026-02-09T22:59:54+00:00" }, { "name": "mailersend/laravel-driver", - "version": "v2.11.0", + "version": "v2.12.0", "source": { "type": "git", "url": "https://github.com/mailersend/mailersend-laravel-driver.git", - "reference": "63acebb5064745076df27b1a80423986b6d7b69e" + "reference": "15e1ec41e29e65d3ca226929c65804190aaa93eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mailersend/mailersend-laravel-driver/zipball/63acebb5064745076df27b1a80423986b6d7b69e", - "reference": "63acebb5064745076df27b1a80423986b6d7b69e", + "url": "https://api.github.com/repos/mailersend/mailersend-laravel-driver/zipball/15e1ec41e29e65d3ca226929c65804190aaa93eb", + "reference": "15e1ec41e29e65d3ca226929c65804190aaa93eb", "shasum": "" }, "require": { "ext-json": "*", "illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0", - "mailersend/mailersend": "^0.34.0", + "mailersend/mailersend": "^0.35.0", "nyholm/psr7": "^1.5", "php": ">=8.0", "php-http/guzzle7-adapter": "^1.0", @@ -4190,22 +4162,22 @@ ], "support": { "issues": "https://github.com/mailersend/mailersend-laravel-driver/issues", - "source": "https://github.com/mailersend/mailersend-laravel-driver/tree/v2.11.0" + "source": "https://github.com/mailersend/mailersend-laravel-driver/tree/v2.12.0" }, - "time": "2025-06-04T08:47:41+00:00" + "time": "2025-10-28T14:59:16+00:00" }, { "name": "mailersend/mailersend", - "version": "v0.34.0", + "version": "v0.35.0", "source": { "type": "git", "url": "https://github.com/mailersend/mailersend-php.git", - "reference": "1cb8c42e5569e7455b1e0e794dcbf68e3b7898ab" + "reference": "f1696cf9e727e9503fbc5882d2a111bd966ad276" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mailersend/mailersend-php/zipball/1cb8c42e5569e7455b1e0e794dcbf68e3b7898ab", - "reference": "1cb8c42e5569e7455b1e0e794dcbf68e3b7898ab", + "url": "https://api.github.com/repos/mailersend/mailersend-php/zipball/f1696cf9e727e9503fbc5882d2a111bd966ad276", + "reference": "f1696cf9e727e9503fbc5882d2a111bd966ad276", "shasum": "" }, "require": { @@ -4256,9 +4228,9 @@ ], "support": { "issues": "https://github.com/mailersend/mailersend-php/issues", - "source": "https://github.com/mailersend/mailersend-php/tree/v0.34.0" + "source": "https://github.com/mailersend/mailersend-php/tree/v0.35.0" }, - "time": "2025-06-04T07:53:52+00:00" + "time": "2025-10-28T13:11:43+00:00" }, { "name": "marceloeatworld/plunk-laravel", @@ -4323,25 +4295,26 @@ }, { "name": "mikebronner/laravel-pivot-events", - "version": "12.0.0", + "version": "13.1.0", "source": { "type": "git", "url": "https://github.com/mikebronner/laravel-pivot-events.git", - "reference": "aeeceb7672c2ac359472fedba75349710572e72f" + "reference": "ed98aae5fdef8680d3ae6f5b1c59105d751f447c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mikebronner/laravel-pivot-events/zipball/aeeceb7672c2ac359472fedba75349710572e72f", - "reference": "aeeceb7672c2ac359472fedba75349710572e72f", + "url": "https://api.github.com/repos/mikebronner/laravel-pivot-events/zipball/ed98aae5fdef8680d3ae6f5b1c59105d751f447c", + "reference": "ed98aae5fdef8680d3ae6f5b1c59105d751f447c", "shasum": "" }, "require": { - "illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0" + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "php": "^8.2" }, "require-dev": { - "orchestra/testbench": "^9.0|^10.0", - "phpunit/phpunit": "^10.5|^11.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", + "phpunit/phpunit": "^10.5|^11.0|^12.0", "symfony/thanks": "^1.0" }, "type": "library", @@ -4375,20 +4348,20 @@ "issues": "https://github.com/mikebronner/laravel-pivot-events/issues", "source": "https://github.com/mikebronner/laravel-pivot-events" }, - "time": "2025-02-26T23:42:30+00:00" + "time": "2026-02-28T19:52:21+00:00" }, { "name": "monolog/monolog", - "version": "3.9.0", + "version": "3.10.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", - "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0", "shasum": "" }, "require": { @@ -4406,7 +4379,7 @@ "graylog2/gelf-php": "^1.4.2 || ^2.0", "guzzlehttp/guzzle": "^7.4.5", "guzzlehttp/psr7": "^2.2", - "mongodb/mongodb": "^1.8", + "mongodb/mongodb": "^1.8 || ^2.0", "php-amqplib/php-amqplib": "~2.4 || ^3", "php-console/php-console": "^3.1.8", "phpstan/phpstan": "^2", @@ -4466,7 +4439,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/3.9.0" + "source": "https://github.com/Seldaek/monolog/tree/3.10.0" }, "funding": [ { @@ -4478,7 +4451,7 @@ "type": "tidelift" } ], - "time": "2025-03-24T10:02:05+00:00" + "time": "2026-01-02T08:56:05+00:00" }, { "name": "mpociot/reflection-docblock", @@ -4601,16 +4574,16 @@ }, { "name": "nesbot/carbon", - "version": "3.11.0", + "version": "3.11.1", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "bdb375400dcd162624531666db4799b36b64e4a1" + "reference": "f438fcc98f92babee98381d399c65336f3a3827f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/bdb375400dcd162624531666db4799b36b64e4a1", - "reference": "bdb375400dcd162624531666db4799b36b64e4a1", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/f438fcc98f92babee98381d399c65336f3a3827f", + "reference": "f438fcc98f92babee98381d399c65336f3a3827f", "shasum": "" }, "require": { @@ -4634,7 +4607,7 @@ "phpstan/extension-installer": "^1.4.3", "phpstan/phpstan": "^2.1.22", "phpunit/phpunit": "^10.5.53", - "squizlabs/php_codesniffer": "^3.13.4" + "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0" }, "bin": [ "bin/carbon" @@ -4677,14 +4650,14 @@ } ], "description": "An API extension for DateTime that supports 281 different languages.", - "homepage": "https://carbon.nesbot.com", + "homepage": "https://carbonphp.github.io/carbon/", "keywords": [ "date", "datetime", "time" ], "support": { - "docs": "https://carbon.nesbot.com/docs", + "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html", "issues": "https://github.com/CarbonPHP/carbon/issues", "source": "https://github.com/CarbonPHP/carbon" }, @@ -4702,20 +4675,20 @@ "type": "tidelift" } ], - "time": "2025-12-02T21:04:28+00:00" + "time": "2026-01-29T09:26:29+00:00" }, { "name": "nette/schema", - "version": "v1.3.3", + "version": "v1.3.5", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004" + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004", - "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004", + "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002", + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002", "shasum": "" }, "require": { @@ -4723,8 +4696,10 @@ "php": "8.1 - 8.5" }, "require-dev": { - "nette/tester": "^2.5.2", - "phpstan/phpstan-nette": "^2.0@stable", + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.6", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1.39@stable", "tracy/tracy": "^2.8" }, "type": "library", @@ -4765,22 +4740,22 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.3.3" + "source": "https://github.com/nette/schema/tree/v1.3.5" }, - "time": "2025-10-30T22:57:59+00:00" + "time": "2026-02-23T03:47:12+00:00" }, { "name": "nette/utils", - "version": "v4.1.0", + "version": "v4.1.3", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0" + "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/fa1f0b8261ed150447979eb22e373b7b7ad5a8e0", - "reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0", + "url": "https://api.github.com/repos/nette/utils/zipball/bb3ea637e3d131d72acc033cfc2746ee893349fe", + "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe", "shasum": "" }, "require": { @@ -4792,8 +4767,10 @@ }, "require-dev": { "jetbrains/phpstorm-attributes": "^1.2", + "nette/phpstan-rules": "^1.0", "nette/tester": "^2.5", - "phpstan/phpstan-nette": "^2.0@stable", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1@stable", "tracy/tracy": "^2.9" }, "suggest": { @@ -4854,9 +4831,9 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v4.1.0" + "source": "https://github.com/nette/utils/tree/v4.1.3" }, - "time": "2025-12-01T17:49:23+00:00" + "time": "2026-02-13T03:05:33+00:00" }, { "name": "nickurt/laravel-stopforumspam", @@ -4975,39 +4952,36 @@ }, { "name": "nunomaduro/collision", - "version": "v8.8.2", + "version": "v8.9.1", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb" + "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", - "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/a1ed3fa530fd60bc515f9303e8520fcb7d4bd935", + "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935", "shasum": "" }, "require": { - "filp/whoops": "^2.18.1", - "nunomaduro/termwind": "^2.3.1", + "filp/whoops": "^2.18.4", + "nunomaduro/termwind": "^2.4.0", "php": "^8.2.0", - "symfony/console": "^7.3.0" + "symfony/console": "^7.4.4 || ^8.0.4" }, "conflict": { - "laravel/framework": "<11.44.2 || >=13.0.0", - "phpunit/phpunit": "<11.5.15 || >=13.0.0" + "laravel/framework": "<11.48.0 || >=14.0.0", + "phpunit/phpunit": "<11.5.50 || >=14.0.0" }, "require-dev": { - "brianium/paratest": "^7.8.3", - "larastan/larastan": "^3.4.2", - "laravel/framework": "^11.44.2 || ^12.18", - "laravel/pint": "^1.22.1", - "laravel/sail": "^1.43.1", - "laravel/sanctum": "^4.1.1", - "laravel/tinker": "^2.10.1", - "orchestra/testbench-core": "^9.12.0 || ^10.4", - "pestphp/pest": "^3.8.2", - "sebastian/environment": "^7.2.1 || ^8.0" + "brianium/paratest": "^7.8.5", + "larastan/larastan": "^3.9.2", + "laravel/framework": "^11.48.0 || ^12.52.0", + "laravel/pint": "^1.27.1", + "orchestra/testbench-core": "^9.12.0 || ^10.9.0", + "pestphp/pest": "^3.8.5 || ^4.4.1 || ^5.0.0", + "sebastian/environment": "^7.2.1 || ^8.0.3 || ^9.0.0" }, "type": "library", "extra": { @@ -5070,35 +5044,35 @@ "type": "patreon" } ], - "time": "2025-06-25T02:12:12+00:00" + "time": "2026-02-17T17:33:08+00:00" }, { "name": "nunomaduro/termwind", - "version": "v2.3.3", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017" + "reference": "712a31b768f5daea284c2169a7d227031001b9a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/6fb2a640ff502caace8e05fd7be3b503a7e1c017", - "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8", + "reference": "712a31b768f5daea284c2169a7d227031001b9a8", "shasum": "" }, "require": { "ext-mbstring": "*", "php": "^8.2", - "symfony/console": "^7.3.6" + "symfony/console": "^7.4.4 || ^8.0.4" }, "require-dev": { - "illuminate/console": "^11.46.1", - "laravel/pint": "^1.25.1", + "illuminate/console": "^11.47.0", + "laravel/pint": "^1.27.1", "mockery/mockery": "^1.6.12", - "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.1.3", + "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2", "phpstan/phpstan": "^1.12.32", "phpstan/phpstan-strict-rules": "^1.6.2", - "symfony/var-dumper": "^7.3.5", + "symfony/var-dumper": "^7.3.5 || ^8.0.4", "thecodingmachine/phpstan-strict-rules": "^1.0.0" }, "type": "library", @@ -5130,7 +5104,7 @@ "email": "enunomaduro@gmail.com" } ], - "description": "Its like Tailwind CSS, but for the console.", + "description": "It's like Tailwind CSS, but for the console.", "keywords": [ "cli", "console", @@ -5141,7 +5115,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v2.3.3" + "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0" }, "funding": [ { @@ -5157,7 +5131,7 @@ "type": "github" } ], - "time": "2025-11-20T02:34:59+00:00" + "time": "2026-02-16T23:10:27+00:00" }, { "name": "nyholm/psr7", @@ -5239,24 +5213,26 @@ }, { "name": "paragonie/constant_time_encoding", - "version": "v3.0.0", + "version": "v3.1.3", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" + "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", - "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77", + "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77", "shasum": "" }, "require": { "php": "^8" }, "require-dev": { - "phpunit/phpunit": "^9", - "vimeo/psalm": "^4|^5" + "infection/infection": "^0", + "nikic/php-fuzzer": "^0", + "phpunit/phpunit": "^9|^10|^11", + "vimeo/psalm": "^4|^5|^6" }, "type": "library", "autoload": { @@ -5302,7 +5278,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2024-05-08T12:36:18+00:00" + "time": "2025-09-24T15:06:41+00:00" }, { "name": "paragonie/random_compat", @@ -5354,18 +5330,68 @@ }, "time": "2020-10-15T08:29:30+00:00" }, + { + "name": "parsedown/parsedown", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/parsedown/parsedown.git", + "reference": "96baaad00f71ba04d76e45b4620f54d3beabd6f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/parsedown/parsedown/zipball/96baaad00f71ba04d76e45b4620f54d3beabd6f7", + "reference": "96baaad00f71ba04d76e45b4620f54d3beabd6f7", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5|^8.5|^9.6" + }, + "type": "library", + "autoload": { + "psr-0": { + "Parsedown": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Emanuil Rusev", + "email": "hello@erusev.com", + "homepage": "http://erusev.com" + } + ], + "description": "Parser for Markdown.", + "homepage": "http://parsedown.org", + "keywords": [ + "markdown", + "parser" + ], + "support": { + "issues": "https://github.com/parsedown/parsedown/issues", + "source": "https://github.com/parsedown/parsedown/tree/1.8.0" + }, + "time": "2026-02-16T11:41:01+00:00" + }, { "name": "php-http/client-common", - "version": "2.7.2", + "version": "2.7.3", "source": { "type": "git", "url": "https://github.com/php-http/client-common.git", - "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46" + "reference": "dcc6de29c90dd74faab55f71b79d89409c4bf0c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/client-common/zipball/0cfe9858ab9d3b213041b947c881d5b19ceeca46", - "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46", + "url": "https://api.github.com/repos/php-http/client-common/zipball/dcc6de29c90dd74faab55f71b79d89409c4bf0c1", + "reference": "dcc6de29c90dd74faab55f71b79d89409c4bf0c1", "shasum": "" }, "require": { @@ -5375,15 +5401,13 @@ "psr/http-client": "^1.0", "psr/http-factory": "^1.0", "psr/http-message": "^1.0 || ^2.0", - "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0", + "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0 || ^8.0", "symfony/polyfill-php80": "^1.17" }, "require-dev": { "doctrine/instantiator": "^1.1", "guzzlehttp/psr7": "^1.4", "nyholm/psr7": "^1.2", - "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", - "phpspec/prophecy": "^1.10.2", "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7" }, "suggest": { @@ -5419,9 +5443,9 @@ ], "support": { "issues": "https://github.com/php-http/client-common/issues", - "source": "https://github.com/php-http/client-common/tree/2.7.2" + "source": "https://github.com/php-http/client-common/tree/2.7.3" }, - "time": "2024-09-24T06:21:48+00:00" + "time": "2025-11-29T19:12:34+00:00" }, { "name": "php-http/discovery", @@ -5741,16 +5765,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.4", + "version": "1.9.5", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", - "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be", + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be", "shasum": "" }, "require": { @@ -5800,7 +5824,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.4" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.5" }, "funding": [ { @@ -5812,20 +5836,20 @@ "type": "tidelift" } ], - "time": "2025-08-21T11:53:16+00:00" + "time": "2025-12-27T19:41:33+00:00" }, { "name": "phpseclib/phpseclib", - "version": "3.0.46", + "version": "3.0.49", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6" + "reference": "6233a1e12584754e6b5daa69fe1289b47775c1b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", - "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/6233a1e12584754e6b5daa69fe1289b47775c1b9", + "reference": "6233a1e12584754e6b5daa69fe1289b47775c1b9", "shasum": "" }, "require": { @@ -5906,7 +5930,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.49" }, "funding": [ { @@ -5922,7 +5946,7 @@ "type": "tidelift" } ], - "time": "2025-06-26T16:29:55+00:00" + "time": "2026-01-27T09:17:28+00:00" }, { "name": "psr/clock", @@ -6338,16 +6362,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.9", + "version": "v0.12.20", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "1b801844becfe648985372cb4b12ad6840245ace" + "reference": "19678eb6b952a03b8a1d96ecee9edba518bb0373" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace", - "reference": "1b801844becfe648985372cb4b12ad6840245ace", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/19678eb6b952a03b8a1d96ecee9edba518bb0373", + "reference": "19678eb6b952a03b8a1d96ecee9edba518bb0373", "shasum": "" }, "require": { @@ -6355,18 +6379,19 @@ "ext-tokenizer": "*", "nikic/php-parser": "^5.0 || ^4.0", "php": "^8.0 || ^7.4", - "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" }, "conflict": { "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2" + "bamarni/composer-bin-plugin": "^1.2", + "composer/class-map-generator": "^1.6" }, "suggest": { + "composer/class-map-generator": "Improved tab completion performance with better class discovery.", "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", - "ext-pdo-sqlite": "The doc command requires SQLite to work.", "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." }, "bin": [ @@ -6397,12 +6422,11 @@ "authors": [ { "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "email": "justin@justinhileman.info" } ], "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", + "homepage": "https://psysh.org", "keywords": [ "REPL", "console", @@ -6411,9 +6435,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.9" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.20" }, - "time": "2025-06-23T02:35:06+00:00" + "time": "2026-02-11T15:05:28+00:00" }, { "name": "ralouphie/getallheaders", @@ -6537,20 +6561,20 @@ }, { "name": "ramsey/uuid", - "version": "4.9.1", + "version": "4.9.2", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" + "reference": "8429c78ca35a09f27565311b98101e2826affde0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", - "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0", + "reference": "8429c78ca35a09f27565311b98101e2826affde0", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", + "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -6609,22 +6633,22 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.9.1" + "source": "https://github.com/ramsey/uuid/tree/4.9.2" }, - "time": "2025-09-04T20:59:21+00:00" + "time": "2025-12-14T04:43:48+00:00" }, { "name": "sentry/sentry", - "version": "4.15.2", + "version": "4.20.0", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "61a2d918e8424b6de4a2e265c15133a00c17db51" + "reference": "d7264b972e5f87110492376ade1cc20cbc049345" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/61a2d918e8424b6de4a2e265c15133a00c17db51", - "reference": "61a2d918e8424b6de4a2e265c15133a00c17db51", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/d7264b972e5f87110492376ade1cc20cbc049345", + "reference": "d7264b972e5f87110492376ade1cc20cbc049345", "shasum": "" }, "require": { @@ -6635,7 +6659,7 @@ "jean85/pretty-package-versions": "^1.5|^2.0.4", "php": "^7.2|^8.0", "psr/log": "^1.0|^2.0|^3.0", - "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0" + "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0|^8.0" }, "conflict": { "raven/raven": "*" @@ -6647,8 +6671,7 @@ "monolog/monolog": "^1.6|^2.0|^3.0", "phpbench/phpbench": "^1.0", "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^8.5|^9.6", - "symfony/phpunit-bridge": "^5.2|^6.0|^7.0", + "phpunit/phpunit": "^8.5.52|^9.6.34", "vimeo/psalm": "^4.17" }, "suggest": { @@ -6688,7 +6711,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-php/issues", - "source": "https://github.com/getsentry/sentry-php/tree/4.15.2" + "source": "https://github.com/getsentry/sentry-php/tree/4.20.0" }, "funding": [ { @@ -6700,34 +6723,35 @@ "type": "custom" } ], - "time": "2025-09-03T07:23:48+00:00" + "time": "2026-02-16T13:47:54+00:00" }, { "name": "sentry/sentry-laravel", - "version": "4.16.0", + "version": "4.20.1", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-laravel.git", - "reference": "b33b2e487b02db02d92988228f142d7fa2be2bfa" + "reference": "503853fa7ee74b34b64e76f1373db86cd11afe72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/b33b2e487b02db02d92988228f142d7fa2be2bfa", - "reference": "b33b2e487b02db02d92988228f142d7fa2be2bfa", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/503853fa7ee74b34b64e76f1373db86cd11afe72", + "reference": "503853fa7ee74b34b64e76f1373db86cd11afe72", "shasum": "" }, "require": { "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0", "nyholm/psr7": "^1.0", "php": "^7.2 | ^8.0", - "sentry/sentry": "^4.15.2", - "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0" + "sentry/sentry": "^4.19.0", + "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0 | ^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.11", "guzzlehttp/guzzle": "^7.2", "laravel/folio": "^1.1", "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0", + "laravel/pennant": "^1.0", "livewire/livewire": "^2.0 | ^3.0", "mockery/mockery": "^1.3", "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", @@ -6777,7 +6801,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-laravel/issues", - "source": "https://github.com/getsentry/sentry-laravel/tree/4.16.0" + "source": "https://github.com/getsentry/sentry-laravel/tree/4.20.1" }, "funding": [ { @@ -6789,54 +6813,7 @@ "type": "custom" } ], - "time": "2025-09-10T16:38:18+00:00" - }, - { - "name": "shalvah/clara", - "version": "3.2.0", - "source": { - "type": "git", - "url": "https://github.com/shalvah/clara.git", - "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b", - "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b", - "shasum": "" - }, - "require": { - "php": ">=7.4", - "symfony/console": "^4.0|^5.0|^6.0|^7.0" - }, - "require-dev": { - "eloquent/phony-phpunit": "^7.0", - "phpunit/phpunit": "^9.1" - }, - "type": "library", - "autoload": { - "files": [ - "helpers.php" - ], - "psr-4": { - "Shalvah\\Clara\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "🔊 Simple, pretty, testable console output for CLI apps.", - "keywords": [ - "cli", - "log", - "logging" - ], - "support": { - "issues": "https://github.com/shalvah/clara/issues", - "source": "https://github.com/shalvah/clara/tree/3.2.0" - }, - "time": "2024-02-27T20:30:59+00:00" + "time": "2026-01-07T08:53:19+00:00" }, { "name": "shalvah/upgrader", @@ -7153,100 +7130,36 @@ }, "time": "2025-02-12T21:49:52+00:00" }, - { - "name": "spatie/data-transfer-object", - "version": "3.9.1", - "source": { - "type": "git", - "url": "https://github.com/spatie/data-transfer-object.git", - "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8", - "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8", - "shasum": "" - }, - "require": { - "php": "^8.0" - }, - "require-dev": { - "illuminate/collections": "^8.36", - "jetbrains/phpstorm-attributes": "^1.0", - "larapack/dd": "^1.1", - "phpunit/phpunit": "^9.5.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\DataTransferObject\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Brent Roose", - "email": "brent@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - } - ], - "description": "Data transfer objects with batteries included", - "homepage": "https://github.com/spatie/data-transfer-object", - "keywords": [ - "data-transfer-object", - "spatie" - ], - "support": { - "issues": "https://github.com/spatie/data-transfer-object/issues", - "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1" - }, - "funding": [ - { - "url": "https://spatie.be/open-source/support-us", - "type": "custom" - }, - { - "url": "https://github.com/spatie", - "type": "github" - } - ], - "abandoned": "spatie/laravel-data", - "time": "2022-09-16T13:34:38+00:00" - }, { "name": "spatie/laravel-honeypot", - "version": "4.6.1", + "version": "4.7.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-honeypot.git", - "reference": "38d164f14939e943b92771859fc206c74cba8397" + "reference": "30c70a79a461871526f45c57706a0123731b58ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-honeypot/zipball/38d164f14939e943b92771859fc206c74cba8397", - "reference": "38d164f14939e943b92771859fc206c74cba8397", + "url": "https://api.github.com/repos/spatie/laravel-honeypot/zipball/30c70a79a461871526f45c57706a0123731b58ee", + "reference": "30c70a79a461871526f45c57706a0123731b58ee", "shasum": "" }, "require": { - "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/encryption": "^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/http": "^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/validation": "^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", + "illuminate/encryption": "^11.0|^12.0|^13.0", + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/validation": "^11.0|^12.0|^13.0", "nesbot/carbon": "^2.0|^3.0", - "php": "^8.0", + "php": "^8.2", "spatie/laravel-package-tools": "^1.9", - "symfony/http-foundation": "^5.1.2|^6.0|^7.0" + "symfony/http-foundation": "^7.0|^8.0" }, "require-dev": { - "livewire/livewire": "^2.10|^3.0", - "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0", - "pestphp/pest-plugin-livewire": "^1.0|^2.1|^3.0", - "phpunit/phpunit": "^9.6|^10.5|^11.5", + "livewire/livewire": "^3.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", + "pestphp/pest": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-livewire": "^1.0|^2.1|^3.0|^4.0", "spatie/pest-plugin-snapshots": "^1.1|^2.1", "spatie/phpunit-snapshot-assertions": "^4.2|^5.1", "spatie/test-time": "^1.2.1" @@ -7283,7 +7196,7 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-honeypot/tree/4.6.1" + "source": "https://github.com/spatie/laravel-honeypot/tree/4.7.0" }, "funding": [ { @@ -7291,7 +7204,7 @@ "type": "custom" } ], - "time": "2025-05-05T13:50:37+00:00" + "time": "2026-02-22T08:37:18+00:00" }, { "name": "spatie/laravel-morph-map-generator", @@ -7371,29 +7284,29 @@ }, { "name": "spatie/laravel-package-tools", - "version": "1.92.7", + "version": "1.93.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-package-tools.git", - "reference": "f09a799850b1ed765103a4f0b4355006360c49a5" + "reference": "0d097bce95b2bf6802fb1d83e1e753b0f5a948e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5", - "reference": "f09a799850b1ed765103a4f0b4355006360c49a5", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/0d097bce95b2bf6802fb1d83e1e753b0f5a948e7", + "reference": "0d097bce95b2bf6802fb1d83e1e753b0f5a948e7", "shasum": "" }, "require": { - "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0", - "php": "^8.0" + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", + "php": "^8.1" }, "require-dev": { "mockery/mockery": "^1.5", - "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0", - "pestphp/pest": "^1.23|^2.1|^3.1", - "phpunit/php-code-coverage": "^9.0|^10.0|^11.0", - "phpunit/phpunit": "^9.5.24|^10.5|^11.5", - "spatie/pest-plugin-test-time": "^1.1|^2.2" + "orchestra/testbench": "^8.0|^9.2|^10.0|^11.0", + "pestphp/pest": "^2.1|^3.1|^4.0", + "phpunit/php-code-coverage": "^10.0|^11.0|^12.0", + "phpunit/phpunit": "^10.5|^11.5|^12.5", + "spatie/pest-plugin-test-time": "^2.2|^3.0" }, "type": "library", "autoload": { @@ -7420,7 +7333,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-package-tools/issues", - "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7" + "source": "https://github.com/spatie/laravel-package-tools/tree/1.93.0" }, "funding": [ { @@ -7428,26 +7341,26 @@ "type": "github" } ], - "time": "2025-07-17T15:46:43+00:00" + "time": "2026-02-21T12:49:54+00:00" }, { "name": "spatie/laravel-query-builder", - "version": "6.3.5", + "version": "6.4.3", "source": { "type": "git", "url": "https://github.com/spatie/laravel-query-builder.git", - "reference": "ee3c98235616f88c11e75d3df5ea48dc7b20dd93" + "reference": "317cf7e7146daec502241dd1cd1d8fd4bb6d5cff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/ee3c98235616f88c11e75d3df5ea48dc7b20dd93", - "reference": "ee3c98235616f88c11e75d3df5ea48dc7b20dd93", + "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/317cf7e7146daec502241dd1cd1d8fd4bb6d5cff", + "reference": "317cf7e7146daec502241dd1cd1d8fd4bb6d5cff", "shasum": "" }, "require": { - "illuminate/database": "^10.0|^11.0|^12.0", - "illuminate/http": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/database": "^10.0|^11.0|^12.0|^13.0", + "illuminate/http": "^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", "php": "^8.2", "spatie/laravel-package-tools": "^1.11" }, @@ -7455,9 +7368,9 @@ "ext-json": "*", "larastan/larastan": "^2.7 || ^3.3", "mockery/mockery": "^1.4", - "orchestra/testbench": "^7.0|^8.0|^10.0", - "pestphp/pest": "^2.0|^3.7", - "phpunit/phpunit": "^10.0|^11.5.3", + "orchestra/testbench": "^7.0|^8.0|^10.0|^11.0", + "pestphp/pest": "^2.0|^3.7|^4.0", + "phpunit/phpunit": "^10.0|^11.5.3|^12.0", "spatie/invade": "^2.0" }, "type": "library", @@ -7502,32 +7415,32 @@ "type": "custom" } ], - "time": "2025-08-04T07:36:33+00:00" + "time": "2026-02-21T21:10:32+00:00" }, { "name": "spatie/laravel-validation-rules", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-validation-rules.git", - "reference": "45d1fb21a8480a359c2a58124d9adf44b40c84ca" + "reference": "50fdfa933668f1c0e93d432fabab7062d9af5f94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/45d1fb21a8480a359c2a58124d9adf44b40c84ca", - "reference": "45d1fb21a8480a359c2a58124d9adf44b40c84ca", + "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/50fdfa933668f1c0e93d432fabab7062d9af5f94", + "reference": "50fdfa933668f1c0e93d432fabab7062d9af5f94", "shasum": "" }, "require": { - "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", "php": "^8.0" }, "require-dev": { "laravel/pint": "^1.3", "league/iso3166": "^3.0|^4.3", "myclabs/php-enum": "^1.6", - "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0", - "pestphp/pest": "^1.23|^2.6|^3.7", + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0|^11.0", + "pestphp/pest": "^1.23|^2.6|^3.7|^4.0", "spatie/enum": "^2.2|^3.0" }, "suggest": { @@ -7567,7 +7480,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-validation-rules/issues", - "source": "https://github.com/spatie/laravel-validation-rules/tree/3.4.3" + "source": "https://github.com/spatie/laravel-validation-rules/tree/3.4.4" }, "funding": [ { @@ -7575,7 +7488,7 @@ "type": "github" } ], - "time": "2025-02-25T18:35:57+00:00" + "time": "2026-02-21T21:16:42+00:00" }, { "name": "symfony/clock", @@ -7657,16 +7570,16 @@ }, { "name": "symfony/console", - "version": "v7.4.1", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e" + "reference": "6d643a93b47398599124022eb24d97c153c12f27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", - "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", + "url": "https://api.github.com/repos/symfony/console/zipball/6d643a93b47398599124022eb24d97c153c12f27", + "reference": "6d643a93b47398599124022eb24d97c153c12f27", "shasum": "" }, "require": { @@ -7731,7 +7644,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.4.1" + "source": "https://github.com/symfony/console/tree/v7.4.6" }, "funding": [ { @@ -7751,20 +7664,20 @@ "type": "tidelift" } ], - "time": "2025-12-05T15:23:39+00:00" + "time": "2026-02-25T17:02:47+00:00" }, { "name": "symfony/css-selector", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135" + "reference": "2e7c52c647b406e2107dd867db424a4dbac91864" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab862f478513e7ca2fe9ec117a6f01a8da6e1135", - "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/2e7c52c647b406e2107dd867db424a4dbac91864", + "reference": "2e7c52c647b406e2107dd867db424a4dbac91864", "shasum": "" }, "require": { @@ -7800,7 +7713,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.4.0" + "source": "https://github.com/symfony/css-selector/tree/v7.4.6" }, "funding": [ { @@ -7820,7 +7733,7 @@ "type": "tidelift" } ], - "time": "2025-10-30T13:39:42+00:00" + "time": "2026-02-17T07:53:42+00:00" }, { "name": "symfony/deprecation-contracts", @@ -7891,16 +7804,16 @@ }, { "name": "symfony/error-handler", - "version": "v7.4.0", + "version": "v7.4.4", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2" + "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/48be2b0653594eea32dcef130cca1c811dcf25c2", - "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8", + "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8", "shasum": "" }, "require": { @@ -7949,7 +7862,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.4.0" + "source": "https://github.com/symfony/error-handler/tree/v7.4.4" }, "funding": [ { @@ -7969,20 +7882,20 @@ "type": "tidelift" } ], - "time": "2025-11-05T14:29:59+00:00" + "time": "2026-01-20T16:42:42+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.4.0", + "version": "v7.4.4", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d" + "reference": "dc2c0eba1af673e736bb851d747d266108aea746" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9dddcddff1ef974ad87b3708e4b442dc38b2261d", - "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dc2c0eba1af673e736bb851d747d266108aea746", + "reference": "dc2c0eba1af673e736bb851d747d266108aea746", "shasum": "" }, "require": { @@ -8034,7 +7947,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.4" }, "funding": [ { @@ -8054,7 +7967,7 @@ "type": "tidelift" } ], - "time": "2025-10-28T09:38:46+00:00" + "time": "2026-01-05T11:45:34+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -8204,16 +8117,16 @@ }, { "name": "symfony/finder", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "340b9ed7320570f319028a2cbec46d40535e94bd" + "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/340b9ed7320570f319028a2cbec46d40535e94bd", - "reference": "340b9ed7320570f319028a2cbec46d40535e94bd", + "url": "https://api.github.com/repos/symfony/finder/zipball/8655bf1076b7a3a346cb11413ffdabff50c7ffcf", + "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf", "shasum": "" }, "require": { @@ -8248,7 +8161,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.4.0" + "source": "https://github.com/symfony/finder/tree/v7.4.6" }, "funding": [ { @@ -8268,20 +8181,20 @@ "type": "tidelift" } ], - "time": "2025-11-05T05:42:40+00:00" + "time": "2026-01-29T09:40:50+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.4.1", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "bd1af1e425811d6f077db240c3a588bdb405cd27" + "reference": "fd97d5e926e988a363cef56fbbf88c5c528e9065" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/bd1af1e425811d6f077db240c3a588bdb405cd27", - "reference": "bd1af1e425811d6f077db240c3a588bdb405cd27", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fd97d5e926e988a363cef56fbbf88c5c528e9065", + "reference": "fd97d5e926e988a363cef56fbbf88c5c528e9065", "shasum": "" }, "require": { @@ -8330,7 +8243,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.4.1" + "source": "https://github.com/symfony/http-foundation/tree/v7.4.6" }, "funding": [ { @@ -8350,20 +8263,20 @@ "type": "tidelift" } ], - "time": "2025-12-07T11:13:10+00:00" + "time": "2026-02-21T16:25:55+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.4.2", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f" + "reference": "002ac0cf4cd972a7fd0912dcd513a95e8a81ce83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6e6f0a5fa8763f75a504b930163785fb6dd055f", - "reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/002ac0cf4cd972a7fd0912dcd513a95e8a81ce83", + "reference": "002ac0cf4cd972a7fd0912dcd513a95e8a81ce83", "shasum": "" }, "require": { @@ -8405,7 +8318,7 @@ "symfony/config": "^6.4|^7.0|^8.0", "symfony/console": "^6.4|^7.0|^8.0", "symfony/css-selector": "^6.4|^7.0|^8.0", - "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4.1|^7.0.1|^8.0", "symfony/dom-crawler": "^6.4|^7.0|^8.0", "symfony/expression-language": "^6.4|^7.0|^8.0", "symfony/finder": "^6.4|^7.0|^8.0", @@ -8449,7 +8362,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.4.2" + "source": "https://github.com/symfony/http-kernel/tree/v7.4.6" }, "funding": [ { @@ -8469,20 +8382,20 @@ "type": "tidelift" } ], - "time": "2025-12-08T07:43:37+00:00" + "time": "2026-02-26T08:30:57+00:00" }, { "name": "symfony/mailer", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "a3d9eea8cfa467ece41f0f54ba28185d74bd53fd" + "reference": "b02726f39a20bc65e30364f5c750c4ddbf1f58e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/a3d9eea8cfa467ece41f0f54ba28185d74bd53fd", - "reference": "a3d9eea8cfa467ece41f0f54ba28185d74bd53fd", + "url": "https://api.github.com/repos/symfony/mailer/zipball/b02726f39a20bc65e30364f5c750c4ddbf1f58e9", + "reference": "b02726f39a20bc65e30364f5c750c4ddbf1f58e9", "shasum": "" }, "require": { @@ -8533,7 +8446,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.4.0" + "source": "https://github.com/symfony/mailer/tree/v7.4.6" }, "funding": [ { @@ -8553,20 +8466,20 @@ "type": "tidelift" } ], - "time": "2025-11-21T15:26:00+00:00" + "time": "2026-02-25T16:50:00+00:00" }, { "name": "symfony/mime", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "bdb02729471be5d047a3ac4a69068748f1a6be7a" + "reference": "9fc881d95feae4c6c48678cb6372bd8a7ba04f5f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/bdb02729471be5d047a3ac4a69068748f1a6be7a", - "reference": "bdb02729471be5d047a3ac4a69068748f1a6be7a", + "url": "https://api.github.com/repos/symfony/mime/zipball/9fc881d95feae4c6c48678cb6372bd8a7ba04f5f", + "reference": "9fc881d95feae4c6c48678cb6372bd8a7ba04f5f", "shasum": "" }, "require": { @@ -8577,15 +8490,15 @@ }, "conflict": { "egulias/email-validator": "~3.0.0", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", + "phpdocumentor/reflection-docblock": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1", "symfony/mailer": "<6.4", "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", "league/html-to-markdown": "^5.0", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "phpdocumentor/reflection-docblock": "^5.2|^6.0", "symfony/dependency-injection": "^6.4|^7.0|^8.0", "symfony/process": "^6.4|^7.0|^8.0", "symfony/property-access": "^6.4|^7.0|^8.0", @@ -8622,7 +8535,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.4.0" + "source": "https://github.com/symfony/mime/tree/v7.4.6" }, "funding": [ { @@ -8642,20 +8555,20 @@ "type": "tidelift" } ], - "time": "2025-11-16T10:14:42+00:00" + "time": "2026-02-05T15:57:06+00:00" }, { "name": "symfony/options-resolver", - "version": "v7.3.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d" + "reference": "b38026df55197f9e39a44f3215788edf83187b80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d", - "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b38026df55197f9e39a44f3215788edf83187b80", + "reference": "b38026df55197f9e39a44f3215788edf83187b80", "shasum": "" }, "require": { @@ -8693,7 +8606,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v7.3.3" + "source": "https://github.com/symfony/options-resolver/tree/v7.4.0" }, "funding": [ { @@ -8713,7 +8626,7 @@ "type": "tidelift" } ], - "time": "2025-08-05T10:16:07+00:00" + "time": "2025-11-12T15:39:26+00:00" }, { "name": "symfony/polyfill-ctype", @@ -9546,16 +9459,16 @@ }, { "name": "symfony/process", - "version": "v7.4.0", + "version": "v7.4.5", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8" + "reference": "608476f4604102976d687c483ac63a79ba18cc97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", - "reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", + "url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97", + "reference": "608476f4604102976d687c483ac63a79ba18cc97", "shasum": "" }, "require": { @@ -9587,7 +9500,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.4.0" + "source": "https://github.com/symfony/process/tree/v7.4.5" }, "funding": [ { @@ -9607,26 +9520,26 @@ "type": "tidelift" } ], - "time": "2025-10-16T11:21:06+00:00" + "time": "2026-01-26T15:07:59+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v7.3.0", + "version": "v7.4.4", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f" + "reference": "929ffe10bbfbb92e711ac3818d416f9daffee067" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", - "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/929ffe10bbfbb92e711ac3818d416f9daffee067", + "reference": "929ffe10bbfbb92e711ac3818d416f9daffee067", "shasum": "" }, "require": { "php": ">=8.2", "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^6.4|^7.0" + "symfony/http-foundation": "^6.4|^7.0|^8.0" }, "conflict": { "php-http/discovery": "<1.15", @@ -9636,11 +9549,12 @@ "nyholm/psr7": "^1.1", "php-http/discovery": "^1.15", "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^6.4|^7.0", - "symfony/config": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/framework-bundle": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0" + "symfony/browser-kit": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0", + "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0", + "symfony/runtime": "^6.4.13|^7.1.6|^8.0" }, "type": "symfony-bridge", "autoload": { @@ -9674,7 +9588,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.3.0" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.4.4" }, "funding": [ { @@ -9685,25 +9599,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-26T08:57:56+00:00" + "time": "2026-01-03T23:30:35+00:00" }, { "name": "symfony/routing", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "4720254cb2644a0b876233d258a32bf017330db7" + "reference": "238d749c56b804b31a9bf3e26519d93b65a60938" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/4720254cb2644a0b876233d258a32bf017330db7", - "reference": "4720254cb2644a0b876233d258a32bf017330db7", + "url": "https://api.github.com/repos/symfony/routing/zipball/238d749c56b804b31a9bf3e26519d93b65a60938", + "reference": "238d749c56b804b31a9bf3e26519d93b65a60938", "shasum": "" }, "require": { @@ -9755,7 +9673,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.4.0" + "source": "https://github.com/symfony/routing/tree/v7.4.6" }, "funding": [ { @@ -9775,7 +9693,7 @@ "type": "tidelift" } ], - "time": "2025-11-27T13:27:24+00:00" + "time": "2026-02-25T16:50:00+00:00" }, { "name": "symfony/service-contracts", @@ -9866,16 +9784,16 @@ }, { "name": "symfony/string", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003" + "reference": "9f209231affa85aa930a5e46e6eb03381424b30b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/d50e862cb0a0e0886f73ca1f31b865efbb795003", - "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003", + "url": "https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b", + "reference": "9f209231affa85aa930a5e46e6eb03381424b30b", "shasum": "" }, "require": { @@ -9933,7 +9851,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.4.0" + "source": "https://github.com/symfony/string/tree/v7.4.6" }, "funding": [ { @@ -9953,20 +9871,20 @@ "type": "tidelift" } ], - "time": "2025-11-27T13:27:24+00:00" + "time": "2026-02-09T09:33:46+00:00" }, { "name": "symfony/translation", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68" + "reference": "1888cf064399868af3784b9e043240f1d89d25ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", - "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", + "url": "https://api.github.com/repos/symfony/translation/zipball/1888cf064399868af3784b9e043240f1d89d25ce", + "reference": "1888cf064399868af3784b9e043240f1d89d25ce", "shasum": "" }, "require": { @@ -10033,7 +9951,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.4.0" + "source": "https://github.com/symfony/translation/tree/v7.4.6" }, "funding": [ { @@ -10053,7 +9971,7 @@ "type": "tidelift" } ], - "time": "2025-11-27T13:27:24+00:00" + "time": "2026-02-17T07:53:42+00:00" }, { "name": "symfony/translation-contracts", @@ -10139,16 +10057,16 @@ }, { "name": "symfony/uid", - "version": "v7.4.0", + "version": "v7.4.4", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "2498e9f81b7baa206f44de583f2f48350b90142c" + "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/2498e9f81b7baa206f44de583f2f48350b90142c", - "reference": "2498e9f81b7baa206f44de583f2f48350b90142c", + "url": "https://api.github.com/repos/symfony/uid/zipball/7719ce8aba76be93dfe249192f1fbfa52c588e36", + "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36", "shasum": "" }, "require": { @@ -10193,7 +10111,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.4.0" + "source": "https://github.com/symfony/uid/tree/v7.4.4" }, "funding": [ { @@ -10213,20 +10131,20 @@ "type": "tidelift" } ], - "time": "2025-09-25T11:02:55+00:00" + "time": "2026-01-03T23:30:35+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.4.0", + "version": "v7.4.6", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece" + "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41fd6c4ae28c38b294b42af6db61446594a0dece", - "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/045321c440ac18347b136c63d2e9bf28a2dc0291", + "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291", "shasum": "" }, "require": { @@ -10280,7 +10198,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.4.0" + "source": "https://github.com/symfony/var-dumper/tree/v7.4.6" }, "funding": [ { @@ -10300,20 +10218,20 @@ "type": "tidelift" } ], - "time": "2025-10-27T20:36:44+00:00" + "time": "2026-02-15T10:53:20+00:00" }, { "name": "symfony/var-exporter", - "version": "v7.3.2", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "05b3e90654c097817325d6abd284f7938b05f467" + "reference": "03a60f169c79a28513a78c967316fbc8bf17816f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/05b3e90654c097817325d6abd284f7938b05f467", - "reference": "05b3e90654c097817325d6abd284f7938b05f467", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/03a60f169c79a28513a78c967316fbc8bf17816f", + "reference": "03a60f169c79a28513a78c967316fbc8bf17816f", "shasum": "" }, "require": { @@ -10321,9 +10239,9 @@ "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { - "symfony/property-access": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0", - "symfony/var-dumper": "^6.4|^7.0" + "symfony/property-access": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -10361,7 +10279,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v7.3.2" + "source": "https://github.com/symfony/var-exporter/tree/v7.4.0" }, "funding": [ { @@ -10381,32 +10299,32 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-09-11T10:15:23+00:00" }, { "name": "symfony/yaml", - "version": "v7.3.2", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30" + "reference": "24dd4de28d2e3988b311751ac49e684d783e2345" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/b8d7d868da9eb0919e99c8830431ea087d6aae30", - "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30", + "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345", + "reference": "24dd4de28d2e3988b311751ac49e684d783e2345", "shasum": "" }, "require": { "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { "symfony/console": "<6.4" }, "require-dev": { - "symfony/console": "^6.4|^7.0" + "symfony/console": "^6.4|^7.0|^8.0" }, "bin": [ "Resources/bin/yaml-lint" @@ -10437,7 +10355,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.3.2" + "source": "https://github.com/symfony/yaml/tree/v7.4.1" }, "funding": [ { @@ -10457,7 +10375,7 @@ "type": "tidelift" } ], - "time": "2025-07-10T08:47:49+00:00" + "time": "2025-12-04T18:11:45+00:00" }, { "name": "teampanfu/laravel-hcaptcha", @@ -10516,27 +10434,28 @@ "issues": "https://github.com/teampanfu/laravel-hcaptcha/issues", "source": "https://github.com/teampanfu/laravel-hcaptcha/tree/v1.1.2" }, + "abandoned": true, "time": "2023-03-30T14:14:55+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "0d72ac1c00084279c1816675284073c5a337c20d" + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", - "reference": "0d72ac1c00084279c1816675284073c5a337c20d", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41", + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "php": "^7.4 || ^8.0", - "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0" }, "require-dev": { "phpstan/phpstan": "^2.0", @@ -10569,9 +10488,9 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0" }, - "time": "2024-12-21T16:25:41+00:00" + "time": "2025-12-02T11:56:42+00:00" }, { "name": "ultrono/laravel-sitemap", @@ -10645,26 +10564,26 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.6.2", + "version": "v5.6.3", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + "reference": "955e7815d677a3eaa7075231212f2110983adecc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc", + "reference": "955e7815d677a3eaa7075231212f2110983adecc", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.3", + "graham-campbell/result-type": "^1.1.4", "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3", - "symfony/polyfill-ctype": "^1.24", - "symfony/polyfill-mbstring": "^1.24", - "symfony/polyfill-php80": "^1.24" + "phpoption/phpoption": "^1.9.5", + "symfony/polyfill-ctype": "^1.26", + "symfony/polyfill-mbstring": "^1.26", + "symfony/polyfill-php80": "^1.26" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", @@ -10713,7 +10632,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3" }, "funding": [ { @@ -10725,7 +10644,7 @@ "type": "tidelift" } ], - "time": "2025-04-30T23:37:27+00:00" + "time": "2025-12-27T19:49:13+00:00" }, { "name": "voku/portable-ascii", @@ -10859,16 +10778,16 @@ "packages-dev": [ { "name": "barryvdh/laravel-ide-helper", - "version": "v3.6.0", + "version": "v3.6.1", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-ide-helper.git", - "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29" + "reference": "b106f7ee85f263c4f103eca49e7bf3862c2e5e75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8d00250cba25728373e92c1d8dcebcbf64623d29", - "reference": "8d00250cba25728373e92c1d8dcebcbf64623d29", + "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/b106f7ee85f263c4f103eca49e7bf3862c2e5e75", + "reference": "b106f7ee85f263c4f103eca49e7bf3862c2e5e75", "shasum": "" }, "require": { @@ -10937,7 +10856,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-ide-helper/issues", - "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.6.0" + "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.6.1" }, "funding": [ { @@ -10949,7 +10868,7 @@ "type": "github" } ], - "time": "2025-07-17T20:11:57+00:00" + "time": "2025-12-10T09:11:07+00:00" }, { "name": "barryvdh/reflection-docblock", @@ -11005,22 +10924,22 @@ }, { "name": "composer/class-map-generator", - "version": "1.6.2", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/composer/class-map-generator.git", - "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076" + "reference": "8f5fa3cc214230e71f54924bd0197a3bcc705eb1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076", - "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8f5fa3cc214230e71f54924bd0197a3bcc705eb1", + "reference": "8f5fa3cc214230e71f54924bd0197a3bcc705eb1", "shasum": "" }, "require": { "composer/pcre": "^2.1 || ^3.1", "php": "^7.2 || ^8.0", - "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" + "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7 || ^8" }, "require-dev": { "phpstan/phpstan": "^1.12 || ^2", @@ -11028,7 +10947,7 @@ "phpstan/phpstan-phpunit": "^1 || ^2", "phpstan/phpstan-strict-rules": "^1.1 || ^2", "phpunit/phpunit": "^8", - "symfony/filesystem": "^5.4 || ^6" + "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8" }, "type": "library", "extra": { @@ -11058,7 +10977,7 @@ ], "support": { "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.6.2" + "source": "https://github.com/composer/class-map-generator/tree/1.7.1" }, "funding": [ { @@ -11070,7 +10989,7 @@ "type": "github" } ], - "time": "2025-08-20T18:52:43+00:00" + "time": "2025-12-29T13:15:25+00:00" }, { "name": "composer/pcre", @@ -11465,16 +11384,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "12.5.1", + "version": "12.5.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "c467c59a4f6e04b942be422844e7a6352fa01b57" + "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c467c59a4f6e04b942be422844e7a6352fa01b57", - "reference": "c467c59a4f6e04b942be422844e7a6352fa01b57", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/b015312f28dd75b75d3422ca37dff2cd1a565e8d", + "reference": "b015312f28dd75b75d3422ca37dff2cd1a565e8d", "shasum": "" }, "require": { @@ -11489,7 +11408,7 @@ "sebastian/environment": "^8.0.3", "sebastian/lines-of-code": "^4.0", "sebastian/version": "^6.0", - "theseer/tokenizer": "^2.0" + "theseer/tokenizer": "^2.0.1" }, "require-dev": { "phpunit/phpunit": "^12.5.1" @@ -11530,7 +11449,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.1" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.3" }, "funding": [ { @@ -11550,20 +11469,20 @@ "type": "tidelift" } ], - "time": "2025-12-08T07:17:58+00:00" + "time": "2026-02-06T06:01:44+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "6.0.0", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "961bc913d42fe24a257bfff826a5068079ac7782" + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782", - "reference": "961bc913d42fe24a257bfff826a5068079ac7782", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", "shasum": "" }, "require": { @@ -11603,15 +11522,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator", + "type": "tidelift" } ], - "time": "2025-02-07T04:58:37+00:00" + "time": "2026-02-02T14:04:18+00:00" }, { "name": "phpunit/php-invoker", @@ -11799,16 +11730,16 @@ }, { "name": "phpunit/phpunit", - "version": "12.5.4", + "version": "12.5.14", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "4ba0e923f9d3fc655de22f9547c01d15a41fc93a" + "reference": "47283cfd98d553edcb1353591f4e255dc1bb61f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4ba0e923f9d3fc655de22f9547c01d15a41fc93a", - "reference": "4ba0e923f9d3fc655de22f9547c01d15a41fc93a", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/47283cfd98d553edcb1353591f4e255dc1bb61f0", + "reference": "47283cfd98d553edcb1353591f4e255dc1bb61f0", "shasum": "" }, "require": { @@ -11822,18 +11753,19 @@ "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.3", - "phpunit/php-code-coverage": "^12.5.1", - "phpunit/php-file-iterator": "^6.0.0", + "phpunit/php-code-coverage": "^12.5.3", + "phpunit/php-file-iterator": "^6.0.1", "phpunit/php-invoker": "^6.0.0", "phpunit/php-text-template": "^5.0.0", "phpunit/php-timer": "^8.0.0", "sebastian/cli-parser": "^4.2.0", - "sebastian/comparator": "^7.1.3", + "sebastian/comparator": "^7.1.4", "sebastian/diff": "^7.0.0", "sebastian/environment": "^8.0.3", "sebastian/exporter": "^7.0.2", "sebastian/global-state": "^8.0.2", "sebastian/object-enumerator": "^7.0.0", + "sebastian/recursion-context": "^7.0.1", "sebastian/type": "^6.0.3", "sebastian/version": "^6.0.0", "staabm/side-effects-detector": "^1.0.5" @@ -11876,7 +11808,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.4" + "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.14" }, "funding": [ { @@ -11900,7 +11832,7 @@ "type": "tidelift" } ], - "time": "2025-12-15T06:05:34+00:00" + "time": "2026-02-18T12:38:40+00:00" }, { "name": "sebastian/cli-parser", @@ -11973,16 +11905,16 @@ }, { "name": "sebastian/comparator", - "version": "7.1.3", + "version": "7.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "dc904b4bb3ab070865fa4068cd84f3da8b945148" + "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/dc904b4bb3ab070865fa4068cd84f3da8b945148", - "reference": "dc904b4bb3ab070865fa4068cd84f3da8b945148", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a7de5df2e094f9a80b40a522391a7e6022df5f6", + "reference": "6a7de5df2e094f9a80b40a522391a7e6022df5f6", "shasum": "" }, "require": { @@ -12041,7 +11973,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.4" }, "funding": [ { @@ -12061,7 +11993,7 @@ "type": "tidelift" } ], - "time": "2025-08-20T11:27:00+00:00" + "time": "2026-01-24T09:28:48+00:00" }, { "name": "sebastian/complexity", @@ -12801,16 +12733,16 @@ }, { "name": "spatie/backtrace", - "version": "1.7.4", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe" + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe", - "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/8c0f16a59ae35ec8c62d85c3c17585158f430110", + "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110", "shasum": "" }, "require": { @@ -12848,7 +12780,8 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/backtrace/tree/1.7.4" + "issues": "https://github.com/spatie/backtrace/issues", + "source": "https://github.com/spatie/backtrace/tree/1.8.1" }, "funding": [ { @@ -12860,7 +12793,7 @@ "type": "other" } ], - "time": "2025-05-08T15:41:09+00:00" + "time": "2025-08-26T08:22:30+00:00" }, { "name": "spatie/error-solutions", @@ -13090,38 +13023,39 @@ }, { "name": "spatie/laravel-ignition", - "version": "2.9.1", + "version": "2.11.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "1baee07216d6748ebd3a65ba97381b051838707a" + "reference": "11f38d1ff7abc583a61c96bf3c1b03610a69cccd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a", - "reference": "1baee07216d6748ebd3a65ba97381b051838707a", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/11f38d1ff7abc583a61c96bf3c1b03610a69cccd", + "reference": "11f38d1ff7abc583a61c96bf3c1b03610a69cccd", "shasum": "" }, "require": { "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "illuminate/support": "^10.0|^11.0|^12.0", - "php": "^8.1", - "spatie/ignition": "^1.15", - "symfony/console": "^6.2.3|^7.0", - "symfony/var-dumper": "^6.2.3|^7.0" + "illuminate/support": "^11.0|^12.0|^13.0", + "nesbot/carbon": "^2.72|^3.0", + "php": "^8.2", + "spatie/ignition": "^1.15.1", + "symfony/console": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" }, "require-dev": { - "livewire/livewire": "^2.11|^3.3.5", - "mockery/mockery": "^1.5.1", - "openai-php/client": "^0.8.1|^0.10", - "orchestra/testbench": "8.22.3|^9.0|^10.0", - "pestphp/pest": "^2.34|^3.7", - "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0", - "phpstan/phpstan-phpunit": "^1.3.16|^2.0", - "vlucas/phpdotenv": "^5.5" + "livewire/livewire": "^3.7.0|^4.0|dev-josh/v3-laravel-13-support", + "mockery/mockery": "^1.6.12", + "openai-php/client": "^0.10.3|^0.19", + "orchestra/testbench": "^v9.16.0|^10.6|^11.0", + "pestphp/pest": "^3.7|^4.0", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan-deprecation-rules": "^2.0.3", + "phpstan/phpstan-phpunit": "^2.0.8", + "vlucas/phpdotenv": "^5.6.2" }, "suggest": { "openai-php/client": "Require get solutions from OpenAI", @@ -13177,7 +13111,7 @@ "type": "github" } ], - "time": "2025-02-20T13:13:55+00:00" + "time": "2026-02-22T19:14:05+00:00" }, { "name": "staabm/side-effects-detector", @@ -13284,9 +13218,7 @@ ], "aliases": [], "minimum-stability": "beta", - "stability-flags": { - "ggsoftwarellc/nitropay-sponsor-php": 20 - }, + "stability-flags": {}, "prefer-stable": true, "prefer-lowest": false, "platform": { diff --git a/backend/database/migrations/2026_02_21_091849_create_supporter_packages_table.php b/backend/database/migrations/2026_02_21_091849_create_supporter_packages_table.php new file mode 100644 index 000000000..e15193a53 --- /dev/null +++ b/backend/database/migrations/2026_02_21_091849_create_supporter_packages_table.php @@ -0,0 +1,34 @@ +id(); + $table->string('name'); + $table->boolean('enabled'); + $table->integer('order'); + $table->bigInteger('package_id')->nullable(); + $table->integer('price'); + $table->integer('duration_number'); + $table->enum('duration_type', ['mo', 'y', 'w', 'd']); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('supporter_packages'); + } +}; diff --git a/backend/database/migrations/2026_02_25_191550_create_supporter_subscriptions_table.php b/backend/database/migrations/2026_02_25_191550_create_supporter_subscriptions_table.php new file mode 100644 index 000000000..644b7d9b3 --- /dev/null +++ b/backend/database/migrations/2026_02_25_191550_create_supporter_subscriptions_table.php @@ -0,0 +1,38 @@ +id(); + $table->foreignId('user_id')->constrained()->cascadeOnDelete(); // The user that initiated this request + $table->foreignId('supporter_package_id')->constrained()->nullOnDelete(); + $table->enum('status', ['waiting', 'active', 'cancelled'])->default('waiting'); + + $table->float('price'); + $table->string('provider'); + $table->string('provider_id'); + + $table->timestamp('next_payment_at')->nullable(); + $table->timestamp('cancelled_at')->nullable(); + + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('supporter_subscriptions'); + } +}; diff --git a/backend/database/migrations/2026_02_25_191550_create_supporter_transactions_table.php b/backend/database/migrations/2026_02_25_191550_create_supporter_transactions_table.php new file mode 100644 index 000000000..4c2f1a126 --- /dev/null +++ b/backend/database/migrations/2026_02_25_191550_create_supporter_transactions_table.php @@ -0,0 +1,36 @@ +id(); + $table->foreignId('user_id')->constrained()->cascadeOnDelete(); // The user that initiated this request + $table->foreignId('supporter_package_id')->constrained()->nullOnDelete(); + $table->foreignId('supporter_subscription_id')->nullable()->constrained()->nullOnDelete(); + $table->enum('status', ['complete', 'refunded', 'failed'])->default('complete'); + + $table->float('price'); + $table->string('provider'); + $table->string('provider_id'); + + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('supporter_transactions'); + } +}; diff --git a/backend/database/migrations/2026_02_27_115557_add_supporter_transaction_id_to_supporters_table.php b/backend/database/migrations/2026_02_27_115557_add_supporter_transaction_id_to_supporters_table.php new file mode 100644 index 000000000..86df5d2fb --- /dev/null +++ b/backend/database/migrations/2026_02_27_115557_add_supporter_transaction_id_to_supporters_table.php @@ -0,0 +1,33 @@ +integer('price')->default(0); + + $table->foreignId('supporter_package_id')->nullable()->constrained()->nullOnDelete(); + $table->foreignId('supporter_transaction_id')->nullable()->constrained()->cascadeOnDelete(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('supporters', function (Blueprint $table) { + $table->dropColumn('supporter_transaction_id'); + $table->dropColumn('supporter_package_id'); + $table->dropColumn('price'); + }); + } +}; diff --git a/backend/database/migrations/2026_03_05_234432_add_timestamp_to_downloadable_downloads_table.php b/backend/database/migrations/2026_03_05_234432_add_timestamp_to_downloadable_downloads_table.php new file mode 100644 index 000000000..0cd3465a5 --- /dev/null +++ b/backend/database/migrations/2026_03_05_234432_add_timestamp_to_downloadable_downloads_table.php @@ -0,0 +1,29 @@ +timestamp('created_at')->nullable(); + $table->index('created_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('downloadable_downloads', function (Blueprint $table) { + $table->dropColumn('created_at'); + }); + } +}; diff --git a/backend/database/migrations/2026_03_05_234504_add_timestamp_to_mod_downloads_table.php b/backend/database/migrations/2026_03_05_234504_add_timestamp_to_mod_downloads_table.php new file mode 100644 index 000000000..adef1a10b --- /dev/null +++ b/backend/database/migrations/2026_03_05_234504_add_timestamp_to_mod_downloads_table.php @@ -0,0 +1,29 @@ +timestamp('created_at')->nullable(); + $table->index('created_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('mod_downloads', function (Blueprint $table) { + $table->dropColumn('created_at'); + }); + } +}; diff --git a/backend/database/migrations/2026_03_05_234538_add_timestamp_to_mod_views_table.php b/backend/database/migrations/2026_03_05_234538_add_timestamp_to_mod_views_table.php new file mode 100644 index 000000000..320b13004 --- /dev/null +++ b/backend/database/migrations/2026_03_05_234538_add_timestamp_to_mod_views_table.php @@ -0,0 +1,29 @@ +timestamp('created_at')->nullable(); + $table->index('created_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('mod_views', function (Blueprint $table) { + $table->dropColumn('created_at'); + }); + } +}; diff --git a/backend/routes/api.php b/backend/routes/api.php index fb8edf3aa..4500f8223 100644 --- a/backend/routes/api.php +++ b/backend/routes/api.php @@ -34,6 +34,7 @@ use App\Http\Controllers\SettingsController; use App\Http\Controllers\SocialLoginController; use App\Http\Controllers\SupporterController; +use App\Http\Controllers\SupporterPackageController; use App\Http\Controllers\SuspensionController; use App\Http\Controllers\TagController; use App\Http\Controllers\ThreadCommentsController; @@ -214,8 +215,7 @@ }); Route::resource('supporters', SupporterController::class); -Route::middleware('auth:sanctum')->get('supporters/nitro-check', [SupporterController::class, 'nitroCheck']); - +Route::resource('supporter-packages', SupporterPackageController::class); Route::middleware('can:report,user')->post('users/{user}/reports', [UserController::class, 'report']); Route::resource('roles', RoleController::class); APIService::gameResource('suspensions', SuspensionController::class, ['parentOptional' => true, 'gameOnly' => ['index']]); diff --git a/frontend/app/components/site/category-tree.vue b/frontend/app/components/site/category-tree.vue index e005c5ac9..046f89c29 100644 --- a/frontend/app/components/site/category-tree.vue +++ b/frontend/app/components/site/category-tree.vue @@ -53,7 +53,7 @@ const props = withDefaults(defineProps<{ const emit = defineEmits(['update:modelValue', 'update:search']); const modelValue = defineModel(); const queryVm = useVModel(props, 'search', emit, { passive: true }); -const queryDelayed = refDebounced(queryVm, 250); +const queryDelayed = refDebounced(queryVm); const lowSearch = computed(() => queryDelayed.value.toLocaleLowerCase()); const currentCategoryId = props.setQuery ? useRouteQuery('category') : useVModel(props); diff --git a/frontend/app/components/site/mod/grid-mod.vue b/frontend/app/components/site/mod/grid-mod.vue index 85668bdfe..d8cea00ee 100644 --- a/frontend/app/components/site/mod/grid-mod.vue +++ b/frontend/app/components/site/mod/grid-mod.vue @@ -4,7 +4,7 @@
- + {{ mod.name }} @@ -95,6 +95,10 @@ const gameUrl = computed(() => `/g/${game?.short_name || store.currentGame?.shor justify-content: flex-start; } +.mod-title { + font-size: 1.25rem; +} + .mod-details { padding: 1.5rem; color: var(--secondary-text-color); diff --git a/frontend/app/components/site/mod/list-mod.vue b/frontend/app/components/site/mod/list-mod.vue index 199ead4c7..209c52d24 100644 --- a/frontend/app/components/site/mod/list-mod.vue +++ b/frontend/app/components/site/mod/list-mod.vue @@ -5,7 +5,7 @@ - + {{ mod.name }} @@ -94,6 +94,7 @@ const fullViews = computed(() => friendlyNumber(locale.value, mod.views)); diff --git a/frontend/app/components/site/pages/edit-mod/edit-mod-files.vue b/frontend/app/components/site/pages/edit-mod/edit-mod-files.vue index c932ac552..8b60dba2d 100644 --- a/frontend/app/components/site/pages/edit-mod/edit-mod-files.vue +++ b/frontend/app/components/site/pages/edit-mod/edit-mod-files.vue @@ -172,14 +172,20 @@ const currentLink = ref(); const filesPage = ref(1); const linksPage = ref(1); -const { data: asyncFiles, refresh: refreshFiles } = await useWatchedFetchMany(`mods/${mod.value.id}/files`, { - limit: 10, - page: filesPage -}, { immediate: !!mod.value.id }); -const { data: asyncLinks, refresh: refreshLinks } = await useWatchedFetchMany(`mods/${mod.value.id}/links`, { - limit: 10, - page: linksPage -}, { immediate: !!mod.value.id }); +const { data: asyncFiles, refresh: refreshFiles } = await useFetchMany(`mods/${mod.value.id}/files`, { + query: { + limit: 10, + page: filesPage + }, + immediate: !!mod.value.id +}); +const { data: asyncLinks, refresh: refreshLinks } = await useFetchMany(`mods/${mod.value.id}/links`, { + query: { + limit: 10, + page: linksPage + }, + immediate: !!mod.value.id +}); const filesRef = ref([]); const linksRef = ref([]); diff --git a/frontend/app/components/site/pages/game-list.vue b/frontend/app/components/site/pages/game-list.vue new file mode 100644 index 000000000..2c793d103 --- /dev/null +++ b/frontend/app/components/site/pages/game-list.vue @@ -0,0 +1,48 @@ + + + diff --git a/frontend/app/components/site/pages/mod/mod-banner.vue b/frontend/app/components/site/pages/mod/mod-banner.vue index 776bf8ea7..31af0df8d 100644 --- a/frontend/app/components/site/pages/mod/mod-banner.vue +++ b/frontend/app/components/site/pages/mod/mod-banner.vue @@ -1,5 +1,5 @@ diff --git a/frontend/app/components/site/pages/the-header-search.vue b/frontend/app/components/site/pages/the-header-search.vue new file mode 100644 index 000000000..f2c98976d --- /dev/null +++ b/frontend/app/components/site/pages/the-header-search.vue @@ -0,0 +1,233 @@ + + + + diff --git a/frontend/app/components/site/pages/the-header.vue b/frontend/app/components/site/pages/the-header.vue index 46a897a2b..1c8f0aef3 100644 --- a/frontend/app/components/site/pages/the-header.vue +++ b/frontend/app/components/site/pages/the-header.vue @@ -40,7 +40,6 @@ {{ $t('translation_site') }} {{ $t('discord') }} {{ $t('rules') }} - {{ $t('games') }} {{ $t('news') }} {{ $t('forum') }} {{ $t('support_us') }} @@ -51,55 +50,7 @@ - - - - - {{ $t('search') }} - - CTRL K - - - - - + @@ -152,30 +103,18 @@ + diff --git a/frontend/app/pages/thread/[thread].vue b/frontend/app/pages/thread/[thread].vue index 476535ad7..8d82e4e9a 100644 --- a/frontend/app/pages/thread/[thread].vue +++ b/frontend/app/pages/thread/[thread].vue @@ -65,8 +65,10 @@ const showReportModal = ref(false); const forumId = ref(thread.value.forum_id); const categoryId = ref(thread.value.category_id); -const { data: categories } = await useWatchedFetchMany('forum-categories', { - forum_id: forumId +const { data: categories } = await useFetchMany('forum-categories', { + query: { + forum_id: forumId + } }); const canCloseInCategory = computed(() => thread.value.category?.can_close_threads); diff --git a/frontend/app/types/models.ts b/frontend/app/types/models.ts index b61c759a8..35a31f2a1 100644 --- a/frontend/app/types/models.ts +++ b/frontend/app/types/models.ts @@ -548,6 +548,19 @@ export interface Supporter { user?: User; } +export interface SupporterPackage { + id: number; + name: string; + enabled: boolean; + order: number; + package_id: number; + price: number; + duration_type: 'mo' | 'y' | 'd' | 'w'; + duration_number: number; + created_at?: string; + updated_at?: string; +} + export interface Report { id: number; name: string | null; diff --git a/frontend/app/utils/helpers.ts b/frontend/app/utils/helpers.ts index b90ccf4f4..ca2be1079 100644 --- a/frontend/app/utils/helpers.ts +++ b/frontend/app/utils/helpers.ts @@ -4,9 +4,12 @@ import { serialize } from 'object-to-formdata'; import type { LocationQueryValueRaw } from 'vue-router'; import { addDays, formatDuration, intervalToDuration, parseISO } from 'date-fns'; import { ColorSpace, HSL } from 'colorjs.io/fn'; +import humanizeDuration from 'humanize-duration'; ColorSpace.register(HSL); +export const convertMs = { y: 31557600000, mo: 2629800000, w: 604800000, d: 86400000, h: 3600000, m: 60000, s: 1000, ms: 1 }; + /** * Converts bytes to human readable KiB/MiB(Kibiytes/Mebibytes)/etc. */ @@ -303,3 +306,7 @@ export function pretty(str: string) { } return str.split('_').map(s => s.charAt(0).toUpperCase() + s.slice(1)).join(' '); ; } + +export function specificUnitDuration(num: number, str: string) { + return humanizeDuration(num * convertMs[str], { units: [str] }); +} diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 87e320235..42e845fd1 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -45,7 +45,7 @@ export default defineNuxtConfig({ siteUrl: '', storageUrl: '', hcaptchaSiteKey: '', - version: '3.6.6', + version: '3.6.7', presignedUpload: false, commitHash: '' }, @@ -117,7 +117,6 @@ export default defineNuxtConfig({ keyedComposables: [ { name: 'useFetchMany', argumentLength: 3 }, { name: 'useFetchData', argumentLength: 3 }, - { name: 'useWatchedFetchMany', argumentLength: 4 }, { name: 'useEditResource', argumentLength: 5 }, { name: 'useResource', argumentLength: 6 } ] @@ -221,17 +220,5 @@ export default defineNuxtConfig({ sitemap: '/sitemap.xml' }, - modules: [ - '@nuxtjs/robots', - '@pinia/nuxt', - '@nuxtjs/tailwindcss', - '@vueuse/nuxt', - 'unplugin-icons/nuxt', - '@nuxtjs/i18n', - 'nuxt-umami', - '@nuxtjs/fontaine', - 'nuxt-easy-lightbox', - 'nuxt-vitalizer', - 'nuxt-seo-utils' - ] + modules: ['@nuxtjs/robots', '@pinia/nuxt', '@nuxtjs/tailwindcss', '@vueuse/nuxt', 'unplugin-icons/nuxt', '@nuxtjs/i18n', 'nuxt-umami', '@nuxtjs/fontaine', 'nuxt-easy-lightbox', 'nuxt-vitalizer', 'nuxt-seo-utils', '@nuxt/scripts'] }); diff --git a/frontend/package.json b/frontend/package.json index 42ff1f8a0..bc5a75993 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -24,23 +24,25 @@ "@iconify-json/mdi": "^1.1.54", "@iconify-json/ri": "^1.2.1", "@iconify-json/svg-spinners": "^1.2.1", - "@nuxt/devtools": "^2.6.4", + "@nuxt/devtools": "^3.2.2", + "@nuxt/scripts": "0.13.2", "@nuxtjs/fontaine": "^0.5.0", "@nuxtjs/i18n": "^9.5.3", "@nuxtjs/tailwindcss": "^6.14.0", - "@pinia/nuxt": "0.11.2", + "@pinia/nuxt": "0.11.3", "@stylistic/eslint-plugin": "^5.3.1", "@types/markdown-it": "^14.1.2", "@types/node": "^24.10.1", "@types/qs": "^6.9.7", "@typescript-eslint/eslint-plugin": "^8.41.0", "@typescript-eslint/parser": "^8.41.0", + "@unhead/vue": "^2.0.3", "@vueuse/components": "^13.9.0", - "@vueuse/core": "^13.9.0", + "@vueuse/core": "^14.1.0", "@vueuse/nuxt": "^14.1.0", "eslint": "^9.35.0", "eslint-plugin-vue": "^10.4.0", - "nuxt": "latest", + "nuxt": "^4.3.1", "nuxt-easy-lightbox": "^1.1.0", "nuxt-umami": "^3.2.1", "nuxt-vitalizer": "^2.0.0", @@ -58,7 +60,7 @@ "@gerhobbelt/markdown-it-regexp": "^0.6.0-15", "@hcaptcha/vue3-hcaptcha": "^1.3.0", "@nuxtjs/robots": "^5.5.1", - "axios": "^1.13.2", + "axios": "^1.13.5", "colorjs.io": "^0.5.2", "date-fns": "^4.1.0", "fast-equals": "^5.3.2", @@ -66,14 +68,14 @@ "highlight.js": "^11.11.1", "humanize-duration": "^3.32.1", "isomorphic-dompurify": "^2.20.0", - "markdown-it": "^14.1.0", + "markdown-it": "^14.1.1", "markdown-it-anchor": "^9.2.0", "markdown-it-color-inline": "^1.9.5", "markdown-it-task-lists": "^2.1.1", "nuxt-seo-utils": "^7.0.19", "object-hash": "^3.0.0", "object-to-formdata": "^4.5.1", - "qs": "^6.14.1", + "qs": "^6.14.2", "radix-vue": "^1.9.13", "rfdc": "^1.4.1", "textarea-caret": "^3.1.0" diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 2bb9c1482..4f242676c 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -5,7 +5,7 @@ __metadata: version: 6 cacheKey: 8 -"@acemir/cssom@npm:^0.9.28": +"@acemir/cssom@npm:^0.9.31": version: 0.9.31 resolution: "@acemir/cssom@npm:0.9.31" checksum: f7a8d7f3eec3143f1cb9ce332ebe1d8a1922aa155f7a0619c9400753131d9f9baf22fa300352a9f93f20f53083e4acc20d4a8e663aa7b47e8c3191839e50d404 @@ -36,29 +36,29 @@ __metadata: languageName: node linkType: hard -"@asamuzakjp/css-color@npm:^4.1.1": - version: 4.1.1 - resolution: "@asamuzakjp/css-color@npm:4.1.1" +"@asamuzakjp/css-color@npm:^5.0.1": + version: 5.0.1 + resolution: "@asamuzakjp/css-color@npm:5.0.1" dependencies: - "@csstools/css-calc": ^2.1.4 - "@csstools/css-color-parser": ^3.1.0 - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 - lru-cache: ^11.2.4 - checksum: 4771d154368ecfd2238e7442478d5d19a20b5662572c990c00f0ac23c322536c7ddd11c875258b7af50257b1995f68ceb580c7e2ee50dc00196c7965c210aeb0 + "@csstools/css-calc": ^3.1.1 + "@csstools/css-color-parser": ^4.0.2 + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + lru-cache: ^11.2.6 + checksum: 95b7dde8bea695cedeb311b83c0c70d8012632c9622687d9dd31dfbd268a365c3a5d3346e8429cd052d778918332922705dd833673d73b61273d2ab39540343d languageName: node linkType: hard -"@asamuzakjp/dom-selector@npm:^6.7.6": - version: 6.7.6 - resolution: "@asamuzakjp/dom-selector@npm:6.7.6" +"@asamuzakjp/dom-selector@npm:^6.8.1": + version: 6.8.1 + resolution: "@asamuzakjp/dom-selector@npm:6.8.1" dependencies: "@asamuzakjp/nwsapi": ^2.3.9 bidi-js: ^1.0.3 css-tree: ^3.1.0 is-potential-custom-element-name: ^1.0.1 - lru-cache: ^11.2.4 - checksum: fb47d93d06afffe93a166739a7b3d40b36a311b46d215716bf7b60d59462602dffca5eb1b9ae40cdf3bccc6f4e244b525c6c5328f3f7509c39518c0409a9500c + lru-cache: ^11.2.6 + checksum: 19f39ae862d3451c6a8919d73f00e0c1b7a711c209ad6079abe9998089c7cca1307e5ddf9057f1776bd6a79ffd496ae582aaee2924bf15e6992526379b7d3b45 languageName: node linkType: hard @@ -69,57 +69,71 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/code-frame@npm:7.28.6" +"@babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/code-frame@npm:7.29.0" dependencies: "@babel/helper-validator-identifier": ^7.28.5 js-tokens: ^4.0.0 picocolors: ^1.1.1 - checksum: 6e98e47fd324b41c1919ff6d0fbf6fa5e991e5beff6b55803d9adaff9e11f4bc432803e52165f7b0d49af0f718209c3138a9b2fd51ff624b19d47704f11f8287 + checksum: 39f5b303757e4d63bbff8133e251094cd4f952b46e3fa9febc7368d907583911d6a1eded6090876dc1feeff5cf6e134fb19b706f8d58d26c5402cd50e5e1aeb2 languageName: node linkType: hard "@babel/compat-data@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/compat-data@npm:7.28.6" - checksum: 599b316aa0e3981aa9165ac34609ef5f29ebf5cecc04784e8b4932dd355aaa3599eaa222ff46a2fcfff52f083b8fd212650a52d8af57c4c217c81a100fefba09 + version: 7.29.0 + resolution: "@babel/compat-data@npm:7.29.0" + checksum: ad19db279dfd06cbe91b505d03be00d603c6d3fcc141cfc14f4ace5c558193e9b6aae4788cb01fd209c4c850e52d73c8f3c247680e3c0d84fa17ab8b3d50c808 languageName: node linkType: hard -"@babel/core@npm:^7.28.5": - version: 7.28.6 - resolution: "@babel/core@npm:7.28.6" +"@babel/core@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/core@npm:7.29.0" dependencies: - "@babel/code-frame": ^7.28.6 - "@babel/generator": ^7.28.6 + "@babel/code-frame": ^7.29.0 + "@babel/generator": ^7.29.0 "@babel/helper-compilation-targets": ^7.28.6 "@babel/helper-module-transforms": ^7.28.6 "@babel/helpers": ^7.28.6 - "@babel/parser": ^7.28.6 + "@babel/parser": ^7.29.0 "@babel/template": ^7.28.6 - "@babel/traverse": ^7.28.6 - "@babel/types": ^7.28.6 + "@babel/traverse": ^7.29.0 + "@babel/types": ^7.29.0 "@jridgewell/remapping": ^2.3.5 convert-source-map: ^2.0.0 debug: ^4.1.0 gensync: ^1.0.0-beta.2 json5: ^2.2.3 semver: ^6.3.1 - checksum: 09d3712c52b2dba76dc0394127f6aacdbb575d79f8b6dc41230c1a13d8047d259ba06d88d56d62d95bb06c94c025c1e4bdd896929b5d4644ce0b96a84fd91553 + checksum: 85e1df6e213382c46dee27bcd07ed9202fa108a85bb74eb37be656308fd949349171ad2aa17cc84cf0720c908dc9ea6309d25e64d2a7fcdaa63721ce0c67c10b languageName: node linkType: hard -"@babel/generator@npm:^7.28.5, @babel/generator@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/generator@npm:7.28.6" +"@babel/generator@npm:^7.28.5, @babel/generator@npm:^7.29.0": + version: 7.29.1 + resolution: "@babel/generator@npm:7.29.1" dependencies: - "@babel/parser": ^7.28.6 - "@babel/types": ^7.28.6 + "@babel/parser": ^7.29.0 + "@babel/types": ^7.29.0 "@jridgewell/gen-mapping": ^0.3.12 "@jridgewell/trace-mapping": ^0.3.28 jsesc: ^3.0.2 - checksum: 74f62f140e301c8c21652f7db3bc275008708272c0395f178ba6953297af50c4ea484874a44b3f292d242ce8a977fd3f31d9d3a3501c3aaca9cd46e3b1cded01 + checksum: d8e6863b2d04f684e65ad72731049ac7d754d3a3d1a67cdfc20807b109ba3180ed90d7ccef58ce5d38ded2eaeb71983a76c711eecb9b6266118262378f6c7226 + languageName: node + linkType: hard + +"@babel/generator@npm:^8.0.0-beta.4": + version: 8.0.0-rc.2 + resolution: "@babel/generator@npm:8.0.0-rc.2" + dependencies: + "@babel/parser": ^8.0.0-rc.2 + "@babel/types": ^8.0.0-rc.2 + "@jridgewell/gen-mapping": ^0.3.12 + "@jridgewell/trace-mapping": ^0.3.28 + "@types/jsesc": ^2.5.0 + jsesc: ^3.0.2 + checksum: ada25386c99c9ee67111b224e3b7974eb914ce08fcd356ce08a7a24faef480eeb484556b470c374a9fb5580a4c68265905bd190b58fb558edc7f6635f826cdbe languageName: node linkType: hard @@ -248,6 +262,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-string-parser@npm:^8.0.0-rc.2": + version: 8.0.0-rc.2 + resolution: "@babel/helper-string-parser@npm:8.0.0-rc.2" + checksum: dbebfb3df21fc7ebb0c7bf5d3d477d51dfc7f74cb70227a15387ade745c2acc943fa00975f639407674e4f1163be9278ddeed6bfb184a8c80633c28434260446 + languageName: node + linkType: hard + "@babel/helper-validator-identifier@npm:^7.28.5": version: 7.28.5 resolution: "@babel/helper-validator-identifier@npm:7.28.5" @@ -255,6 +276,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-validator-identifier@npm:^8.0.0-rc.2": + version: 8.0.0-rc.2 + resolution: "@babel/helper-validator-identifier@npm:8.0.0-rc.2" + checksum: 27034c2ba01e428812eb208cbe5d70797d6b3f857646daf1112c34b24343c9765f9e6f312f764d4cc089fa38b6143e5fad445e9b4ea18092dad3272d5960cc20 + languageName: node + linkType: hard + "@babel/helper-validator-option@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-validator-option@npm:7.27.1" @@ -272,14 +300,25 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.24.6, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.0, @babel/parser@npm:^7.28.4, @babel/parser@npm:^7.28.5, @babel/parser@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/parser@npm:7.28.6" +"@babel/parser@npm:^7.24.6, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.27.0, @babel/parser@npm:^7.28.4, @babel/parser@npm:^7.28.5, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/parser@npm:7.29.0" dependencies: - "@babel/types": ^7.28.6 + "@babel/types": ^7.29.0 + bin: + parser: ./bin/babel-parser.js + checksum: b4a1bd3cf46712e439286db9a4105dfa741b5a7720fa1f38f33719cf4f1da9df9fc5b6686128890bd6a62debba287d8d472af153dd629fd4a0a44fe55413cd68 + languageName: node + linkType: hard + +"@babel/parser@npm:^8.0.0-beta.4, @babel/parser@npm:^8.0.0-rc.2": + version: 8.0.0-rc.2 + resolution: "@babel/parser@npm:8.0.0-rc.2" + dependencies: + "@babel/types": ^8.0.0-rc.2 bin: parser: ./bin/babel-parser.js - checksum: 2a35319792ceef9bc918f0ff854449bef0120707798fe147ef988b0606de226e2fbc3a562ba687148bfe5336c6c67358fb27e71a94e425b28482dcaf0b172fd6 + checksum: d93ea48a279e7de378724d5d7cfbe357259572f51e40e71b9b0832667d894b3ea331262433424b98071b660f172d21920e84bdd5e1618f260d66f879c6e9a81e languageName: node linkType: hard @@ -294,7 +333,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.27.1, @babel/plugin-syntax-typescript@npm:^7.28.6": +"@babel/plugin-syntax-typescript@npm:^7.28.6": version: 7.28.6 resolution: "@babel/plugin-syntax-typescript@npm:7.28.6" dependencies: @@ -305,7 +344,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-typescript@npm:^7.28.5": +"@babel/plugin-transform-typescript@npm:^7.28.6": version: 7.28.6 resolution: "@babel/plugin-transform-typescript@npm:7.28.6" dependencies: @@ -331,34 +370,44 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.4, @babel/traverse@npm:^7.28.5, @babel/traverse@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/traverse@npm:7.28.6" +"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.4, @babel/traverse@npm:^7.28.5, @babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/traverse@npm:7.29.0" dependencies: - "@babel/code-frame": ^7.28.6 - "@babel/generator": ^7.28.6 + "@babel/code-frame": ^7.29.0 + "@babel/generator": ^7.29.0 "@babel/helper-globals": ^7.28.0 - "@babel/parser": ^7.28.6 + "@babel/parser": ^7.29.0 "@babel/template": ^7.28.6 - "@babel/types": ^7.28.6 + "@babel/types": ^7.29.0 debug: ^4.3.1 - checksum: 07bc23b720d111a20382fcdba776b800a7c1f94e35f8e4f417869f6769ba67c2b9573c8240924ca3b0ee5a88fa7ed048efb289e8b324f5cb4971e771174a0d32 + checksum: fbb5085aa525b5d4ecd9fe2f5885d88413fff6ad9c0fac244c37f96069b6d3af9ce825750cd16af1d97d26fa3d354b38dbbdb5f31430e0d99ed89660ab65430e languageName: node linkType: hard -"@babel/types@npm:^7.25.4, @babel/types@npm:^7.26.8, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6": - version: 7.28.6 - resolution: "@babel/types@npm:7.28.6" +"@babel/types@npm:^7.26.8, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/types@npm:7.29.0" dependencies: "@babel/helper-string-parser": ^7.27.1 "@babel/helper-validator-identifier": ^7.28.5 - checksum: f76556cda59be337cc10dc68b2a9a947c10de018998bab41076e7b7e4489b28dd53299f98f22eec0774264c989515e6fdc56de91c73e3aa396367bb953200a6a + checksum: 83f190438e94c22b2574aaeef7501830311ef266eaabfb06523409f64e2fe855e522951607085d71cad286719adef14e1ba37b671f334a7cd25b0f8506a01e0b + languageName: node + linkType: hard + +"@babel/types@npm:^8.0.0-beta.4, @babel/types@npm:^8.0.0-rc.2": + version: 8.0.0-rc.2 + resolution: "@babel/types@npm:8.0.0-rc.2" + dependencies: + "@babel/helper-string-parser": ^8.0.0-rc.2 + "@babel/helper-validator-identifier": ^8.0.0-rc.2 + checksum: 32020b550e669dd4efa73396bd84e15ac38b48cb4dd6e39f029e9ae5bedefeabc7dfabfb15f62e5a3dbfb467993d017f74e667f143d17274da95d7faddd242c8 languageName: node linkType: hard -"@bomb.sh/tab@npm:^0.0.11": - version: 0.0.11 - resolution: "@bomb.sh/tab@npm:0.0.11" +"@bomb.sh/tab@npm:^0.0.12": + version: 0.0.12 + resolution: "@bomb.sh/tab@npm:0.0.12" peerDependencies: cac: ^6.7.14 citty: ^0.1.6 @@ -372,7 +421,18 @@ __metadata: optional: true bin: tab: dist/bin/cli.js - checksum: 37602fce00690e6b591fb4ad57066ef643dc97d8398c91bd61cf915ca8ef2177f4c681249e68cda85de799f7899589f5876946994d9a427bc2f9507ee4ec3830 + checksum: b9d386013a8883834aa545fe982229e3b1d9c575089356262050c15ad1a9e8ad6b1f098ae481a2fa07359eb74927380ac1d0c407ec4870280431e90c8f2f983a + languageName: node + linkType: hard + +"@bramus/specificity@npm:^2.4.2": + version: 2.4.2 + resolution: "@bramus/specificity@npm:2.4.2" + dependencies: + css-tree: ^3.0.0 + bin: + specificity: bin/cli.js + checksum: c32d9b91d611c83ae2e04b2751f39a2b35118c62d92a8cabadea06d41782cb81f928c2e02d8d139bd62d454c4f3efdaefc3c78512db5e6240d39a81c2904aaba languageName: node linkType: hard @@ -394,24 +454,24 @@ __metadata: languageName: node linkType: hard -"@clack/core@npm:1.0.0-alpha.7": - version: 1.0.0-alpha.7 - resolution: "@clack/core@npm:1.0.0-alpha.7" +"@clack/core@npm:1.0.1": + version: 1.0.1 + resolution: "@clack/core@npm:1.0.1" dependencies: picocolors: ^1.0.0 sisteransi: ^1.0.5 - checksum: 83610b248ba0595108e2448eb2137443c882d347ea4ad8b76c045721c560f31eb9f87a4ce9e86d55c97901b81a347c644a25414942f803f95ff53a91c9f30f8f + checksum: d4bcf10ba6df70fdb86146d8f1f3dd6b1013c8f2b00a01d7704eaae544a520b2ef4406163ddc858b98925c69125516f81b78eaec77f89b6fecc65a78763e53e2 languageName: node linkType: hard -"@clack/prompts@npm:1.0.0-alpha.9": - version: 1.0.0-alpha.9 - resolution: "@clack/prompts@npm:1.0.0-alpha.9" +"@clack/prompts@npm:^1.0.0, @clack/prompts@npm:^1.0.1": + version: 1.0.1 + resolution: "@clack/prompts@npm:1.0.1" dependencies: - "@clack/core": 1.0.0-alpha.7 + "@clack/core": 1.0.1 picocolors: ^1.0.0 sisteransi: ^1.0.5 - checksum: 0753528900519f5206c49cea0e52a1e0335f23e08edbb6b08fbabdd6b5460c38e8510e650d3f894118f7bb3c82d127ad350d028c2716a4f9f3e5f5a805c0eb57 + checksum: 735c5e2315c6efe9f62db6021bfaef83afb521fae35a6a1b82ce06b613f9f73d101b9d80712a057fd89a6bc20b25c1068366409daee98bd6d03b36d3dc845f14 languageName: node linkType: hard @@ -422,56 +482,56 @@ __metadata: languageName: node linkType: hard -"@csstools/color-helpers@npm:^5.1.0": - version: 5.1.0 - resolution: "@csstools/color-helpers@npm:5.1.0" - checksum: 2b1cef009309c30c6e6e904d259e809761a8482fe262b000dacc159d94bcd982d59d85baea449de0fd57afc98b7fc19561ffe756d2b679d56a39c48c2b9c556a +"@csstools/color-helpers@npm:^6.0.2": + version: 6.0.2 + resolution: "@csstools/color-helpers@npm:6.0.2" + checksum: 0261a2d1280189c7e15c8b3583c74fa8956a87c2a55fc1d2f759ca454b030d3440cbee5d8c6dc8a34898781c432f94632b163051ccdbc23a2fcfdd6871255692 languageName: node linkType: hard -"@csstools/css-calc@npm:^2.1.4": - version: 2.1.4 - resolution: "@csstools/css-calc@npm:2.1.4" +"@csstools/css-calc@npm:^3.1.1": + version: 3.1.1 + resolution: "@csstools/css-calc@npm:3.1.1" peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 - checksum: b833d1a031dfb3e3268655aa384121b864fce9bad05f111a3cf2a343eed69ba5d723f3f7cd0793fd7b7a28de2f8141f94568828f48de41d86cefa452eee06390 + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + checksum: 22d76fa9a83b58ad61c9341937549304f51dfddbd7f03324e3ea4a59c7e317f54ec9c75122bf9ccf8b32c448ea5b453c239cbaa161a1a4995ee0779bb81ecbc8 languageName: node linkType: hard -"@csstools/css-color-parser@npm:^3.1.0": - version: 3.1.0 - resolution: "@csstools/css-color-parser@npm:3.1.0" +"@csstools/css-color-parser@npm:^4.0.2": + version: 4.0.2 + resolution: "@csstools/css-color-parser@npm:4.0.2" dependencies: - "@csstools/color-helpers": ^5.1.0 - "@csstools/css-calc": ^2.1.4 + "@csstools/color-helpers": ^6.0.2 + "@csstools/css-calc": ^3.1.1 peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 - checksum: 615d825fc7b231e9ba048b4688f15f721423caf2a7be282d910445de30b558efb0f0294557e5a1a7401eefdfcc6c01c89b842fa7835d6872a3e06967dbaabc49 + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + checksum: 97f20f8eb9395eccd532cccdd0fbd03bdbdcdb204f2bfbac368fc0c1a1458bbfae6e04f36b322979a8f5e0d23e75affc0f19d0cd3b3055bd2fe5fb825cd5677b languageName: node linkType: hard -"@csstools/css-parser-algorithms@npm:^3.0.5": - version: 3.0.5 - resolution: "@csstools/css-parser-algorithms@npm:3.0.5" +"@csstools/css-parser-algorithms@npm:^4.0.0": + version: 4.0.0 + resolution: "@csstools/css-parser-algorithms@npm:4.0.0" peerDependencies: - "@csstools/css-tokenizer": ^3.0.4 - checksum: 80647139574431071e4664ad3c3e141deef4368f0ca536a63b3872487db68cf0d908fb76000f967deb1866963a90e6357fc6b9b00fdfa032f3321cebfcc66cd7 + "@csstools/css-tokenizer": ^4.0.0 + checksum: 5e7003224ac756586163f36d64d5c8fd49af24d2ec218b084a22026b4e8a6d652cbffcaf042f542cf3d2662becea2fc112f5ab2c5a61355a4a2e0f6ebeebffb2 languageName: node linkType: hard -"@csstools/css-syntax-patches-for-csstree@npm:^1.0.21": - version: 1.0.25 - resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.0.25" - checksum: 8bc68ad4fc7b9cf3d31c2b65424ead8114c3778d9b3d7c6091e7cbde186e1ce91cff8d913c86509b9cfba48b287f3418bce9083386d5153906ed97617f0c8ec6 +"@csstools/css-syntax-patches-for-csstree@npm:^1.0.28": + version: 1.0.29 + resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.0.29" + checksum: f3b40ceb16a5659508be5b8ca0f128f410d727f82c4b9955d2d18eaede56bd09acd29a5a79834bf20b7daee013a61d673aa3a70e7127695b2b1f19645a968013 languageName: node linkType: hard -"@csstools/css-tokenizer@npm:^3.0.4": - version: 3.0.4 - resolution: "@csstools/css-tokenizer@npm:3.0.4" - checksum: adc6681d3a0d7a75dc8e5ee0488c99ad4509e4810ae45dd6549a2e64a996e8d75512e70bb244778dc0c6ee85723e20eaeea8c083bf65b51eb19034e182554243 +"@csstools/css-tokenizer@npm:^4.0.0": + version: 4.0.0 + resolution: "@csstools/css-tokenizer@npm:4.0.0" + checksum: 924d1223561c035c7e9d8cde747d0ea37c4cba5b635b401901fe3f67ef0ccc33106a7c78b9751e80519457e432d950954717497093a5df56900f258ab4a50641 languageName: node linkType: hard @@ -493,16 +553,16 @@ __metadata: languageName: node linkType: hard -"@dxup/nuxt@npm:^0.2.2": - version: 0.2.2 - resolution: "@dxup/nuxt@npm:0.2.2" +"@dxup/nuxt@npm:^0.3.2": + version: 0.3.2 + resolution: "@dxup/nuxt@npm:0.3.2" dependencies: "@dxup/unimport": ^0.1.2 - "@nuxt/kit": ^4.2.1 - chokidar: ^4.0.3 + "@nuxt/kit": ^4.2.2 + chokidar: ^5.0.0 pathe: ^2.0.3 tinyglobby: ^0.2.15 - checksum: 14e2a481013842f25770400509d1878f6ef6eed9f37750898bbd3e97c8e18f4f8f95e5dcc69fe86ed47895e6febc8cf25f8e83b406bc9efbbc626a35d538d018 + checksum: d0d1c3d5c984e8c0db8cb03790690f95c64d19f678e81125d8d2fd8a7401c8d004ce254317dcb91fc8b94faa1e9a341ae31e2ef80f5f4c18b31d4a0a7f22cabb languageName: node linkType: hard @@ -548,9 +608,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/aix-ppc64@npm:0.27.2" +"@esbuild/aix-ppc64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/aix-ppc64@npm:0.27.3" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard @@ -562,9 +622,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-arm64@npm:0.27.2" +"@esbuild/android-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-arm64@npm:0.27.3" conditions: os=android & cpu=arm64 languageName: node linkType: hard @@ -576,9 +636,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-arm@npm:0.27.2" +"@esbuild/android-arm@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-arm@npm:0.27.3" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -590,9 +650,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-x64@npm:0.27.2" +"@esbuild/android-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-x64@npm:0.27.3" conditions: os=android & cpu=x64 languageName: node linkType: hard @@ -604,9 +664,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/darwin-arm64@npm:0.27.2" +"@esbuild/darwin-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/darwin-arm64@npm:0.27.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -618,9 +678,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/darwin-x64@npm:0.27.2" +"@esbuild/darwin-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/darwin-x64@npm:0.27.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -632,9 +692,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/freebsd-arm64@npm:0.27.2" +"@esbuild/freebsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/freebsd-arm64@npm:0.27.3" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard @@ -646,9 +706,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/freebsd-x64@npm:0.27.2" +"@esbuild/freebsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/freebsd-x64@npm:0.27.3" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -660,9 +720,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-arm64@npm:0.27.2" +"@esbuild/linux-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-arm64@npm:0.27.3" conditions: os=linux & cpu=arm64 languageName: node linkType: hard @@ -674,9 +734,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-arm@npm:0.27.2" +"@esbuild/linux-arm@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-arm@npm:0.27.3" conditions: os=linux & cpu=arm languageName: node linkType: hard @@ -688,9 +748,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-ia32@npm:0.27.2" +"@esbuild/linux-ia32@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-ia32@npm:0.27.3" conditions: os=linux & cpu=ia32 languageName: node linkType: hard @@ -702,9 +762,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-loong64@npm:0.27.2" +"@esbuild/linux-loong64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-loong64@npm:0.27.3" conditions: os=linux & cpu=loong64 languageName: node linkType: hard @@ -716,9 +776,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-mips64el@npm:0.27.2" +"@esbuild/linux-mips64el@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-mips64el@npm:0.27.3" conditions: os=linux & cpu=mips64el languageName: node linkType: hard @@ -730,9 +790,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-ppc64@npm:0.27.2" +"@esbuild/linux-ppc64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-ppc64@npm:0.27.3" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard @@ -744,9 +804,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-riscv64@npm:0.27.2" +"@esbuild/linux-riscv64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-riscv64@npm:0.27.3" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard @@ -758,9 +818,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-s390x@npm:0.27.2" +"@esbuild/linux-s390x@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-s390x@npm:0.27.3" conditions: os=linux & cpu=s390x languageName: node linkType: hard @@ -772,9 +832,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-x64@npm:0.27.2" +"@esbuild/linux-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-x64@npm:0.27.3" conditions: os=linux & cpu=x64 languageName: node linkType: hard @@ -786,9 +846,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/netbsd-arm64@npm:0.27.2" +"@esbuild/netbsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/netbsd-arm64@npm:0.27.3" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard @@ -800,9 +860,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/netbsd-x64@npm:0.27.2" +"@esbuild/netbsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/netbsd-x64@npm:0.27.3" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard @@ -814,9 +874,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openbsd-arm64@npm:0.27.2" +"@esbuild/openbsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openbsd-arm64@npm:0.27.3" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard @@ -828,9 +888,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openbsd-x64@npm:0.27.2" +"@esbuild/openbsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openbsd-x64@npm:0.27.3" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard @@ -842,9 +902,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openharmony-arm64@npm:0.27.2" +"@esbuild/openharmony-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openharmony-arm64@npm:0.27.3" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard @@ -856,9 +916,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/sunos-x64@npm:0.27.2" +"@esbuild/sunos-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/sunos-x64@npm:0.27.3" conditions: os=sunos & cpu=x64 languageName: node linkType: hard @@ -870,9 +930,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-arm64@npm:0.27.2" +"@esbuild/win32-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-arm64@npm:0.27.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -884,9 +944,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-ia32@npm:0.27.2" +"@esbuild/win32-ia32@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-ia32@npm:0.27.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard @@ -898,9 +958,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-x64@npm:0.27.2" +"@esbuild/win32-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-x64@npm:0.27.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -953,26 +1013,26 @@ __metadata: linkType: hard "@eslint/eslintrc@npm:^3.3.1": - version: 3.3.3 - resolution: "@eslint/eslintrc@npm:3.3.3" + version: 3.3.4 + resolution: "@eslint/eslintrc@npm:3.3.4" dependencies: - ajv: ^6.12.4 + ajv: ^6.14.0 debug: ^4.3.2 espree: ^10.0.1 globals: ^14.0.0 ignore: ^5.2.0 import-fresh: ^3.2.1 js-yaml: ^4.1.1 - minimatch: ^3.1.2 + minimatch: ^3.1.3 strip-json-comments: ^3.1.1 - checksum: d1e16e47f1bb29af32defa597eaf84ac0ff8c06760c0a5f4933c604cd9d931d48c89bed96252222f22abac231898a53bc41385a5e6129257f0060b5ec431bdb2 + checksum: c16df92611b927af454d3ab9b1e003d75ae5a0e91009bdab8487bc37d4eb507adf071bd208857fd397a2c311cff1c28f617e01250078e532ab3ac7f1353cee13 languageName: node linkType: hard -"@eslint/js@npm:9.39.2": - version: 9.39.2 - resolution: "@eslint/js@npm:9.39.2" - checksum: 362aa447266fa5717e762b2b252f177345cb0d7b2954113db9773b3a28898f7cbbc807e07f8078995e6da3f62791f7c5fa2c03517b7170a8e76613cf7fd83c92 +"@eslint/js@npm:9.39.3": + version: 9.39.3 + resolution: "@eslint/js@npm:9.39.3" + checksum: 6018c13073204cf1b79de561cca74284c0387bf753e0dcd85ff750f1441c4c2914896d8feff3afd8c07d6934ac6f8ae36a5cc241f5645041b645dad588442d46 languageName: node linkType: hard @@ -993,15 +1053,15 @@ __metadata: languageName: node linkType: hard -"@exodus/bytes@npm:^1.6.0": - version: 1.9.0 - resolution: "@exodus/bytes@npm:1.9.0" +"@exodus/bytes@npm:^1.11.0, @exodus/bytes@npm:^1.6.0": + version: 1.14.1 + resolution: "@exodus/bytes@npm:1.14.1" peerDependencies: "@noble/hashes": ^1.8.0 || ^2.0.0 peerDependenciesMeta: "@noble/hashes": optional: true - checksum: 666dcb15a05657d95710b022ba7f1fdbd471de64755ee6f69750ebf9bac0a24cf0b2cdc2a39dcac0ceebc77d499e1066034a9dbe58a62c53928f3933106cde69 + checksum: 1b767061100e0b9ffc80efe2f3b3f0f8d895b30d5ff0c28e0dd0b0f96263163ba4aaa1968733ace058b9d502bd5e595fa537fcec0afedb79d981405b04f3bfb6 languageName: node linkType: hard @@ -1012,22 +1072,22 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.7.3": - version: 1.7.3 - resolution: "@floating-ui/core@npm:1.7.3" +"@floating-ui/core@npm:^1.7.4": + version: 1.7.4 + resolution: "@floating-ui/core@npm:1.7.4" dependencies: "@floating-ui/utils": ^0.2.10 - checksum: 5adfb28ddfa1776ec83516439256b9026e5d62b5413f62ae51e50a870cf0df4bea9abf72aacc0610ee84bc00e85883d0d32f2a0976ee7fa89728a717a7494f27 + checksum: 146f2dd3c9c4a80d871b35140b85d015c8245b1e8c715c211197078c34ba05da6ac172496cf00dea0269aa15dfb543f07faa73b6ba37a3924b6da0ee3c1fc5be languageName: node linkType: hard -"@floating-ui/dom@npm:^1.6.7, @floating-ui/dom@npm:^1.7.4": - version: 1.7.4 - resolution: "@floating-ui/dom@npm:1.7.4" +"@floating-ui/dom@npm:^1.6.7, @floating-ui/dom@npm:^1.7.5": + version: 1.7.5 + resolution: "@floating-ui/dom@npm:1.7.5" dependencies: - "@floating-ui/core": ^1.7.3 + "@floating-ui/core": ^1.7.4 "@floating-ui/utils": ^0.2.10 - checksum: 806923e6f5b09e024c366070f2115a4db6e8ad28462bac29cd075170a6f7d900497da3ee542439bd0770b8e2fff12b636cc30873d1c82e9ec4a487870b080643 + checksum: 63a83e249defd84d2290b5e68c341c34487e9ca995a5346c203efed868f285a3e1785a63c8f9d10f6c31f114103e195f8b323c70683069e92e425cea8e25ea10 languageName: node linkType: hard @@ -1039,13 +1099,22 @@ __metadata: linkType: hard "@floating-ui/vue@npm:^1.1.0": - version: 1.1.9 - resolution: "@floating-ui/vue@npm:1.1.9" + version: 1.1.10 + resolution: "@floating-ui/vue@npm:1.1.10" dependencies: - "@floating-ui/dom": ^1.7.4 + "@floating-ui/dom": ^1.7.5 "@floating-ui/utils": ^0.2.10 vue-demi: ">=0.13.0" - checksum: ea62970f9df685825359ac0844c396a6ba6a8b93cfa944e2a0a9e3bc97241d9655ae417f589344f594de26864299a5f17cd4084efbd77124e158ba9d8e3380dc + checksum: 36e922d89298b1df11a981963cc51f956e8c86efba7e0b7df490ddcb38c3e6c31ae803aef8958c336c1b81898d120e6cf45904a86fbdeee5e8d0bf317048a8ec + languageName: node + linkType: hard + +"@gar/promise-retry@npm:^1.0.0": + version: 1.0.2 + resolution: "@gar/promise-retry@npm:1.0.2" + dependencies: + retry: ^0.13.1 + checksum: b91326999ce94677cbe91973079eabc689761a93a045f6a2d34d4070e9305b27f6c54e4021688c7080cb14caf89eafa0c0f300af741b94c20d18608bdb66ca46 languageName: node linkType: hard @@ -1108,11 +1177,11 @@ __metadata: linkType: hard "@iconify-json/ri@npm:^1.2.1": - version: 1.2.7 - resolution: "@iconify-json/ri@npm:1.2.7" + version: 1.2.10 + resolution: "@iconify-json/ri@npm:1.2.10" dependencies: "@iconify/types": "*" - checksum: dfcd2fe051d0e4a1488425cf782d3e47ce6c8411eee5617de0f8758f3c46c5da6e5ff169881d0470076b60326646460bfb66f82cc81a9f6d0cff8ee294d4a04b + checksum: 29c706a754f9b546f9bc376f57340b9af5af8c6bb5376b3e60f7725402a4bade7f63e02588b2ff34ef6f3a46715cadb7c35285bd4c312e1458b54e6d94d46de7 languageName: node linkType: hard @@ -1144,11 +1213,11 @@ __metadata: linkType: hard "@internationalized/date@npm:^3.5.4": - version: 3.10.1 - resolution: "@internationalized/date@npm:3.10.1" + version: 3.11.0 + resolution: "@internationalized/date@npm:3.11.0" dependencies: "@swc/helpers": ^0.5.0 - checksum: ed71692398ec9dbb33a93e2f6c0952627f1af838078af471f6e982769ad33dbe19faf4ce659bb086ca442be5e7777d300398f076fecd93d1c32a4d4a8f1d7667 + checksum: 352b46382f400102ad9359128cff7a793f1828a43a01c5911f5b5fbdc55f2338cffe5f6ecaa4e0bb149bf388417d6cd75e601bf2a44d9a1335b141222c3a47b3 languageName: node linkType: hard @@ -1313,26 +1382,10 @@ __metadata: languageName: node linkType: hard -"@ioredis/commands@npm:1.5.0": - version: 1.5.0 - resolution: "@ioredis/commands@npm:1.5.0" - checksum: 09fee2ca1c1e721a09cf5c16586d44513e0e89f8d99ea78ee04c9c61183156e6a7242c0edd1e8dc195c842c4ece05486beb3c94802a6b1f81ba969389cf75a54 - languageName: node - linkType: hard - -"@isaacs/balanced-match@npm:^4.0.1": - version: 4.0.1 - resolution: "@isaacs/balanced-match@npm:4.0.1" - checksum: 102fbc6d2c0d5edf8f6dbf2b3feb21695a21bc850f11bc47c4f06aa83bd8884fde3fe9d6d797d619901d96865fdcb4569ac2a54c937992c48885c5e3d9967fe8 - languageName: node - linkType: hard - -"@isaacs/brace-expansion@npm:^5.0.0": - version: 5.0.0 - resolution: "@isaacs/brace-expansion@npm:5.0.0" - dependencies: - "@isaacs/balanced-match": ^4.0.1 - checksum: d7a3b8b0ddbf0ccd8eeb1300e29dd0a0c02147e823d8138f248375a365682360620895c66d113e05ee02389318c654379b0e538b996345b83c914941786705b1 +"@ioredis/commands@npm:1.5.1": + version: 1.5.1 + resolution: "@ioredis/commands@npm:1.5.1" + checksum: 8e9c88154d2aba3cad5cdaed01b47eca9649a3c1e869f28a31377fda0147e5c1b90d9d5dee6f6a4dd9154dba5be345071208ecf8aa5c7fffcd0e04bacaddfbb9 languageName: node linkType: hard @@ -1482,7 +1535,7 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^1.1.0": +"@napi-rs/wasm-runtime@npm:^1.1.1": version: 1.1.1 resolution: "@napi-rs/wasm-runtime@npm:1.1.1" dependencies: @@ -1542,43 +1595,49 @@ __metadata: languageName: node linkType: hard -"@nuxt/cli@npm:^3.31.1": - version: 3.32.0 - resolution: "@nuxt/cli@npm:3.32.0" +"@nuxt/cli@npm:^3.33.0": + version: 3.33.1 + resolution: "@nuxt/cli@npm:3.33.1" dependencies: - "@bomb.sh/tab": ^0.0.11 - "@clack/prompts": 1.0.0-alpha.9 + "@bomb.sh/tab": ^0.0.12 + "@clack/prompts": ^1.0.0 c12: ^3.3.3 - citty: ^0.1.6 - confbox: ^0.2.2 + citty: ^0.2.0 + confbox: ^0.2.4 consola: ^3.4.2 copy-paste: ^2.2.0 debug: ^4.4.3 defu: ^6.1.4 exsolve: ^1.0.8 fuse.js: ^7.1.0 - giget: ^2.0.0 + fzf: ^0.5.2 + giget: ^3.1.2 jiti: ^2.6.1 listhen: ^1.9.0 - nypm: ^0.6.2 + nypm: ^0.6.5 ofetch: ^1.5.1 ohash: ^2.0.11 pathe: ^2.0.3 - perfect-debounce: ^2.0.0 + perfect-debounce: ^2.1.0 pkg-types: ^2.3.0 scule: ^1.3.0 - semver: ^7.7.3 - srvx: ^0.10.0 + semver: ^7.7.4 + srvx: ^0.11.2 std-env: ^3.10.0 tinyexec: ^1.0.2 - ufo: ^1.6.1 + ufo: ^1.6.3 youch: ^4.1.0-beta.13 + peerDependencies: + "@nuxt/schema": ^4.3.0 + peerDependenciesMeta: + "@nuxt/schema": + optional: true bin: nuxi: bin/nuxi.mjs nuxi-ng: bin/nuxi.mjs nuxt: bin/nuxi.mjs nuxt-cli: bin/nuxi.mjs - checksum: 14bd7ede62854bbe652775387007cc47b5d42119018205f53c8812e92f7b59b1b9bbe8f0b0d15a4034c103d7f8fe26f2a31803994aec4f4319d0cb4b6d11dfc9 + checksum: ac3ed7469bf2dea8216da59cf8a60a963033378782a7e1fe7d1075e829165117d05177f5b58ed12a288d41a4ec3cad2d70ce6eb167f55b20d35702633bc25e7f languageName: node linkType: hard @@ -1589,146 +1648,72 @@ __metadata: languageName: node linkType: hard -"@nuxt/devtools-kit@npm:2.7.0": - version: 2.7.0 - resolution: "@nuxt/devtools-kit@npm:2.7.0" - dependencies: - "@nuxt/kit": ^3.19.3 - execa: ^8.0.1 - peerDependencies: - vite: ">=6.0" - checksum: d7a520eb6a1cea5e51d2921a775b4e2f89a37f5c7aaf65786bfd80073a3c5fa4c426559dc24d59934f4040cc98fbb08b0a9025ce854a7ea1f63b55e192925be5 - languageName: node - linkType: hard - -"@nuxt/devtools-kit@npm:3.1.1": - version: 3.1.1 - resolution: "@nuxt/devtools-kit@npm:3.1.1" +"@nuxt/devtools-kit@npm:3.2.2, @nuxt/devtools-kit@npm:^3.2.1, @nuxt/devtools-kit@npm:^3.2.2": + version: 3.2.2 + resolution: "@nuxt/devtools-kit@npm:3.2.2" dependencies: - "@nuxt/kit": ^4.2.1 + "@nuxt/kit": ^4.3.1 execa: ^8.0.1 peerDependencies: vite: ">=6.0" - checksum: 41b2a1cf7759edefda3a96a16cf1920daae3daa4754538dc28266040476bf05626744f5901a6861bcd4b096c64b71f87b71e7667fb4ce2b0e4dc10267c907de6 + checksum: da66b35cf3d1ab1e28684d071a0af086cf20bdced304e997249f655b0257ced9d595d1b09443c69d6857bd4df4dcde42fd6dd16223db60f3951fc4dcce4e1999 languageName: node linkType: hard -"@nuxt/devtools-wizard@npm:2.7.0": - version: 2.7.0 - resolution: "@nuxt/devtools-wizard@npm:2.7.0" - dependencies: - consola: ^3.4.2 - diff: ^8.0.2 - execa: ^8.0.1 - magicast: ^0.3.5 - pathe: ^2.0.3 - pkg-types: ^2.3.0 - prompts: ^2.4.2 - semver: ^7.7.3 - bin: - devtools-wizard: cli.mjs - checksum: bd9445a58fa75cfa8959a752321e7365771a99b0b6d4066b0caabc8f0be340fd564aea517a89f415de22320237068583aa47a607d278d0e681be4cf4d19568a5 - languageName: node - linkType: hard - -"@nuxt/devtools-wizard@npm:3.1.1": - version: 3.1.1 - resolution: "@nuxt/devtools-wizard@npm:3.1.1" +"@nuxt/devtools-wizard@npm:3.2.2": + version: 3.2.2 + resolution: "@nuxt/devtools-wizard@npm:3.2.2" dependencies: + "@clack/prompts": ^1.0.1 consola: ^3.4.2 - diff: ^8.0.2 + diff: ^8.0.3 execa: ^8.0.1 - magicast: ^0.5.1 + magicast: ^0.5.2 pathe: ^2.0.3 pkg-types: ^2.3.0 - prompts: ^2.4.2 - semver: ^7.7.3 + semver: ^7.7.4 bin: devtools-wizard: cli.mjs - checksum: fc05d318519d1b812d2d3d2abec6625874a5e994f32b9fedf7fbd1a57e9845bfcaea130f16d22b56e06c2b85f07af7cf16f96060bf07ce819ed3b83c46ed5028 + checksum: d565ed932a43d434e01d41b85d135932640f350d33f46825e21db15c206e4e8ca8d362329f1e50d032dc03daffd654b37c8a0bc5ea25edd01fd731b053dfc5fb languageName: node linkType: hard -"@nuxt/devtools@npm:^2.6.4": - version: 2.7.0 - resolution: "@nuxt/devtools@npm:2.7.0" - dependencies: - "@nuxt/devtools-kit": 2.7.0 - "@nuxt/devtools-wizard": 2.7.0 - "@nuxt/kit": ^3.19.3 - "@vue/devtools-core": ^7.7.7 - "@vue/devtools-kit": ^7.7.7 - birpc: ^2.6.1 - consola: ^3.4.2 - destr: ^2.0.5 - error-stack-parser-es: ^1.0.5 - execa: ^8.0.1 - fast-npm-meta: ^0.4.7 - get-port-please: ^3.2.0 - hookable: ^5.5.3 - image-meta: ^0.2.2 - is-installed-globally: ^1.0.0 - launch-editor: ^2.11.1 - local-pkg: ^1.1.2 - magicast: ^0.3.5 - nypm: ^0.6.2 - ohash: ^2.0.11 - pathe: ^2.0.3 - perfect-debounce: ^1.0.0 - pkg-types: ^2.3.0 - semver: ^7.7.3 - simple-git: ^3.28.0 - sirv: ^3.0.2 - structured-clone-es: ^1.0.0 - tinyglobby: ^0.2.15 - vite-plugin-inspect: ^11.3.3 - vite-plugin-vue-tracer: ^1.0.1 - which: ^5.0.0 - ws: ^8.18.3 - peerDependencies: - vite: ">=6.0" - bin: - devtools: cli.mjs - checksum: 654dca95f16f8d4e61c9a2617814aa2da4b99b7649c61a16db46557a853f2df5773e5e40b0dac70c48bb0ec8fa7d55ba6053cd31367207046492e2bcd1e500f8 - languageName: node - linkType: hard - -"@nuxt/devtools@npm:^3.1.1": - version: 3.1.1 - resolution: "@nuxt/devtools@npm:3.1.1" - dependencies: - "@nuxt/devtools-kit": 3.1.1 - "@nuxt/devtools-wizard": 3.1.1 - "@nuxt/kit": ^4.2.1 - "@vue/devtools-core": ^8.0.5 - "@vue/devtools-kit": ^8.0.5 - birpc: ^2.8.0 +"@nuxt/devtools@npm:^3.1.1, @nuxt/devtools@npm:^3.2.2": + version: 3.2.2 + resolution: "@nuxt/devtools@npm:3.2.2" + dependencies: + "@nuxt/devtools-kit": 3.2.2 + "@nuxt/devtools-wizard": 3.2.2 + "@nuxt/kit": ^4.3.1 + "@vue/devtools-core": ^8.0.6 + "@vue/devtools-kit": ^8.0.6 + birpc: ^4.0.0 consola: ^3.4.2 destr: ^2.0.5 error-stack-parser-es: ^1.0.5 execa: ^8.0.1 - fast-npm-meta: ^0.4.7 + fast-npm-meta: ^1.2.1 get-port-please: ^3.2.0 - hookable: ^5.5.3 + hookable: ^6.0.1 image-meta: ^0.2.2 is-installed-globally: ^1.0.0 - launch-editor: ^2.12.0 + launch-editor: ^2.13.0 local-pkg: ^1.1.2 - magicast: ^0.5.1 - nypm: ^0.6.2 + magicast: ^0.5.2 + nypm: ^0.6.5 ohash: ^2.0.11 pathe: ^2.0.3 - perfect-debounce: ^2.0.0 + perfect-debounce: ^2.1.0 pkg-types: ^2.3.0 - semver: ^7.7.3 - simple-git: ^3.30.0 + semver: ^7.7.4 + simple-git: ^3.32.2 sirv: ^3.0.2 structured-clone-es: ^1.0.0 tinyglobby: ^0.2.15 vite-plugin-inspect: ^11.3.3 - vite-plugin-vue-tracer: ^1.1.3 + vite-plugin-vue-tracer: ^1.2.0 which: ^5.0.0 - ws: ^8.18.3 + ws: ^8.19.0 peerDependencies: "@vitejs/devtools": "*" vite: ">=6.0" @@ -1737,15 +1722,15 @@ __metadata: optional: true bin: devtools: cli.mjs - checksum: 63b7db319fce35c27fc8fd987cd4ff8cccbb8fdc686ebca466202c6c589ff5db202e992368fc027b52389bf29969df3c12642e41134484b69bd34d8c9bae6179 + checksum: 092f01ecb417b685c75602f2a2882ccabba5d561e64d6ef56f7958466683c809b9511177f4baf4f0ef3e5bf3f7bbbd35092e70c50b9681642889fb899632b29a languageName: node linkType: hard -"@nuxt/kit@npm:4.2.2, @nuxt/kit@npm:^4.0.1, @nuxt/kit@npm:^4.1.1, @nuxt/kit@npm:^4.1.3, @nuxt/kit@npm:^4.2.1, @nuxt/kit@npm:^4.2.2": - version: 4.2.2 - resolution: "@nuxt/kit@npm:4.2.2" +"@nuxt/kit@npm:4.3.1, @nuxt/kit@npm:^4.0.1, @nuxt/kit@npm:^4.1.1, @nuxt/kit@npm:^4.2.0, @nuxt/kit@npm:^4.2.1, @nuxt/kit@npm:^4.2.2, @nuxt/kit@npm:^4.3.0, @nuxt/kit@npm:^4.3.1": + version: 4.3.1 + resolution: "@nuxt/kit@npm:4.3.1" dependencies: - c12: ^3.3.2 + c12: ^3.3.3 consola: ^3.4.2 defu: ^6.1.4 destr: ^2.0.5 @@ -1758,22 +1743,22 @@ __metadata: ohash: ^2.0.11 pathe: ^2.0.3 pkg-types: ^2.3.0 - rc9: ^2.1.2 + rc9: ^3.0.0 scule: ^1.3.0 - semver: ^7.7.3 + semver: ^7.7.4 tinyglobby: ^0.2.15 - ufo: ^1.6.1 - unctx: ^2.4.1 + ufo: ^1.6.3 + unctx: ^2.5.0 untyped: ^2.0.0 - checksum: b0fcb5fe55a0624678bdabdfea4fba274044f881db0c0f729a13272fa993a670e8264ea287f7fbe0d756afecef3884bf740c80df3d0ac4b1ac5820c3fc7e2410 + checksum: 173bd149d69501278086a8c31c1ea116b085d6a1dbc399339afd3b4556c82fafdeb8129f58b39380c264a122e482c5e78d35af90ef347339c34bd15e796dd665 languageName: node linkType: hard -"@nuxt/kit@npm:^3.15.4, @nuxt/kit@npm:^3.16.0, @nuxt/kit@npm:^3.17.2, @nuxt/kit@npm:^3.19.3, @nuxt/kit@npm:^3.9.0": - version: 3.20.2 - resolution: "@nuxt/kit@npm:3.20.2" +"@nuxt/kit@npm:^3.15.4, @nuxt/kit@npm:^3.16.0, @nuxt/kit@npm:^3.17.2": + version: 3.21.1 + resolution: "@nuxt/kit@npm:3.21.1" dependencies: - c12: ^3.3.2 + c12: ^3.3.3 consola: ^3.4.2 defu: ^6.1.4 destr: ^2.0.5 @@ -1787,105 +1772,145 @@ __metadata: ohash: ^2.0.11 pathe: ^2.0.3 pkg-types: ^2.3.0 - rc9: ^2.1.2 + rc9: ^3.0.0 scule: ^1.3.0 - semver: ^7.7.3 + semver: ^7.7.4 tinyglobby: ^0.2.15 - ufo: ^1.6.1 - unctx: ^2.4.1 + ufo: ^1.6.3 + unctx: ^2.5.0 untyped: ^2.0.0 - checksum: 66a727ec58f3af35eb9a61a77e2fa25a159966cb8da8e6f3b5e47a8bea5bb7e5377f1b1e6d2f03c7c0368568d000f6c922bea1d508324848b59ed7ad37f26da0 + checksum: 9de948de3ce622c5f3585c39de06ad04da55d6141d3043616d07c13b7ddf12bd04661ef7cde69a39ae89e324b51f26606c215157ac9798f9d4f5314f6098cd3b languageName: node linkType: hard -"@nuxt/nitro-server@npm:4.2.2": - version: 4.2.2 - resolution: "@nuxt/nitro-server@npm:4.2.2" +"@nuxt/nitro-server@npm:4.3.1": + version: 4.3.1 + resolution: "@nuxt/nitro-server@npm:4.3.1" dependencies: "@nuxt/devalue": ^2.0.2 - "@nuxt/kit": 4.2.2 - "@unhead/vue": ^2.0.19 - "@vue/shared": ^3.5.25 + "@nuxt/kit": 4.3.1 + "@unhead/vue": ^2.1.3 + "@vue/shared": ^3.5.27 consola: ^3.4.2 defu: ^6.1.4 destr: ^2.0.5 - devalue: ^5.6.0 + devalue: ^5.6.2 errx: ^0.1.0 escape-string-regexp: ^5.0.0 exsolve: ^1.0.8 - h3: ^1.15.4 + h3: ^1.15.5 impound: ^1.0.0 klona: ^2.0.6 mocked-exports: ^0.1.1 - nitropack: ^2.12.9 + nitropack: ^2.13.1 + ohash: ^2.0.11 pathe: ^2.0.3 pkg-types: ^2.3.0 - radix3: ^1.1.2 + rou3: ^0.7.12 std-env: ^3.10.0 - ufo: ^1.6.1 - unctx: ^2.4.1 - unstorage: ^1.17.3 - vue: ^3.5.25 + ufo: ^1.6.3 + unctx: ^2.5.0 + unstorage: ^1.17.4 + vue: ^3.5.27 vue-bundle-renderer: ^2.2.0 vue-devtools-stub: ^0.1.0 peerDependencies: - nuxt: ^4.2.2 - checksum: 51a3574d5c33a02ba9ea2e13bfdd13e14bddb79cddc53a3d7adea76fdcbcd4fb03ae20f7f1150526d7c4e0e0d7c000274c6f101b1f1f5ff6f1bd9c9d98c3b1ad + nuxt: ^4.3.1 + checksum: 3c0bc908f38b7658df62d65966634ec492b3e5039fd7b28a5ce57a203e4bcba238eae33b940c7877f985a1ea02357cf9a8446ff004572e81c42954782cea79fa languageName: node linkType: hard -"@nuxt/schema@npm:4.2.2": - version: 4.2.2 - resolution: "@nuxt/schema@npm:4.2.2" +"@nuxt/schema@npm:4.3.1": + version: 4.3.1 + resolution: "@nuxt/schema@npm:4.3.1" dependencies: - "@vue/shared": ^3.5.25 + "@vue/shared": ^3.5.27 defu: ^6.1.4 pathe: ^2.0.3 pkg-types: ^2.3.0 std-env: ^3.10.0 - checksum: 591a972b81c583d9ffbeaf4fbba5af3ca010e30ecd19c22108951be6c0b171769a04efaa9d7e3368f6deef1f36ed3751ec2fdc9b8d8d0cc2c0aa806b8ce1253e + checksum: 2adf9a667bbb72471975c79826d19e94b1925591aaae1840dd9ca4af650d8d40567110f042cf4000ae2aaf50b0390cda15aa400458a31a739adfa38eb8b72717 languageName: node linkType: hard -"@nuxt/telemetry@npm:^2.6.6": - version: 2.6.6 - resolution: "@nuxt/telemetry@npm:2.6.6" +"@nuxt/scripts@npm:0.13.2": + version: 0.13.2 + resolution: "@nuxt/scripts@npm:0.13.2" dependencies: - "@nuxt/kit": ^3.15.4 - citty: ^0.1.6 + "@nuxt/kit": ^4.2.2 + "@vueuse/core": ^14.1.0 consola: ^3.4.2 - destr: ^2.0.3 - dotenv: ^16.4.7 - git-url-parse: ^16.0.1 - is-docker: ^3.0.0 - ofetch: ^1.4.1 - package-manager-detector: ^1.1.0 + defu: ^6.1.4 + h3: ^1.15.4 + magic-string: ^0.30.21 + ofetch: ^1.5.1 + ohash: ^2.0.11 pathe: ^2.0.3 - rc9: ^2.1.2 - std-env: ^3.8.1 + pkg-types: ^2.3.0 + sirv: ^3.0.2 + std-env: ^3.10.0 + ufo: ^1.6.1 + unplugin: ^2.3.11 + unstorage: ^1.17.3 + valibot: ^1.2.0 + peerDependencies: + "@googlemaps/markerclusterer": ^2.6.2 + "@paypal/paypal-js": ^8.1.2 || ^9.0.0 + "@stripe/stripe-js": ^7.0.0 || ^8.0.0 + "@types/google.maps": ^3.58.1 + "@types/vimeo__player": ^2.18.3 + "@types/youtube": ^0.1.0 + "@unhead/vue": ^2.0.3 + peerDependenciesMeta: + "@googlemaps/markerclusterer": + optional: true + "@paypal/paypal-js": + optional: true + "@stripe/stripe-js": + optional: true + "@types/google.maps": + optional: true + "@types/vimeo__player": + optional: true + "@types/youtube": + optional: true + checksum: 9a2e531bdda5cf1a0ca3b1f3ae223bd0eae27e7637054e8a203e38e4c531c16807f8318d87fc8adccdd2744888e0edf0cfe0bce39a2b3df56029d657f06bcf94 + languageName: node + linkType: hard + +"@nuxt/telemetry@npm:^2.7.0": + version: 2.7.0 + resolution: "@nuxt/telemetry@npm:2.7.0" + dependencies: + citty: ^0.2.0 + consola: ^3.4.2 + ofetch: ^2.0.0-alpha.3 + rc9: ^3.0.0 + std-env: ^3.10.0 + peerDependencies: + "@nuxt/kit": ">=3.0.0" bin: nuxt-telemetry: bin/nuxt-telemetry.mjs - checksum: 785639e3be11846ba8a7376cc044bf049185442eda6dc40577dd9d4e8ce5502540e6e695837ffae503f8076dcdd4244421963de89fae6218d6a87481c7970d60 + checksum: fbdf5888fe0f38bd46a1f99be1e568b6fceb155c3b90e306773c6d2ce12f9d73d9bf055c5c5722febe1eebb1dddfdee4081c09dea17d545c6d66ffa3d6958d13 languageName: node linkType: hard -"@nuxt/vite-builder@npm:4.2.2": - version: 4.2.2 - resolution: "@nuxt/vite-builder@npm:4.2.2" +"@nuxt/vite-builder@npm:4.3.1": + version: 4.3.1 + resolution: "@nuxt/vite-builder@npm:4.3.1" dependencies: - "@nuxt/kit": 4.2.2 + "@nuxt/kit": 4.3.1 "@rollup/plugin-replace": ^6.0.3 - "@vitejs/plugin-vue": ^6.0.2 - "@vitejs/plugin-vue-jsx": ^5.1.2 - autoprefixer: ^10.4.22 + "@vitejs/plugin-vue": ^6.0.4 + "@vitejs/plugin-vue-jsx": ^5.1.4 + autoprefixer: ^10.4.24 consola: ^3.4.2 cssnano: ^7.1.2 defu: ^6.1.4 - esbuild: ^0.27.1 + esbuild: ^0.27.3 escape-string-regexp: ^5.0.0 exsolve: ^1.0.8 get-port-please: ^3.2.0 - h3: ^1.15.4 jiti: ^2.6.1 knitwork: ^1.3.0 magic-string: ^0.30.21 @@ -1895,22 +1920,22 @@ __metadata: pkg-types: ^2.3.0 postcss: ^8.5.6 rollup-plugin-visualizer: ^6.0.5 - seroval: ^1.4.0 + seroval: ^1.5.0 std-env: ^3.10.0 - ufo: ^1.6.1 + ufo: ^1.6.3 unenv: ^2.0.0-rc.24 - vite: ^7.2.7 - vite-node: ^5.2.0 + vite: ^7.3.1 + vite-node: ^5.3.0 vite-plugin-checker: ^0.12.0 vue-bundle-renderer: ^2.2.0 peerDependencies: - nuxt: 4.2.2 + nuxt: 4.3.1 rolldown: ^1.0.0-beta.38 vue: ^3.3.4 peerDependenciesMeta: rolldown: optional: true - checksum: aacdf5162ea4f30b87c76fde15e1a802719764d46fb644319876e0a50415787563ab27ad182a0a83629fc427bdf225a2123fa99e5b5d222d38d22428275c1ff9 + checksum: 5c3143aa0f4ed1f474a7a9babdc07b56d217d6fc8b6938a5c08aa56a21f44d666fe249772ac9abda9ac42ad4f4569f2b71c7c0d4d2a840069cffe13300333ffe languageName: node linkType: hard @@ -1961,25 +1986,27 @@ __metadata: linkType: hard "@nuxtjs/robots@npm:^5.5.1": - version: 5.6.7 - resolution: "@nuxtjs/robots@npm:5.6.7" + version: 5.7.1 + resolution: "@nuxtjs/robots@npm:5.7.1" dependencies: "@fingerprintjs/botd": ^2.0.0 - "@nuxt/kit": ^4.2.2 + "@nuxt/devtools-kit": ^3.2.2 + "@nuxt/kit": ^4.3.1 consola: ^3.4.2 defu: ^6.1.4 - nuxt-site-config: ^3.2.14 + h3: ^1.15.5 + nuxt-site-config: ^3.2.21 pathe: ^2.0.3 pkg-types: ^2.3.0 sirv: ^3.0.2 std-env: ^3.10.0 - ufo: ^1.6.1 + ufo: ^1.6.3 peerDependencies: zod: ">=3" peerDependenciesMeta: zod: optional: true - checksum: 28ca32e4967e71b2c57e4e5177402a5bb3d879e38cbbdda91b8811cf77f2148c1709ab4a2ccc63920755e7ad96c8b041f707082a907622bc38dbe095cee628b8 + checksum: 303137c77afb88e1d016dd8758d72489ca06a750d895793e577dd8fd272af42e4a5c3d1b072145b8ad17effb2ae16ae7ebb26076b77ced7fb7b1b43ed7317a33 languageName: node linkType: hard @@ -2007,123 +2034,165 @@ __metadata: languageName: node linkType: hard -"@oxc-minify/binding-android-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-android-arm64@npm:0.102.0" +"@oxc-minify/binding-android-arm-eabi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-android-arm-eabi@npm:0.112.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@oxc-minify/binding-android-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-android-arm64@npm:0.112.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxc-minify/binding-darwin-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-darwin-arm64@npm:0.102.0" +"@oxc-minify/binding-darwin-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-darwin-arm64@npm:0.112.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxc-minify/binding-darwin-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-darwin-x64@npm:0.102.0" +"@oxc-minify/binding-darwin-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-darwin-x64@npm:0.112.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxc-minify/binding-freebsd-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-freebsd-x64@npm:0.102.0" +"@oxc-minify/binding-freebsd-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-freebsd-x64@npm:0.112.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@oxc-minify/binding-linux-arm-gnueabihf@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-arm-gnueabihf@npm:0.102.0" +"@oxc-minify/binding-linux-arm-gnueabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-arm-gnueabihf@npm:0.112.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxc-minify/binding-linux-arm64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-arm64-gnu@npm:0.102.0" +"@oxc-minify/binding-linux-arm-musleabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-arm-musleabihf@npm:0.112.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-minify/binding-linux-arm64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-arm64-gnu@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxc-minify/binding-linux-arm64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-arm64-musl@npm:0.102.0" +"@oxc-minify/binding-linux-arm64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-arm64-musl@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxc-minify/binding-linux-riscv64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-riscv64-gnu@npm:0.102.0" +"@oxc-minify/binding-linux-ppc64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-ppc64-gnu@npm:0.112.0" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-minify/binding-linux-riscv64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-riscv64-gnu@npm:0.112.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@oxc-minify/binding-linux-s390x-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-s390x-gnu@npm:0.102.0" +"@oxc-minify/binding-linux-riscv64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-riscv64-musl@npm:0.112.0" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxc-minify/binding-linux-s390x-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-s390x-gnu@npm:0.112.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@oxc-minify/binding-linux-x64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-x64-gnu@npm:0.102.0" +"@oxc-minify/binding-linux-x64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-x64-gnu@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxc-minify/binding-linux-x64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-linux-x64-musl@npm:0.102.0" +"@oxc-minify/binding-linux-x64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-linux-x64-musl@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxc-minify/binding-openharmony-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-openharmony-arm64@npm:0.102.0" +"@oxc-minify/binding-openharmony-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-openharmony-arm64@npm:0.112.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxc-minify/binding-wasm32-wasi@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-wasm32-wasi@npm:0.102.0" +"@oxc-minify/binding-wasm32-wasi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-wasm32-wasi@npm:0.112.0" dependencies: - "@napi-rs/wasm-runtime": ^1.1.0 + "@napi-rs/wasm-runtime": ^1.1.1 conditions: cpu=wasm32 languageName: node linkType: hard -"@oxc-minify/binding-win32-arm64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-win32-arm64-msvc@npm:0.102.0" +"@oxc-minify/binding-win32-arm64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-win32-arm64-msvc@npm:0.112.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxc-minify/binding-win32-x64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-minify/binding-win32-x64-msvc@npm:0.102.0" +"@oxc-minify/binding-win32-ia32-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-win32-ia32-msvc@npm:0.112.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxc-minify/binding-win32-x64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-minify/binding-win32-x64-msvc@npm:0.112.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@oxc-parser/binding-android-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-android-arm64@npm:0.102.0" +"@oxc-parser/binding-android-arm-eabi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-android-arm-eabi@npm:0.112.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@oxc-parser/binding-android-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-android-arm64@npm:0.112.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxc-parser/binding-darwin-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-darwin-arm64@npm:0.102.0" +"@oxc-parser/binding-darwin-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-darwin-arm64@npm:0.112.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -2135,9 +2204,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-darwin-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-darwin-x64@npm:0.102.0" +"@oxc-parser/binding-darwin-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-darwin-x64@npm:0.112.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -2149,9 +2218,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-freebsd-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-freebsd-x64@npm:0.102.0" +"@oxc-parser/binding-freebsd-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-freebsd-x64@npm:0.112.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -2163,9 +2232,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-arm-gnueabihf@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-arm-gnueabihf@npm:0.102.0" +"@oxc-parser/binding-linux-arm-gnueabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-arm-gnueabihf@npm:0.112.0" conditions: os=linux & cpu=arm languageName: node linkType: hard @@ -2177,6 +2246,13 @@ __metadata: languageName: node linkType: hard +"@oxc-parser/binding-linux-arm-musleabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-arm-musleabihf@npm:0.112.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + "@oxc-parser/binding-linux-arm-musleabihf@npm:0.70.0": version: 0.70.0 resolution: "@oxc-parser/binding-linux-arm-musleabihf@npm:0.70.0" @@ -2184,9 +2260,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-arm64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-arm64-gnu@npm:0.102.0" +"@oxc-parser/binding-linux-arm64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-arm64-gnu@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard @@ -2198,9 +2274,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-arm64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-arm64-musl@npm:0.102.0" +"@oxc-parser/binding-linux-arm64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-arm64-musl@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard @@ -2212,9 +2288,16 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-riscv64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-riscv64-gnu@npm:0.102.0" +"@oxc-parser/binding-linux-ppc64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-ppc64-gnu@npm:0.112.0" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-riscv64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-riscv64-gnu@npm:0.112.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard @@ -2226,9 +2309,16 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-s390x-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-s390x-gnu@npm:0.102.0" +"@oxc-parser/binding-linux-riscv64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-riscv64-musl@npm:0.112.0" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-s390x-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-s390x-gnu@npm:0.112.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard @@ -2240,9 +2330,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-x64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-x64-gnu@npm:0.102.0" +"@oxc-parser/binding-linux-x64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-x64-gnu@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard @@ -2254,9 +2344,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-linux-x64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-linux-x64-musl@npm:0.102.0" +"@oxc-parser/binding-linux-x64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-linux-x64-musl@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard @@ -2268,18 +2358,18 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-openharmony-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-openharmony-arm64@npm:0.102.0" +"@oxc-parser/binding-openharmony-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-openharmony-arm64@npm:0.112.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxc-parser/binding-wasm32-wasi@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-wasm32-wasi@npm:0.102.0" +"@oxc-parser/binding-wasm32-wasi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-wasm32-wasi@npm:0.112.0" dependencies: - "@napi-rs/wasm-runtime": ^1.1.0 + "@napi-rs/wasm-runtime": ^1.1.1 conditions: cpu=wasm32 languageName: node linkType: hard @@ -2293,9 +2383,9 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-win32-arm64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-win32-arm64-msvc@npm:0.102.0" +"@oxc-parser/binding-win32-arm64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-win32-arm64-msvc@npm:0.112.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -2307,9 +2397,16 @@ __metadata: languageName: node linkType: hard -"@oxc-parser/binding-win32-x64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-parser/binding-win32-x64-msvc@npm:0.102.0" +"@oxc-parser/binding-win32-ia32-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-win32-ia32-msvc@npm:0.112.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxc-parser/binding-win32-x64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-parser/binding-win32-x64-msvc@npm:0.112.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -2330,10 +2427,10 @@ __metadata: languageName: node linkType: hard -"@oxc-project/types@npm:^0.102.0": - version: 0.102.0 - resolution: "@oxc-project/types@npm:0.102.0" - checksum: de663d48b770a634db44187b308745dbe2bafd6e173d3c94c19a8d7ef7666099d871aba338892fe2f61bf8095a11f61ae74f6a46418033c04b268ca4eb94d220 +"@oxc-project/types@npm:^0.112.0": + version: 0.112.0 + resolution: "@oxc-project/types@npm:0.112.0" + checksum: ee29746659df9dfd3cf7cd75a7ef81e1b5137daead130096b45efc7a13419428869e67207bc6f944f21e41d13e063004a655aa1db9d36a45f91a8f3e8a34779b languageName: node linkType: hard @@ -2351,232 +2448,267 @@ __metadata: languageName: node linkType: hard -"@oxc-transform/binding-android-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-android-arm64@npm:0.102.0" +"@oxc-transform/binding-android-arm-eabi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-android-arm-eabi@npm:0.112.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@oxc-transform/binding-android-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-android-arm64@npm:0.112.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxc-transform/binding-darwin-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-darwin-arm64@npm:0.102.0" +"@oxc-transform/binding-darwin-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-darwin-arm64@npm:0.112.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxc-transform/binding-darwin-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-darwin-x64@npm:0.102.0" +"@oxc-transform/binding-darwin-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-darwin-x64@npm:0.112.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxc-transform/binding-freebsd-x64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-freebsd-x64@npm:0.102.0" +"@oxc-transform/binding-freebsd-x64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-freebsd-x64@npm:0.112.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@oxc-transform/binding-linux-arm-gnueabihf@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-arm-gnueabihf@npm:0.102.0" +"@oxc-transform/binding-linux-arm-gnueabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-arm-gnueabihf@npm:0.112.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxc-transform/binding-linux-arm64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-arm64-gnu@npm:0.102.0" +"@oxc-transform/binding-linux-arm-musleabihf@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-arm-musleabihf@npm:0.112.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-transform/binding-linux-arm64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-arm64-gnu@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxc-transform/binding-linux-arm64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-arm64-musl@npm:0.102.0" +"@oxc-transform/binding-linux-arm64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-arm64-musl@npm:0.112.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxc-transform/binding-linux-riscv64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-riscv64-gnu@npm:0.102.0" +"@oxc-transform/binding-linux-ppc64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-ppc64-gnu@npm:0.112.0" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-transform/binding-linux-riscv64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-riscv64-gnu@npm:0.112.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@oxc-transform/binding-linux-s390x-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-s390x-gnu@npm:0.102.0" +"@oxc-transform/binding-linux-riscv64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-riscv64-musl@npm:0.112.0" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxc-transform/binding-linux-s390x-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-s390x-gnu@npm:0.112.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@oxc-transform/binding-linux-x64-gnu@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-x64-gnu@npm:0.102.0" +"@oxc-transform/binding-linux-x64-gnu@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-x64-gnu@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxc-transform/binding-linux-x64-musl@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-linux-x64-musl@npm:0.102.0" +"@oxc-transform/binding-linux-x64-musl@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-linux-x64-musl@npm:0.112.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxc-transform/binding-openharmony-arm64@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-openharmony-arm64@npm:0.102.0" +"@oxc-transform/binding-openharmony-arm64@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-openharmony-arm64@npm:0.112.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxc-transform/binding-wasm32-wasi@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-wasm32-wasi@npm:0.102.0" +"@oxc-transform/binding-wasm32-wasi@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-wasm32-wasi@npm:0.112.0" dependencies: - "@napi-rs/wasm-runtime": ^1.1.0 + "@napi-rs/wasm-runtime": ^1.1.1 conditions: cpu=wasm32 languageName: node linkType: hard -"@oxc-transform/binding-win32-arm64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-win32-arm64-msvc@npm:0.102.0" +"@oxc-transform/binding-win32-arm64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-win32-arm64-msvc@npm:0.112.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxc-transform/binding-win32-x64-msvc@npm:0.102.0": - version: 0.102.0 - resolution: "@oxc-transform/binding-win32-x64-msvc@npm:0.102.0" +"@oxc-transform/binding-win32-ia32-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-win32-ia32-msvc@npm:0.112.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxc-transform/binding-win32-x64-msvc@npm:0.112.0": + version: 0.112.0 + resolution: "@oxc-transform/binding-win32-x64-msvc@npm:0.112.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-android-arm64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-android-arm64@npm:2.5.4" +"@parcel/watcher-android-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-android-arm64@npm:2.5.6" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-arm64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-darwin-arm64@npm:2.5.4" +"@parcel/watcher-darwin-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-darwin-arm64@npm:2.5.6" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-x64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-darwin-x64@npm:2.5.4" +"@parcel/watcher-darwin-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-darwin-x64@npm:2.5.6" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-freebsd-x64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-freebsd-x64@npm:2.5.4" +"@parcel/watcher-freebsd-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-freebsd-x64@npm:2.5.6" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-linux-arm-glibc@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.4" +"@parcel/watcher-linux-arm-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.6" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm-musl@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.4" +"@parcel/watcher-linux-arm-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.6" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-arm64-glibc@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.4" +"@parcel/watcher-linux-arm64-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.6" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm64-musl@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.4" +"@parcel/watcher-linux-arm64-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.6" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-x64-glibc@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.4" +"@parcel/watcher-linux-x64-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.6" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-x64-musl@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.4" +"@parcel/watcher-linux-x64-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.6" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard "@parcel/watcher-wasm@npm:^2.4.1": - version: 2.5.4 - resolution: "@parcel/watcher-wasm@npm:2.5.4" + version: 2.5.6 + resolution: "@parcel/watcher-wasm@npm:2.5.6" dependencies: is-glob: ^4.0.3 napi-wasm: ^1.1.0 picomatch: ^4.0.3 - checksum: 7bedbe080cb37a1710c338acc3f4b848aafba91d85f363a22f45d6ca480ce90c9a9761e9e11de6e946a75ba66062aa31793861f870c199196bebabccc030c7fc + checksum: 865d85af117239792e18f405e1427f9a1edad8279298169afaded65527f9445b0134a858ebe78ad1940c501fc312bcdc244855ffeb66e08a80182b0033e428d8 languageName: node linkType: hard -"@parcel/watcher-win32-arm64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-win32-arm64@npm:2.5.4" +"@parcel/watcher-win32-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-arm64@npm:2.5.6" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-win32-ia32@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-win32-ia32@npm:2.5.4" +"@parcel/watcher-win32-ia32@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-ia32@npm:2.5.6" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@parcel/watcher-win32-x64@npm:2.5.4": - version: 2.5.4 - resolution: "@parcel/watcher-win32-x64@npm:2.5.4" +"@parcel/watcher-win32-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-x64@npm:2.5.6" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@parcel/watcher@npm:^2.4.1": - version: 2.5.4 - resolution: "@parcel/watcher@npm:2.5.4" - dependencies: - "@parcel/watcher-android-arm64": 2.5.4 - "@parcel/watcher-darwin-arm64": 2.5.4 - "@parcel/watcher-darwin-x64": 2.5.4 - "@parcel/watcher-freebsd-x64": 2.5.4 - "@parcel/watcher-linux-arm-glibc": 2.5.4 - "@parcel/watcher-linux-arm-musl": 2.5.4 - "@parcel/watcher-linux-arm64-glibc": 2.5.4 - "@parcel/watcher-linux-arm64-musl": 2.5.4 - "@parcel/watcher-linux-x64-glibc": 2.5.4 - "@parcel/watcher-linux-x64-musl": 2.5.4 - "@parcel/watcher-win32-arm64": 2.5.4 - "@parcel/watcher-win32-ia32": 2.5.4 - "@parcel/watcher-win32-x64": 2.5.4 + version: 2.5.6 + resolution: "@parcel/watcher@npm:2.5.6" + dependencies: + "@parcel/watcher-android-arm64": 2.5.6 + "@parcel/watcher-darwin-arm64": 2.5.6 + "@parcel/watcher-darwin-x64": 2.5.6 + "@parcel/watcher-freebsd-x64": 2.5.6 + "@parcel/watcher-linux-arm-glibc": 2.5.6 + "@parcel/watcher-linux-arm-musl": 2.5.6 + "@parcel/watcher-linux-arm64-glibc": 2.5.6 + "@parcel/watcher-linux-arm64-musl": 2.5.6 + "@parcel/watcher-linux-x64-glibc": 2.5.6 + "@parcel/watcher-linux-x64-musl": 2.5.6 + "@parcel/watcher-win32-arm64": 2.5.6 + "@parcel/watcher-win32-ia32": 2.5.6 + "@parcel/watcher-win32-x64": 2.5.6 detect-libc: ^2.0.3 is-glob: ^4.0.3 node-addon-api: ^7.0.0 @@ -2609,18 +2741,18 @@ __metadata: optional: true "@parcel/watcher-win32-x64": optional: true - checksum: eded492018c8a89e1ab9e126c3cb2052493da17e0936ac5a8e154adfd4c121bb45d1a2462d817904bcc6c30625c782a07cd7211a1bdf8fd54600f02678a0e7c0 + checksum: f4f166eaf743630bce0ed1c16db0ac90bd7b5a7e807abf7fe5affb95dbefbb49a6c3a805bfcd7ec82703262b9c7fd0f494a102700e273b1fe66ed9615bb04195 languageName: node linkType: hard -"@pinia/nuxt@npm:0.11.2": - version: 0.11.2 - resolution: "@pinia/nuxt@npm:0.11.2" +"@pinia/nuxt@npm:0.11.3": + version: 0.11.3 + resolution: "@pinia/nuxt@npm:0.11.3" dependencies: - "@nuxt/kit": ^3.9.0 + "@nuxt/kit": ^4.2.0 peerDependencies: - pinia: ^3.0.3 - checksum: 917752ed2ec7359ebb4e1bf7bb931695d8056461358ec0da588258b26504748f083d3528dbe6f0bcadef854d404775f17bc77d9171df532636f9d3461e0f2bf9 + pinia: ^3.0.4 + checksum: 2a960535735ddc2ad3a13d94eba17a7e2294350b3aae3d36548dd5ce6070bfd85214bc475e43303d192fc10d21cd7588b496dec3196807fa728be7a43ca0cdeb languageName: node linkType: hard @@ -2638,7 +2770,7 @@ __metadata: languageName: node linkType: hard -"@poppinss/colors@npm:^4.1.5": +"@poppinss/colors@npm:^4.1.5, @poppinss/colors@npm:^4.1.6": version: 4.1.6 resolution: "@poppinss/colors@npm:4.1.6" dependencies: @@ -2647,14 +2779,14 @@ __metadata: languageName: node linkType: hard -"@poppinss/dumper@npm:^0.6.5": - version: 0.6.5 - resolution: "@poppinss/dumper@npm:0.6.5" +"@poppinss/dumper@npm:^0.7.0": + version: 0.7.0 + resolution: "@poppinss/dumper@npm:0.7.0" dependencies: "@poppinss/colors": ^4.1.5 "@sindresorhus/is": ^7.0.2 supports-color: ^10.0.0 - checksum: 62cb92b0586ddf9c9e2cc2824b2071c32238350a36f1fb081a75b9a3b0b1f8803864503d6f0b9517917721adacde45e40617b3a2e8321c9a8cdfec5618b27211 + checksum: 21f6b2b6447392194b54c6fb8a7a2280d9f5974b0dd3c85a36dac5c5a1e2da8f690958c49e69f6388d32674580ed93545f114a0d0bc4cb405b2afc29676f28ed languageName: node linkType: hard @@ -2665,17 +2797,17 @@ __metadata: languageName: node linkType: hard -"@rolldown/pluginutils@npm:1.0.0-beta.53": - version: 1.0.0-beta.53 - resolution: "@rolldown/pluginutils@npm:1.0.0-beta.53" - checksum: ef4dbf6061620f5749879b09a990007ac4da32b92b830c46b8c3240675c7ea6e4cce80a2d0b5e23141eef055444f66cbe51382b7bd169aa63fcae5d07f8f9451 +"@rolldown/pluginutils@npm:1.0.0-rc.2": + version: 1.0.0-rc.2 + resolution: "@rolldown/pluginutils@npm:1.0.0-rc.2" + checksum: ef87aab5642ca45d12b356fe5a82c1b4d69ffa260c197f59135a332da2fe0f70fc97bf31b632445ef26031c1c455b86c0bde49ecd89f208edd363e13211f3a26 languageName: node linkType: hard -"@rolldown/pluginutils@npm:^1.0.0-beta.56": - version: 1.0.0-beta.9-commit.d91dfb5 - resolution: "@rolldown/pluginutils@npm:1.0.0-beta.9-commit.d91dfb5" - checksum: d214562f83d08f75053d384f286ced1905835f8147c27a27b35d5a0fd09040be2916111871b9fbfc569c8edde8a79637bad9b6cc399797322de7c2c50f1f9c4e +"@rolldown/pluginutils@npm:^1.0.0-rc.2": + version: 1.0.0-rc.6 + resolution: "@rolldown/pluginutils@npm:1.0.0-rc.6" + checksum: fa2e4b94a7c3633ab7252db61897d6178f36b0ddaaa4a44dcf1cfc3c000d39138ac2b907c8989e53d0ef16bd5864b0de991d9ea8de0c476fd4ee79fead954112 languageName: node linkType: hard @@ -2822,177 +2954,177 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.55.2" +"@rollup/rollup-android-arm-eabi@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.59.0" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-android-arm64@npm:4.55.2" +"@rollup/rollup-android-arm64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-android-arm64@npm:4.59.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-darwin-arm64@npm:4.55.2" +"@rollup/rollup-darwin-arm64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-darwin-arm64@npm:4.59.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-darwin-x64@npm:4.55.2" +"@rollup/rollup-darwin-x64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-darwin-x64@npm:4.59.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.55.2" +"@rollup/rollup-freebsd-arm64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.59.0" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-freebsd-x64@npm:4.55.2" +"@rollup/rollup-freebsd-x64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-freebsd-x64@npm:4.59.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.55.2" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.59.0" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.55.2" +"@rollup/rollup-linux-arm-musleabihf@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.59.0" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.55.2" +"@rollup/rollup-linux-arm64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.59.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.55.2" +"@rollup/rollup-linux-arm64-musl@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.59.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loong64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.55.2" +"@rollup/rollup-linux-loong64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.59.0" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-loong64-musl@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-loong64-musl@npm:4.55.2" +"@rollup/rollup-linux-loong64-musl@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.59.0" conditions: os=linux & cpu=loong64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.55.2" +"@rollup/rollup-linux-ppc64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.59.0" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-musl@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.55.2" +"@rollup/rollup-linux-ppc64-musl@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.59.0" conditions: os=linux & cpu=ppc64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.55.2" +"@rollup/rollup-linux-riscv64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.59.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.55.2" +"@rollup/rollup-linux-riscv64-musl@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.59.0" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.55.2" +"@rollup/rollup-linux-s390x-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.59.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.55.2" +"@rollup/rollup-linux-x64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.59.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.55.2" +"@rollup/rollup-linux-x64-musl@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.59.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-openbsd-x64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-openbsd-x64@npm:4.55.2" +"@rollup/rollup-openbsd-x64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-openbsd-x64@npm:4.59.0" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-openharmony-arm64@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-openharmony-arm64@npm:4.55.2" +"@rollup/rollup-openharmony-arm64@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.59.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.55.2" +"@rollup/rollup-win32-arm64-msvc@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.59.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.55.2" +"@rollup/rollup-win32-ia32-msvc@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.59.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-gnu@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-win32-x64-gnu@npm:4.55.2" +"@rollup/rollup-win32-x64-gnu@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.59.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.55.2": - version: 4.55.2 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.55.2" +"@rollup/rollup-win32-x64-msvc@npm:4.59.0": + version: 4.59.0 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.59.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3011,7 +3143,7 @@ __metadata: languageName: node linkType: hard -"@speed-highlight/core@npm:^1.2.9": +"@speed-highlight/core@npm:^1.2.14": version: 1.2.14 resolution: "@speed-highlight/core@npm:1.2.14" checksum: 38bc0c9abdfa0297e0dd6a1c7ceb5c5e8fd3c1465b61d451cc53029e7504db7afe4edb56f6385f74a35681c8a2d7a8312a2f3bba45766b2b5d145f495030df5f @@ -3019,45 +3151,45 @@ __metadata: linkType: hard "@stylistic/eslint-plugin@npm:^5.3.1": - version: 5.7.0 - resolution: "@stylistic/eslint-plugin@npm:5.7.0" + version: 5.9.0 + resolution: "@stylistic/eslint-plugin@npm:5.9.0" dependencies: "@eslint-community/eslint-utils": ^4.9.1 - "@typescript-eslint/types": ^8.52.0 - eslint-visitor-keys: ^5.0.0 - espree: ^11.0.0 + "@typescript-eslint/types": ^8.56.0 + eslint-visitor-keys: ^4.2.1 + espree: ^10.4.0 estraverse: ^5.3.0 picomatch: ^4.0.3 peerDependencies: - eslint: ">=9.0.0" - checksum: a9cb6ba22abb52b8293070e47e0bd2a7fb5ca432294a1a6b794f7f8b0bf7728a45c53619d7818aa3f3f84adb311f57c8822d2ab6afb2e697b9b05af284ae4788 + eslint: ^9.0.0 || ^10.0.0 + checksum: e2eb880dc755855d8761527a80a628a65c7426eaf1b91a5d6efe553effd4a133a991e0851936b6d805fe923bbc84a8da162663160be7b452bd6d5f9388d4268e languageName: node linkType: hard "@swc/helpers@npm:^0.5.0, @swc/helpers@npm:^0.5.12": - version: 0.5.18 - resolution: "@swc/helpers@npm:0.5.18" + version: 0.5.19 + resolution: "@swc/helpers@npm:0.5.19" dependencies: tslib: ^2.8.0 - checksum: 1dc1e5ce42ca0687ebbff4b00efb49fa813886e819fcd440329f1d14e76a988df738cff63f113c271a340c7b6a6534dba711103021c4a1e1d277bccb33a1d732 + checksum: 9e1f2058d1091208a0500990b70d2927dd4f710c3bb867e523d5ae068c0b3ab75a6890c1cc37db2011c39e2b086afaff22e1ef03219ee47e43bd28d8f4c76bac languageName: node linkType: hard -"@tanstack/virtual-core@npm:3.13.18": - version: 3.13.18 - resolution: "@tanstack/virtual-core@npm:3.13.18" - checksum: 9344c797be9a1b100adb5f1b9fbba2a6292aad56723d39f2d48f976d237f35e8473292949ed680b79338cb0f13823700c4e1ac21318097a5c197e8a706405263 +"@tanstack/virtual-core@npm:3.13.19": + version: 3.13.19 + resolution: "@tanstack/virtual-core@npm:3.13.19" + checksum: 3b19aff90734ec389e4ca4a6c17b291edce2a6650ca50f97de80f865fea92a6aee0f73a7f9afd6d52a6fa8ca79b0298934a07932491443c05fbf920585841aaf languageName: node linkType: hard "@tanstack/vue-virtual@npm:^3.8.1": - version: 3.13.18 - resolution: "@tanstack/vue-virtual@npm:3.13.18" + version: 3.13.19 + resolution: "@tanstack/vue-virtual@npm:3.13.19" dependencies: - "@tanstack/virtual-core": 3.13.18 + "@tanstack/virtual-core": 3.13.19 peerDependencies: vue: ^2.7.0 || ^3.0.0 - checksum: e0a492a007440e621771ce1e7bb6aed768962616582b87bb7efc31e636699b9aecc06e883e9590e7fdd337694b9f6ba30fd98a1fe0076ada1896e40d7804820a + checksum: dd6cb571a517e12f63b9e012fb7fd72db8ea4cc310607204a4764f428537c9f3968834fe86721b4afd1540740740dcda7bf8741d0dac63c3930ff6130e3376ac languageName: node linkType: hard @@ -3070,13 +3202,27 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:1.0.8, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6": +"@types/esrecurse@npm:^4.3.1": + version: 4.3.1 + resolution: "@types/esrecurse@npm:4.3.1" + checksum: ada5798554b76ac466e90fff26a769b65f905666f32988dcd1b6cf8288896e0fb53080843fd644bf731d16719a6e09b155d623ce36545b75abdd99bb6dcec114 + languageName: node + linkType: hard + +"@types/estree@npm:*, @types/estree@npm:1.0.8, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6, @types/estree@npm:^1.0.8": version: 1.0.8 resolution: "@types/estree@npm:1.0.8" checksum: bd93e2e415b6f182ec4da1074e1f36c480f1d26add3e696d54fb30c09bc470897e41361c8fd957bf0985024f8fbf1e6e2aff977d79352ef7eb93a5c6dcff6c11 languageName: node linkType: hard +"@types/jsesc@npm:^2.5.0": + version: 2.5.1 + resolution: "@types/jsesc@npm:2.5.1" + checksum: fb4303b059df0b6834f26446712d890a93fa7c446347b61505a925e07c7fab3aaab083940bca0be8d521779a2a6a5c16a75136f6de753f4a65c1f24fd7c6aee6 + languageName: node + linkType: hard + "@types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" @@ -3109,18 +3255,11 @@ __metadata: linkType: hard "@types/node@npm:^24.10.1": - version: 24.10.9 - resolution: "@types/node@npm:24.10.9" + version: 24.11.0 + resolution: "@types/node@npm:24.11.0" dependencies: undici-types: ~7.16.0 - checksum: ee6e0a13b286c4cec32c29e2a7d862345660f6720f805315733f7802f6ece45d23fa0d4baee56276e48e62c4b7c3d335e5f40955179afc383a26b91bcb88293a - languageName: node - linkType: hard - -"@types/parse-path@npm:^7.0.0": - version: 7.0.3 - resolution: "@types/parse-path@npm:7.0.3" - checksum: 21a12c228d38f5a75659dfd7cb127dc2001ed3f6acbd1b2e0575d1348c735594c0bab06a97fe849c151438384829f20ea5971cb045f7ecd37d53c76a9fcb9de3 + checksum: 21bc65998faab117bead0bf372bd2fcacd12a5b25cdb88a947154b0b0b212aa4bc78a116467a963f9aafad68032421ebd4b6063396ba858c49cbcfebbc3e83a7 languageName: node linkType: hard @@ -3159,173 +3298,173 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.53.1, @typescript-eslint/eslint-plugin@npm:^8.41.0": - version: 8.53.1 - resolution: "@typescript-eslint/eslint-plugin@npm:8.53.1" +"@typescript-eslint/eslint-plugin@npm:8.56.1, @typescript-eslint/eslint-plugin@npm:^8.41.0": + version: 8.56.1 + resolution: "@typescript-eslint/eslint-plugin@npm:8.56.1" dependencies: "@eslint-community/regexpp": ^4.12.2 - "@typescript-eslint/scope-manager": 8.53.1 - "@typescript-eslint/type-utils": 8.53.1 - "@typescript-eslint/utils": 8.53.1 - "@typescript-eslint/visitor-keys": 8.53.1 + "@typescript-eslint/scope-manager": 8.56.1 + "@typescript-eslint/type-utils": 8.56.1 + "@typescript-eslint/utils": 8.56.1 + "@typescript-eslint/visitor-keys": 8.56.1 ignore: ^7.0.5 natural-compare: ^1.4.0 ts-api-utils: ^2.4.0 peerDependencies: - "@typescript-eslint/parser": ^8.53.1 - eslint: ^8.57.0 || ^9.0.0 + "@typescript-eslint/parser": ^8.56.1 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 6a29856caee0c6313167f050396178fe9dbb974655c76847e334cddb84f5f790ecf5db349dd39712da5c189af3f99aebd6c8e434ff6fa5a226901050504819ef + checksum: 40f5e1f73a9c268fb4ae5da88f56dd92bebe0185b0228fbbf26df00fc9fdfb41024d9dcb0443f171a34a09214444b20e1ff3f144c3070b7772d93444b2b4c37e languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.53.1, @typescript-eslint/parser@npm:^8.41.0": - version: 8.53.1 - resolution: "@typescript-eslint/parser@npm:8.53.1" +"@typescript-eslint/parser@npm:8.56.1, @typescript-eslint/parser@npm:^8.41.0": + version: 8.56.1 + resolution: "@typescript-eslint/parser@npm:8.56.1" dependencies: - "@typescript-eslint/scope-manager": 8.53.1 - "@typescript-eslint/types": 8.53.1 - "@typescript-eslint/typescript-estree": 8.53.1 - "@typescript-eslint/visitor-keys": 8.53.1 + "@typescript-eslint/scope-manager": 8.56.1 + "@typescript-eslint/types": 8.56.1 + "@typescript-eslint/typescript-estree": 8.56.1 + "@typescript-eslint/visitor-keys": 8.56.1 debug: ^4.4.3 peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 391c653b306a6ba8723cb9bc3167fdbcd5cb2f43993ec822ed8f3aef15b9f08cb580c613ce7404925874eb9a256ee780dfb2500b9ce204bd6063fa49b6ef9092 + checksum: 96035fd94147ea6940a5e6f030f1068ae246e24c0b1bcf8b1a9f0d205ea7678c46c7f9c27f16313302fdf115d94fc83b3e2d1403f0df1c04d0ffe85e88a554ee languageName: node linkType: hard -"@typescript-eslint/project-service@npm:8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/project-service@npm:8.53.1" +"@typescript-eslint/project-service@npm:8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/project-service@npm:8.56.1" dependencies: - "@typescript-eslint/tsconfig-utils": ^8.53.1 - "@typescript-eslint/types": ^8.53.1 + "@typescript-eslint/tsconfig-utils": ^8.56.1 + "@typescript-eslint/types": ^8.56.1 debug: ^4.4.3 peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 746f1a046f4ab962c270a98db72ae2143b2b3f30508db9912006ea5f2ca3c045f07135266f4a45ac08fecbf85045294c654fecd60b5d4bf064eff0a4d9644d8b + checksum: aeb8f9e34185781d83a67dfef8dc80b3d0d1d832b592a86aaecada1311e7920cb8fd1a044986a6a1c50cdcadfb1e80a3c173cd17b4e8abe8d6bf072e9a904474 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.53.1, @typescript-eslint/scope-manager@npm:^8.13.0": - version: 8.53.1 - resolution: "@typescript-eslint/scope-manager@npm:8.53.1" +"@typescript-eslint/scope-manager@npm:8.56.1, @typescript-eslint/scope-manager@npm:^8.13.0": + version: 8.56.1 + resolution: "@typescript-eslint/scope-manager@npm:8.56.1" dependencies: - "@typescript-eslint/types": 8.53.1 - "@typescript-eslint/visitor-keys": 8.53.1 - checksum: 7462e5887229ae7365849b76471d7135d25071893c855d83e46a32ea6c1b5354444a0d465df89ea379fecd96a9d993c4fe42c8889511f3a3d2d55915c1e40a8a + "@typescript-eslint/types": 8.56.1 + "@typescript-eslint/visitor-keys": 8.56.1 + checksum: 55a593a2c74bb7cff5136d48c242e7bcf8c54bdd4ae20db2bedf4756f795adda85f9971b7d871991f19ae3cd1cf4b6f854a589bd5fd00f0d77e2906880034155 languageName: node linkType: hard -"@typescript-eslint/tsconfig-utils@npm:8.53.1, @typescript-eslint/tsconfig-utils@npm:^8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/tsconfig-utils@npm:8.53.1" +"@typescript-eslint/tsconfig-utils@npm:8.56.1, @typescript-eslint/tsconfig-utils@npm:^8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.56.1" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: e1b980769f4b02c8ed677b8414570ad10a962c27cd05bbc9b10ab7341b5ae8620611237636c6707808199b143082b4f598425a01705d576a38b200e074c12ceb + checksum: b54be8d46963958d8dc763099d632a83384dda2832c57a121df853c2fbd01042eb5c02d427303c021920d8312fcafb987ef734dea2a4ebcf1fe3dc956fd62f42 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/type-utils@npm:8.53.1" +"@typescript-eslint/type-utils@npm:8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/type-utils@npm:8.56.1" dependencies: - "@typescript-eslint/types": 8.53.1 - "@typescript-eslint/typescript-estree": 8.53.1 - "@typescript-eslint/utils": 8.53.1 + "@typescript-eslint/types": 8.56.1 + "@typescript-eslint/typescript-estree": 8.56.1 + "@typescript-eslint/utils": 8.56.1 debug: ^4.4.3 ts-api-utils: ^2.4.0 peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 0bf9d561aad148d8b48cb0f83a79d6eb358c3fef50f81e1fbab682c54be6dfef0b19738a8269aa1d8ee48174747b9133e7fdd9979bd78d489b30757836fa3c52 + checksum: e2c8345d0b82977d3fb7f432d90b02773384e139644e7c214f4e6a1e2d3bcc231a2f2f57d9b507d37aabd4eb984b8523edc254b9400bf66f988475aaf225adfc languageName: node linkType: hard -"@typescript-eslint/types@npm:8.53.1, @typescript-eslint/types@npm:^8.52.0, @typescript-eslint/types@npm:^8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/types@npm:8.53.1" - checksum: 002b76b9fe8553cb4f598b0092cb5bb721705bf4f26001453d0d3a362a59e7ca548c4ded3b67c27681035555a5f04e63daa0e2a13d7e5e343b122b37de2379eb +"@typescript-eslint/types@npm:8.56.1, @typescript-eslint/types@npm:^8.56.0, @typescript-eslint/types@npm:^8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/types@npm:8.56.1" + checksum: 67716a6699becdef1dd23acb0762b940caa2c541fd27573328b5047a7cd08d19f775eb01cd11080d16dc2d2a23af8f9b8fc5813f935b12170769de074af3c77a languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.53.1, @typescript-eslint/typescript-estree@npm:^8.13.0": - version: 8.53.1 - resolution: "@typescript-eslint/typescript-estree@npm:8.53.1" +"@typescript-eslint/typescript-estree@npm:8.56.1, @typescript-eslint/typescript-estree@npm:^8.13.0": + version: 8.56.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.56.1" dependencies: - "@typescript-eslint/project-service": 8.53.1 - "@typescript-eslint/tsconfig-utils": 8.53.1 - "@typescript-eslint/types": 8.53.1 - "@typescript-eslint/visitor-keys": 8.53.1 + "@typescript-eslint/project-service": 8.56.1 + "@typescript-eslint/tsconfig-utils": 8.56.1 + "@typescript-eslint/types": 8.56.1 + "@typescript-eslint/visitor-keys": 8.56.1 debug: ^4.4.3 - minimatch: ^9.0.5 + minimatch: ^10.2.2 semver: ^7.7.3 tinyglobby: ^0.2.15 ts-api-utils: ^2.4.0 peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 2eab6356598f32e9764c94b9195216a9bffd4e18ac9378a3f951a8687d4303e417264504f22e25626c6043a12738c7ef9eecf96bdc46b31ff22ee1c1926a8eea + checksum: e28b4874b8d65c22075b3ada91931d17d892f16aa39a7f65cf726476085c0ef9620945c558b3c00ed363f88bd6ebd5372267510b640687370c608a0298bbf5cf languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/utils@npm:8.53.1" +"@typescript-eslint/utils@npm:8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/utils@npm:8.56.1" dependencies: "@eslint-community/eslint-utils": ^4.9.1 - "@typescript-eslint/scope-manager": 8.53.1 - "@typescript-eslint/types": 8.53.1 - "@typescript-eslint/typescript-estree": 8.53.1 + "@typescript-eslint/scope-manager": 8.56.1 + "@typescript-eslint/types": 8.56.1 + "@typescript-eslint/typescript-estree": 8.56.1 peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: baed0dba4e8669be6747915ff678d6e7467da1c614237543397859e3ca925efaa5382ce2f1c9b616ecf024b4aadc99600e019920593efbe262b17c776e7f529f + checksum: bcef244cdad1ede9726e6e01e60077056b5ce1136ac0637446b05975a1936a2d424159471eebaa9f8746659bdca567f5e50d63bdbb6369bc48d2f5af4627d1ca languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.53.1": - version: 8.53.1 - resolution: "@typescript-eslint/visitor-keys@npm:8.53.1" +"@typescript-eslint/visitor-keys@npm:8.56.1": + version: 8.56.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.56.1" dependencies: - "@typescript-eslint/types": 8.53.1 - eslint-visitor-keys: ^4.2.1 - checksum: 0dd488554dda55720e1538cb2de25c566affae6e4629f766faa998b0e20ef546d18af4ce42e423d1aaacc78c52861bbd0a1615aa2fbf708a98ffea212864e3c7 + "@typescript-eslint/types": 8.56.1 + eslint-visitor-keys: ^5.0.0 + checksum: cd8cb26d855b09103bd8a5d5d3eb9eb9eecb7cf7276fd2bebf3f79deb6cd4d81b400b229fb8485cd7376e3c25bbd07b2d1674f47794ff84ffcc817859cd0cb62 languageName: node linkType: hard "@unhead/addons@npm:^2.0.19": - version: 2.1.2 - resolution: "@unhead/addons@npm:2.1.2" + version: 2.1.10 + resolution: "@unhead/addons@npm:2.1.10" dependencies: "@rollup/pluginutils": ^5.3.0 estree-walker: ^3.0.3 magic-string: ^0.30.21 mlly: ^1.8.0 - ufo: ^1.6.2 - unplugin: ^2.3.11 - unplugin-ast: ^0.15.4 + ufo: ^1.6.3 + unplugin: ^3.0.0 + unplugin-ast: ^0.16.0 peerDependencies: - unhead: 2.1.2 - checksum: cac1ca0dbf96dc56501c4d5feef99b0479a04665f298d9c2805c02c96e17852fa330f178339fe1501a65e7f26cc7a3b68173a5e288263fed67af97ce74b60385 + unhead: 2.1.10 + checksum: bc0b6dbeef087790589b3fe50793a1aa6e9f40fbf96b17859469799dc295fba71ff502f61e234402f79e27916b55d06691a5712c4499e9c8c13ccda7d5b91ce7 languageName: node linkType: hard -"@unhead/vue@npm:^2.0.19": - version: 2.1.2 - resolution: "@unhead/vue@npm:2.1.2" +"@unhead/vue@npm:^2.0.3, @unhead/vue@npm:^2.1.3": + version: 2.1.10 + resolution: "@unhead/vue@npm:2.1.10" dependencies: hookable: ^6.0.1 - unhead: 2.1.2 + unhead: 2.1.10 peerDependencies: vue: ">=3.5.18" - checksum: 2cb85dd8450137da0e8d27d8f668598d9e6ac704209894d20b20ed8f6147b1748ddb43202af03f91273e94cfdc7d8cb66cda39da8940691597076af5618ae35a + checksum: 371f6ce0a9d2753f8cc323d4f86d08292d470c2df3a742c0e439f953c98f5305018965a208566bf7c826c74c0710468653ad4957ac7640a6e7aa7735ee3897a2 languageName: node linkType: hard "@vercel/nft@npm:^1.2.0": - version: 1.2.0 - resolution: "@vercel/nft@npm:1.2.0" + version: 1.3.2 + resolution: "@vercel/nft@npm:1.3.2" dependencies: "@mapbox/node-pre-gyp": ^2.0.0 "@rollup/pluginutils": ^5.1.3 @@ -3341,62 +3480,62 @@ __metadata: resolve-from: ^5.0.0 bin: nft: out/cli.js - checksum: 0b0ca1bf09b9e566498a40c55d1a84fe5ea3fef0ed3f1447f38a2238dc55322a06f73e896e4ea3545110de3a20de8529201b6671c10e9f769ee8047d3c9bb79b + checksum: 00b8d8a6646e4fd08490a014a5cc9d1f92782a56fff2bb0ea2959e3e664314a374037b0060d62ee0fa7cb50f865e1022d3cc05c745e48c923de794ebf5234613 languageName: node linkType: hard -"@vitejs/plugin-vue-jsx@npm:^5.1.2": - version: 5.1.3 - resolution: "@vitejs/plugin-vue-jsx@npm:5.1.3" +"@vitejs/plugin-vue-jsx@npm:^5.1.4": + version: 5.1.4 + resolution: "@vitejs/plugin-vue-jsx@npm:5.1.4" dependencies: - "@babel/core": ^7.28.5 - "@babel/plugin-syntax-typescript": ^7.27.1 - "@babel/plugin-transform-typescript": ^7.28.5 - "@rolldown/pluginutils": ^1.0.0-beta.56 + "@babel/core": ^7.29.0 + "@babel/plugin-syntax-typescript": ^7.28.6 + "@babel/plugin-transform-typescript": ^7.28.6 + "@rolldown/pluginutils": ^1.0.0-rc.2 "@vue/babel-plugin-jsx": ^2.0.1 peerDependencies: vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 vue: ^3.0.0 - checksum: 669a4d95f186805801bb9dff68cfe8e591a97798752640adc42668ee42a1e4b9f454a7a8e7bdd44b0d6dac740759902bd3a5c71053a3cdc6366be555346b8d00 + checksum: a2cdba159934b92a1bc2de007b2ffe299b143583a4340316215265701da12a301bdc37969c2e5e29b7538c2ae89e973176acfa7c9c08d4af9001fcbcbf656460 languageName: node linkType: hard -"@vitejs/plugin-vue@npm:^6.0.2": - version: 6.0.3 - resolution: "@vitejs/plugin-vue@npm:6.0.3" +"@vitejs/plugin-vue@npm:^6.0.4": + version: 6.0.4 + resolution: "@vitejs/plugin-vue@npm:6.0.4" dependencies: - "@rolldown/pluginutils": 1.0.0-beta.53 + "@rolldown/pluginutils": 1.0.0-rc.2 peerDependencies: vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 vue: ^3.2.25 - checksum: 89a0d7ebe362238de78f2dff81eb590ad83e4cdfb5cd5273d43e2ce1432b0ec695d206e3ec837349fe5e9e1206dc7d3e83bb9bd6ce44afd83476905c6d29fc77 + checksum: f5943f8736743fc32993da994fa19c285f8721f0f8760ef9f00e00e541fdb348e0b5734456680c7c0c5ead2e4b6243b029e70c245a66bb589c63c0aac23873fd languageName: node linkType: hard -"@volar/language-core@npm:2.4.27": - version: 2.4.27 - resolution: "@volar/language-core@npm:2.4.27" +"@volar/language-core@npm:2.4.28": + version: 2.4.28 + resolution: "@volar/language-core@npm:2.4.28" dependencies: - "@volar/source-map": 2.4.27 - checksum: 113d1faabec8dbadc559a0aa7fc3612e591a0a16145744639c85d1aa32f4b53807256a2412661724f9f7f26d64941f6f9454ed42521369745efcb1a26bcf8448 + "@volar/source-map": 2.4.28 + checksum: 02a2d3b9f5fe1fee379fd200cf21b14722a41c3b58d5cf40ff940934c6447a0febf4728ccc97b1958567c6da8cc06c0871744fc593f41c0f6b5789544c9a9654 languageName: node linkType: hard -"@volar/source-map@npm:2.4.27": - version: 2.4.27 - resolution: "@volar/source-map@npm:2.4.27" - checksum: 0a74fb77c6e2008fdddb7b0732d07f32bbd10bdf70cbc7dd6e083d862a87c6618d64770a776a4d5840ae8f8c747f8f4144a426078df0cb17e0f97a5793cef8ea +"@volar/source-map@npm:2.4.28": + version: 2.4.28 + resolution: "@volar/source-map@npm:2.4.28" + checksum: c6672e9e1cd866c345f652ccb24cab1f9b68557ae41e47f944e38d8a9882e8823329112d2624b7a9a26e0d1fe48f19200fa4945ddf9eb2958847f684fa879d3b languageName: node linkType: hard -"@volar/typescript@npm:2.4.27": - version: 2.4.27 - resolution: "@volar/typescript@npm:2.4.27" +"@volar/typescript@npm:2.4.28": + version: 2.4.28 + resolution: "@volar/typescript@npm:2.4.28" dependencies: - "@volar/language-core": 2.4.27 + "@volar/language-core": 2.4.28 path-browserify: ^1.0.1 vscode-uri: ^3.0.8 - checksum: a8c58c373046fe09fe1545d3eaab0dcc442c8bbb7c60c783f8136f44ca5eaa81e6a16a215b9918f8fd64f65c342ea3a3d6d6632f8767276eaeaaecc9c627457b + checksum: bc86ef59ee6e61614295a03e1d2d31b1f9250a25e3b1c15f64bae7ff070e3fd879de72f9cd99a1ca728711315d762e4cc16553132ef413fb60f822be7e3f668e languageName: node linkType: hard @@ -3481,53 +3620,53 @@ __metadata: languageName: node linkType: hard -"@vue/compiler-core@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/compiler-core@npm:3.5.27" +"@vue/compiler-core@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/compiler-core@npm:3.5.29" dependencies: - "@babel/parser": ^7.28.5 - "@vue/shared": 3.5.27 - entities: ^7.0.0 + "@babel/parser": ^7.29.0 + "@vue/shared": 3.5.29 + entities: ^7.0.1 estree-walker: ^2.0.2 source-map-js: ^1.2.1 - checksum: 424716651b08be6e8ace5a4b3926a5f5130183a6a19ace58f654b57dd002ec6916a5479322a89018bd1b64628da6a05931b0d3d795a7f305a46155f63c3ad4d3 + checksum: e39c2196debcbca62a6afb81d7bbcb5e11982fe2d3cfaa4c40347c728e496b53e1f9f324644e5f0f93e4871d8048d30c4e1a9750078beeb168a67f4e2a997b91 languageName: node linkType: hard -"@vue/compiler-dom@npm:3.5.27, @vue/compiler-dom@npm:^3.2.45, @vue/compiler-dom@npm:^3.5.0": - version: 3.5.27 - resolution: "@vue/compiler-dom@npm:3.5.27" +"@vue/compiler-dom@npm:3.5.29, @vue/compiler-dom@npm:^3.2.45, @vue/compiler-dom@npm:^3.5.0": + version: 3.5.29 + resolution: "@vue/compiler-dom@npm:3.5.29" dependencies: - "@vue/compiler-core": 3.5.27 - "@vue/shared": 3.5.27 - checksum: 8bf0c44a1e1a4986d0020d9da9875877135d2d6e64c6a382f0fcce10cebc2e16ea62e2b9b663493ce5fb41ea95c2e3f06dbb09202466c62ff89f4687c81d3b30 + "@vue/compiler-core": 3.5.29 + "@vue/shared": 3.5.29 + checksum: 8f8fdeb23f1fa808c5458473f8e3534b5afb8f8a46ab4499984cf2958f61a3f14b9f2d8cf7ba65c15c32c44cee96fa460f786bdf828f37678bba5dc0f2a16f13 languageName: node linkType: hard -"@vue/compiler-sfc@npm:3.5.27, @vue/compiler-sfc@npm:^3.5.13, @vue/compiler-sfc@npm:^3.5.22": - version: 3.5.27 - resolution: "@vue/compiler-sfc@npm:3.5.27" +"@vue/compiler-sfc@npm:3.5.29, @vue/compiler-sfc@npm:^3.5.13, @vue/compiler-sfc@npm:^3.5.22": + version: 3.5.29 + resolution: "@vue/compiler-sfc@npm:3.5.29" dependencies: - "@babel/parser": ^7.28.5 - "@vue/compiler-core": 3.5.27 - "@vue/compiler-dom": 3.5.27 - "@vue/compiler-ssr": 3.5.27 - "@vue/shared": 3.5.27 + "@babel/parser": ^7.29.0 + "@vue/compiler-core": 3.5.29 + "@vue/compiler-dom": 3.5.29 + "@vue/compiler-ssr": 3.5.29 + "@vue/shared": 3.5.29 estree-walker: ^2.0.2 magic-string: ^0.30.21 postcss: ^8.5.6 source-map-js: ^1.2.1 - checksum: fd7de7e8c623391304824a169a57bb357cff4a6b4f446ec25e45ee9b28cc1446790a742cdf3af0300ab958c3da7a45a8ac679b7e3516c9711333e46250483d7c + checksum: 196d56ed518ab81a39ad39e1db763b38f169749f5956a96e27e9e55c564030bca997433f657f81f345f71aa040cf271edb666e45a7dc0c5693f15aaafe982d49 languageName: node linkType: hard -"@vue/compiler-ssr@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/compiler-ssr@npm:3.5.27" +"@vue/compiler-ssr@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/compiler-ssr@npm:3.5.29" dependencies: - "@vue/compiler-dom": 3.5.27 - "@vue/shared": 3.5.27 - checksum: a4def274bbf5f26dbbb73b3003f5388cf4cf7d8d43f948dbb7a4214a2b9abb58baea6c4826d32bfc3da632371f6e0ff1db6583f31a43c84d6d533e59e3e2c525 + "@vue/compiler-dom": 3.5.29 + "@vue/shared": 3.5.29 + checksum: ce817bfc7fe9290d1bc4d0429eee112782bb5b7380aabe6a1465e9179a62a78309ecd486d42b43abf8bd25822f732fb0662a43b3f900342918431a5211466f7c languageName: node linkType: hard @@ -3547,39 +3686,19 @@ __metadata: languageName: node linkType: hard -"@vue/devtools-core@npm:^7.7.7": - version: 7.7.9 - resolution: "@vue/devtools-core@npm:7.7.9" +"@vue/devtools-core@npm:^8.0.6": + version: 8.0.7 + resolution: "@vue/devtools-core@npm:8.0.7" dependencies: - "@vue/devtools-kit": ^7.7.9 - "@vue/devtools-shared": ^7.7.9 - mitt: ^3.0.1 - nanoid: ^5.1.0 - pathe: ^2.0.3 - vite-hot-client: ^2.0.4 + "@vue/devtools-kit": ^8.0.7 + "@vue/devtools-shared": ^8.0.7 peerDependencies: vue: ^3.0.0 - checksum: 5e4ef14fe1cf23b3d451da89c43896d187b84b1365513e69e8413118c3d8f0011d4aa405a2bd5c39308f04d8042f1eeb4b2d7c5cbbec7c6f2083af2dfd708582 + checksum: 1cb53bd4db862c84b955df047934845d18bf0a2c03ef8cfd82da8d7eb210b9f789b390d22ebf9e7a24ffa380a2e633a49bd5880acab591d7604683cd8fac65c5 languageName: node linkType: hard -"@vue/devtools-core@npm:^8.0.5": - version: 8.0.5 - resolution: "@vue/devtools-core@npm:8.0.5" - dependencies: - "@vue/devtools-kit": ^8.0.5 - "@vue/devtools-shared": ^8.0.5 - mitt: ^3.0.1 - nanoid: ^5.1.5 - pathe: ^2.0.3 - vite-hot-client: ^2.1.0 - peerDependencies: - vue: ^3.0.0 - checksum: 7284c3d3ed721978c5f13fca75de072d377c4ccf45f3b55c8a4fdade189af8585ccb9c8a58de35a21f448b50ff0afb504b76ee1082ddfd0f866d065cb8913fd5 - languageName: node - linkType: hard - -"@vue/devtools-kit@npm:^7.7.7, @vue/devtools-kit@npm:^7.7.9": +"@vue/devtools-kit@npm:^7.7.9": version: 7.7.9 resolution: "@vue/devtools-kit@npm:7.7.9" dependencies: @@ -3594,18 +3713,15 @@ __metadata: languageName: node linkType: hard -"@vue/devtools-kit@npm:^8.0.5": - version: 8.0.5 - resolution: "@vue/devtools-kit@npm:8.0.5" +"@vue/devtools-kit@npm:^8.0.6, @vue/devtools-kit@npm:^8.0.7": + version: 8.0.7 + resolution: "@vue/devtools-kit@npm:8.0.7" dependencies: - "@vue/devtools-shared": ^8.0.5 + "@vue/devtools-shared": ^8.0.7 birpc: ^2.6.1 hookable: ^5.5.3 - mitt: ^3.0.1 perfect-debounce: ^2.0.0 - speakingurl: ^14.0.1 - superjson: ^2.2.2 - checksum: b2e180f914c36bbe1b2808c446319b1c42860fa64f23923ce65e36e51bbe4674a07f291b7a8b119f0c9ee5bb0e5df5911bf6b6bfbef1a228808e6552e923079d + checksum: 5891221782c948d83cd8edc49069a062b84576560f7aee192c4ee15686dc9630b28557fc99f8e15a50161a0e38dce06cf291ce56124e28aef9084401285cc56f languageName: node linkType: hard @@ -3618,77 +3734,75 @@ __metadata: languageName: node linkType: hard -"@vue/devtools-shared@npm:^8.0.5": - version: 8.0.5 - resolution: "@vue/devtools-shared@npm:8.0.5" - dependencies: - rfdc: ^1.4.1 - checksum: 02805e749d4cd15d651c50dd2dd3a6a538f1469d7b70671c538f734c158c84f953d6c13285843a9c5358109bc0a6392f12386c49d31c54b482058f0d3a2ee3e7 +"@vue/devtools-shared@npm:^8.0.7": + version: 8.0.7 + resolution: "@vue/devtools-shared@npm:8.0.7" + checksum: 441b302749576389e4bf83fca07c8dfbdf027798ef9b8d251e6d5cbc1df9dd043085289a724d0642ed62631c1b88a2dc67f5baf28401f36a06e4c00a24890d2c languageName: node linkType: hard -"@vue/language-core@npm:3.2.2, @vue/language-core@npm:^3.2.1": - version: 3.2.2 - resolution: "@vue/language-core@npm:3.2.2" +"@vue/language-core@npm:3.2.5, @vue/language-core@npm:^3.2.1": + version: 3.2.5 + resolution: "@vue/language-core@npm:3.2.5" dependencies: - "@volar/language-core": 2.4.27 + "@volar/language-core": 2.4.28 "@vue/compiler-dom": ^3.5.0 "@vue/shared": ^3.5.0 alien-signals: ^3.0.0 muggle-string: ^0.4.1 path-browserify: ^1.0.1 picomatch: ^4.0.2 - checksum: 3612544127b6a25d1a313292eacafb5a7959b8c867257bc2b6500583ad140de84b19e7eab01889b4e16c82926f67beaa2f116f887f2f751730c0650228dd1f77 + checksum: 1d714d0422b2b94b4ecc2533402a1e3bdf101fb124d82a76fe7734b7ee2d65aa680c7490fd5670092a66a2bdce2a49a544f710c28e62c49634dd566ae977319e languageName: node linkType: hard -"@vue/reactivity@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/reactivity@npm:3.5.27" +"@vue/reactivity@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/reactivity@npm:3.5.29" dependencies: - "@vue/shared": 3.5.27 - checksum: 45800ca43e2615a423cd6e5cbb5b4bb63704fb2212521ae207ff9e222295cfc87f6f605e09375dce9ce6ea6cd530e20c6fa03123713f5c48f3b6a8ff5a0c447a + "@vue/shared": 3.5.29 + checksum: c46b04f461d20fbd00183c203bf9f062505bdcd2b1fe42a96e7000d30f1b779326e8bcc75c79dd0b95ff5ca51bfeb325698650c527e2ec8d2025c2ef5d489a0e languageName: node linkType: hard -"@vue/runtime-core@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/runtime-core@npm:3.5.27" +"@vue/runtime-core@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/runtime-core@npm:3.5.29" dependencies: - "@vue/reactivity": 3.5.27 - "@vue/shared": 3.5.27 - checksum: c6ebee1934cebd5c0c8e9407f6d3c6f2235e368ecde81ba22638359688eaf4139cd25974d9ead4c8a45862af10e082fd4e1fd4233de3894452bf8289b47fce2b + "@vue/reactivity": 3.5.29 + "@vue/shared": 3.5.29 + checksum: 3dd63be7d26db6935d6ced96254d49025a61d6fb3e33505551e81caf4437a1667d8ff3eb6d638cb322b03f2089a550932dc194121d48b52ea265188231a7abba languageName: node linkType: hard -"@vue/runtime-dom@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/runtime-dom@npm:3.5.27" +"@vue/runtime-dom@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/runtime-dom@npm:3.5.29" dependencies: - "@vue/reactivity": 3.5.27 - "@vue/runtime-core": 3.5.27 - "@vue/shared": 3.5.27 + "@vue/reactivity": 3.5.29 + "@vue/runtime-core": 3.5.29 + "@vue/shared": 3.5.29 csstype: ^3.2.3 - checksum: 0aa6afb357806222b65d18d691107891ace2c2381231a7b539e36b046117090408cb8b1588b8eba5226b7170fa85c5847da6f55da09c9d76324f408f44ad6535 + checksum: adcb370bb8687000d29eda4d66fc38374d89099e36dcac39c98f9bfa2c90ec1e97de7ea1d5cf25845f0118589debce9bad41dba5814eb85e6e1ab8a557b11ea9 languageName: node linkType: hard -"@vue/server-renderer@npm:3.5.27": - version: 3.5.27 - resolution: "@vue/server-renderer@npm:3.5.27" +"@vue/server-renderer@npm:3.5.29": + version: 3.5.29 + resolution: "@vue/server-renderer@npm:3.5.29" dependencies: - "@vue/compiler-ssr": 3.5.27 - "@vue/shared": 3.5.27 + "@vue/compiler-ssr": 3.5.29 + "@vue/shared": 3.5.29 peerDependencies: - vue: 3.5.27 - checksum: e2e4513896ca208217ba8b5ed31822f51a7adb3643ee22a9848e91005903ef44ae2081b15aa4ea4cad58c58fd8b41caad35011e79dfd52a8511114cce3f94369 + vue: 3.5.29 + checksum: 7dee89eecb81d34c0bfed21f353aa1478ad72cf8e441331e98e18297485376df4a232ad97eeb8f28e375a91b98f2a8ff37b8ec262b4b3c96f15a61092e206659 languageName: node linkType: hard -"@vue/shared@npm:3.5.27, @vue/shared@npm:^3.5.0, @vue/shared@npm:^3.5.22, @vue/shared@npm:^3.5.25": - version: 3.5.27 - resolution: "@vue/shared@npm:3.5.27" - checksum: 7fbcca1448cedd011695d81b4cbfe9e27df0e993c2591d67ae68a0c4e8d85d03593606c8322b270c212d3b4dc4ac1ef294741f6e897602b4bf3f41932e205c45 +"@vue/shared@npm:3.5.29, @vue/shared@npm:^3.5.0, @vue/shared@npm:^3.5.22, @vue/shared@npm:^3.5.27": + version: 3.5.29 + resolution: "@vue/shared@npm:3.5.29" + checksum: a20b0905857779689ef1dafa9791dab7190578a0946c047078ca4aade17ecfa4c6af99d4174c7a53274041ba7d98b46632e06860fd8b4d3c5d7ab5ac73ae92dc languageName: node linkType: hard @@ -3704,7 +3818,7 @@ __metadata: languageName: node linkType: hard -"@vueuse/core@npm:13.9.0, @vueuse/core@npm:^13.9.0": +"@vueuse/core@npm:13.9.0": version: 13.9.0 resolution: "@vueuse/core@npm:13.9.0" dependencies: @@ -3717,16 +3831,16 @@ __metadata: languageName: node linkType: hard -"@vueuse/core@npm:14.1.0": - version: 14.1.0 - resolution: "@vueuse/core@npm:14.1.0" +"@vueuse/core@npm:14.2.1, @vueuse/core@npm:^14.1.0": + version: 14.2.1 + resolution: "@vueuse/core@npm:14.2.1" dependencies: "@types/web-bluetooth": ^0.0.21 - "@vueuse/metadata": 14.1.0 - "@vueuse/shared": 14.1.0 + "@vueuse/metadata": 14.2.1 + "@vueuse/shared": 14.2.1 peerDependencies: vue: ^3.5.0 - checksum: 2cd4c407e6ec99b09025fb64592b4c8f23ac0bb063f6ddf24565ef943171bba6dfab4f377e3120a26a43b636e679871fcfa53ca20343a84d7c92d8758a9986ff + checksum: 9645eaf716ac94364e02f996f5e498064eb04caa7043a91396964f7d11e2dadb34d1280797770811e01df7589cc702a5f286d8eb6f617833ccd10887f06935eb languageName: node linkType: hard @@ -3756,25 +3870,25 @@ __metadata: languageName: node linkType: hard -"@vueuse/metadata@npm:14.1.0": - version: 14.1.0 - resolution: "@vueuse/metadata@npm:14.1.0" - checksum: 2b68310bc5a7e72f1d94985d1ea3448c075c249bf504b2588b8ee160a4e7368b0216e55e3105129566f78e66dcf45f2141a459a14f79fd28e1bb3090040f999f +"@vueuse/metadata@npm:14.2.1": + version: 14.2.1 + resolution: "@vueuse/metadata@npm:14.2.1" + checksum: cd53da50fbb6919d80478554ed49ae81099584484e7cec92d6fd8f06852618fe33326011ceb6a25141463de48fd6efe063215ed85469bed7f49fe8029c04646d languageName: node linkType: hard "@vueuse/nuxt@npm:^14.1.0": - version: 14.1.0 - resolution: "@vueuse/nuxt@npm:14.1.0" + version: 14.2.1 + resolution: "@vueuse/nuxt@npm:14.2.1" dependencies: - "@nuxt/kit": ^4.1.3 - "@vueuse/core": 14.1.0 - "@vueuse/metadata": 14.1.0 + "@nuxt/kit": ^4.3.0 + "@vueuse/core": 14.2.1 + "@vueuse/metadata": 14.2.1 local-pkg: ^1.1.2 peerDependencies: nuxt: ^3.0.0 || ^4.0.0-0 vue: ^3.5.0 - checksum: fe671032f1a83fe7f7e3d2e95fe9d900207fcc45e46667ab935e4dc3dce3fe6c6a729c5953c55404fbb5198e8aa4f21306200941e5d6ee57ffb3e59471402879 + checksum: 2684a1da25106f832d0767bab8bd64cd85313018886c1d8d6021e6d60ade9acfb8abc062025810fba03e00806716964bc1b1fb1a258bccc217b851b1f42e8b3e languageName: node linkType: hard @@ -3796,12 +3910,12 @@ __metadata: languageName: node linkType: hard -"@vueuse/shared@npm:14.1.0": - version: 14.1.0 - resolution: "@vueuse/shared@npm:14.1.0" +"@vueuse/shared@npm:14.2.1": + version: 14.2.1 + resolution: "@vueuse/shared@npm:14.2.1" peerDependencies: vue: ^3.5.0 - checksum: e9bac5fb15a20ed6b4f92692932e7b8c7836388db7d8b3cac12477c15f2dc73862ddaf0ee4c6fe079e13b042432268682c299003268447b5a50af7744196e850 + checksum: d50d7cca4bfe70e37f9830eff332a6a3eaeef977f7a61ce88a6a5754a616d812b018e0609cc69fa6f5b5306bf2f30d8b87de2b416aead191b70c9c2904b41e59 languageName: node linkType: hard @@ -3856,12 +3970,12 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.5.0, acorn@npm:^8.6.0, acorn@npm:^8.8.2, acorn@npm:^8.9.0": - version: 8.15.0 - resolution: "acorn@npm:8.15.0" +"acorn@npm:^8.14.0, acorn@npm:^8.15.0, acorn@npm:^8.16.0, acorn@npm:^8.5.0, acorn@npm:^8.6.0, acorn@npm:^8.8.2, acorn@npm:^8.9.0": + version: 8.16.0 + resolution: "acorn@npm:8.16.0" bin: acorn: bin/acorn - checksum: 309c6b49aedf1a2e34aaf266de06de04aab6eb097c02375c66fdeb0f64556a6a823540409914fb364d9a11bc30d79d485a2eba29af47992d3490e9886c4391c3 + checksum: bbfa466cd0dbd18b4460a85e9d0fc2f35db999380892403c573261beda91f23836db2aa71fd3ae65e94424ad14ff8e2b7bd37c7a2624278fd89137cd6e448c41 languageName: node linkType: hard @@ -3872,15 +3986,15 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" +"ajv@npm:^6.12.4, ajv@npm:^6.14.0": + version: 6.14.0 + resolution: "ajv@npm:6.14.0" dependencies: fast-deep-equal: ^3.1.1 fast-json-stable-stringify: ^2.0.0 json-schema-traverse: ^0.4.1 uri-js: ^4.2.2 - checksum: 874972efe5c4202ab0a68379481fbd3d1b5d0a7bd6d3cc21d40d3536ebff3352a2a1fabb632d4fd2cc7fe4cbdcd5ed6782084c9bbf7f32a1536d18f9da5007d4 + checksum: 7bb3ea97bb8af52521589079f427e799b6561acaa94f50e13410cb87588c51df8db1afe1157b3e48f1a829269adaa11116e0c2cafe2b998add1523789809a3c5 languageName: node linkType: hard @@ -3898,7 +4012,7 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^6.0.1": +"ansi-regex@npm:^6.2.2": version: 6.2.2 resolution: "ansi-regex@npm:6.2.2" checksum: 9b17ce2c6daecc75bcd5966b9ad672c23b184dc3ed9bf3c98a0702f0d2f736c15c10d461913568f2cf527a5e64291c7473358885dd493305c84a1cfed66ba94f @@ -4008,7 +4122,7 @@ __metadata: languageName: node linkType: hard -"ast-kit@npm:^2.1.2, ast-kit@npm:^2.1.3, ast-kit@npm:^2.2.0": +"ast-kit@npm:^2.1.2, ast-kit@npm:^2.1.3": version: 2.2.0 resolution: "ast-kit@npm:2.2.0" dependencies: @@ -4018,6 +4132,17 @@ __metadata: languageName: node linkType: hard +"ast-kit@npm:^3.0.0-beta.1": + version: 3.0.0-beta.1 + resolution: "ast-kit@npm:3.0.0-beta.1" + dependencies: + "@babel/parser": ^8.0.0-beta.4 + estree-walker: ^3.0.3 + pathe: ^2.0.3 + checksum: 819b408a8681c00d13865dc2f6ac59789317af8947f9bad7a4e1e4f148101a974e1e626beb8578aa89fdc9eb720c872c66365d0baba0ae4d9b56295e0bc0785b + languageName: node + linkType: hard + "ast-walker-scope@npm:^0.6.2": version: 0.6.2 resolution: "ast-walker-scope@npm:0.6.2" @@ -4080,12 +4205,12 @@ __metadata: languageName: node linkType: hard -"autoprefixer@npm:^10.4.20, autoprefixer@npm:^10.4.22": - version: 10.4.23 - resolution: "autoprefixer@npm:10.4.23" +"autoprefixer@npm:^10.4.20, autoprefixer@npm:^10.4.24": + version: 10.4.27 + resolution: "autoprefixer@npm:10.4.27" dependencies: browserslist: ^4.28.1 - caniuse-lite: ^1.0.30001760 + caniuse-lite: ^1.0.30001774 fraction.js: ^5.3.4 picocolors: ^1.1.1 postcss-value-parser: ^4.2.0 @@ -4093,30 +4218,30 @@ __metadata: postcss: ^8.1.0 bin: autoprefixer: bin/autoprefixer - checksum: a805dd6d2c2bdeef96edbdab9ee23b85c1aa168569cc31ca53c579269b7d923108ae4a469d8b2cf6d8e0b49d6c30eaff6bd9af1e4b767be9dfd15d2759e36e3d + checksum: 0f123252417886702dc7bb0adb4549ca58612ed3c264eceec276ae9e7c62b626944ca3373f4f3888ae296ae70f323b38600e6de32319bdd46eedad8b2ec06533 languageName: node linkType: hard -"axios@npm:^1.13.2": - version: 1.13.2 - resolution: "axios@npm:1.13.2" +"axios@npm:^1.13.5": + version: 1.13.6 + resolution: "axios@npm:1.13.6" dependencies: - follow-redirects: ^1.15.6 - form-data: ^4.0.4 + follow-redirects: ^1.15.11 + form-data: ^4.0.5 proxy-from-env: ^1.1.0 - checksum: 057d0204d5930e2969f0bccb9f0752745b1524a36994667833195e7e1a82f245d660752ba8517b2dbea17e9e4ed0479f10b80c5fe45edd0b5a0df645c0060386 + checksum: 72e94640e34aa9b591a47a9cc1798a1e18f179e15e39276514dd73f6d910981bdb2117c649da858bd72fc34d91db4f84318f88c8d306e395cd4ef5d6f142ab70 languageName: node linkType: hard "b4a@npm:^1.6.4": - version: 1.7.3 - resolution: "b4a@npm:1.7.3" + version: 1.8.0 + resolution: "b4a@npm:1.8.0" peerDependencies: react-native-b4a: "*" peerDependenciesMeta: react-native-b4a: optional: true - checksum: b2e5f572bb2024b612eddedfbfce9626e103fd523da3d7bb8267f345bca6d7d4772ed00310527c7a629fc54184d5b1b47b73f8dd976d713aea7e16d2af38aecf + checksum: 92a3addf120a69c26c8dfcda1537eb63e10e682fb44a7f2d78f3347fe12c61b4022152b5a7f16bd71872f34eda84c4b8ce441cbe02a07e9a7cd7c1a3cb0ecf07 languageName: node linkType: hard @@ -4127,15 +4252,83 @@ __metadata: languageName: node linkType: hard -"bare-events@npm:^2.7.0": - version: 2.8.2 - resolution: "bare-events@npm:2.8.2" +"balanced-match@npm:^4.0.2": + version: 4.0.4 + resolution: "balanced-match@npm:4.0.4" + checksum: fb07bb66a0959c2843fc055838047e2a95ccebb837c519614afb067ebfdf2fa967ca8d712c35ced07f2cd26fc6f07964230b094891315ad74f11eba3d53178a0 + languageName: node + linkType: hard + +"bare-events@npm:^2.5.4, bare-events@npm:^2.7.0": + version: 2.8.2 + resolution: "bare-events@npm:2.8.2" + peerDependencies: + bare-abort-controller: "*" + peerDependenciesMeta: + bare-abort-controller: + optional: true + checksum: 97e6fc825bc984363a1f695c9a962b1b9f0ea467baa95d7059565a0aa31f4b5fc0f5eb71c087456ae3a436f39fce14a6147a12dd63aac0ff1d20cc5ad64cd780 + languageName: node + linkType: hard + +"bare-fs@npm:^4.5.5": + version: 4.5.5 + resolution: "bare-fs@npm:4.5.5" + dependencies: + bare-events: ^2.5.4 + bare-path: ^3.0.0 + bare-stream: ^2.6.4 + bare-url: ^2.2.2 + fast-fifo: ^1.3.2 + peerDependencies: + bare-buffer: "*" + peerDependenciesMeta: + bare-buffer: + optional: true + checksum: f4c9cc7cd6b21d7c69c59d0f325e6cdd37ed2c505ef68db77c2ebced10b71a0a37cd89c2301d36b43692ea7b3fcaa025224f04ac7579e07c133e92ec545c2bd4 + languageName: node + linkType: hard + +"bare-os@npm:^3.0.1": + version: 3.7.0 + resolution: "bare-os@npm:3.7.0" + checksum: d770682f46b7b1e19db266b99083d8eeca7a8366850fe48a974130ebf665d25dbaefb10ccc56332f95353f5e3544e40cd771e18ed7568ec83bf175aad3271091 + languageName: node + linkType: hard + +"bare-path@npm:^3.0.0": + version: 3.0.0 + resolution: "bare-path@npm:3.0.0" + dependencies: + bare-os: ^3.0.1 + checksum: 51d559515f332f62cf9c37c38f2640c1b84b5e8c9de454b70baf029f806058cf94c51d6a0dfec0025cc7760f2069dc3e16c82f0d24f4a9ddb18c829bf9c0206d + languageName: node + linkType: hard + +"bare-stream@npm:^2.6.4": + version: 2.8.0 + resolution: "bare-stream@npm:2.8.0" + dependencies: + streamx: ^2.21.0 + teex: ^1.0.1 peerDependencies: - bare-abort-controller: "*" + bare-buffer: "*" + bare-events: "*" peerDependenciesMeta: - bare-abort-controller: + bare-buffer: optional: true - checksum: 97e6fc825bc984363a1f695c9a962b1b9f0ea467baa95d7059565a0aa31f4b5fc0f5eb71c087456ae3a436f39fce14a6147a12dd63aac0ff1d20cc5ad64cd780 + bare-events: + optional: true + checksum: 32d92d59f5de5dec3466ff9c380bf9e44f316c75fb7423e60ea37b5d941fdacf22f0c2e8b548a5e0169500be9a49f76bbcfb12ac89c966aa184bc9861ebda44a + languageName: node + linkType: hard + +"bare-url@npm:^2.2.2": + version: 2.3.2 + resolution: "bare-url@npm:2.3.2" + dependencies: + bare-path: ^3.0.0 + checksum: 7b2a6335a55a010ffcc863f62cc5bfaa216b383bc05a8e7fb30caccb5600e09d403ad482fc671582eba531bbca4a891dba8eefa866f2e2d222b0a72f2460c340 languageName: node linkType: hard @@ -4147,11 +4340,11 @@ __metadata: linkType: hard "baseline-browser-mapping@npm:^2.9.0": - version: 2.9.15 - resolution: "baseline-browser-mapping@npm:2.9.15" + version: 2.10.0 + resolution: "baseline-browser-mapping@npm:2.10.0" bin: - baseline-browser-mapping: dist/cli.js - checksum: 8d5a39ce1f66ce4fc2a387fcb01ec954db9c6e8e5d27f40385a3d006c69b81def63e09afa9e7b7532cee3b343cb5eaaf57943ca1f4760283f7edb085094ebed0 + baseline-browser-mapping: dist/cli.cjs + checksum: 14511e8ff69021e14d8dd9860d42122c3d156b3eec099d6937e630bb94493caf72d1efef8b1897694357fa58a61f7939ce1584d8964463e3dd23eacd0704c3e6 languageName: node linkType: hard @@ -4180,13 +4373,20 @@ __metadata: languageName: node linkType: hard -"birpc@npm:^2.3.0, birpc@npm:^2.4.0, birpc@npm:^2.6.1, birpc@npm:^2.8.0": +"birpc@npm:^2.3.0, birpc@npm:^2.4.0, birpc@npm:^2.6.1": version: 2.9.0 resolution: "birpc@npm:2.9.0" checksum: 499cba9d33ae6749c199b4dc1fc30faeb72aabd41d5c75d73d1d415691f65f0b613d787f21aa2369607a555a5e09c55e437e02b14bc6bad67bb657f8ae58f3dd languageName: node linkType: hard +"birpc@npm:^4.0.0": + version: 4.0.0 + resolution: "birpc@npm:4.0.0" + checksum: b350e3cfd23d3ccf07c55ce1986024ad65ce05c5abd24e7c9fed8aa2cc8a4d426b463742f40a8b64026d2388cfefb7b1986e24902370e45f4bce9e4aaf066fd5 + languageName: node + linkType: hard + "blob-to-buffer@npm:^1.2.8": version: 1.2.9 resolution: "blob-to-buffer@npm:1.2.9" @@ -4211,7 +4411,7 @@ __metadata: languageName: node linkType: hard -"brace-expansion@npm:^2.0.1": +"brace-expansion@npm:^2.0.1, brace-expansion@npm:^2.0.2": version: 2.0.2 resolution: "brace-expansion@npm:2.0.2" dependencies: @@ -4220,6 +4420,15 @@ __metadata: languageName: node linkType: hard +"brace-expansion@npm:^5.0.2": + version: 5.0.4 + resolution: "brace-expansion@npm:5.0.4" + dependencies: + balanced-match: ^4.0.2 + checksum: ded86c0f0b138734110d67437fee52c1f97bc19175644788b1d71afec2d87d405cf05424ce428f88ae3abe8e09e13ee55f2675534b38076ef70e1e583ed75686 + languageName: node + linkType: hard + "braces@npm:^3.0.3, braces@npm:~3.0.2": version: 3.0.3 resolution: "braces@npm:3.0.3" @@ -4286,7 +4495,7 @@ __metadata: languageName: node linkType: hard -"c12@npm:^3.0.2, c12@npm:^3.3.2, c12@npm:^3.3.3": +"c12@npm:^3.0.2, c12@npm:^3.3.3": version: 3.3.3 resolution: "c12@npm:3.3.3" dependencies: @@ -4393,10 +4602,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001759, caniuse-lite@npm:^1.0.30001760": - version: 1.0.30001765 - resolution: "caniuse-lite@npm:1.0.30001765" - checksum: 15936de439be1e5cc5da5fbae16899bc28a122af58f6c485743482f0ef26e5bf9a07b9a00f74024495df0495bfe073dbde6341886d14b92325dded24b332a2d5 +"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001759, caniuse-lite@npm:^1.0.30001774": + version: 1.0.30001775 + resolution: "caniuse-lite@npm:1.0.30001775" + checksum: 3cbf5fe6d5111eecca63a3a76b3c32fd8c7f4483db8ba213dde9fda4c7a8d3c7c4b7e92cf167353025d5538c872a5f95db2a4e53c8109d576985c3356b96e595 languageName: node linkType: hard @@ -4463,6 +4672,13 @@ __metadata: languageName: node linkType: hard +"citty@npm:^0.2.0": + version: 0.2.1 + resolution: "citty@npm:0.2.1" + checksum: ac84a9fb697bd8137c07dcdf1cad969ec48abf45313a18ad1596a13c9a82e46633a7019a3a41e65139749375ca18e78d9b4f13350f9a96c40a732d7c5a04980a + languageName: node + linkType: hard + "clipboardy@npm:^4.0.0": version: 4.0.0 resolution: "clipboardy@npm:4.0.0" @@ -4614,10 +4830,10 @@ __metadata: languageName: node linkType: hard -"confbox@npm:^0.2.2": - version: 0.2.2 - resolution: "confbox@npm:0.2.2" - checksum: 335bc40d58f2785d2f8c5d45f0224e160dd634d42984ecf75b06addb6fe5f9584502ac9845d6f08f8ec066c8a796fd8b3c9ae9e8c7735047aa141d0e83469ab4 +"confbox@npm:^0.2.2, confbox@npm:^0.2.4": + version: 0.2.4 + resolution: "confbox@npm:0.2.4" + checksum: 98b0a35c5fd23c63d228d2814ddc37dde448973e282b1a085b3c5fab3348f38e92033b721f838729a9ac4a570f70330db32708cfeeb6b9ec4eb0ea5c3d3ccfdb languageName: node linkType: hard @@ -4777,7 +4993,7 @@ __metadata: languageName: node linkType: hard -"css-tree@npm:^3.0.1, css-tree@npm:^3.1.0": +"css-tree@npm:^3.0.0, css-tree@npm:^3.0.1, css-tree@npm:^3.1.0": version: 3.1.0 resolution: "css-tree@npm:3.1.0" dependencies: @@ -4883,15 +5099,15 @@ __metadata: languageName: node linkType: hard -"cssstyle@npm:^5.3.4": - version: 5.3.7 - resolution: "cssstyle@npm:5.3.7" +"cssstyle@npm:^6.0.1": + version: 6.2.0 + resolution: "cssstyle@npm:6.2.0" dependencies: - "@asamuzakjp/css-color": ^4.1.1 - "@csstools/css-syntax-patches-for-csstree": ^1.0.21 + "@asamuzakjp/css-color": ^5.0.1 + "@csstools/css-syntax-patches-for-csstree": ^1.0.28 css-tree: ^3.1.0 - lru-cache: ^11.2.4 - checksum: a2c0902aa2ef11be3ace82867e5c3c5cd310e9c356a84e9e5d3f4944ee25ce36feefee7f182486336ee682fa494c74363bb717160c0336ef386858cefe26d072 + lru-cache: ^11.2.6 + checksum: d705eabbd0b5d4ab087281a04786ba6f940d01080bccaee9fc927f6b8e0d66ae421339d4b30ba3e613ccd47f4fd1e076d046a0a2d115d78edf195dced99f6ade languageName: node linkType: hard @@ -4902,13 +5118,13 @@ __metadata: languageName: node linkType: hard -"data-urls@npm:^6.0.0": - version: 6.0.0 - resolution: "data-urls@npm:6.0.0" +"data-urls@npm:^7.0.0": + version: 7.0.0 + resolution: "data-urls@npm:7.0.0" dependencies: - whatwg-mimetype: ^4.0.0 - whatwg-url: ^15.0.0 - checksum: a47f0dde184337c4f168d455aedf0b486fed87b6ca583b4b9ad55d1515f4836b418d4bdc5b5b6fc55e321feb826029586a0d47e1c9a9e7ac4d52a78faceb7fb0 + whatwg-mimetype: ^5.0.0 + whatwg-url: ^16.0.0 + checksum: 60f88ded4306aea5d6251c4db100ca272fc026014004d68aad4db495397a73bb39d17a6bd29ed9ab348c88a28f6e97266a1759985df4e12dc8c02bb8544c7731 languageName: node linkType: hard @@ -5003,12 +5219,12 @@ __metadata: linkType: hard "default-browser@npm:^5.2.1": - version: 5.4.0 - resolution: "default-browser@npm:5.4.0" + version: 5.5.0 + resolution: "default-browser@npm:5.5.0" dependencies: bundle-name: ^4.1.0 default-browser-id: ^5.0.0 - checksum: cac0222ca5c9a3387d25337228689652ab33679a6566995c7194a75af7e554e91ec9ac92a70bfaa8e8089eae9f466ae99267bb38601282aade89b200f50a765c + checksum: c5c5d84a4abd82850e98f06798a55dee87fc1064538bea00cc14c0fb2dccccbff5e9e07eeea80385fa653202d5d92509838b4239d610ddfa1c76a04a1f65e767 languageName: node linkType: hard @@ -5089,10 +5305,10 @@ __metadata: languageName: node linkType: hard -"devalue@npm:^5.6.0": - version: 5.6.2 - resolution: "devalue@npm:5.6.2" - checksum: 9d031092e3a6ff3a98820261375826ae88846c006857713816b7c1c007224982bdf94abc93b0f33218baff40f4b9d635001d1dfef0860a9e4074d8b7eac4f476 +"devalue@npm:^5.6.2": + version: 5.6.3 + resolution: "devalue@npm:5.6.3" + checksum: f2ade995d38bc298442d98dc06bdeadb2e255ef7546ece6920ba5c8e050f620ba685f97669f40f32acb007f32c31364131051fd7345d510124f700f25a548143 languageName: node linkType: hard @@ -5110,7 +5326,7 @@ __metadata: languageName: node linkType: hard -"diff@npm:^8.0.2": +"diff@npm:^8.0.3": version: 8.0.3 resolution: "diff@npm:8.0.3" checksum: 397f6f7a93d8622e8748805ebaad35dfbbdd0a5fe03722b0905aee2662b1ccf82728f90e9f975a20e8406b1df46c28bd1958b42fc5cb03fb202d4cb93251e15d @@ -5152,14 +5368,14 @@ __metadata: linkType: hard "dompurify@npm:^3.3.1": - version: 3.3.1 - resolution: "dompurify@npm:3.3.1" + version: 3.3.2 + resolution: "dompurify@npm:3.3.2" dependencies: "@types/trusted-types": ^2.0.7 dependenciesMeta: "@types/trusted-types": optional: true - checksum: 884fe0acc21a9a2e5aa1b8ce4cecc8f9a71217423b389f760fca7b44595d3c9376d234f1c4ba16d79824789762b3d611d10653c4a90a7e23b351b71e5ef7dd33 + checksum: 27856958c4088de2e2279b9514fcf3427c925e3cedf9d176957d9469a5199c39b572931a441cbb2025d1910c2890644280d0db8d5180b1366164cac309da08e5 languageName: node linkType: hard @@ -5183,17 +5399,10 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:^16.4.7": - version: 16.6.1 - resolution: "dotenv@npm:16.6.1" - checksum: e8bd63c9a37f57934f7938a9cf35de698097fadf980cb6edb61d33b3e424ceccfe4d10f37130b904a973b9038627c2646a3365a904b4406514ea94d7f1816b69 - languageName: node - linkType: hard - "dotenv@npm:^17.2.3": - version: 17.2.3 - resolution: "dotenv@npm:17.2.3" - checksum: fde23eb88649041ec7a0f6a47bbe59cac3c454fc2007cf2e40b9c984aaf0636347218c56cfbbf067034b0a73f530a2698a19b4058695787eb650ec69fe234624 + version: 17.3.1 + resolution: "dotenv@npm:17.3.1" + checksum: 3723ef6766ce91b0b9fa68fd5bf0fd6b77e316daa2ac8746bacbe301608b311b4abae63e475cacd5901cb3ad9cb6b07d0719fd1a030162fe09c56a583dd1ec50 languageName: node linkType: hard @@ -5230,9 +5439,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.263": - version: 1.5.267 - resolution: "electron-to-chromium@npm:1.5.267" - checksum: 923a21ea4c3f2536eb7ccf80e92d9368a2e5a13e6deccb1d94c31b5a5b4e10e722149b85db9892e9819150f1c43462692a92dc85ba0c205a4eb578e173b3ab36 + version: 1.5.302 + resolution: "electron-to-chromium@npm:1.5.302" + checksum: 553836572a450e24e783779588c93a11c2bfc04e40c9b07305afc89722150f7dcf09dd66aea0f863ef779be44db3202395a5c57131113b42d25a4ad3644cf3cb languageName: node linkType: hard @@ -5264,15 +5473,6 @@ __metadata: languageName: node linkType: hard -"encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: ^0.6.2 - checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f - languageName: node - linkType: hard - "entities@npm:^4.2.0, entities@npm:^4.4.0": version: 4.5.0 resolution: "entities@npm:4.5.0" @@ -5287,10 +5487,10 @@ __metadata: languageName: node linkType: hard -"entities@npm:^7.0.0": - version: 7.0.0 - resolution: "entities@npm:7.0.0" - checksum: 9305101f6d34fa6d255afb9ccd35f27cd67e0eaf1299374d20cba6e7c4bb26adae3ab879d33b524db74a2bbf57b9416fe04698a60bf2d9d1c1c811e16e205270 +"entities@npm:^7.0.1": + version: 7.0.1 + resolution: "entities@npm:7.0.1" + checksum: 5ee49e52e64eafc63251585f74eae50f259ea2169dbbf5380843dcd97c79bfe430a58e7f34012ab67a8e258f6ef9f92d721d149ffc88c89039e155f1bcf48a53 languageName: node linkType: hard @@ -5301,13 +5501,6 @@ __metadata: languageName: node linkType: hard -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 - languageName: node - linkType: hard - "error-stack-parser-es@npm:^1.0.5": version: 1.0.5 resolution: "error-stack-parser-es@npm:1.0.5" @@ -5453,36 +5646,36 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.27.0, esbuild@npm:^0.27.1, esbuild@npm:^0.27.2": - version: 0.27.2 - resolution: "esbuild@npm:0.27.2" - dependencies: - "@esbuild/aix-ppc64": 0.27.2 - "@esbuild/android-arm": 0.27.2 - "@esbuild/android-arm64": 0.27.2 - "@esbuild/android-x64": 0.27.2 - "@esbuild/darwin-arm64": 0.27.2 - "@esbuild/darwin-x64": 0.27.2 - "@esbuild/freebsd-arm64": 0.27.2 - "@esbuild/freebsd-x64": 0.27.2 - "@esbuild/linux-arm": 0.27.2 - "@esbuild/linux-arm64": 0.27.2 - "@esbuild/linux-ia32": 0.27.2 - "@esbuild/linux-loong64": 0.27.2 - "@esbuild/linux-mips64el": 0.27.2 - "@esbuild/linux-ppc64": 0.27.2 - "@esbuild/linux-riscv64": 0.27.2 - "@esbuild/linux-s390x": 0.27.2 - "@esbuild/linux-x64": 0.27.2 - "@esbuild/netbsd-arm64": 0.27.2 - "@esbuild/netbsd-x64": 0.27.2 - "@esbuild/openbsd-arm64": 0.27.2 - "@esbuild/openbsd-x64": 0.27.2 - "@esbuild/openharmony-arm64": 0.27.2 - "@esbuild/sunos-x64": 0.27.2 - "@esbuild/win32-arm64": 0.27.2 - "@esbuild/win32-ia32": 0.27.2 - "@esbuild/win32-x64": 0.27.2 +"esbuild@npm:^0.27.0, esbuild@npm:^0.27.2, esbuild@npm:^0.27.3": + version: 0.27.3 + resolution: "esbuild@npm:0.27.3" + dependencies: + "@esbuild/aix-ppc64": 0.27.3 + "@esbuild/android-arm": 0.27.3 + "@esbuild/android-arm64": 0.27.3 + "@esbuild/android-x64": 0.27.3 + "@esbuild/darwin-arm64": 0.27.3 + "@esbuild/darwin-x64": 0.27.3 + "@esbuild/freebsd-arm64": 0.27.3 + "@esbuild/freebsd-x64": 0.27.3 + "@esbuild/linux-arm": 0.27.3 + "@esbuild/linux-arm64": 0.27.3 + "@esbuild/linux-ia32": 0.27.3 + "@esbuild/linux-loong64": 0.27.3 + "@esbuild/linux-mips64el": 0.27.3 + "@esbuild/linux-ppc64": 0.27.3 + "@esbuild/linux-riscv64": 0.27.3 + "@esbuild/linux-s390x": 0.27.3 + "@esbuild/linux-x64": 0.27.3 + "@esbuild/netbsd-arm64": 0.27.3 + "@esbuild/netbsd-x64": 0.27.3 + "@esbuild/openbsd-arm64": 0.27.3 + "@esbuild/openbsd-x64": 0.27.3 + "@esbuild/openharmony-arm64": 0.27.3 + "@esbuild/sunos-x64": 0.27.3 + "@esbuild/win32-arm64": 0.27.3 + "@esbuild/win32-ia32": 0.27.3 + "@esbuild/win32-x64": 0.27.3 dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -5538,7 +5731,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 62ec92f8f40ad19922ae7d8dbf0427e41744120a77cc95abdf099dfb484d65fbe3c70cc55b8eccb7f6cb0d14e871ff1f2f76376d476915c2a6d2b800269261b2 + checksum: 3a45334b00ca235ad96843738c4698970aacde92058aee28ab1fa57ad823c29667070af90b6071cc876e492bebdeed79f593a273c39b419097afd2a772296085 languageName: node linkType: hard @@ -5589,8 +5782,8 @@ __metadata: linkType: hard "eslint-plugin-vue@npm:^10.4.0": - version: 10.7.0 - resolution: "eslint-plugin-vue@npm:10.7.0" + version: 10.8.0 + resolution: "eslint-plugin-vue@npm:10.8.0" dependencies: "@eslint-community/eslint-utils": ^4.4.0 natural-compare: ^1.4.0 @@ -5601,18 +5794,30 @@ __metadata: peerDependencies: "@stylistic/eslint-plugin": ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 "@typescript-eslint/parser": ^7.0.0 || ^8.0.0 - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 vue-eslint-parser: ^10.0.0 peerDependenciesMeta: "@stylistic/eslint-plugin": optional: true "@typescript-eslint/parser": optional: true - checksum: 247c6858486ef4e21f94d045d52b3c63daf4a7e5ce30973766aaa9e15fb1796bdf72a94de0155ee89be4b0d41f420e757c6dac823a338f14a3bb580e52a256bc + checksum: 78efb954532ef4eb21f8a7a2c8abbe652280a7d2f4f09969c4e63a55152707b1a3a128cd6721d1806a74760c85f8279d0a43d57eeabaa6900abe13336d1a2249 + languageName: node + linkType: hard + +"eslint-scope@npm:^8.2.0 || ^9.0.0": + version: 9.1.1 + resolution: "eslint-scope@npm:9.1.1" + dependencies: + "@types/esrecurse": ^4.3.1 + "@types/estree": ^1.0.8 + esrecurse: ^4.3.0 + estraverse: ^5.2.0 + checksum: 043a7c5c8693d743d27d284bbeea52ee2066f461d30e3a83ea53bf403912f8523a726ddeff3f1e39e693d2edb0de74a05836decf6c519c0a742e4b8da18965be languageName: node linkType: hard -"eslint-scope@npm:^8.2.0, eslint-scope@npm:^8.4.0": +"eslint-scope@npm:^8.4.0": version: 8.4.0 resolution: "eslint-scope@npm:8.4.0" dependencies: @@ -5629,23 +5834,23 @@ __metadata: languageName: node linkType: hard -"eslint-visitor-keys@npm:^4.2.0, eslint-visitor-keys@npm:^4.2.1": - version: 4.2.1 - resolution: "eslint-visitor-keys@npm:4.2.1" - checksum: 3a77e3f99a49109f6fb2c5b7784bc78f9743b834d238cdba4d66c602c6b52f19ed7bcd0a5c5dbbeae3a8689fd785e76c001799f53d2228b278282cf9f699fff5 +"eslint-visitor-keys@npm:^4.2.0 || ^5.0.0, eslint-visitor-keys@npm:^5.0.0, eslint-visitor-keys@npm:^5.0.1": + version: 5.0.1 + resolution: "eslint-visitor-keys@npm:5.0.1" + checksum: d6cc6830536ab4a808f25325686c2c27862f27aab0c1ffed39627293b06cee05d95187da113cafd366314ea5be803b456115de71ad625e365020f20e2a6af89b languageName: node linkType: hard -"eslint-visitor-keys@npm:^5.0.0": - version: 5.0.0 - resolution: "eslint-visitor-keys@npm:5.0.0" - checksum: 12446a76524024f9decd12ae7bb7de7bfb4b052d82c6a14180eb712962ada24168e8341a67421bcf99ada4a93b4eb46198e9ecf7c59010df8fb32a9d4475e071 +"eslint-visitor-keys@npm:^4.2.1": + version: 4.2.1 + resolution: "eslint-visitor-keys@npm:4.2.1" + checksum: 3a77e3f99a49109f6fb2c5b7784bc78f9743b834d238cdba4d66c602c6b52f19ed7bcd0a5c5dbbeae3a8689fd785e76c001799f53d2228b278282cf9f699fff5 languageName: node linkType: hard "eslint@npm:^9.35.0": - version: 9.39.2 - resolution: "eslint@npm:9.39.2" + version: 9.39.3 + resolution: "eslint@npm:9.39.3" dependencies: "@eslint-community/eslint-utils": ^4.8.0 "@eslint-community/regexpp": ^4.12.1 @@ -5653,7 +5858,7 @@ __metadata: "@eslint/config-helpers": ^0.4.2 "@eslint/core": ^0.17.0 "@eslint/eslintrc": ^3.3.1 - "@eslint/js": 9.39.2 + "@eslint/js": 9.39.3 "@eslint/plugin-kit": ^0.4.1 "@humanfs/node": ^0.16.6 "@humanwhocodes/module-importer": ^1.0.1 @@ -5688,11 +5893,11 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: bfa288fe6b19b6e7f8868e1434d8e469603203d6259e4451b8be4e2172de3172f3b07ed8943ba3904f3545c7c546062c0d656774baa0a10a54483f3907c525e3 + checksum: c242078b30198a1fb358adac08803553f7071bec76138f16977e64a49e0a5bcf7b41aea00fbeede0f7ed86c4c4f5744b2dd9a340567ecc5fdf779f2227651d57 languageName: node linkType: hard -"espree@npm:^10.0.1, espree@npm:^10.3.0, espree@npm:^10.4.0": +"espree@npm:^10.0.1, espree@npm:^10.4.0": version: 10.4.0 resolution: "espree@npm:10.4.0" dependencies: @@ -5703,14 +5908,14 @@ __metadata: languageName: node linkType: hard -"espree@npm:^11.0.0": - version: 11.1.0 - resolution: "espree@npm:11.1.0" +"espree@npm:^10.3.0 || ^11.0.0": + version: 11.1.1 + resolution: "espree@npm:11.1.1" dependencies: - acorn: ^8.15.0 + acorn: ^8.16.0 acorn-jsx: ^5.3.2 - eslint-visitor-keys: ^5.0.0 - checksum: 8fcf568f5735fa4f482e160e47f15cd50334fb5ed54dde06c022c97c80990e36a64d9f2492f162159d7876f310f81e70de682a9b6ed3b0364d382d82597c455c + eslint-visitor-keys: ^5.0.1 + checksum: a47c20306be92e3642adec00bf1228a1c1530c59e2eac6f02d210d479445f0517a11b420314c6f819d11d43cb363fa37836868c09dc21ae25ef53769596583a6 languageName: node linkType: hard @@ -5892,10 +6097,12 @@ __metadata: languageName: node linkType: hard -"fast-npm-meta@npm:^0.4.7": - version: 0.4.7 - resolution: "fast-npm-meta@npm:0.4.7" - checksum: b99d7e061c4723aae6eeddde6edc04b115a8891ce431093e28ac749a6bc81f683b59d42e9ab4a97124cfedb78437a6abadfd1274afb87f5870ae17c90bc62614 +"fast-npm-meta@npm:^1.2.1": + version: 1.3.0 + resolution: "fast-npm-meta@npm:1.3.0" + bin: + fast-npm-meta: dist/cli.mjs + checksum: 2a2ea0f4fe9a46fea8a5adbdb392a4ba2559d0e4ea02d94eedd0bbc15d2db641befb6b50318a7a25763c45fdaacfa82d2d7a0d76cf0a4d624a6b0053b39d6ad5 languageName: node linkType: hard @@ -5973,13 +6180,13 @@ __metadata: linkType: hard "flatted@npm:^3.2.9": - version: 3.3.3 - resolution: "flatted@npm:3.3.3" - checksum: 8c96c02fbeadcf4e8ffd0fa24983241e27698b0781295622591fc13585e2f226609d95e422bcf2ef044146ffacb6b68b1f20871454eddf75ab3caa6ee5f4a1fe + version: 3.3.4 + resolution: "flatted@npm:3.3.4" + checksum: 67f1da2949782ead8cb6846b08b941c9569a8232bf43f1cd754736473400377b24b371939a251095c6df59f99a9dd667552b2008ae252d1b0a821ef5ecb5498d languageName: node linkType: hard -"follow-redirects@npm:^1.15.6": +"follow-redirects@npm:^1.15.11": version: 1.15.11 resolution: "follow-redirects@npm:1.15.11" peerDependenciesMeta: @@ -6031,7 +6238,7 @@ __metadata: languageName: node linkType: hard -"form-data@npm:^4.0.4": +"form-data@npm:^4.0.5": version: 4.0.5 resolution: "form-data@npm:4.0.5" dependencies: @@ -6126,6 +6333,13 @@ __metadata: languageName: node linkType: hard +"fzf@npm:^0.5.2": + version: 0.5.2 + resolution: "fzf@npm:0.5.2" + checksum: d7064ea9a2482b656c2852e65af49c3fc86e3cd866d64e8eb3940ca1f193db769b7c2e77c5df0583af4af8875f63ee6aa3cd49d42d0af786a6bd7d92ec929619 + languageName: node + linkType: hard + "generator-function@npm:^2.0.0": version: 2.0.1 resolution: "generator-function@npm:2.0.1" @@ -6208,22 +6422,12 @@ __metadata: languageName: node linkType: hard -"git-up@npm:^8.1.0": - version: 8.1.1 - resolution: "git-up@npm:8.1.1" - dependencies: - is-ssh: ^1.4.0 - parse-url: ^9.2.0 - checksum: 3b7c89bcd0c46e09154f3509ac5f69f3c746ec032390b86a34f7e831a3b60c0a976548780682cd490a522dd8eb4ff2a13b1b882ff0e94a35fe6fc317f09042a5 - languageName: node - linkType: hard - -"git-url-parse@npm:^16.0.1": - version: 16.1.0 - resolution: "git-url-parse@npm:16.1.0" - dependencies: - git-up: ^8.1.0 - checksum: 386b0e1bf55c2732ae5d9d75a8063a46179c832794a010b0d8952f89e79dbda7bdf1d00ef478a13ab3962bcad1d1f7a1a1de18769de1514ffe1fb11c90a82270 +"giget@npm:^3.1.2": + version: 3.1.2 + resolution: "giget@npm:3.1.2" + bin: + giget: dist/cli.mjs + checksum: d188643335a301659764691a455223831b16f608afd28619974a330af85e65b5af42ecaacc39ae2b9f662415773317b2bba02312d84ebbe3c82436aa04ae47cb languageName: node linkType: hard @@ -6262,13 +6466,13 @@ __metadata: linkType: hard "glob@npm:^13.0.0": - version: 13.0.0 - resolution: "glob@npm:13.0.0" + version: 13.0.6 + resolution: "glob@npm:13.0.6" dependencies: - minimatch: ^10.1.1 - minipass: ^7.1.2 - path-scurry: ^2.0.0 - checksum: 963730222b0acc85a0d2616c08ba3a5d5b5f33fbf69182791967b8a02245db505577a6fc19836d5d58e1cbbfb414ad4f62f605a0372ab05cd9e6998efe944369 + minimatch: ^10.2.2 + minipass: ^7.1.3 + path-scurry: ^2.0.2 + checksum: 1eb421c696c66af3c26e4845dbdd222d3b982ede17448456b49272722d872e9a91741b50e4e827370c57d17a39a69790061f45033523f085c076d8fcc0f69d2b languageName: node linkType: hard @@ -6303,8 +6507,8 @@ __metadata: linkType: hard "globby@npm:^16.1.0": - version: 16.1.0 - resolution: "globby@npm:16.1.0" + version: 16.1.1 + resolution: "globby@npm:16.1.1" dependencies: "@sindresorhus/merge-streams": ^4.0.0 fast-glob: ^3.3.3 @@ -6312,7 +6516,7 @@ __metadata: is-path-inside: ^4.0.0 slash: ^5.1.0 unicorn-magic: ^0.4.0 - checksum: 9d6dd89dd1f1d8c601b82e22f49330794bc14dabac5211f36d534efa5e035c1a65ce61dd3bc8f420ba24ded0a736b867a17a4db9b3b40466ca906915edd1ed72 + checksum: dcaf49a67a5ccbc92193b2dc55efbb949b8e95e704a759e0b2632fe88c9083c3b98c974e2c66cd12050c2532854cd6c9e2c5d75850d326f01ebec8441d611fed languageName: node linkType: hard @@ -6530,12 +6734,12 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" +"iconv-lite@npm:^0.7.2": + version: 0.7.2 + resolution: "iconv-lite@npm:0.7.2" dependencies: safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf + checksum: faf884c1f631a5d676e3e64054bed891c7c5f616b790082d99ccfbfd017c661a39db8009160268fd65fae57c9154d4d491ebc9c301f3446a078460ef114dc4b8 languageName: node linkType: hard @@ -6638,10 +6842,10 @@ __metadata: linkType: hard "ioredis@npm:^5.9.1": - version: 5.9.2 - resolution: "ioredis@npm:5.9.2" + version: 5.10.0 + resolution: "ioredis@npm:5.10.0" dependencies: - "@ioredis/commands": 1.5.0 + "@ioredis/commands": 1.5.1 cluster-key-slot: ^1.1.0 debug: ^4.3.4 denque: ^2.1.0 @@ -6650,7 +6854,7 @@ __metadata: redis-errors: ^1.2.0 redis-parser: ^3.0.0 standard-as-callback: ^2.1.0 - checksum: fc7f330430cebf170b7adfd84b9a213ee750ce187c6b316d1f2d520192c01bfc82c08773e6b671ee4689c7bcaad7d517e7b8b385a80f99a49dd3b432e0e92326 + checksum: 6c6b966ca8e34c05abc3a436ca602c24518e1613bad4cd1b19df48b36deca4f5383b0f260309a869618a53354322c892ab744d933f0f7c274dd8e84e5ea9aa24 languageName: node linkType: hard @@ -6810,15 +7014,6 @@ __metadata: languageName: node linkType: hard -"is-ssh@npm:^1.4.0": - version: 1.4.1 - resolution: "is-ssh@npm:1.4.1" - dependencies: - protocols: ^2.0.1 - checksum: 005b461ac444398eb8b7cd2f489288e49dd18c8b6cbf1eb20767f9b79f330ab6e3308b2dac8ec6ca2a950d2a368912e0e992e2474bc1b5204693abb6226c1431 - languageName: node - linkType: hard - "is-stream@npm:^2.0.1": version: 2.0.1 resolution: "is-stream@npm:2.0.1" @@ -6850,11 +7045,11 @@ __metadata: linkType: hard "is-wsl@npm:^3.1.0": - version: 3.1.0 - resolution: "is-wsl@npm:3.1.0" + version: 3.1.1 + resolution: "is-wsl@npm:3.1.1" dependencies: is-inside-container: ^1.0.0 - checksum: f9734c81f2f9cf9877c5db8356bfe1ff61680f1f4c1011e91278a9c0564b395ae796addb4bf33956871041476ec82c3e5260ed57b22ac91794d4ae70a1d2f0a9 + checksum: 513d95b89af0e60b43d7b17ecb7eb78edea0a439136a3da37b1b56e215379cc46a9221474ad5b2de044824ca72d7869dee6e015273dc3f71f2bb87c715f9f1dc languageName: node linkType: hard @@ -6882,19 +7077,26 @@ __metadata: linkType: hard "isexe@npm:^3.1.1": - version: 3.1.1 - resolution: "isexe@npm:3.1.1" - checksum: 7fe1931ee4e88eb5aa524cd3ceb8c882537bc3a81b02e438b240e47012eef49c86904d0f0e593ea7c3a9996d18d0f1f3be8d3eaa92333977b0c3a9d353d5563e + version: 3.1.5 + resolution: "isexe@npm:3.1.5" + checksum: ae479f6b0505507f1a73c1d57be6d0546e59fc9202bb0d5b31ba8ff5f3e79dd385bce57a2e60c5645aba567018cbbfc663519cd28367e9962242d97dd151d2ab + languageName: node + linkType: hard + +"isexe@npm:^4.0.0": + version: 4.0.0 + resolution: "isexe@npm:4.0.0" + checksum: 2ead327ef596042ef9c9ec5f236b316acfaedb87f4bb61b3c3d574fb2e9c8a04b67305e04733bde52c24d9622fdebd3270aadb632adfbf9cadef88fe30f479e5 languageName: node linkType: hard "isomorphic-dompurify@npm:^2.20.0": - version: 2.35.0 - resolution: "isomorphic-dompurify@npm:2.35.0" + version: 2.36.0 + resolution: "isomorphic-dompurify@npm:2.36.0" dependencies: dompurify: ^3.3.1 - jsdom: ^27.4.0 - checksum: d041cf2935e490baaeb8a089d24a159f370c85e541a7d5ed70a401d023c7a8595a26172bea64031ef5998a04d6193e8a4945f4b7fe99e53a173f101a566783bb + jsdom: ^28.0.0 + checksum: 8966eed3b0d94ebe2388a3e793fa9f1240ef22e1435f590e9bcab310713672c9761eed074f1d6aa6c4bba50be82eb6f29e693daa0f3b4bf1f70e0185b630e571 languageName: node linkType: hard @@ -6954,15 +7156,16 @@ __metadata: languageName: node linkType: hard -"jsdom@npm:^27.4.0": - version: 27.4.0 - resolution: "jsdom@npm:27.4.0" +"jsdom@npm:^28.0.0": + version: 28.1.0 + resolution: "jsdom@npm:28.1.0" dependencies: - "@acemir/cssom": ^0.9.28 - "@asamuzakjp/dom-selector": ^6.7.6 - "@exodus/bytes": ^1.6.0 - cssstyle: ^5.3.4 - data-urls: ^6.0.0 + "@acemir/cssom": ^0.9.31 + "@asamuzakjp/dom-selector": ^6.8.1 + "@bramus/specificity": ^2.4.2 + "@exodus/bytes": ^1.11.0 + cssstyle: ^6.0.1 + data-urls: ^7.0.0 decimal.js: ^10.6.0 html-encoding-sniffer: ^6.0.0 http-proxy-agent: ^7.0.2 @@ -6972,18 +7175,18 @@ __metadata: saxes: ^6.0.0 symbol-tree: ^3.2.4 tough-cookie: ^6.0.0 + undici: ^7.21.0 w3c-xmlserializer: ^5.0.0 - webidl-conversions: ^8.0.0 - whatwg-mimetype: ^4.0.0 - whatwg-url: ^15.1.0 - ws: ^8.18.3 + webidl-conversions: ^8.0.1 + whatwg-mimetype: ^5.0.0 + whatwg-url: ^16.0.0 xml-name-validator: ^5.0.0 peerDependencies: canvas: ^3.0.0 peerDependenciesMeta: canvas: optional: true - checksum: ec3f4a98174f2cf739ea33a2f59dcb66a2555e475b57d9e016fa55cdcc5b61f002e3d3c161142869d161d7535a6cc11d9fb1328860b27848b3ea94e1d99279bd + checksum: ee66f69f21ae2b16da74a195e5aa25a7d1e00ac5e76725eb498ea1c67966de3166ee9e401551774e39eb2c82ee9366a52870bb4fe749c94b2579a4531c67a654 languageName: node linkType: hard @@ -7069,13 +7272,6 @@ __metadata: languageName: node linkType: hard -"kleur@npm:^3.0.3": - version: 3.0.3 - resolution: "kleur@npm:3.0.3" - checksum: df82cd1e172f957bae9c536286265a5cdbd5eeca487cb0a3b2a7b41ef959fc61f8e7c0e9aeea9c114ccf2c166b6a8dd45a46fd619c1c569d210ecd2765ad5169 - languageName: node - linkType: hard - "kleur@npm:^4.1.5": version: 4.1.5 resolution: "kleur@npm:4.1.5" @@ -7136,8 +7332,8 @@ __metadata: linkType: hard "koa@npm:^2.14.2": - version: 2.16.3 - resolution: "koa@npm:2.16.3" + version: 2.16.4 + resolution: "koa@npm:2.16.4" dependencies: accepts: ^1.3.5 cache-content-type: ^1.0.0 @@ -7162,17 +7358,17 @@ __metadata: statuses: ^1.5.0 type-is: ^1.6.16 vary: ^1.1.2 - checksum: 9a3c612ef6381b86a536da0b1818d2b718fab77e932ef19abd0a5465d1a547024b47d35fbcf2e7c38fe12bc9fa823e334adde55a2ac0bfbea9db54cd801d0819 + checksum: 117cacd60e4a9816a0dc7bdf29bc4660fc95718182a12881f7863fe5a40b4e667c9d71891129d794f070f61f5417ffd90ae28cfc58f89f3b87e75351ba2ad201 languageName: node linkType: hard -"launch-editor@npm:^2.11.1, launch-editor@npm:^2.12.0": - version: 2.12.0 - resolution: "launch-editor@npm:2.12.0" +"launch-editor@npm:^2.13.0": + version: 2.13.1 + resolution: "launch-editor@npm:2.13.1" dependencies: picocolors: ^1.1.1 shell-quote: ^1.8.3 - checksum: b1aa1b92ef4e720d1edd7f80affb90b2fa1cc2c41641cf80158940698c18a4b6a67e2a7cb060547712e858f0ec1a7c8c39f605e0eb299f516a6184f4e680ffc8 + checksum: cc2f89dd4b45ecb84b25d77d0702c472e6f9c2c2a530e2c577a104fd9c32433b6c82c7c98cc1d444054d0aa0ac371881b37fc7593a4ae38d7bde2e8f4a238180 languageName: node linkType: hard @@ -7303,9 +7499,9 @@ __metadata: linkType: hard "lodash@npm:^4.17.15": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 + version: 4.17.23 + resolution: "lodash@npm:4.17.23" + checksum: 7daad39758a72872e94651630fbb54ba76868f904211089721a64516ce865506a759d9ad3d8ff22a2a49a50a09db5d27c36f22762d21766e47e3ba918d6d7bab languageName: node linkType: hard @@ -7316,10 +7512,10 @@ __metadata: languageName: node linkType: hard -"lru-cache@npm:^11.0.0, lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.0, lru-cache@npm:^11.2.1, lru-cache@npm:^11.2.4": - version: 11.2.4 - resolution: "lru-cache@npm:11.2.4" - checksum: cb8cf72b80a506593f51880bd5a765380d6d8eb82e99b2fbb2f22fe39e5f2f641d47a2509e74cc294617f32a4e90ae8f6214740fe00bc79a6178854f00419b24 +"lru-cache@npm:^11.0.0, lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.0, lru-cache@npm:^11.2.1, lru-cache@npm:^11.2.6": + version: 11.2.6 + resolution: "lru-cache@npm:11.2.6" + checksum: 26fe602c92a0cb7a8da9a85db162ddd810d84507d9c4ef8d95a785a805648f9579e1148aaeac260f6b6315197bcf27c1b7e60a0a066621d6e95b3587699a0c70 languageName: node linkType: hard @@ -7389,32 +7585,22 @@ __metadata: languageName: node linkType: hard -"magicast@npm:^0.3.5": - version: 0.3.5 - resolution: "magicast@npm:0.3.5" - dependencies: - "@babel/parser": ^7.25.4 - "@babel/types": ^7.25.4 - source-map-js: ^1.2.0 - checksum: 668f07ade907a44bccfc9a9321588473f6d5fa25329aa26b9ad9a3bf87cc2e6f9c482cbdd3e33c0b9ab9b79c065630c599cc055a12f881c8c924ee0d7282cdce - languageName: node - linkType: hard - -"magicast@npm:^0.5.1": - version: 0.5.1 - resolution: "magicast@npm:0.5.1" +"magicast@npm:^0.5.1, magicast@npm:^0.5.2": + version: 0.5.2 + resolution: "magicast@npm:0.5.2" dependencies: - "@babel/parser": ^7.28.5 - "@babel/types": ^7.28.5 + "@babel/parser": ^7.29.0 + "@babel/types": ^7.29.0 source-map-js: ^1.2.1 - checksum: 155b1079ca96ac4c6b27f4e374a8ef2bdba1dd7a5992666854679d6a7d8378d4ed99d6d576b09276348ad630d79a7db6da4ae798fa035f2933cffc1f9ce8c55e + checksum: 49659165e6d3d940398fe3c1205408a7c987f02d357e3943be3d7d67ad4aa4dc262f694599e64e491645d2da5c29ee30650a2ddea4b86ac65c0feba196173a01 languageName: node linkType: hard "make-fetch-happen@npm:^15.0.0": - version: 15.0.3 - resolution: "make-fetch-happen@npm:15.0.3" + version: 15.0.4 + resolution: "make-fetch-happen@npm:15.0.4" dependencies: + "@gar/promise-retry": ^1.0.0 "@npmcli/agent": ^4.0.0 cacache: ^20.0.1 http-cache-semantics: ^4.1.1 @@ -7424,9 +7610,8 @@ __metadata: minipass-pipeline: ^1.2.4 negotiator: ^1.0.0 proc-log: ^6.0.0 - promise-retry: ^2.0.1 ssri: ^13.0.0 - checksum: 4fb9dbb739b33565c85dacdcff7eb9388d8f36f326a59dc13375f01af809c42c48aa5d1f4840ee36623b2461a15476e1e79e4548ca1af30b42e1e324705ac8b3 + checksum: eb875e1fbdf58b4d6d7c6c2ee97a2521b407f85d1fb2c0e6bc2c2d9d13fa34c3198eff3512589dc26e8fb32684e4e52f3c9d844a704ac96b393559a88b5e57ca languageName: node linkType: hard @@ -7454,9 +7639,9 @@ __metadata: languageName: node linkType: hard -"markdown-it@npm:^14.1.0": - version: 14.1.0 - resolution: "markdown-it@npm:14.1.0" +"markdown-it@npm:^14.1.1": + version: 14.1.1 + resolution: "markdown-it@npm:14.1.1" dependencies: argparse: ^2.0.1 entities: ^4.4.0 @@ -7466,7 +7651,7 @@ __metadata: uc.micro: ^2.1.0 bin: markdown-it: bin/markdown-it.mjs - checksum: 07296b45ebd0b13a55611a24d1b1ad002c6729ec54f558f597846994b0b7b1de79d13cd99ff3e7b6e9e027f36b63125cdcf69174da294ecabdd4e6b9fff39e5d + checksum: d6d55865c60debc4cc21d7288f0f6ea04ca055af79c58c467a29c949a289b7e679912c2575d79edb20f55ff3b4548f75b1e1184f939223fa32b08331c5fee81c languageName: node linkType: hard @@ -7584,39 +7769,39 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^10.1.1": - version: 10.1.1 - resolution: "minimatch@npm:10.1.1" +"minimatch@npm:^10.2.2": + version: 10.2.4 + resolution: "minimatch@npm:10.2.4" dependencies: - "@isaacs/brace-expansion": ^5.0.0 - checksum: 8820c0be92994f57281f0a7a2cc4268dcc4b610f9a1ab666685716b4efe4b5898b43c835a8f22298875b31c7a278a5e3b7e253eee7c886546bb0b61fb94bca6b + brace-expansion: ^5.0.2 + checksum: 56dce6b04c6b30b500d81d7a29822c108b7d58c46696ec7332d04a2bd104a5cb69e5c7ce93e1783dc66d61400d831e6e226ca101ac23665aff32ca303619dc3d languageName: node linkType: hard -"minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" +"minimatch@npm:^3.1.1, minimatch@npm:^3.1.2, minimatch@npm:^3.1.3": + version: 3.1.5 + resolution: "minimatch@npm:3.1.5" dependencies: brace-expansion: ^1.1.7 - checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a + checksum: 47ef6f412c08be045a7291d11b1c40777925accf7252dc6d3caa39b1bfbb3a7ea390ba7aba464d762d783265c644143d2c8a204e6b5763145024d52ee65a1941 languageName: node linkType: hard "minimatch@npm:^5.1.0": - version: 5.1.6 - resolution: "minimatch@npm:5.1.6" + version: 5.1.9 + resolution: "minimatch@npm:5.1.9" dependencies: brace-expansion: ^2.0.1 - checksum: 7564208ef81d7065a370f788d337cd80a689e981042cb9a1d0e6580b6c6a8c9279eba80010516e258835a988363f99f54a6f711a315089b8b42694f5da9d0d77 + checksum: 418438bd7701ba811f1108f28fcd3a638a6065c7b1245b85e25bcdb674410b4bebd8763c90c91bc8d22d93260c02cc129b354267a463c3399be5732d6e11e120 languageName: node linkType: hard -"minimatch@npm:^9.0.4, minimatch@npm:^9.0.5": - version: 9.0.5 - resolution: "minimatch@npm:9.0.5" +"minimatch@npm:^9.0.4": + version: 9.0.9 + resolution: "minimatch@npm:9.0.9" dependencies: - brace-expansion: ^2.0.1 - checksum: 2c035575eda1e50623c731ec6c14f65a85296268f749b9337005210bb2b34e2705f8ef1a358b188f69892286ab99dc42c8fb98a57bde55c8d81b3023c19cea28 + brace-expansion: ^2.0.2 + checksum: 5292681ba1e14544ca9214ba5e412bb346214fb783354b22752f2d1e5c176e4a2c0bfcafeb1046389b816009ab73ba5410b176ce605632e8aa695db25f87f6b9 languageName: node linkType: hard @@ -7630,17 +7815,17 @@ __metadata: linkType: hard "minipass-fetch@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass-fetch@npm:5.0.0" + version: 5.0.2 + resolution: "minipass-fetch@npm:5.0.2" dependencies: - encoding: ^0.1.13 + iconv-lite: ^0.7.2 minipass: ^7.0.3 - minipass-sized: ^1.0.3 + minipass-sized: ^2.0.0 minizlib: ^3.0.1 dependenciesMeta: - encoding: + iconv-lite: optional: true - checksum: 416645d1e54c09fdfe64ec1676541ac2f6f2af3abc7ad25f2f22c4518535997c1ecd2c0c586ea8a5c6499ad7d8f97671f50ff38488ada54bf61fde309f731379 + checksum: d4dfdd9700fc8aba445834f75f2abaf9e5d404c10eda06e2db4a8ba89fc66a26956d19703d0edf9be864cb30dec22356d343509ad0a105446516c0ead4330328 languageName: node linkType: hard @@ -7662,12 +7847,12 @@ __metadata: languageName: node linkType: hard -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" +"minipass-sized@npm:^2.0.0": + version: 2.0.0 + resolution: "minipass-sized@npm:2.0.0" dependencies: - minipass: ^3.0.0 - checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 + minipass: ^7.1.2 + checksum: 1a1fd251aef4e24050a04ea03fdc0514960f7304a374fd01f352bfdb72c0a2c084ad05d63e76011c181cadfb38dbf487f8782e1e778337f6a099ac2da26b6d5d languageName: node linkType: hard @@ -7680,10 +7865,10 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 2bfd325b95c555f2b4d2814d49325691c7bee937d753814861b0b49d5edcda55cbbf22b6b6a60bb91eddac8668771f03c5ff647dcd9d0f798e9548b9cdc46ee3 +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": + version: 7.1.3 + resolution: "minipass@npm:7.1.3" + checksum: 2ede17c0bf8fec499be3360fd07f0ec7666189e3907320a9b653f1530cf84af98928c5b12d80bfb75f321833bf2e97785b940540213ebdafe97a5f10327e664d languageName: node linkType: hard @@ -7753,22 +7938,24 @@ __metadata: "@iconify-json/mdi": ^1.1.54 "@iconify-json/ri": ^1.2.1 "@iconify-json/svg-spinners": ^1.2.1 - "@nuxt/devtools": ^2.6.4 + "@nuxt/devtools": ^3.2.2 + "@nuxt/scripts": 0.13.2 "@nuxtjs/fontaine": ^0.5.0 "@nuxtjs/i18n": ^9.5.3 "@nuxtjs/robots": ^5.5.1 "@nuxtjs/tailwindcss": ^6.14.0 - "@pinia/nuxt": 0.11.2 + "@pinia/nuxt": 0.11.3 "@stylistic/eslint-plugin": ^5.3.1 "@types/markdown-it": ^14.1.2 "@types/node": ^24.10.1 "@types/qs": ^6.9.7 "@typescript-eslint/eslint-plugin": ^8.41.0 "@typescript-eslint/parser": ^8.41.0 + "@unhead/vue": ^2.0.3 "@vueuse/components": ^13.9.0 - "@vueuse/core": ^13.9.0 + "@vueuse/core": ^14.1.0 "@vueuse/nuxt": ^14.1.0 - axios: ^1.13.2 + axios: ^1.13.5 colorjs.io: ^0.5.2 date-fns: ^4.1.0 eslint: ^9.35.0 @@ -7778,11 +7965,11 @@ __metadata: highlight.js: ^11.11.1 humanize-duration: ^3.32.1 isomorphic-dompurify: ^2.20.0 - markdown-it: ^14.1.0 + markdown-it: ^14.1.1 markdown-it-anchor: ^9.2.0 markdown-it-color-inline: ^1.9.5 markdown-it-task-lists: ^2.1.1 - nuxt: latest + nuxt: ^4.3.1 nuxt-easy-lightbox: ^1.1.0 nuxt-seo-utils: ^7.0.19 nuxt-umami: ^3.2.1 @@ -7790,7 +7977,7 @@ __metadata: object-hash: ^3.0.0 object-to-formdata: ^4.5.1 pinia: ^3.0.2 - qs: ^6.14.1 + qs: ^6.14.2 radix-vue: ^1.9.13 rfdc: ^1.4.1 textarea-caret: ^3.1.0 @@ -7825,7 +8012,7 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^5.0.7, nanoid@npm:^5.1.0, nanoid@npm:^5.1.5": +"nanoid@npm:^5.0.7": version: 5.1.6 resolution: "nanoid@npm:5.1.6" bin: @@ -7835,9 +8022,9 @@ __metadata: linkType: hard "nanotar@npm:^0.2.0": - version: 0.2.0 - resolution: "nanotar@npm:0.2.0" - checksum: 213e39888ca5a3aef3ef99965916bc8c91e39f46262a9c24f511f21a34d6305f2d48bc1f5c6a1118d249574d45bff2c666ab277704d45f9f5cdd81822d00ca63 + version: 0.2.1 + resolution: "nanotar@npm:0.2.1" + checksum: 1a1d6ce1f7824ec6ee4825b1f22fda9560618e4620aea895183b97303742f2dfd79fed3379183645029871a671f79ebe4236baef2ecc8b7f1037a21fb28613a8 languageName: node linkType: hard @@ -7869,7 +8056,7 @@ __metadata: languageName: node linkType: hard -"nitropack@npm:^2.12.9": +"nitropack@npm:^2.13.1": version: 2.13.1 resolution: "nitropack@npm:2.13.1" dependencies: @@ -8004,8 +8191,8 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 12.1.0 - resolution: "node-gyp@npm:12.1.0" + version: 12.2.0 + resolution: "node-gyp@npm:12.2.0" dependencies: env-paths: ^2.2.0 exponential-backoff: ^3.1.1 @@ -8014,12 +8201,12 @@ __metadata: nopt: ^9.0.0 proc-log: ^6.0.0 semver: ^7.3.5 - tar: ^7.5.2 + tar: ^7.5.4 tinyglobby: ^0.2.12 which: ^6.0.0 bin: node-gyp: bin/node-gyp.js - checksum: 198d91c535fe9940bcdc0db4e578f94cf9872e0d068e88ef2f4656924248bb67245b270b48eded6634c7513841c0cd42f3da3ac9d77c8e16437fcd90703b9ef3 + checksum: d4ce0acd08bd41004f45e10cef468f4bd15eaafb3acc388a0c567416e1746dc005cc080b8a3495e4e2ae2eed170a2123ff622c2d6614062f4a839837dcf1dd9d languageName: node linkType: hard @@ -8124,32 +8311,33 @@ __metadata: languageName: node linkType: hard -"nuxt-site-config-kit@npm:3.2.18": - version: 3.2.18 - resolution: "nuxt-site-config-kit@npm:3.2.18" +"nuxt-site-config-kit@npm:3.2.21": + version: 3.2.21 + resolution: "nuxt-site-config-kit@npm:3.2.21" dependencies: - "@nuxt/kit": ^4.2.2 + "@nuxt/kit": ^4.3.1 pkg-types: ^2.3.0 - site-config-stack: 3.2.18 + site-config-stack: 3.2.21 std-env: ^3.10.0 ufo: ^1.6.3 - checksum: 91e07d08c3a684b01209f626db9c87d3e12682c37f8bb321b50ec9d2e4d599294808bc15387188e6f2a506776b3b5220c7b3632120c5525c09b74f61d9037cf8 + checksum: 441bf55d9d18fe62961e474d703e11e30ff500ffb133ca94dfe694d3ecd8fb5cc8eafce2efbe205c736dce8c285efe72dab56f76e5e94b50789f3c3cfc18a120 languageName: node linkType: hard -"nuxt-site-config@npm:^3.2.11, nuxt-site-config@npm:^3.2.14": - version: 3.2.18 - resolution: "nuxt-site-config@npm:3.2.18" +"nuxt-site-config@npm:^3.2.11, nuxt-site-config@npm:^3.2.21": + version: 3.2.21 + resolution: "nuxt-site-config@npm:3.2.21" dependencies: - "@nuxt/kit": ^4.2.2 + "@nuxt/devtools-kit": ^3.2.1 + "@nuxt/kit": ^4.3.1 h3: ^1.15.5 - nuxt-site-config-kit: 3.2.18 + nuxt-site-config-kit: 3.2.21 pathe: ^2.0.3 pkg-types: ^2.3.0 sirv: ^3.0.2 - site-config-stack: 3.2.18 + site-config-stack: 3.2.21 ufo: ^1.6.3 - checksum: b09bafaca68ea2c1062525336ef37330b05b60a3e64d2fbb5ffe4effe7c2579796ed0eb50b56ba381e6c3ade6d7f70e9b96fd21e40739b6bb2f2aab4b40c4376 + checksum: c056b34a2768595837c2bc3b5ee876acc348f711c80fc09195cebcf5704037ae8b60bb8b889c48c1a2c26e7d028fa3d16ebc01a03ecea41e42769f5007163515 languageName: node linkType: hard @@ -8172,32 +8360,32 @@ __metadata: languageName: node linkType: hard -"nuxt@npm:latest": - version: 4.2.2 - resolution: "nuxt@npm:4.2.2" +"nuxt@npm:^4.3.1": + version: 4.3.1 + resolution: "nuxt@npm:4.3.1" dependencies: - "@dxup/nuxt": ^0.2.2 - "@nuxt/cli": ^3.31.1 + "@dxup/nuxt": ^0.3.2 + "@nuxt/cli": ^3.33.0 "@nuxt/devtools": ^3.1.1 - "@nuxt/kit": 4.2.2 - "@nuxt/nitro-server": 4.2.2 - "@nuxt/schema": 4.2.2 - "@nuxt/telemetry": ^2.6.6 - "@nuxt/vite-builder": 4.2.2 - "@unhead/vue": ^2.0.19 - "@vue/shared": ^3.5.25 - c12: ^3.3.2 + "@nuxt/kit": 4.3.1 + "@nuxt/nitro-server": 4.3.1 + "@nuxt/schema": 4.3.1 + "@nuxt/telemetry": ^2.7.0 + "@nuxt/vite-builder": 4.3.1 + "@unhead/vue": ^2.1.3 + "@vue/shared": ^3.5.27 + c12: ^3.3.3 chokidar: ^5.0.0 compatx: ^0.2.0 consola: ^3.4.2 cookie-es: ^2.0.0 defu: ^6.1.4 destr: ^2.0.5 - devalue: ^5.6.0 + devalue: ^5.6.2 errx: ^0.1.0 escape-string-regexp: ^5.0.0 exsolve: ^1.0.8 - h3: ^1.15.4 + h3: ^1.15.5 hookable: ^5.5.3 ignore: ^7.0.5 impound: ^1.0.0 @@ -8207,32 +8395,32 @@ __metadata: magic-string: ^0.30.21 mlly: ^1.8.0 nanotar: ^0.2.0 - nypm: ^0.6.2 + nypm: ^0.6.5 ofetch: ^1.5.1 ohash: ^2.0.11 - on-change: ^6.0.1 - oxc-minify: ^0.102.0 - oxc-parser: ^0.102.0 - oxc-transform: ^0.102.0 - oxc-walker: ^0.6.0 + on-change: ^6.0.2 + oxc-minify: ^0.112.0 + oxc-parser: ^0.112.0 + oxc-transform: ^0.112.0 + oxc-walker: ^0.7.0 pathe: ^2.0.3 - perfect-debounce: ^2.0.0 + perfect-debounce: ^2.1.0 pkg-types: ^2.3.0 - radix3: ^1.1.2 + rou3: ^0.7.12 scule: ^1.3.0 - semver: ^7.7.3 + semver: ^7.7.4 std-env: ^3.10.0 tinyglobby: ^0.2.15 - ufo: ^1.6.1 + ufo: ^1.6.3 ultrahtml: ^1.6.0 uncrypto: ^0.1.3 - unctx: ^2.4.1 - unimport: ^5.5.0 - unplugin: ^2.3.11 - unplugin-vue-router: ^0.19.0 + unctx: ^2.5.0 + unimport: ^5.6.0 + unplugin: ^3.0.0 + unplugin-vue-router: ^0.19.2 untyped: ^2.0.0 - vue: ^3.5.25 - vue-router: ^4.6.3 + vue: ^3.5.27 + vue-router: ^4.6.4 peerDependencies: "@parcel/watcher": ^2.1.0 "@types/node": ">=18.12.0" @@ -8244,22 +8432,20 @@ __metadata: bin: nuxi: bin/nuxt.mjs nuxt: bin/nuxt.mjs - checksum: 425c367f37b9e5b13e06a9b0a231ed8d2907dfe44c172a52b48a13e59c477fa1de3324989348d35b0b1991e2cac63ed251c2d75b9d1f363f454b80311a49afd8 + checksum: ffc4a90fab1b6873f44f0f992fb8d54e8dfde47f02af956ef83d928eced34600a90accc2b7affa2919ae75438a16bf419fa3b0df56e59f2da0a42f8f0edf488a languageName: node linkType: hard -"nypm@npm:^0.6.0, nypm@npm:^0.6.2": - version: 0.6.2 - resolution: "nypm@npm:0.6.2" +"nypm@npm:^0.6.0, nypm@npm:^0.6.5": + version: 0.6.5 + resolution: "nypm@npm:0.6.5" dependencies: - citty: ^0.1.6 - consola: ^3.4.2 + citty: ^0.2.0 pathe: ^2.0.3 - pkg-types: ^2.3.0 - tinyexec: ^1.0.1 + tinyexec: ^1.0.2 bin: nypm: dist/cli.mjs - checksum: 8cbbbfb3ead13d4c05223da4bb47a4341a69e27055631b152ca368c07d470f62e4e44edbb33403d3777359bd06a07d41f616320fc7f4b7f0926aba657cc34d2e + checksum: 9601b97399e93d7260a1d5bba78e77644f2ea7141a20d4cf1836d2e8a741bacf7d0af2d5d23a4179b2a5911074fcf172a8a28beb32254d0d0dbc9c22058d0c52 languageName: node linkType: hard @@ -8298,7 +8484,7 @@ __metadata: languageName: node linkType: hard -"ofetch@npm:^1.4.1, ofetch@npm:^1.5.1": +"ofetch@npm:^1.5.1": version: 1.5.1 resolution: "ofetch@npm:1.5.1" dependencies: @@ -8309,6 +8495,13 @@ __metadata: languageName: node linkType: hard +"ofetch@npm:^2.0.0-alpha.3": + version: 2.0.0-alpha.3 + resolution: "ofetch@npm:2.0.0-alpha.3" + checksum: e6772e072ab7f3257d66c437c68457e38c82d2edb87bce3ce69a1081aeb225680dd716ac65a3b2180336616f077892bd8a4d439aa030cb68ea598c9ceea984d0 + languageName: node + linkType: hard + "ohash@npm:^2.0.11": version: 2.0.11 resolution: "ohash@npm:2.0.11" @@ -8316,10 +8509,10 @@ __metadata: languageName: node linkType: hard -"on-change@npm:^6.0.1": - version: 6.0.1 - resolution: "on-change@npm:6.0.1" - checksum: a229d6aba3eddb3d7eca5ba28e9b9ec1b454fac532c415166a79e9524afcc4416a06c0bc2c118234654c42915ef0bc38c1002bd6b243baf095572aa7a8991ad1 +"on-change@npm:^6.0.2": + version: 6.0.2 + resolution: "on-change@npm:6.0.2" + checksum: fb111c9720a4cd160ce3ad7874f6ddc7f019fa63cdf33e4bc120bae332655f0134edf86d4841cc957f2d96d3f6bc797cf991293766942e072b79860c8a7df371 languageName: node linkType: hard @@ -8404,26 +8597,33 @@ __metadata: languageName: node linkType: hard -"oxc-minify@npm:^0.102.0": - version: 0.102.0 - resolution: "oxc-minify@npm:0.102.0" - dependencies: - "@oxc-minify/binding-android-arm64": 0.102.0 - "@oxc-minify/binding-darwin-arm64": 0.102.0 - "@oxc-minify/binding-darwin-x64": 0.102.0 - "@oxc-minify/binding-freebsd-x64": 0.102.0 - "@oxc-minify/binding-linux-arm-gnueabihf": 0.102.0 - "@oxc-minify/binding-linux-arm64-gnu": 0.102.0 - "@oxc-minify/binding-linux-arm64-musl": 0.102.0 - "@oxc-minify/binding-linux-riscv64-gnu": 0.102.0 - "@oxc-minify/binding-linux-s390x-gnu": 0.102.0 - "@oxc-minify/binding-linux-x64-gnu": 0.102.0 - "@oxc-minify/binding-linux-x64-musl": 0.102.0 - "@oxc-minify/binding-openharmony-arm64": 0.102.0 - "@oxc-minify/binding-wasm32-wasi": 0.102.0 - "@oxc-minify/binding-win32-arm64-msvc": 0.102.0 - "@oxc-minify/binding-win32-x64-msvc": 0.102.0 +"oxc-minify@npm:^0.112.0": + version: 0.112.0 + resolution: "oxc-minify@npm:0.112.0" + dependencies: + "@oxc-minify/binding-android-arm-eabi": 0.112.0 + "@oxc-minify/binding-android-arm64": 0.112.0 + "@oxc-minify/binding-darwin-arm64": 0.112.0 + "@oxc-minify/binding-darwin-x64": 0.112.0 + "@oxc-minify/binding-freebsd-x64": 0.112.0 + "@oxc-minify/binding-linux-arm-gnueabihf": 0.112.0 + "@oxc-minify/binding-linux-arm-musleabihf": 0.112.0 + "@oxc-minify/binding-linux-arm64-gnu": 0.112.0 + "@oxc-minify/binding-linux-arm64-musl": 0.112.0 + "@oxc-minify/binding-linux-ppc64-gnu": 0.112.0 + "@oxc-minify/binding-linux-riscv64-gnu": 0.112.0 + "@oxc-minify/binding-linux-riscv64-musl": 0.112.0 + "@oxc-minify/binding-linux-s390x-gnu": 0.112.0 + "@oxc-minify/binding-linux-x64-gnu": 0.112.0 + "@oxc-minify/binding-linux-x64-musl": 0.112.0 + "@oxc-minify/binding-openharmony-arm64": 0.112.0 + "@oxc-minify/binding-wasm32-wasi": 0.112.0 + "@oxc-minify/binding-win32-arm64-msvc": 0.112.0 + "@oxc-minify/binding-win32-ia32-msvc": 0.112.0 + "@oxc-minify/binding-win32-x64-msvc": 0.112.0 dependenciesMeta: + "@oxc-minify/binding-android-arm-eabi": + optional: true "@oxc-minify/binding-android-arm64": optional: true "@oxc-minify/binding-darwin-arm64": @@ -8434,12 +8634,18 @@ __metadata: optional: true "@oxc-minify/binding-linux-arm-gnueabihf": optional: true + "@oxc-minify/binding-linux-arm-musleabihf": + optional: true "@oxc-minify/binding-linux-arm64-gnu": optional: true "@oxc-minify/binding-linux-arm64-musl": optional: true + "@oxc-minify/binding-linux-ppc64-gnu": + optional: true "@oxc-minify/binding-linux-riscv64-gnu": optional: true + "@oxc-minify/binding-linux-riscv64-musl": + optional: true "@oxc-minify/binding-linux-s390x-gnu": optional: true "@oxc-minify/binding-linux-x64-gnu": @@ -8452,33 +8658,42 @@ __metadata: optional: true "@oxc-minify/binding-win32-arm64-msvc": optional: true + "@oxc-minify/binding-win32-ia32-msvc": + optional: true "@oxc-minify/binding-win32-x64-msvc": optional: true - checksum: 963803d3f062485a60c4ca8ac095dbba72e2227223ce236f253b2eead15bc10e4ce8306daf272e0113aeaa567b82790fe6ac297d5494404c3dda2cc48f8ebb4a - languageName: node - linkType: hard - -"oxc-parser@npm:^0.102.0": - version: 0.102.0 - resolution: "oxc-parser@npm:0.102.0" - dependencies: - "@oxc-parser/binding-android-arm64": 0.102.0 - "@oxc-parser/binding-darwin-arm64": 0.102.0 - "@oxc-parser/binding-darwin-x64": 0.102.0 - "@oxc-parser/binding-freebsd-x64": 0.102.0 - "@oxc-parser/binding-linux-arm-gnueabihf": 0.102.0 - "@oxc-parser/binding-linux-arm64-gnu": 0.102.0 - "@oxc-parser/binding-linux-arm64-musl": 0.102.0 - "@oxc-parser/binding-linux-riscv64-gnu": 0.102.0 - "@oxc-parser/binding-linux-s390x-gnu": 0.102.0 - "@oxc-parser/binding-linux-x64-gnu": 0.102.0 - "@oxc-parser/binding-linux-x64-musl": 0.102.0 - "@oxc-parser/binding-openharmony-arm64": 0.102.0 - "@oxc-parser/binding-wasm32-wasi": 0.102.0 - "@oxc-parser/binding-win32-arm64-msvc": 0.102.0 - "@oxc-parser/binding-win32-x64-msvc": 0.102.0 - "@oxc-project/types": ^0.102.0 + checksum: 2d373b028692df4653cb85416288372951f727980ddc4c1543ecd29d4127a46f8334c4bd9627a6dcd39192cd241f6190cac4737aea6261f6dbb3c864a89525d2 + languageName: node + linkType: hard + +"oxc-parser@npm:^0.112.0": + version: 0.112.0 + resolution: "oxc-parser@npm:0.112.0" + dependencies: + "@oxc-parser/binding-android-arm-eabi": 0.112.0 + "@oxc-parser/binding-android-arm64": 0.112.0 + "@oxc-parser/binding-darwin-arm64": 0.112.0 + "@oxc-parser/binding-darwin-x64": 0.112.0 + "@oxc-parser/binding-freebsd-x64": 0.112.0 + "@oxc-parser/binding-linux-arm-gnueabihf": 0.112.0 + "@oxc-parser/binding-linux-arm-musleabihf": 0.112.0 + "@oxc-parser/binding-linux-arm64-gnu": 0.112.0 + "@oxc-parser/binding-linux-arm64-musl": 0.112.0 + "@oxc-parser/binding-linux-ppc64-gnu": 0.112.0 + "@oxc-parser/binding-linux-riscv64-gnu": 0.112.0 + "@oxc-parser/binding-linux-riscv64-musl": 0.112.0 + "@oxc-parser/binding-linux-s390x-gnu": 0.112.0 + "@oxc-parser/binding-linux-x64-gnu": 0.112.0 + "@oxc-parser/binding-linux-x64-musl": 0.112.0 + "@oxc-parser/binding-openharmony-arm64": 0.112.0 + "@oxc-parser/binding-wasm32-wasi": 0.112.0 + "@oxc-parser/binding-win32-arm64-msvc": 0.112.0 + "@oxc-parser/binding-win32-ia32-msvc": 0.112.0 + "@oxc-parser/binding-win32-x64-msvc": 0.112.0 + "@oxc-project/types": ^0.112.0 dependenciesMeta: + "@oxc-parser/binding-android-arm-eabi": + optional: true "@oxc-parser/binding-android-arm64": optional: true "@oxc-parser/binding-darwin-arm64": @@ -8489,12 +8704,18 @@ __metadata: optional: true "@oxc-parser/binding-linux-arm-gnueabihf": optional: true + "@oxc-parser/binding-linux-arm-musleabihf": + optional: true "@oxc-parser/binding-linux-arm64-gnu": optional: true "@oxc-parser/binding-linux-arm64-musl": optional: true + "@oxc-parser/binding-linux-ppc64-gnu": + optional: true "@oxc-parser/binding-linux-riscv64-gnu": optional: true + "@oxc-parser/binding-linux-riscv64-musl": + optional: true "@oxc-parser/binding-linux-s390x-gnu": optional: true "@oxc-parser/binding-linux-x64-gnu": @@ -8507,9 +8728,11 @@ __metadata: optional: true "@oxc-parser/binding-win32-arm64-msvc": optional: true + "@oxc-parser/binding-win32-ia32-msvc": + optional: true "@oxc-parser/binding-win32-x64-msvc": optional: true - checksum: 9ed004a35f059b1247dac6813f35c8b9d369fe36bf49ba958565cfd48497a3221eda0e3c8c1b2bc3b4dda9037db49cf23409b5d15501f6cf533a79e8b9324102 + checksum: ad1b54cf3d72d3b4690d202fdae3baff8cb43650b91fbdcacd1ec66b043e4a9146d941b3fec003f23cc04c20e3d8cdc7727d6675e4065ec42012db11782b839d languageName: node linkType: hard @@ -8565,26 +8788,33 @@ __metadata: languageName: node linkType: hard -"oxc-transform@npm:^0.102.0": - version: 0.102.0 - resolution: "oxc-transform@npm:0.102.0" - dependencies: - "@oxc-transform/binding-android-arm64": 0.102.0 - "@oxc-transform/binding-darwin-arm64": 0.102.0 - "@oxc-transform/binding-darwin-x64": 0.102.0 - "@oxc-transform/binding-freebsd-x64": 0.102.0 - "@oxc-transform/binding-linux-arm-gnueabihf": 0.102.0 - "@oxc-transform/binding-linux-arm64-gnu": 0.102.0 - "@oxc-transform/binding-linux-arm64-musl": 0.102.0 - "@oxc-transform/binding-linux-riscv64-gnu": 0.102.0 - "@oxc-transform/binding-linux-s390x-gnu": 0.102.0 - "@oxc-transform/binding-linux-x64-gnu": 0.102.0 - "@oxc-transform/binding-linux-x64-musl": 0.102.0 - "@oxc-transform/binding-openharmony-arm64": 0.102.0 - "@oxc-transform/binding-wasm32-wasi": 0.102.0 - "@oxc-transform/binding-win32-arm64-msvc": 0.102.0 - "@oxc-transform/binding-win32-x64-msvc": 0.102.0 +"oxc-transform@npm:^0.112.0": + version: 0.112.0 + resolution: "oxc-transform@npm:0.112.0" + dependencies: + "@oxc-transform/binding-android-arm-eabi": 0.112.0 + "@oxc-transform/binding-android-arm64": 0.112.0 + "@oxc-transform/binding-darwin-arm64": 0.112.0 + "@oxc-transform/binding-darwin-x64": 0.112.0 + "@oxc-transform/binding-freebsd-x64": 0.112.0 + "@oxc-transform/binding-linux-arm-gnueabihf": 0.112.0 + "@oxc-transform/binding-linux-arm-musleabihf": 0.112.0 + "@oxc-transform/binding-linux-arm64-gnu": 0.112.0 + "@oxc-transform/binding-linux-arm64-musl": 0.112.0 + "@oxc-transform/binding-linux-ppc64-gnu": 0.112.0 + "@oxc-transform/binding-linux-riscv64-gnu": 0.112.0 + "@oxc-transform/binding-linux-riscv64-musl": 0.112.0 + "@oxc-transform/binding-linux-s390x-gnu": 0.112.0 + "@oxc-transform/binding-linux-x64-gnu": 0.112.0 + "@oxc-transform/binding-linux-x64-musl": 0.112.0 + "@oxc-transform/binding-openharmony-arm64": 0.112.0 + "@oxc-transform/binding-wasm32-wasi": 0.112.0 + "@oxc-transform/binding-win32-arm64-msvc": 0.112.0 + "@oxc-transform/binding-win32-ia32-msvc": 0.112.0 + "@oxc-transform/binding-win32-x64-msvc": 0.112.0 dependenciesMeta: + "@oxc-transform/binding-android-arm-eabi": + optional: true "@oxc-transform/binding-android-arm64": optional: true "@oxc-transform/binding-darwin-arm64": @@ -8595,12 +8825,18 @@ __metadata: optional: true "@oxc-transform/binding-linux-arm-gnueabihf": optional: true + "@oxc-transform/binding-linux-arm-musleabihf": + optional: true "@oxc-transform/binding-linux-arm64-gnu": optional: true "@oxc-transform/binding-linux-arm64-musl": optional: true + "@oxc-transform/binding-linux-ppc64-gnu": + optional: true "@oxc-transform/binding-linux-riscv64-gnu": optional: true + "@oxc-transform/binding-linux-riscv64-musl": + optional: true "@oxc-transform/binding-linux-s390x-gnu": optional: true "@oxc-transform/binding-linux-x64-gnu": @@ -8613,20 +8849,22 @@ __metadata: optional: true "@oxc-transform/binding-win32-arm64-msvc": optional: true + "@oxc-transform/binding-win32-ia32-msvc": + optional: true "@oxc-transform/binding-win32-x64-msvc": optional: true - checksum: 18ae62b480c2a02c87f01ad040eec442944550087e1de4ca3807e48b262e255ebd1702e69ca4dfac706b9bc8488e88c93216e2153aec05e16490a42174de4ff3 + checksum: 2025b7c6548996b11536eed5ccca55326d4f17580efb3fb1b3927d06c70a807742acca0293db1623b249dafb0bb13ebccf62cb5908ab00910786821fcc5513e7 languageName: node linkType: hard -"oxc-walker@npm:^0.6.0": - version: 0.6.0 - resolution: "oxc-walker@npm:0.6.0" +"oxc-walker@npm:^0.7.0": + version: 0.7.0 + resolution: "oxc-walker@npm:0.7.0" dependencies: magic-regexp: ^0.10.0 peerDependencies: oxc-parser: ">=0.98.0" - checksum: de516db8b22e20a67c0d7ae3af584d95195e0544668ecaa07ae54bacbdc070c494b670b4f3fe5c9fcf3fe918813b9049ffea952d8d73a15022bd4915f70fc792 + checksum: 123853f3d865b3bffb63239481eaca517aeb7c462ed8205604943a7f9564bb5604602b68b00eeefebb933fee14e76e891269ab04fc2c97e226da870c8cd34249 languageName: node linkType: hard @@ -8662,7 +8900,7 @@ __metadata: languageName: node linkType: hard -"package-manager-detector@npm:^1.1.0, package-manager-detector@npm:^1.3.0": +"package-manager-detector@npm:^1.3.0": version: 1.6.0 resolution: "package-manager-detector@npm:1.6.0" checksum: 154d55225e70e32582f59b5d4a46d25716f0730a14d7e4b6f0fd76c870c720cc6f448d2becca06a15f2042492f0293cf26e5ad8fcd85d0eab0af3b9b46c0b43a @@ -8685,25 +8923,6 @@ __metadata: languageName: node linkType: hard -"parse-path@npm:^7.0.0": - version: 7.1.0 - resolution: "parse-path@npm:7.1.0" - dependencies: - protocols: ^2.0.0 - checksum: 1da6535a967b14911837bba98e5f8d16acb415b28753ff6225e3121dce71167a96c79278fbb631d695210dadae37462a9eff40d93b9c659cf1ce496fd5db9bb6 - languageName: node - linkType: hard - -"parse-url@npm:^9.2.0": - version: 9.2.0 - resolution: "parse-url@npm:9.2.0" - dependencies: - "@types/parse-path": ^7.0.0 - parse-path: ^7.0.0 - checksum: 765d4beac7de59c88007018e2a4b95ed8ff96cdcd0ff510b1ad00ab3d17f63949c7664218685394fe35af52061516c5efbba520fb760d7104b8238a6196f28c4 - languageName: node - linkType: hard - "parse5@npm:^8.0.0": version: 8.0.0 resolution: "parse5@npm:8.0.0" @@ -8772,13 +8991,13 @@ __metadata: languageName: node linkType: hard -"path-scurry@npm:^2.0.0": - version: 2.0.1 - resolution: "path-scurry@npm:2.0.1" +"path-scurry@npm:^2.0.2": + version: 2.0.2 + resolution: "path-scurry@npm:2.0.2" dependencies: lru-cache: ^11.0.0 minipass: ^7.1.2 - checksum: a022c6c38fed836079d03f96540eafd4cd989acf287b99613c82300107f366e889513ad8b671a2039a9d251122621f9c6fa649f0bd4d50acf95a6943a6692dbf + checksum: a723afe86e342e19dd1b49ce4f5b64a9a84b1e2e07ffc62f051c11623ecd461b1bf1599eee1ecacfce03dda8b6bb866a5df80c0ded45375d258ff22f631920a7 languageName: node linkType: hard @@ -8810,10 +9029,10 @@ __metadata: languageName: node linkType: hard -"perfect-debounce@npm:^2.0.0": - version: 2.0.0 - resolution: "perfect-debounce@npm:2.0.0" - checksum: b22938a06d0cb2fe202a79bf75447cf759229d206abdbecb199df6925b9ca2143e0629b7f5c03a583a54a4744bc8f6d897eb5ff1dc892220b7564bda55f58e55 +"perfect-debounce@npm:^2.0.0, perfect-debounce@npm:^2.1.0": + version: 2.1.0 + resolution: "perfect-debounce@npm:2.1.0" + checksum: 266b989898e43ac2267ff52ece467e202b830852c294a3b2ff120da649f38808f191f748b58cd3ea576c91aed1db182b449c6c047b45e58423bb711c0861aac3 languageName: node linkType: hard @@ -9305,13 +9524,13 @@ __metadata: linkType: hard "postcss@npm:^8.4.47, postcss@npm:^8.5.3, postcss@npm:^8.5.6": - version: 8.5.6 - resolution: "postcss@npm:8.5.6" + version: 8.5.8 + resolution: "postcss@npm:8.5.8" dependencies: nanoid: ^3.3.11 picocolors: ^1.1.1 source-map-js: ^1.2.1 - checksum: 20f3b5d673ffeec2b28d65436756d31ee33f65b0a8bedb3d32f556fbd5973be38c3a7fb5b959a5236c60a5db7b91b0a6b14ffaac0d717dce1b903b964ee1c1bb + checksum: 118cbec9551c7107c7884a585b45d7cce1632159065c7f6e112bbb4c4811253e78d507e49082b36d9b89f36a02a611c5a8cd210548dead55795c20c4f37ab9e8 languageName: node linkType: hard @@ -9350,33 +9569,6 @@ __metadata: languageName: node linkType: hard -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: ^2.0.2 - retry: ^0.12.0 - checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 - languageName: node - linkType: hard - -"prompts@npm:^2.4.2": - version: 2.4.2 - resolution: "prompts@npm:2.4.2" - dependencies: - kleur: ^3.0.3 - sisteransi: ^1.0.5 - checksum: d8fd1fe63820be2412c13bfc5d0a01909acc1f0367e32396962e737cb2fc52d004f3302475d5ce7d18a1e8a79985f93ff04ee03007d091029c3f9104bffc007d - languageName: node - linkType: hard - -"protocols@npm:^2.0.0, protocols@npm:^2.0.1": - version: 2.0.2 - resolution: "protocols@npm:2.0.2" - checksum: 031cc068eb800468a50eb7c1e1c528bf142fb8314f5df9b9ea3c3f9df1697a19f97b9915b1229cef694d156812393172d9c3051ef7878d26eaa8c6faa5cccec4 - languageName: node - linkType: hard - "proxy-from-env@npm:^1.1.0": version: 1.1.0 resolution: "proxy-from-env@npm:1.1.0" @@ -9398,12 +9590,12 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.14.1": - version: 6.14.1 - resolution: "qs@npm:6.14.1" +"qs@npm:^6.14.2": + version: 6.15.0 + resolution: "qs@npm:6.15.0" dependencies: side-channel: ^1.1.0 - checksum: 7fffab0344fd75bfb6b8c94b8ba17f3d3e823d25b615900f68b473c3a078e497de8eaa08f709eaaa170eedfcee50638a7159b98abef7d8c89c2ede79291522f2 + checksum: 65e797e3747fa1092e062da7b3e0684a9194e07ccab3a9467d416d2579d2feab0adf3aa4b94446e9f69ba7426589a8728f78a10a549308c97563a79d1c0d8595 languageName: node linkType: hard @@ -9475,6 +9667,16 @@ __metadata: languageName: node linkType: hard +"rc9@npm:^3.0.0": + version: 3.0.0 + resolution: "rc9@npm:3.0.0" + dependencies: + defu: ^6.1.4 + destr: ^2.0.5 + checksum: e96a8762f488b5498f6f1d466fb0b84bc309f954bb247cab6291bd7ac0fde089a8810b94295b677032d510b0c35ae34542a462b13615e6b0b0211732cab73572 + languageName: node + linkType: hard + "read-cache@npm:^1.0.0": version: 1.0.0 resolution: "read-cache@npm:1.0.0" @@ -9660,10 +9862,10 @@ __metadata: languageName: node linkType: hard -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c +"retry@npm:^0.13.1": + version: 0.13.1 + resolution: "retry@npm:0.13.1" + checksum: 47c4d5be674f7c13eee4cfe927345023972197dbbdfba5d3af7e461d13b44de1bfd663bfc80d2f601f8ef3fc8164c16dd99655a221921954a65d044a2fc1233b languageName: node linkType: hard @@ -9704,34 +9906,34 @@ __metadata: linkType: hard "rollup@npm:^4.43.0, rollup@npm:^4.55.1": - version: 4.55.2 - resolution: "rollup@npm:4.55.2" - dependencies: - "@rollup/rollup-android-arm-eabi": 4.55.2 - "@rollup/rollup-android-arm64": 4.55.2 - "@rollup/rollup-darwin-arm64": 4.55.2 - "@rollup/rollup-darwin-x64": 4.55.2 - "@rollup/rollup-freebsd-arm64": 4.55.2 - "@rollup/rollup-freebsd-x64": 4.55.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.55.2 - "@rollup/rollup-linux-arm-musleabihf": 4.55.2 - "@rollup/rollup-linux-arm64-gnu": 4.55.2 - "@rollup/rollup-linux-arm64-musl": 4.55.2 - "@rollup/rollup-linux-loong64-gnu": 4.55.2 - "@rollup/rollup-linux-loong64-musl": 4.55.2 - "@rollup/rollup-linux-ppc64-gnu": 4.55.2 - "@rollup/rollup-linux-ppc64-musl": 4.55.2 - "@rollup/rollup-linux-riscv64-gnu": 4.55.2 - "@rollup/rollup-linux-riscv64-musl": 4.55.2 - "@rollup/rollup-linux-s390x-gnu": 4.55.2 - "@rollup/rollup-linux-x64-gnu": 4.55.2 - "@rollup/rollup-linux-x64-musl": 4.55.2 - "@rollup/rollup-openbsd-x64": 4.55.2 - "@rollup/rollup-openharmony-arm64": 4.55.2 - "@rollup/rollup-win32-arm64-msvc": 4.55.2 - "@rollup/rollup-win32-ia32-msvc": 4.55.2 - "@rollup/rollup-win32-x64-gnu": 4.55.2 - "@rollup/rollup-win32-x64-msvc": 4.55.2 + version: 4.59.0 + resolution: "rollup@npm:4.59.0" + dependencies: + "@rollup/rollup-android-arm-eabi": 4.59.0 + "@rollup/rollup-android-arm64": 4.59.0 + "@rollup/rollup-darwin-arm64": 4.59.0 + "@rollup/rollup-darwin-x64": 4.59.0 + "@rollup/rollup-freebsd-arm64": 4.59.0 + "@rollup/rollup-freebsd-x64": 4.59.0 + "@rollup/rollup-linux-arm-gnueabihf": 4.59.0 + "@rollup/rollup-linux-arm-musleabihf": 4.59.0 + "@rollup/rollup-linux-arm64-gnu": 4.59.0 + "@rollup/rollup-linux-arm64-musl": 4.59.0 + "@rollup/rollup-linux-loong64-gnu": 4.59.0 + "@rollup/rollup-linux-loong64-musl": 4.59.0 + "@rollup/rollup-linux-ppc64-gnu": 4.59.0 + "@rollup/rollup-linux-ppc64-musl": 4.59.0 + "@rollup/rollup-linux-riscv64-gnu": 4.59.0 + "@rollup/rollup-linux-riscv64-musl": 4.59.0 + "@rollup/rollup-linux-s390x-gnu": 4.59.0 + "@rollup/rollup-linux-x64-gnu": 4.59.0 + "@rollup/rollup-linux-x64-musl": 4.59.0 + "@rollup/rollup-openbsd-x64": 4.59.0 + "@rollup/rollup-openharmony-arm64": 4.59.0 + "@rollup/rollup-win32-arm64-msvc": 4.59.0 + "@rollup/rollup-win32-ia32-msvc": 4.59.0 + "@rollup/rollup-win32-x64-gnu": 4.59.0 + "@rollup/rollup-win32-x64-msvc": 4.59.0 "@types/estree": 1.0.8 fsevents: ~2.3.2 dependenciesMeta: @@ -9789,7 +9991,14 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 885da67d032519d8e4fd0b055f850bfb48d03ffa8adde0f13cd89618709fcfddf161a0ab738d3d8456d391a557fd7d329ac510221d2d7fd4bbd1774ab0babfd3 + checksum: c2427c6907f05bb98c92064c1660bbeaebb11f3022ec853635e6a994f8e1d39ed18ccee8d70b219954787dca0a2eb3082941bd2c3e054071eec2569acc1c1509 + languageName: node + linkType: hard + +"rou3@npm:^0.7.12": + version: 0.7.12 + resolution: "rou3@npm:0.7.12" + checksum: adc26f00e064ab01be6fa9c62cf95390eb0fde34ca89ffeaacb4c3d24ab2e117f5b0f9e88a4c9e1fcec9f2e3a6afe339d222d7fbe4e6583323cdf842b79f752b languageName: node linkType: hard @@ -9841,10 +10050,10 @@ __metadata: languageName: node linkType: hard -"sax@npm:^1.4.1": - version: 1.4.4 - resolution: "sax@npm:1.4.4" - checksum: a6082a153b4ab00968894b3751f6fdc431b0b7edc2d086da67ee162a06716f4bc7d0546e875993e950c757039c9e3838747ab77f50578a6ce579f970a6feadaf +"sax@npm:^1.5.0": + version: 1.5.0 + resolution: "sax@npm:1.5.0" + checksum: e143cbeb6ca59345db142d97d1bbb620553beb8b166eda36ffeaba4b01af47dcf0423cd8781d0805b75feea69462cf80d0db7bf0a7e6dd87b711fda51b9153df languageName: node linkType: hard @@ -9873,12 +10082,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.6.3, semver@npm:^7.7.3": - version: 7.7.3 - resolution: "semver@npm:7.7.3" +"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.6.3, semver@npm:^7.7.3, semver@npm:^7.7.4": + version: 7.7.4 + resolution: "semver@npm:7.7.4" bin: semver: bin/semver.js - checksum: f013a3ee4607857bcd3503b6ac1d80165f7f8ea94f5d55e2d3e33df82fce487aa3313b987abf9b39e0793c83c9fc67b76c36c067625141a9f6f704ae0ea18db2 + checksum: 9b4a6a58e98b9723fafcafa393c9d4e8edefaa60b8dfbe39e30892a3604cf1f45f52df9cfb1ae1a22b44c8b3d57fec8a9bb7b3e1645431587cb272399ede152e languageName: node linkType: hard @@ -9910,10 +10119,10 @@ __metadata: languageName: node linkType: hard -"seroval@npm:^1.4.0": - version: 1.4.2 - resolution: "seroval@npm:1.4.2" - checksum: 1f0da6e4c8069b3906b52c7204255590e45ab404371354ff93d0ac74f24a62dce450658871f74566a4a8497c0b9c8c2a85102e9362f6e7d40ec7612f52ff30a7 +"seroval@npm:^1.5.0": + version: 1.5.0 + resolution: "seroval@npm:1.5.0" + checksum: 1f9f0febeb2008767f3a7b0023f016b0a77cb5351df6b91ee7572762a04243d3df84f9e247993f97f33dce6c5ae10c863a052d1a042a7f7c87a79d5d404b95fb languageName: node linkType: hard @@ -10030,14 +10239,14 @@ __metadata: languageName: node linkType: hard -"simple-git@npm:^3.28.0, simple-git@npm:^3.30.0": - version: 3.30.0 - resolution: "simple-git@npm:3.30.0" +"simple-git@npm:^3.32.2": + version: 3.32.3 + resolution: "simple-git@npm:3.32.3" dependencies: "@kwsites/file-exists": ^1.1.1 "@kwsites/promise-deferred": ^1.1.1 debug: ^4.4.0 - checksum: 16969a0674052e2f9ef5ec3a491e566153fc2b8eddd434e8111a4533cceb074f9ffc24bf7d1098f932650fcd7b38ce7cba6d3d95fd3023a7346b153fc3760414 + checksum: e8dcbc5b47f2838ca9d97297c13937256a8d5137e2953fb9a42953eaccc8ddaceacdca784c313f356a34266b0f492887dfc78aafbf1e9f126abaeb4a8d90db63 languageName: node linkType: hard @@ -10059,14 +10268,14 @@ __metadata: languageName: node linkType: hard -"site-config-stack@npm:3.2.18": - version: 3.2.18 - resolution: "site-config-stack@npm:3.2.18" +"site-config-stack@npm:3.2.21": + version: 3.2.21 + resolution: "site-config-stack@npm:3.2.21" dependencies: ufo: ^1.6.3 peerDependencies: vue: ^3 - checksum: 0f90803f021745b6f429b0ec5c377f8d3b39b87a4d66e31ad89c88068eafae112807fadf7919562100748683f6c8fe5c829ac3ff78fe97d45b51dac2fccdcc4b + checksum: 595179ac1517584fdbbf04a4b572a0c3ba0d15daf79d8e89cda5a35685541953824f47648533c1fd3095a4eb91ba0c98fd5bfc8e4179ea504be756262f467e93 languageName: node linkType: hard @@ -10085,9 +10294,9 @@ __metadata: linkType: hard "smob@npm:^1.0.0": - version: 1.5.0 - resolution: "smob@npm:1.5.0" - checksum: 436b99477ace208e44bd7cd7933532958acca507320724a8e57c730accc47c5d77e538fbc554ded145f1e3411ac0c4b55f6782bceaa5839671104fd68d4bdc7f + version: 1.6.1 + resolution: "smob@npm:1.6.1" + checksum: fbecf48d238705ed0efc2c34ec9138d274ac2e2efd4e27a9a184318af5da118c090ad744f349ddbe89dfbe9c75da46c74472ce4b9096f197c2bc1dc11e1f4bd1 languageName: node linkType: hard @@ -10112,7 +10321,7 @@ __metadata: languageName: node linkType: hard -"source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": +"source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b @@ -10150,21 +10359,21 @@ __metadata: languageName: node linkType: hard -"srvx@npm:^0.10.0": - version: 0.10.1 - resolution: "srvx@npm:0.10.1" +"srvx@npm:^0.11.2": + version: 0.11.8 + resolution: "srvx@npm:0.11.8" bin: srvx: bin/srvx.mjs - checksum: 808d1d918dc127bf0e23f01aade6d95cd70aec36a661d72eb390e5b14df996568966e594b460bac33aef2e138443a1cbb4aea7d31bb33c0b83fd5b2ed3a8d6fd + checksum: 0db52d3456914fb76b76043282f4042ab6c999d9d866cdc62c7eb3a9218336d81f60d72af13b41e0123664d08e4e2461f3f1c71a026eedc8ea88202a4929013b languageName: node linkType: hard "ssri@npm:^13.0.0": - version: 13.0.0 - resolution: "ssri@npm:13.0.0" + version: 13.0.1 + resolution: "ssri@npm:13.0.1" dependencies: minipass: ^7.0.3 - checksum: 9705dff9e686b11f3035fb4c3d44ce690359a15a54adcd6a18951f2763f670877321178dc72c37a2b804dba3287ecaa48726dbd0cff79b2715b1cc24521b3af3 + checksum: 42acbdbd485e9a5a198de2198b6fd474d1e84bff6bea5d95aa0a8aa26ea78ce44f2097ac481e767f0406de7ceccfa4669584116d4fcf2d4e2dba7034d7c34930 languageName: node linkType: hard @@ -10189,14 +10398,14 @@ __metadata: languageName: node linkType: hard -"std-env@npm:^3.10.0, std-env@npm:^3.7.0, std-env@npm:^3.8.1": +"std-env@npm:^3.10.0, std-env@npm:^3.7.0": version: 3.10.0 resolution: "std-env@npm:3.10.0" checksum: 51d641b36b0fae494a546fb8446d39a837957fbf902c765c62bd12af8e50682d141c4087ca032f1192fa90330c4f6ff23fd6c9795324efacd1684e814471e0e0 languageName: node linkType: hard -"streamx@npm:^2.15.0": +"streamx@npm:^2.12.5, streamx@npm:^2.15.0, streamx@npm:^2.21.0": version: 2.23.0 resolution: "streamx@npm:2.23.0" dependencies: @@ -10257,11 +10466,11 @@ __metadata: linkType: hard "strip-ansi@npm:^7.0.1": - version: 7.1.2 - resolution: "strip-ansi@npm:7.1.2" + version: 7.2.0 + resolution: "strip-ansi@npm:7.2.0" dependencies: - ansi-regex: ^6.0.1 - checksum: db0e3f9654e519c8a33c50fc9304d07df5649388e7da06d3aabf66d29e5ad65d5e6315d8519d409c15b32fa82c1df7e11ed6f8cd50b0e4404463f0c9d77c8d0b + ansi-regex: ^6.2.2 + checksum: 96da3bc6d73cfba1218625a3d66cf7d37a69bf0920d8735b28f9eeaafcdb6c1fe8440e1ae9eb1ba0ca355dbe8702da872e105e2e939fa93e7851b3cb5dd7d316 languageName: node linkType: hard @@ -10358,8 +10567,8 @@ __metadata: linkType: hard "svgo@npm:^4.0.0": - version: 4.0.0 - resolution: "svgo@npm:4.0.0" + version: 4.0.1 + resolution: "svgo@npm:4.0.1" dependencies: commander: ^11.1.0 css-select: ^5.1.0 @@ -10367,10 +10576,10 @@ __metadata: css-what: ^6.1.0 csso: ^5.0.5 picocolors: ^1.1.1 - sax: ^1.4.1 + sax: ^1.5.0 bin: svgo: ./bin/svgo.js - checksum: bddf57bda7b4e8252e5f8c5aa8555ec9810f963369bad17476cf21881e0b5fd3dfffcffddebd7b8b4c80b7e64b508589fad5be055d143d70b28ef0dee2583fcc + checksum: 9f3d1d44f7ca1fbb75ecf8bd01d4f0263e4175f84a1bc13459bc2b951c3a138a78d8bc80968c90c7e6aabae0c7ce0588c07ad8672257bdd4fb20048b3ba24c7d languageName: node linkType: hard @@ -10450,26 +10659,36 @@ __metadata: linkType: hard "tar-stream@npm:^3.0.0": - version: 3.1.7 - resolution: "tar-stream@npm:3.1.7" + version: 3.1.8 + resolution: "tar-stream@npm:3.1.8" dependencies: b4a: ^1.6.4 + bare-fs: ^4.5.5 fast-fifo: ^1.2.0 streamx: ^2.15.0 - checksum: 6393a6c19082b17b8dcc8e7fd349352bb29b4b8bfe1075912b91b01743ba6bb4298f5ff0b499a3bbaf82121830e96a1a59d4f21a43c0df339e54b01789cb8cc6 + checksum: 2064263433bd2ab93cecc6048101f9a104fdc402d5e15571354fcbf93b8a91c72d94b11113d2292c8dc93e0f0a34c5b57ea39418fda61cb3aaa75a21f9faecfb languageName: node linkType: hard -"tar@npm:^7.4.0, tar@npm:^7.5.2": - version: 7.5.3 - resolution: "tar@npm:7.5.3" +"tar@npm:^7.4.0, tar@npm:^7.5.4": + version: 7.5.10 + resolution: "tar@npm:7.5.10" dependencies: "@isaacs/fs-minipass": ^4.0.0 chownr: ^3.0.0 minipass: ^7.1.2 minizlib: ^3.1.0 yallist: ^5.0.0 - checksum: 146cd30727cd886c6cbed9e8f67c280f98bcab57c69d7acdb44d8a743987aac9b27cb10a98c2ea3cd416ded44ee93cad84c4acd6abad900f6aaa4845ceaf1b46 + checksum: aed1a7ae188fc80539184682bfaed7c4d5ae276f591dce67cc03b4ed8898aebde0cc195187f6abd455e3f25b24399a809ed2eaf6410ca3abc1ba30b19a94089e + languageName: node + linkType: hard + +"teex@npm:^1.0.1": + version: 1.0.1 + resolution: "teex@npm:1.0.1" + dependencies: + streamx: ^2.12.5 + checksum: 36bf7ce8bb5eb428ad7b14b695ee7fb0a02f09c1a9d8181cc42531208543a920b299d711bf78dad4ff9bcf36ac437ae8e138053734746076e3e0e7d6d76eef64 languageName: node linkType: hard @@ -10488,11 +10707,11 @@ __metadata: linkType: hard "text-decoder@npm:^1.1.0": - version: 1.2.3 - resolution: "text-decoder@npm:1.2.3" + version: 1.2.7 + resolution: "text-decoder@npm:1.2.7" dependencies: b4a: ^1.6.4 - checksum: d7642a61f9d72330eac52ff6b6e8d34dea03ebbb1e82749a8734e7892e246cf262ed70730d20c4351c5dc5334297b9cc6c0b6a8725a204a63a197d7728bb35e5 + checksum: a544f8490806675986e9703cda2d0809d7bd010adf0cc19ac9975791912ea9e6998cd4696d7d7e9392c5648e660111a865c983e8adfeb29699fab471548f82a3 languageName: node linkType: hard @@ -10552,21 +10771,21 @@ __metadata: languageName: node linkType: hard -"tldts-core@npm:^7.0.19": - version: 7.0.19 - resolution: "tldts-core@npm:7.0.19" - checksum: 9270a3e23ab43995777c7dfe9b7b37b80c4c0bfe0930934a698c26e83430fbeed55a608dc35660f77cfdb87ed574a1eb3b89208ab2b6a3241a8ae9b2d5bde0ca +"tldts-core@npm:^7.0.24": + version: 7.0.24 + resolution: "tldts-core@npm:7.0.24" + checksum: bd70535996dbd815674a8178e93b886f04347acf456ad01b3253a8a3ea9dd5d4952b6339df3ccb855b7f5a4c6f7934d58abfb7ba75150e75195297c1f74984a1 languageName: node linkType: hard "tldts@npm:^7.0.5": - version: 7.0.19 - resolution: "tldts@npm:7.0.19" + version: 7.0.24 + resolution: "tldts@npm:7.0.24" dependencies: - tldts-core: ^7.0.19 + tldts-core: ^7.0.24 bin: tldts: bin/cli.js - checksum: 24454117e4c0c6011519c3c34ff404eec03691e43ca6a5902147dff592e0dff72b37909b72bee2969466682f992bf349e442198f5acf5ffd7ea9e31b9c2ff55e + checksum: 684e65d9ecf7a7a3b7db3d533d358eee9127f9664459583be55e1193e2bff15a39adc5a66e311df987d6065b656e48bf4cea1f87344649403976d390a597fbc5 languageName: node linkType: hard @@ -10665,11 +10884,11 @@ __metadata: linkType: hard "type-fest@npm:^5.0.0": - version: 5.4.1 - resolution: "type-fest@npm:5.4.1" + version: 5.4.4 + resolution: "type-fest@npm:5.4.4" dependencies: tagged-tag: ^1.0.0 - checksum: efb13e79e7fd5735ac3103af52d62a6729b20934318ccb05e41a894bd27a34430343059c1d094f2c166579ad1d376ee1f9c2e1a44587ace895ff5cbc56c80bbd + checksum: 60733e1158b4e2ec9b484fde127164e28639a9a48d0dea154e5cf016a04b89a9d1bb8cd48c44325bb0b4393afefdbdd9eac6391ff8fd97502d1d6f116cb21bdb languageName: node linkType: hard @@ -10691,17 +10910,17 @@ __metadata: linkType: hard "typescript-eslint@npm:^8.50.0": - version: 8.53.1 - resolution: "typescript-eslint@npm:8.53.1" + version: 8.56.1 + resolution: "typescript-eslint@npm:8.56.1" dependencies: - "@typescript-eslint/eslint-plugin": 8.53.1 - "@typescript-eslint/parser": 8.53.1 - "@typescript-eslint/typescript-estree": 8.53.1 - "@typescript-eslint/utils": 8.53.1 + "@typescript-eslint/eslint-plugin": 8.56.1 + "@typescript-eslint/parser": 8.56.1 + "@typescript-eslint/typescript-estree": 8.56.1 + "@typescript-eslint/utils": 8.56.1 peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: f221dbf94f942f443484f4766e5dbad78d2bb209584ed702cd7eb91657db6f0c235efebad03a6e40284e8f3a16992ee1c0dd545bf0c450d63c949e69d29b666c + checksum: aa153347f6a2b0be1d2b522927d8d71c8159d6cf7ddeb6f3f9ca94efd70e3872ee7406a28c92b90df920b219af665411237fe1c92614049c214f3e9769df119b languageName: node linkType: hard @@ -10732,7 +10951,7 @@ __metadata: languageName: node linkType: hard -"ufo@npm:^1.4.0, ufo@npm:^1.5.4, ufo@npm:^1.6.1, ufo@npm:^1.6.2, ufo@npm:^1.6.3": +"ufo@npm:^1.4.0, ufo@npm:^1.5.4, ufo@npm:^1.6.1, ufo@npm:^1.6.3": version: 1.6.3 resolution: "ufo@npm:1.6.3" checksum: a23eff86bbbef0b9cc69c19c653c703b656c2328938576d3a60e05e246ef5a78d88b17c710afa146311c5b855950ccfee60ba8f6c8845e8d1ed6b5a9086ddad1 @@ -10772,6 +10991,13 @@ __metadata: languageName: node linkType: hard +"undici@npm:^7.21.0": + version: 7.22.0 + resolution: "undici@npm:7.22.0" + checksum: 3eaad0283f946ce12d4aa70da49d23870fcab9a3de5ae0b2855710b58fece570b1675913268dfa8b97589385ff4fb706c004a0614c3b193b617475e7d0a34e3a + languageName: node + linkType: hard + "unenv@npm:^2.0.0-rc.24": version: 2.0.0-rc.24 resolution: "unenv@npm:2.0.0-rc.24" @@ -10781,12 +11007,12 @@ __metadata: languageName: node linkType: hard -"unhead@npm:2.1.2": - version: 2.1.2 - resolution: "unhead@npm:2.1.2" +"unhead@npm:2.1.10": + version: 2.1.10 + resolution: "unhead@npm:2.1.10" dependencies: hookable: ^6.0.1 - checksum: 0a3c741c6d2c7a2f4e0be881876d651f8f5851a2fe2fac633b20a388bb9ba9bbdaa9f50011a2ae4b14168fb4d9a3ed65a9c370db8720b2f655a19ef13998c5a4 + checksum: e4db286e6df23b6f4f0ebea973fb65bf6d0768f380d27ee5d9e8e9ef24668881a2d02d1f2e68872d3866969db59dc253395d680c6438bfa55182e3560ea53f3c languageName: node linkType: hard @@ -10824,11 +11050,11 @@ __metadata: languageName: node linkType: hard -"unimport@npm:^5.5.0, unimport@npm:^5.6.0": - version: 5.6.0 - resolution: "unimport@npm:5.6.0" +"unimport@npm:^5.6.0": + version: 5.7.0 + resolution: "unimport@npm:5.7.0" dependencies: - acorn: ^8.15.0 + acorn: ^8.16.0 escape-string-regexp: ^5.0.0 estree-walker: ^3.0.3 local-pkg: ^1.1.2 @@ -10842,7 +11068,7 @@ __metadata: tinyglobby: ^0.2.15 unplugin: ^2.3.11 unplugin-utils: ^0.3.1 - checksum: ec66bd7fb444c27ea9f10c49280e3d14f433f7421fceeffa11b49857186c2220aeefeb16d466517fa9030c56815c73cc7efced26f068ee10cba8906b482c1847 + checksum: 9241fc7a8f21cf712929e250cda589e955ee5a2a5d6b0caaf02c6dc76d9a2fb4239821f2e16e459a24e687d89e5356745f99046f9b7d7326129eb1a7514e8837 languageName: node linkType: hard @@ -10871,15 +11097,17 @@ __metadata: languageName: node linkType: hard -"unplugin-ast@npm:^0.15.4": - version: 0.15.4 - resolution: "unplugin-ast@npm:0.15.4" +"unplugin-ast@npm:^0.16.0": + version: 0.16.0 + resolution: "unplugin-ast@npm:0.16.0" dependencies: - "@babel/generator": ^7.28.5 - ast-kit: ^2.2.0 + "@babel/generator": ^8.0.0-beta.4 + "@babel/parser": ^8.0.0-beta.4 + "@babel/types": ^8.0.0-beta.4 + ast-kit: ^3.0.0-beta.1 magic-string-ast: ^1.0.3 - unplugin: ^2.3.10 - checksum: 6207f0a1d1ae46c50a5f4b24c0b9be2bfaa7f3fa6e99009e51f4b976ea6dd89ffe24d98d5449e884f9ab4d6ac3014fbf01a46667a310725f13827d0ae9861fad + unplugin: ^3.0.0 + checksum: a3e32584ac0526c86d3174cd7475ff633a8db1ea2297878b098c8e890791cc9c6790b2bb7975c30a35ee69dfa88af1a9ee2fd17af5d730b687d9fa470dc8274a languageName: node linkType: hard @@ -10989,7 +11217,7 @@ __metadata: languageName: node linkType: hard -"unplugin-vue-router@npm:^0.19.0": +"unplugin-vue-router@npm:^0.19.2": version: 0.19.2 resolution: "unplugin-vue-router@npm:0.19.2" dependencies: @@ -11042,6 +11270,17 @@ __metadata: languageName: node linkType: hard +"unplugin@npm:^3.0.0": + version: 3.0.0 + resolution: "unplugin@npm:3.0.0" + dependencies: + "@jridgewell/remapping": ^2.3.5 + picomatch: ^4.0.3 + webpack-virtual-modules: ^0.6.2 + checksum: b25ad7d7f69848f5ad8094429eb50a5ecd5c038eeb04571658ad4fe1001159b7899c5a7f913af15ccd00108c47824ff9eb815dcb10b1c4e714d22084eaaa0f89 + languageName: node + linkType: hard + "unstorage@npm:^1.17.3, unstorage@npm:^1.17.4": version: 1.17.4 resolution: "unstorage@npm:1.17.4" @@ -11196,6 +11435,18 @@ __metadata: languageName: node linkType: hard +"valibot@npm:^1.2.0": + version: 1.2.0 + resolution: "valibot@npm:1.2.0" + peerDependencies: + typescript: ">=5" + peerDependenciesMeta: + typescript: + optional: true + checksum: 2d63ef5e45dc9b0d430640e908f07aa7172e8a3ee1653d92f99d8f5e0b84558e0829a2cda8c75150df91eb2f51ba3222d055753336ea6ca3af82e7ded4e71703 + languageName: node + linkType: hard + "vary@npm:^1.1.2": version: 1.1.2 resolution: "vary@npm:1.1.2" @@ -11215,7 +11466,7 @@ __metadata: languageName: node linkType: hard -"vite-hot-client@npm:^2.0.4, vite-hot-client@npm:^2.1.0": +"vite-hot-client@npm:^2.1.0": version: 2.1.0 resolution: "vite-hot-client@npm:2.1.0" peerDependencies: @@ -11224,7 +11475,7 @@ __metadata: languageName: node linkType: hard -"vite-node@npm:^5.2.0": +"vite-node@npm:^5.3.0": version: 5.3.0 resolution: "vite-node@npm:5.3.0" dependencies: @@ -11310,7 +11561,7 @@ __metadata: languageName: node linkType: hard -"vite-plugin-vue-tracer@npm:^1.0.1, vite-plugin-vue-tracer@npm:^1.1.3": +"vite-plugin-vue-tracer@npm:^1.2.0": version: 1.2.0 resolution: "vite-plugin-vue-tracer@npm:1.2.0" dependencies: @@ -11326,7 +11577,7 @@ __metadata: languageName: node linkType: hard -"vite@npm:^7.2.0, vite@npm:^7.2.7, vite@npm:^7.3.1": +"vite@npm:^7.2.0, vite@npm:^7.3.1": version: 7.3.1 resolution: "vite@npm:7.3.1" dependencies: @@ -11430,18 +11681,18 @@ __metadata: linkType: hard "vue-eslint-parser@npm:^10.2.0": - version: 10.2.0 - resolution: "vue-eslint-parser@npm:10.2.0" + version: 10.4.0 + resolution: "vue-eslint-parser@npm:10.4.0" dependencies: debug: ^4.4.0 - eslint-scope: ^8.2.0 - eslint-visitor-keys: ^4.2.0 - espree: ^10.3.0 + eslint-scope: ^8.2.0 || ^9.0.0 + eslint-visitor-keys: ^4.2.0 || ^5.0.0 + espree: ^10.3.0 || ^11.0.0 esquery: ^1.6.0 semver: ^7.6.3 peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - checksum: 164089513ebe12edc0855d35577c5e12f06d7e1d519ce481561e8ac2cad7c7247496c838b76627bf86c932ce7b2094b30c61e2d607c6793787c4b8a2ca142579 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + checksum: 12b60b416d9ab9abd4860b6b1d007e92e7a10bf88bdb0131a2b974d88680be0a88da2c85a03847875049bc54231b7dc3657bfd6d46e5fd4616c198cb49f54816 languageName: node linkType: hard @@ -11458,7 +11709,7 @@ __metadata: languageName: node linkType: hard -"vue-router@npm:^4.5.1, vue-router@npm:^4.6.3": +"vue-router@npm:^4.5.1, vue-router@npm:^4.6.4": version: 4.6.4 resolution: "vue-router@npm:4.6.4" dependencies: @@ -11470,34 +11721,34 @@ __metadata: linkType: hard "vue-tsc@npm:^3.0.6": - version: 3.2.2 - resolution: "vue-tsc@npm:3.2.2" + version: 3.2.5 + resolution: "vue-tsc@npm:3.2.5" dependencies: - "@volar/typescript": 2.4.27 - "@vue/language-core": 3.2.2 + "@volar/typescript": 2.4.28 + "@vue/language-core": 3.2.5 peerDependencies: typescript: ">=5.0.0" bin: vue-tsc: bin/vue-tsc.js - checksum: f470653d0fd67f346acf2de24045ebb93adbca3d9d9bb9a798d0ae406774c4fe9e5d96c0399054f31dcd5573e6fd386c184d2a65ab5d66ae2fa151cbb485d7bb + checksum: 956e121e324f790d4a26af7f3bada9d2feb66748489b56d5221ac2c23374ffdaec98f0df4039289dde5b7f7731ba350cbaca5f8a5b1f4db9107f4fbca125413e languageName: node linkType: hard -"vue@npm:^3.2.19, vue@npm:^3.4, vue@npm:^3.5.25, vue@npm:^3.5.26": - version: 3.5.27 - resolution: "vue@npm:3.5.27" +"vue@npm:^3.2.19, vue@npm:^3.4, vue@npm:^3.5.26, vue@npm:^3.5.27": + version: 3.5.29 + resolution: "vue@npm:3.5.29" dependencies: - "@vue/compiler-dom": 3.5.27 - "@vue/compiler-sfc": 3.5.27 - "@vue/runtime-dom": 3.5.27 - "@vue/server-renderer": 3.5.27 - "@vue/shared": 3.5.27 + "@vue/compiler-dom": 3.5.29 + "@vue/compiler-sfc": 3.5.29 + "@vue/runtime-dom": 3.5.29 + "@vue/server-renderer": 3.5.29 + "@vue/shared": 3.5.29 peerDependencies: typescript: "*" peerDependenciesMeta: typescript: optional: true - checksum: 48b3b927686661c6e38dd7ca2b02f2abdc1bbaf5507bf6e4da511e0068b7e6c814d05b2ee8d079000e8528ab254698c0091a434c911cb93ff25826f2cfa560c2 + checksum: 5284d178925232764086e60880e4e876d20ce63eba258cf9423e9b862d6b646958ec847518e0f121f8bbc9dca9b06732312981cf332d1ebafab7174ad900367c languageName: node linkType: hard @@ -11517,7 +11768,7 @@ __metadata: languageName: node linkType: hard -"webidl-conversions@npm:^8.0.0": +"webidl-conversions@npm:^8.0.1": version: 8.0.1 resolution: "webidl-conversions@npm:8.0.1" checksum: c96c267a6c2946b688108737b796f20b29687f5fd6796a44f6bd2296e66ad891c62b43e720b6695b6b327345e20b2124b0daf6c8da50128e2379e6b33605c2e7 @@ -11531,20 +11782,21 @@ __metadata: languageName: node linkType: hard -"whatwg-mimetype@npm:^4.0.0": - version: 4.0.0 - resolution: "whatwg-mimetype@npm:4.0.0" - checksum: f97edd4b4ee7e46a379f3fb0e745de29fe8b839307cc774300fd49059fcdd560d38cb8fe21eae5575b8f39b022f23477cc66e40b0355c2851ce84760339cef30 +"whatwg-mimetype@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-mimetype@npm:5.0.0" + checksum: 33380b6faefa17476a122a8584155b4af211574a45204988978fea53a871ce1a8882a2fc08f6a1d045948dc8aab18ea62c77d4538edda54eaefb7e9dd4a144a1 languageName: node linkType: hard -"whatwg-url@npm:^15.0.0, whatwg-url@npm:^15.1.0": - version: 15.1.0 - resolution: "whatwg-url@npm:15.1.0" +"whatwg-url@npm:^16.0.0": + version: 16.0.1 + resolution: "whatwg-url@npm:16.0.1" dependencies: + "@exodus/bytes": ^1.11.0 tr46: ^6.0.0 - webidl-conversions: ^8.0.0 - checksum: 30c7a3f9fcf73435e7a1f6d7bb9ae114a5a05e32f30b7c92e1a80e29a54981fdace8afe7f7e0903c770e2a29da591061f29c3efa737732e7cfa1e57bc44afec3 + webidl-conversions: ^8.0.1 + checksum: 561396b3b70b6c543d332b55b7b3ebf249dce0b9d83fedc3cf756bb52b5174b56f1aef5277987cdea40a783576ea23364ee5400ab71794d4da3b252320d665d8 languageName: node linkType: hard @@ -11581,13 +11833,13 @@ __metadata: linkType: hard "which@npm:^6.0.0": - version: 6.0.0 - resolution: "which@npm:6.0.0" + version: 6.0.1 + resolution: "which@npm:6.0.1" dependencies: - isexe: ^3.1.1 + isexe: ^4.0.0 bin: node-which: bin/which.js - checksum: df19b2cd8aac94b333fa29b42e8e371a21e634a742a3b156716f7752a5afe1d73fb5d8bce9b89326f453d96879e8fe626eb421e0117eb1a3ce9fd8c97f6b7db9 + checksum: dbea77c7d3058bf6c78bf9659d2dce4d2b57d39a15b826b2af6ac2e5a219b99dc8a831b79fdbc453c0598adb4f3f84cf9c2491fd52beb9f5d2dececcad117f68 languageName: node linkType: hard @@ -11627,7 +11879,7 @@ __metadata: languageName: node linkType: hard -"ws@npm:^8.18.3": +"ws@npm:^8.19.0": version: 8.19.0 resolution: "ws@npm:8.19.0" peerDependencies: @@ -11766,15 +12018,15 @@ __metadata: linkType: hard "youch@npm:^4.1.0-beta.13": - version: 4.1.0-beta.13 - resolution: "youch@npm:4.1.0-beta.13" + version: 4.1.0 + resolution: "youch@npm:4.1.0" dependencies: - "@poppinss/colors": ^4.1.5 - "@poppinss/dumper": ^0.6.5 - "@speed-highlight/core": ^1.2.9 + "@poppinss/colors": ^4.1.6 + "@poppinss/dumper": ^0.7.0 + "@speed-highlight/core": ^1.2.14 cookie-es: ^2.0.0 youch-core: ^0.3.3 - checksum: efb2e844ec851d61098ddb3338aec54979b959e35978ae545726ff571cc61416668a50732739f5fe2b8a6fe45ced8befffe0092dd542b0f6990e3dc86b7f7a57 + checksum: 4e3561612d0e6ae145557a3c353a2a9a77584bded774af2a45d9c36213ac046af6b4cd47820b3cfb0c2fe0dde380eb9514835d1fc1812df561b46ed25e507479 languageName: node linkType: hard