diff --git a/examples/angular/basic/.editorconfig b/examples/angular/basic/.editorconfig
new file mode 100644
index 00000000..f166060d
--- /dev/null
+++ b/examples/angular/basic/.editorconfig
@@ -0,0 +1,17 @@
+# Editor configuration, see https://editorconfig.org
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 2
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.ts]
+quote_type = single
+ij_typescript_use_double_quotes = false
+
+[*.md]
+max_line_length = off
+trim_trailing_whitespace = false
diff --git a/examples/angular/basic/.gitignore b/examples/angular/basic/.gitignore
new file mode 100644
index 00000000..b1d225e2
--- /dev/null
+++ b/examples/angular/basic/.gitignore
@@ -0,0 +1,43 @@
+# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
+
+# Compiled output
+/dist
+/tmp
+/out-tsc
+/bazel-out
+
+# Node
+/node_modules
+npm-debug.log
+yarn-error.log
+
+# IDEs and editors
+.idea/
+.project
+.classpath
+.c9/
+*.launch
+.settings/
+*.sublime-workspace
+
+# Visual Studio Code
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+.history/*
+
+# Miscellaneous
+/.angular/cache
+.sass-cache/
+/connect.lock
+/coverage
+/libpeerconnection.log
+testem.log
+/typings
+__screenshots__/
+
+# System files
+.DS_Store
+Thumbs.db
diff --git a/examples/angular/basic/.vscode/extensions.json b/examples/angular/basic/.vscode/extensions.json
new file mode 100644
index 00000000..77b37457
--- /dev/null
+++ b/examples/angular/basic/.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
+ "recommendations": ["angular.ng-template"]
+}
diff --git a/examples/angular/basic/.vscode/launch.json b/examples/angular/basic/.vscode/launch.json
new file mode 100644
index 00000000..925af837
--- /dev/null
+++ b/examples/angular/basic/.vscode/launch.json
@@ -0,0 +1,20 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "ng serve",
+ "type": "chrome",
+ "request": "launch",
+ "preLaunchTask": "npm: start",
+ "url": "http://localhost:4200/"
+ },
+ {
+ "name": "ng test",
+ "type": "chrome",
+ "request": "launch",
+ "preLaunchTask": "npm: test",
+ "url": "http://localhost:9876/debug.html"
+ }
+ ]
+}
diff --git a/examples/angular/basic/.vscode/tasks.json b/examples/angular/basic/.vscode/tasks.json
new file mode 100644
index 00000000..244306f9
--- /dev/null
+++ b/examples/angular/basic/.vscode/tasks.json
@@ -0,0 +1,42 @@
+{
+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "npm",
+ "script": "start",
+ "isBackground": true,
+ "problemMatcher": {
+ "owner": "typescript",
+ "pattern": "$tsc",
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": {
+ "regexp": "Changes detected"
+ },
+ "endsPattern": {
+ "regexp": "bundle generation (complete|failed)"
+ }
+ }
+ }
+ },
+ {
+ "type": "npm",
+ "script": "test",
+ "isBackground": true,
+ "problemMatcher": {
+ "owner": "typescript",
+ "pattern": "$tsc",
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": {
+ "regexp": "Changes detected"
+ },
+ "endsPattern": {
+ "regexp": "bundle generation (complete|failed)"
+ }
+ }
+ }
+ }
+ ]
+}
diff --git a/examples/angular/basic/.windsurf/rules/guidelines.md b/examples/angular/basic/.windsurf/rules/guidelines.md
new file mode 100644
index 00000000..676c8630
--- /dev/null
+++ b/examples/angular/basic/.windsurf/rules/guidelines.md
@@ -0,0 +1,55 @@
+You are an expert in TypeScript, Angular, and scalable web application development. You write functional, maintainable, performant, and accessible code following Angular and TypeScript best practices.
+
+## TypeScript Best Practices
+
+- Use strict type checking
+- Prefer type inference when the type is obvious
+- Avoid the `any` type; use `unknown` when type is uncertain
+
+## Angular Best Practices
+
+- Always use standalone components over NgModules
+- Must NOT set `standalone: true` inside Angular decorators. It's the default in Angular v20+.
+- Use signals for state management
+- Implement lazy loading for feature routes
+- Do NOT use the `@HostBinding` and `@HostListener` decorators. Put host bindings inside the `host` object of the `@Component` or `@Directive` decorator instead
+- Use `NgOptimizedImage` for all static images.
+ - `NgOptimizedImage` does not work for inline base64 images.
+
+## Accessibility Requirements
+
+- It MUST pass all AXE checks.
+- It MUST follow all WCAG AA minimums, including focus management, color contrast, and ARIA attributes.
+
+### Components
+
+- Keep components small and focused on a single responsibility
+- Use `input()` and `output()` functions instead of decorators
+- Use `computed()` for derived state
+- Set `changeDetection: ChangeDetectionStrategy.OnPush` in `@Component` decorator
+- Prefer inline templates for small components
+- Prefer Reactive forms instead of Template-driven ones
+- Do NOT use `ngClass`, use `class` bindings instead
+- Do NOT use `ngStyle`, use `style` bindings instead
+- When using external templates/styles, use paths relative to the component TS file.
+
+## State Management
+
+- Use signals for local component state
+- Use `computed()` for derived state
+- Keep state transformations pure and predictable
+- Do NOT use `mutate` on signals, use `update` or `set` instead
+
+## Templates
+
+- Keep templates simple and avoid complex logic
+- Use native control flow (`@if`, `@for`, `@switch`) instead of `*ngIf`, `*ngFor`, `*ngSwitch`
+- Use the async pipe to handle observables
+- Do not assume globals like (`new Date()`) are available.
+- Do not write arrow functions in templates (they are not supported).
+
+## Services
+
+- Design services around a single responsibility
+- Use the `providedIn: 'root'` option for singleton services
+- Use the `inject()` function instead of constructor injection
diff --git a/examples/angular/basic/README.md b/examples/angular/basic/README.md
new file mode 100644
index 00000000..bd58f698
--- /dev/null
+++ b/examples/angular/basic/README.md
@@ -0,0 +1,59 @@
+# Basic
+
+This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.0.5.
+
+## Development server
+
+To start a local development server, run:
+
+```bash
+ng serve
+```
+
+Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
+
+## Code scaffolding
+
+Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
+
+```bash
+ng generate component component-name
+```
+
+For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
+
+```bash
+ng generate --help
+```
+
+## Building
+
+To build the project run:
+
+```bash
+ng build
+```
+
+This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
+
+## Running unit tests
+
+To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command:
+
+```bash
+ng test
+```
+
+## Running end-to-end tests
+
+For end-to-end (e2e) testing, run:
+
+```bash
+ng e2e
+```
+
+Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
+
+## Additional Resources
+
+For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
diff --git a/examples/angular/basic/angular.json b/examples/angular/basic/angular.json
new file mode 100644
index 00000000..22e9768e
--- /dev/null
+++ b/examples/angular/basic/angular.json
@@ -0,0 +1,71 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "cli": {
+ "packageManager": "npm"
+ },
+ "newProjectRoot": "projects",
+ "projects": {
+ "basic": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular/build:application",
+ "options": {
+ "browser": "src/main.ts",
+ "tsConfig": "tsconfig.app.json",
+ "assets": [
+ {
+ "glob": "**/*",
+ "input": "public"
+ }
+ ],
+ "styles": ["src/styles.css"]
+ },
+ "configurations": {
+ "production": {
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kB",
+ "maximumError": "1MB"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "4kB",
+ "maximumError": "8kB"
+ }
+ ],
+ "outputHashing": "all"
+ },
+ "development": {
+ "optimization": false,
+ "extractLicenses": false,
+ "sourceMap": true
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular/build:dev-server",
+ "configurations": {
+ "production": {
+ "buildTarget": "basic:build:production"
+ },
+ "development": {
+ "buildTarget": "basic:build:development"
+ }
+ },
+ "defaultConfiguration": "development"
+ },
+ "test": {
+ "builder": "@angular/build:unit-test"
+ }
+ }
+ }
+ }
+}
diff --git a/examples/angular/basic/eslint.config.js b/examples/angular/basic/eslint.config.js
new file mode 100644
index 00000000..4d9c151c
--- /dev/null
+++ b/examples/angular/basic/eslint.config.js
@@ -0,0 +1,15 @@
+// @ts-check
+
+import rootConfig from '../../../eslint.config.js'
+
+/** @type {import('eslint').Linter.Config[]} */
+export default [
+ ...rootConfig,
+ {
+ languageOptions: {
+ parserOptions: {
+ project: './tsconfig.app.json',
+ },
+ },
+ },
+]
diff --git a/examples/angular/basic/package.json b/examples/angular/basic/package.json
new file mode 100644
index 00000000..900c303b
--- /dev/null
+++ b/examples/angular/basic/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "basic",
+ "version": "0.0.0",
+ "scripts": {
+ "ng": "ng",
+ "start": "ng serve",
+ "build": "ng build",
+ "watch": "ng build --watch --configuration development",
+ "test": "ng test"
+ },
+ "prettier": {
+ "printWidth": 100,
+ "singleQuote": true,
+ "overrides": [
+ {
+ "files": "*.html",
+ "options": {
+ "parser": "angular"
+ }
+ }
+ ]
+ },
+ "private": true,
+ "packageManager": "npm@11.3.0",
+ "dependencies": {
+ "@angular/common": "^21.0.0",
+ "@angular/compiler": "^21.0.0",
+ "@angular/core": "^21.0.0",
+ "@angular/forms": "^21.0.0",
+ "@angular/platform-browser": "^21.0.0",
+ "@angular/router": "^21.0.0",
+ "@tanstack/angular-pacer": "workspace:^",
+ "rxjs": "~7.8.0",
+ "tslib": "^2.3.0"
+ },
+ "devDependencies": {
+ "@angular/build": "^21.0.5",
+ "@angular/cli": "^21.0.5",
+ "@angular/compiler-cli": "^21.0.0",
+ "jsdom": "^27.1.0",
+ "typescript": "~5.9.2",
+ "vitest": "^4.0.8"
+ }
+}
diff --git a/examples/angular/basic/public/favicon.ico b/examples/angular/basic/public/favicon.ico
new file mode 100644
index 00000000..57614f9c
Binary files /dev/null and b/examples/angular/basic/public/favicon.ico differ
diff --git a/examples/angular/basic/src/app/app.config.ts b/examples/angular/basic/src/app/app.config.ts
new file mode 100644
index 00000000..46a6b419
--- /dev/null
+++ b/examples/angular/basic/src/app/app.config.ts
@@ -0,0 +1,8 @@
+import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core'
+import { provideRouter } from '@angular/router'
+
+import { routes } from './app.routes'
+
+export const appConfig: ApplicationConfig = {
+ providers: [provideBrowserGlobalErrorListeners(), provideRouter(routes)],
+}
diff --git a/examples/angular/basic/src/app/app.css b/examples/angular/basic/src/app/app.css
new file mode 100644
index 00000000..296e372b
--- /dev/null
+++ b/examples/angular/basic/src/app/app.css
@@ -0,0 +1,19 @@
+:host {
+ display: block;
+ padding: 2rem;
+ max-width: 600px;
+ margin: 0 auto;
+}
+
+input {
+ width: 100%;
+ padding: 0.5rem;
+ font-size: 1rem;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+p {
+ margin-top: 1rem;
+ color: #666;
+}
diff --git a/examples/angular/basic/src/app/app.html b/examples/angular/basic/src/app/app.html
new file mode 100644
index 00000000..11ab54b7
--- /dev/null
+++ b/examples/angular/basic/src/app/app.html
@@ -0,0 +1,9 @@
+
+
Debounced: {{ searchTerm() }}
+
+
diff --git a/examples/angular/basic/src/app/app.routes.ts b/examples/angular/basic/src/app/app.routes.ts
new file mode 100644
index 00000000..9a884b11
--- /dev/null
+++ b/examples/angular/basic/src/app/app.routes.ts
@@ -0,0 +1,3 @@
+import type { Routes } from '@angular/router'
+
+export const routes: Routes = []
diff --git a/examples/angular/basic/src/app/app.spec.ts b/examples/angular/basic/src/app/app.spec.ts
new file mode 100644
index 00000000..f9baf7f7
--- /dev/null
+++ b/examples/angular/basic/src/app/app.spec.ts
@@ -0,0 +1,23 @@
+import { TestBed } from '@angular/core/testing'
+import { App } from './app'
+
+describe('App', () => {
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [App],
+ }).compileComponents()
+ })
+
+ it('should create the app', () => {
+ const fixture = TestBed.createComponent(App)
+ const app = fixture.componentInstance
+ expect(app).toBeTruthy()
+ })
+
+ it('should render title', async () => {
+ const fixture = TestBed.createComponent(App)
+ await fixture.whenStable()
+ const compiled = fixture.nativeElement as HTMLElement
+ expect(compiled.querySelector('h1')?.textContent).toContain('Hello, basic')
+ })
+})
diff --git a/examples/angular/basic/src/app/app.ts b/examples/angular/basic/src/app/app.ts
new file mode 100644
index 00000000..076c79c8
--- /dev/null
+++ b/examples/angular/basic/src/app/app.ts
@@ -0,0 +1,15 @@
+import { Component } from '@angular/core'
+import { RouterOutlet } from '@angular/router'
+import { createDebouncedSignal } from '@tanstack/angular-pacer'
+
+@Component({
+ selector: 'app-root',
+ imports: [RouterOutlet],
+ templateUrl: './app.html',
+ styleUrl: './app.css',
+})
+export class App {
+ private readonly debounced = createDebouncedSignal('', { wait: 500 })
+ protected readonly searchTerm = this.debounced[0]
+ protected readonly setSearchTerm = this.debounced[1]
+}
diff --git a/examples/angular/basic/src/index.html b/examples/angular/basic/src/index.html
new file mode 100644
index 00000000..1b3f817b
--- /dev/null
+++ b/examples/angular/basic/src/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+ Basic
+
+
+
+
+
+
+
+
diff --git a/examples/angular/basic/src/main.ts b/examples/angular/basic/src/main.ts
new file mode 100644
index 00000000..8192dca6
--- /dev/null
+++ b/examples/angular/basic/src/main.ts
@@ -0,0 +1,5 @@
+import { bootstrapApplication } from '@angular/platform-browser'
+import { appConfig } from './app/app.config'
+import { App } from './app/app'
+
+bootstrapApplication(App, appConfig).catch((err) => console.error(err))
diff --git a/examples/angular/basic/src/styles.css b/examples/angular/basic/src/styles.css
new file mode 100644
index 00000000..90d4ee00
--- /dev/null
+++ b/examples/angular/basic/src/styles.css
@@ -0,0 +1 @@
+/* You can add global styles to this file, and also import other style files */
diff --git a/examples/angular/basic/tsconfig.app.json b/examples/angular/basic/tsconfig.app.json
new file mode 100644
index 00000000..90631899
--- /dev/null
+++ b/examples/angular/basic/tsconfig.app.json
@@ -0,0 +1,11 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "types": []
+ },
+ "include": ["./src/**/*.ts"],
+ "exclude": ["./src/**/*.spec.ts"]
+}
diff --git a/examples/angular/basic/tsconfig.json b/examples/angular/basic/tsconfig.json
new file mode 100644
index 00000000..2ab74427
--- /dev/null
+++ b/examples/angular/basic/tsconfig.json
@@ -0,0 +1,33 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "isolatedModules": true,
+ "experimentalDecorators": true,
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "preserve"
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ },
+ "files": [],
+ "references": [
+ {
+ "path": "./tsconfig.app.json"
+ },
+ {
+ "path": "./tsconfig.spec.json"
+ }
+ ]
+}
diff --git a/examples/angular/basic/tsconfig.spec.json b/examples/angular/basic/tsconfig.spec.json
new file mode 100644
index 00000000..26230b0b
--- /dev/null
+++ b/examples/angular/basic/tsconfig.spec.json
@@ -0,0 +1,10 @@
+/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
+/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/spec",
+ "types": ["vitest/globals"]
+ },
+ "include": ["src/**/*.d.ts", "src/**/*.spec.ts"]
+}
diff --git a/package.json b/package.json
index 7f73923a..9b77a9ef 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,7 @@
"clean": "find . -name 'dist' -type d -prune -exec rm -rf {} +",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +",
"clean:all": "pnpm run clean && pnpm run clean:node_modules",
- "copy:readme": "cp README.md packages/pacer/README.md && cp README.md packages/pacer-devtools/README.md && cp README.md packages/pacer-lite/README.md && cp README.md packages/react-pacer/README.md && cp README.md packages/react-pacer-devtools/README.md && cp README.md packages/solid-pacer/README.md && cp README.md packages/solid-pacer-devtools/README.md && cp README.md packages/preact-pacer-devtools/README.md",
+ "copy:readme": "cp README.md packages/pacer/README.md && cp README.md packages/pacer-devtools/README.md && cp README.md packages/pacer-lite/README.md && cp README.md packages/react-pacer/README.md && cp README.md packages/react-pacer-devtools/README.md && cp README.md packages/solid-pacer/README.md && cp README.md packages/solid-pacer-devtools/README.md && cp README.md packages/preact-pacer-devtools/README.md && cp README.md packages/angular-pacer/README.md",
"dev": "pnpm run watch",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"generate-docs": "node scripts/generate-docs.ts && pnpm run copy:readme",
@@ -76,6 +76,7 @@
"vitest": "^4.0.16"
},
"overrides": {
+ "@tanstack/angular-pacer": "workspace:*",
"@tanstack/pacer": "workspace:*",
"@tanstack/pacer-devtools": "workspace:*",
"@tanstack/pacer-lite": "workspace:*",
diff --git a/packages/angular-pacer/README.md b/packages/angular-pacer/README.md
new file mode 100644
index 00000000..2cbdba49
--- /dev/null
+++ b/packages/angular-pacer/README.md
@@ -0,0 +1,207 @@
+
+

+
+
+
+
+
+
+
+
+
+
+### [Become a Sponsor!](https://github.com/sponsors/tannerlinsley/)
+
+
+# TanStack Pacer - Angular
+
+Angular adapter for TanStack Pacer - A lightweight timing and scheduling library for debouncing, throttling, rate limiting, queuing, and batching with Angular Signals.
+
+## Installation
+
+```bash
+npm install @tanstack/angular-pacer @tanstack/pacer
+# or
+pnpm add @tanstack/angular-pacer @tanstack/pacer
+# or
+yarn add @tanstack/angular-pacer @tanstack/pacer
+```
+
+## Requirements
+
+- Angular 16+ (for Signals support)
+- @tanstack/pacer
+
+## Quick Start
+
+### Setup Provider (Optional)
+
+In your `app.config.ts` (standalone) or `app.module.ts` (module-based):
+
+```ts
+import { ApplicationConfig } from '@angular/core'
+import { providePacerOptions } from '@tanstack/angular-pacer'
+
+export const appConfig: ApplicationConfig = {
+ providers: [
+ providePacerOptions({
+ debouncer: { wait: 300 },
+ throttler: { wait: 100 },
+ }),
+ ],
+}
+```
+
+### Using Debounced Signals
+
+```ts
+import { Component, signal } from '@angular/core'
+import { createDebouncedSignal } from '@tanstack/angular-pacer'
+
+@Component({
+ selector: 'app-search',
+ template: `
+
+ Debounced: {{ debouncedQuery() }}
+ `,
+})
+export class SearchComponent {
+ searchQuery = (signal('')[(debouncedQuery, setSearchQuery)] =
+ createDebouncedSignal('', { wait: 500 }))
+}
+```
+
+### Using Debounced Callbacks
+
+```ts
+import { Component } from '@angular/core'
+import { createDebouncedCallback } from '@tanstack/angular-pacer'
+
+@Component({
+ selector: 'app-search',
+ template: ` `,
+})
+export class SearchComponent {
+ handleSearch = createDebouncedCallback(
+ (query: string) => {
+ console.log('Searching for:', query)
+ },
+ { wait: 500 },
+ )
+}
+```
+
+### Using Throttled Signals
+
+```ts
+import { Component, signal } from '@angular/core'
+import { createThrottledSignal } from '@tanstack/angular-pacer'
+
+@Component({
+ selector: 'app-scroll',
+ template: `Scroll Y: {{ scrollY() }}
`
+})
+export class ScrollComponent {
+ [scrollY, setScrollY] = createThrottledSignal(0, { wait: 100 })
+
+ ngOnInit() {
+ window.addEventListener('scroll', () => {
+ setScrollY(window.scrollY)
+ })
+ }
+}
+```
+
+### Using Async Debounced Callbacks
+
+```ts
+import { Component } from '@angular/core'
+import { createAsyncDebouncedCallback } from '@tanstack/angular-pacer'
+
+@Component({
+ selector: 'app-search',
+ template: ``,
+})
+export class SearchComponent {
+ handleSearch = createAsyncDebouncedCallback(
+ async (query: string) => {
+ const response = await fetch(`/api/search?q=${query}`)
+ return response.json()
+ },
+ { wait: 500 },
+ )
+
+ async onInput(query: string) {
+ const results = await this.handleSearch(query)
+ console.log('Results:', results)
+ }
+}
+```
+
+## API Overview
+
+### Sync Utilities
+
+- **Debouncer**: `createDebouncer`, `createDebouncedCallback`, `createDebouncedSignal`, `createDebouncedValue`
+- **Throttler**: `createThrottler`, `createThrottledCallback`, `createThrottledSignal`, `createThrottledValue`
+- **Rate Limiter**: `createRateLimiter`, `createRateLimitedCallback`, `createRateLimitedSignal`, `createRateLimitedValue`
+- **Queuer**: `createQueuer`, `createQueuedSignal`, `createQueuedValue`
+- **Batcher**: `createBatcher`, `createBatchedCallback`
+
+### Async Utilities
+
+- **Async Debouncer**: `createAsyncDebouncer`, `createAsyncDebouncedCallback`
+- **Async Throttler**: `createAsyncThrottler`, `createAsyncThrottledCallback`
+- **Async Rate Limiter**: `createAsyncRateLimiter`, `createAsyncRateLimitedCallback`
+- **Async Queuer**: `createAsyncQueuer`, `createAsyncQueuedSignal`
+- **Async Batcher**: `createAsyncBatcher`, `createAsyncBatchedCallback`
+
+### Provider
+
+- `providePacerOptions` - Provides default options for all utilities
+- `PACER_OPTIONS` - Injection token for accessing options
+- `useDefaultPacerOptions` - Function to get default options
+
+## Features
+
+- **Angular Signals Integration**: Full support for Angular Signals (16+)
+- **Type Safety**: Full TypeScript support with generics
+- **Reactive State**: Uses TanStack Store with Angular Signals for reactive state management
+- **Flexible API**: Multiple levels of abstraction to suit your needs
+- **Tree Shaking**: Deep imports available for optimal bundle size
+- **Provider Support**: Configure default options globally
+
+## Documentation
+
+For detailed documentation, visit [tanstack.com/pacer](https://tanstack.com/pacer)
+
+## Examples
+
+See the [examples directory](../../examples) for more usage examples.
+
+## License
+
+MIT
diff --git a/packages/angular-pacer/eslint.config.js b/packages/angular-pacer/eslint.config.js
new file mode 100644
index 00000000..50a11bbd
--- /dev/null
+++ b/packages/angular-pacer/eslint.config.js
@@ -0,0 +1,6 @@
+// @ts-check
+
+import rootConfig from '../../eslint.config.js'
+
+/** @type {import('eslint').Linter.Config[]} */
+export default [...rootConfig]
diff --git a/packages/angular-pacer/package.json b/packages/angular-pacer/package.json
new file mode 100644
index 00000000..e79a819c
--- /dev/null
+++ b/packages/angular-pacer/package.json
@@ -0,0 +1,120 @@
+{
+ "name": "@tanstack/angular-pacer",
+ "version": "0.19.1",
+ "description": "Utilities for debouncing and throttling functions in Angular.",
+ "author": "Tanner Linsley",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/TanStack/pacer.git",
+ "directory": "packages/angular-pacer"
+ },
+ "homepage": "https://tanstack.com/pacer",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ },
+ "keywords": [
+ "angular",
+ "debounce",
+ "throttle",
+ "rate-limit",
+ "queue",
+ "async",
+ "signals"
+ ],
+ "scripts": {
+ "clean": "premove ./build ./dist",
+ "test:eslint": "eslint ./src",
+ "test:lib": "vitest --passWithNoTests",
+ "test:lib:dev": "pnpm test:lib --watch",
+ "test:types": "tsc",
+ "build": "tsdown"
+ },
+ "type": "module",
+ "main": "./dist/index.cjs",
+ "module": "./dist/index.js",
+ "types": "./dist/index.d.cts",
+ "exports": {
+ ".": {
+ "require": "./dist/index.cjs",
+ "import": "./dist/index.js"
+ },
+ "./async-batcher": {
+ "require": "./dist/async-batcher/index.cjs",
+ "import": "./dist/async-batcher/index.js"
+ },
+ "./async-debouncer": {
+ "require": "./dist/async-debouncer/index.cjs",
+ "import": "./dist/async-debouncer/index.js"
+ },
+ "./async-queuer": {
+ "require": "./dist/async-queuer/index.cjs",
+ "import": "./dist/async-queuer/index.js"
+ },
+ "./async-rate-limiter": {
+ "require": "./dist/async-rate-limiter/index.cjs",
+ "import": "./dist/async-rate-limiter/index.js"
+ },
+ "./async-retryer": {
+ "require": "./dist/async-retryer/index.cjs",
+ "import": "./dist/async-retryer/index.js"
+ },
+ "./async-throttler": {
+ "require": "./dist/async-throttler/index.cjs",
+ "import": "./dist/async-throttler/index.js"
+ },
+ "./batcher": {
+ "require": "./dist/batcher/index.cjs",
+ "import": "./dist/batcher/index.js"
+ },
+ "./debouncer": {
+ "require": "./dist/debouncer/index.cjs",
+ "import": "./dist/debouncer/index.js"
+ },
+ "./provider": {
+ "require": "./dist/provider/index.cjs",
+ "import": "./dist/provider/index.js"
+ },
+ "./queuer": {
+ "require": "./dist/queuer/index.cjs",
+ "import": "./dist/queuer/index.js"
+ },
+ "./rate-limiter": {
+ "require": "./dist/rate-limiter/index.cjs",
+ "import": "./dist/rate-limiter/index.js"
+ },
+ "./throttler": {
+ "require": "./dist/throttler/index.cjs",
+ "import": "./dist/throttler/index.js"
+ },
+ "./types": {
+ "require": "./dist/types/index.cjs",
+ "import": "./dist/types/index.js"
+ },
+ "./utils": {
+ "require": "./dist/utils/index.cjs",
+ "import": "./dist/utils/index.js"
+ },
+ "./package.json": "./package.json"
+ },
+ "sideEffects": false,
+ "engines": {
+ "node": ">=18"
+ },
+ "files": [
+ "dist",
+ "src"
+ ],
+ "dependencies": {
+ "@tanstack/pacer": "workspace:*",
+ "@tanstack/store": "^0.8.0"
+ },
+ "devDependencies": {
+ "@angular/core": "^18.0.0",
+ "@types/node": "^25.0.3"
+ },
+ "peerDependencies": {
+ "@angular/core": ">=16.0.0"
+ }
+}
diff --git a/packages/angular-pacer/src/async-batcher/createAsyncBatchedCallback.ts b/packages/angular-pacer/src/async-batcher/createAsyncBatchedCallback.ts
new file mode 100644
index 00000000..33a752a0
--- /dev/null
+++ b/packages/angular-pacer/src/async-batcher/createAsyncBatchedCallback.ts
@@ -0,0 +1,48 @@
+import { createAsyncBatcher } from './createAsyncBatcher'
+import type { AsyncBatcherOptions } from '@tanstack/pacer/async-batcher'
+
+/**
+ * An Angular function that creates an async batched version of a callback function.
+ * This function is essentially a wrapper around `createAsyncBatcher` that provides
+ * a simplified API for basic async batching needs.
+ *
+ * The batched function will collect items and process them in batches asynchronously based on
+ * the configured conditions (maxSize, wait time, etc.).
+ *
+ * This function provides a simpler API compared to `createAsyncBatcher`, making it ideal for basic
+ * async batching needs. However, it does not expose the underlying AsyncBatcher instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual flushing
+ * - Access to batch state
+ * - Error handling callbacks
+ * - Retry support
+ *
+ * Consider using the `createAsyncBatcher` function instead.
+ *
+ * @example
+ * ```ts
+ * // Batch async API calls
+ * const batchApiCall = createAsyncBatchedCallback(
+ * async (items: Array) => {
+ * const response = await fetch('/api/batch', {
+ * method: 'POST',
+ * body: JSON.stringify(items)
+ * });
+ * return response.json();
+ * },
+ * { maxSize: 10, wait: 1000 }
+ * );
+ *
+ * // Items will be batched and sent together
+ * await batchApiCall(data1);
+ * await batchApiCall(data2);
+ * ```
+ */
+export function createAsyncBatchedCallback(
+ fn: (items: Array) => Promise,
+ options: AsyncBatcherOptions,
+): (item: TValue) => Promise {
+ const batcher = createAsyncBatcher(fn, options)
+ return (item: TValue) => batcher.addItem(item)
+}
diff --git a/packages/angular-pacer/src/async-batcher/createAsyncBatcher.ts b/packages/angular-pacer/src/async-batcher/createAsyncBatcher.ts
new file mode 100644
index 00000000..58f460c5
--- /dev/null
+++ b/packages/angular-pacer/src/async-batcher/createAsyncBatcher.ts
@@ -0,0 +1,103 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { AsyncBatcher } from '@tanstack/pacer/async-batcher'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type {
+ AsyncBatcherOptions,
+ AsyncBatcherState,
+} from '@tanstack/pacer/async-batcher'
+
+export interface AngularAsyncBatcher extends Omit<
+ AsyncBatcher,
+ 'store'
+> {
+ /**
+ * Reactive state signal that will be updated when the async batcher state changes
+ *
+ * Use this instead of `batcher.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `batcher.state` instead of `batcher.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages an AsyncBatcher instance.
+ *
+ * This is a lower-level function that provides direct access to the AsyncBatcher's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * The AsyncBatcher collects items and processes them in batches asynchronously with support for
+ * promise-based processing, error handling, retry capabilities, and abort support.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const batcher = createAsyncBatcher(
+ * async (items: Array) => {
+ * const response = await fetch('/api/batch', {
+ * method: 'POST',
+ * body: JSON.stringify(items)
+ * });
+ * return response.json();
+ * },
+ * { maxSize: 10, wait: 2000 }
+ * );
+ *
+ * // Add items
+ * batcher.addItem(data1);
+ * batcher.addItem(data2);
+ *
+ * // Access the selected state
+ * const { items, isExecuting } = batcher.state();
+ * ```
+ */
+export function createAsyncBatcher(
+ fn: (items: Array) => Promise,
+ options: AsyncBatcherOptions = {},
+ selector: (state: AsyncBatcherState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularAsyncBatcher {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().asyncBatcher,
+ ...options,
+ } as AsyncBatcherOptions
+
+ const batcher = new AsyncBatcher(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(batcher.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = batcher.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ batcher.flush()
+ })
+ }
+
+ return {
+ ...batcher,
+ state: stateSignal.asReadonly(),
+ } as AngularAsyncBatcher
+}
diff --git a/packages/angular-pacer/src/async-batcher/index.ts b/packages/angular-pacer/src/async-batcher/index.ts
new file mode 100644
index 00000000..1f385264
--- /dev/null
+++ b/packages/angular-pacer/src/async-batcher/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-batcher module
+export * from '@tanstack/pacer/async-batcher'
+
+export * from './createAsyncBatchedCallback'
+export * from './createAsyncBatcher'
diff --git a/packages/angular-pacer/src/async-debouncer/createAsyncDebouncedCallback.ts b/packages/angular-pacer/src/async-debouncer/createAsyncDebouncedCallback.ts
new file mode 100644
index 00000000..0fa448d1
--- /dev/null
+++ b/packages/angular-pacer/src/async-debouncer/createAsyncDebouncedCallback.ts
@@ -0,0 +1,46 @@
+import { createAsyncDebouncer } from './createAsyncDebouncer'
+import type { AsyncDebouncerOptions } from '@tanstack/pacer/async-debouncer'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates an async debounced version of a callback function.
+ * This function is essentially a wrapper around `createAsyncDebouncer` that provides
+ * a simplified API for basic async debouncing needs.
+ *
+ * The debounced function will only execute after the specified wait time has elapsed
+ * since its last invocation. If called again before the wait time expires, the timer
+ * resets and starts waiting again.
+ *
+ * This function provides a simpler API compared to `createAsyncDebouncer`, making it ideal for basic
+ * async debouncing needs. However, it does not expose the underlying AsyncDebouncer instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation
+ * - Access to execution counts
+ * - Error handling callbacks
+ * - Retry support
+ *
+ * Consider using the `createAsyncDebouncer` function instead.
+ *
+ * @example
+ * ```ts
+ * // Debounce an async search handler
+ * const handleSearch = createAsyncDebouncedCallback(
+ * async (query: string) => {
+ * const response = await fetch(`/api/search?q=${query}`);
+ * return response.json();
+ * },
+ * { wait: 500 }
+ * );
+ *
+ * // Use in an input
+ * const results = await handleSearch(searchQuery);
+ * ```
+ */
+export function createAsyncDebouncedCallback(
+ fn: TFn,
+ options: AsyncDebouncerOptions,
+): (...args: Parameters) => Promise> | undefined> {
+ const debouncer = createAsyncDebouncer(fn, options)
+ return (...args: Parameters) => debouncer.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/async-debouncer/createAsyncDebouncer.ts b/packages/angular-pacer/src/async-debouncer/createAsyncDebouncer.ts
new file mode 100644
index 00000000..8058291b
--- /dev/null
+++ b/packages/angular-pacer/src/async-debouncer/createAsyncDebouncer.ts
@@ -0,0 +1,129 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { AsyncDebouncer } from '@tanstack/pacer/async-debouncer'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+import type {
+ AsyncDebouncerOptions,
+ AsyncDebouncerState,
+} from '@tanstack/pacer/async-debouncer'
+
+export interface AngularAsyncDebouncer<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the async debouncer state changes
+ *
+ * Use this instead of `debouncer.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `debouncer.state` instead of `debouncer.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages an AsyncDebouncer instance.
+ *
+ * This is a lower-level function that provides direct access to the AsyncDebouncer's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * This function provides async debouncing functionality with promise support, error handling,
+ * retry capabilities, and abort support.
+ *
+ * The debouncer will only execute the function after the specified wait time has elapsed
+ * since the last call. If the function is called again before the wait time expires, the
+ * timer resets and starts waiting again.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available state properties:
+ * - `canLeadingExecute`: Whether the debouncer can execute on the leading edge
+ * - `errorCount`: Number of function executions that have resulted in errors
+ * - `isExecuting`: Whether the debounced function is currently executing asynchronously
+ * - `isPending`: Whether the debouncer is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `lastResult`: The result from the most recent successful function execution
+ * - `settleCount`: Number of function executions that have completed (either successfully or with errors)
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending' | 'executing' | 'settled')
+ * - `successCount`: Number of function executions that have completed successfully
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const debouncer = createAsyncDebouncer(
+ * async (query: string) => {
+ * const response = await fetch(`/api/search?q=${query}`);
+ * return response.json();
+ * },
+ * { wait: 500 }
+ * );
+ *
+ * // Opt-in to track isExecuting changes (optimized for loading states)
+ * const debouncer = createAsyncDebouncer(
+ * async (query: string) => fetchSearchResults(query),
+ * { wait: 500 },
+ * (state) => ({ isExecuting: state.isExecuting, isPending: state.isPending })
+ * );
+ *
+ * // In an event handler
+ * const handleChange = async (e: Event) => {
+ * const target = e.target as HTMLInputElement;
+ * const result = await debouncer.maybeExecute(target.value);
+ * console.log('Search results:', result);
+ * };
+ *
+ * // Access the selected state
+ * const { isExecuting, errorCount } = debouncer.state();
+ * ```
+ */
+export function createAsyncDebouncer<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+>(
+ fn: TFn,
+ options: AsyncDebouncerOptions,
+ selector: (state: AsyncDebouncerState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularAsyncDebouncer {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().asyncDebouncer,
+ ...options,
+ } as AsyncDebouncerOptions
+
+ const debouncer = new AsyncDebouncer(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(debouncer.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = debouncer.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ debouncer.cancel()
+ })
+ }
+
+ return {
+ ...debouncer,
+ state: stateSignal.asReadonly(),
+ } as AngularAsyncDebouncer
+}
diff --git a/packages/angular-pacer/src/async-debouncer/index.ts b/packages/angular-pacer/src/async-debouncer/index.ts
new file mode 100644
index 00000000..8790d02a
--- /dev/null
+++ b/packages/angular-pacer/src/async-debouncer/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-debouncer module
+export * from '@tanstack/pacer/async-debouncer'
+
+export * from './createAsyncDebouncedCallback'
+export * from './createAsyncDebouncer'
diff --git a/packages/angular-pacer/src/async-queuer/createAsyncQueuedSignal.ts b/packages/angular-pacer/src/async-queuer/createAsyncQueuedSignal.ts
new file mode 100644
index 00000000..f7579057
--- /dev/null
+++ b/packages/angular-pacer/src/async-queuer/createAsyncQueuedSignal.ts
@@ -0,0 +1,68 @@
+import { computed } from '@angular/core'
+import { createAsyncQueuer } from './createAsyncQueuer'
+import type { Signal } from '@angular/core';
+import type { AngularAsyncQueuer } from './createAsyncQueuer'
+import type {
+ AsyncQueuerOptions,
+ AsyncQueuerState,
+} from '@tanstack/pacer/async-queuer'
+
+/**
+ * An Angular function that creates an async queuer with managed state, combining Angular's signals with async queuing functionality.
+ * This function provides both the current queue state and queue control methods.
+ *
+ * The queue state is automatically updated whenever items are added, removed, or processed in the queue.
+ * All queue operations are reflected in the state array returned by the function.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current queue items as an array
+ * - The queuer's addItem method
+ * - The queuer instance with additional control methods
+ *
+ * @example
+ * ```ts
+ * // Default behavior - track items
+ * const [items, addItem, queuer] = createAsyncQueuedSignal(
+ * async (item) => {
+ * const response = await fetch('/api/process', {
+ * method: 'POST',
+ * body: JSON.stringify(item)
+ * });
+ * return response.json();
+ * },
+ * { concurrency: 2, wait: 1000 }
+ * );
+ *
+ * // Add items
+ * addItem(data1);
+ *
+ * // Access items
+ * console.log(items()); // [data1, ...]
+ *
+ * // Control the queue
+ * queuer.start();
+ * queuer.stop();
+ * ```
+ */
+export function createAsyncQueuedSignal<
+ TValue,
+ TSelected extends Pick, 'items'> = Pick<
+ AsyncQueuerState,
+ 'items'
+ >,
+>(
+ fn: (value: TValue) => Promise,
+ options: AsyncQueuerOptions = {},
+ selector: (state: AsyncQueuerState) => TSelected = (state) =>
+ ({ items: state.items }) as TSelected,
+): [
+ Signal>,
+ AngularAsyncQueuer['addItem'],
+ AngularAsyncQueuer,
+] {
+ const queuer = createAsyncQueuer(fn, options, selector)
+
+ const items = computed(() => queuer.state().items as Array)
+
+ return [items, queuer.addItem.bind(queuer), queuer]
+}
diff --git a/packages/angular-pacer/src/async-queuer/createAsyncQueuer.ts b/packages/angular-pacer/src/async-queuer/createAsyncQueuer.ts
new file mode 100644
index 00000000..37e14c57
--- /dev/null
+++ b/packages/angular-pacer/src/async-queuer/createAsyncQueuer.ts
@@ -0,0 +1,103 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { AsyncQueuer } from '@tanstack/pacer/async-queuer'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type {
+ AsyncQueuerOptions,
+ AsyncQueuerState,
+} from '@tanstack/pacer/async-queuer'
+
+export interface AngularAsyncQueuer extends Omit<
+ AsyncQueuer,
+ 'store'
+> {
+ /**
+ * Reactive state signal that will be updated when the async queuer state changes
+ *
+ * Use this instead of `queuer.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `queuer.state` instead of `queuer.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages an AsyncQueuer instance.
+ *
+ * This is a lower-level function that provides direct access to the AsyncQueuer's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * The AsyncQueuer processes items asynchronously with support for concurrent execution,
+ * promise-based processing, error handling, retry capabilities, and abort support.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const queuer = createAsyncQueuer(
+ * async (item: Data) => {
+ * const response = await fetch('/api/process', {
+ * method: 'POST',
+ * body: JSON.stringify(item)
+ * });
+ * return response.json();
+ * },
+ * { concurrency: 2, wait: 1000 }
+ * );
+ *
+ * // Add items
+ * queuer.addItem(data1);
+ * queuer.addItem(data2);
+ *
+ * // Access the selected state
+ * const { items, isExecuting } = queuer.state();
+ * ```
+ */
+export function createAsyncQueuer(
+ fn: (value: TValue) => Promise,
+ options: AsyncQueuerOptions = {},
+ selector: (state: AsyncQueuerState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularAsyncQueuer {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().asyncQueuer,
+ ...options,
+ } as AsyncQueuerOptions
+
+ const queuer = new AsyncQueuer(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(queuer.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = queuer.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ queuer.stop()
+ })
+ }
+
+ return {
+ ...queuer,
+ state: stateSignal.asReadonly(),
+ } as AngularAsyncQueuer
+}
diff --git a/packages/angular-pacer/src/async-queuer/index.ts b/packages/angular-pacer/src/async-queuer/index.ts
new file mode 100644
index 00000000..2cd39537
--- /dev/null
+++ b/packages/angular-pacer/src/async-queuer/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-queuer module
+export * from '@tanstack/pacer/async-queuer'
+
+export * from './createAsyncQueuedSignal'
+export * from './createAsyncQueuer'
diff --git a/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimitedCallback.ts b/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimitedCallback.ts
new file mode 100644
index 00000000..362fa77b
--- /dev/null
+++ b/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimitedCallback.ts
@@ -0,0 +1,49 @@
+import { createAsyncRateLimiter } from './createAsyncRateLimiter'
+import type { AsyncRateLimiterOptions } from '@tanstack/pacer/async-rate-limiter'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates an async rate-limited version of a callback function.
+ * This function is essentially a wrapper around `createAsyncRateLimiter` that provides
+ * a simplified API for basic async rate limiting needs.
+ *
+ * This function provides a simpler API compared to `createAsyncRateLimiter`, making it ideal for basic
+ * async rate limiting needs. However, it does not expose the underlying AsyncRateLimiter instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation/reset
+ * - Access to execution counts
+ * - Error handling callbacks
+ * - Retry support
+ *
+ * Consider using the `createAsyncRateLimiter` function instead.
+ *
+ * @example
+ * ```ts
+ * // Rate limit API calls
+ * const makeApiCall = createAsyncRateLimitedCallback(
+ * async (data: ApiData) => {
+ * const response = await fetch('/api/endpoint', {
+ * method: 'POST',
+ * body: JSON.stringify(data)
+ * });
+ * return response.json();
+ * },
+ * {
+ * limit: 5,
+ * window: 60000,
+ * windowType: 'sliding',
+ * }
+ * );
+ *
+ * // Use in event handler
+ * const result = await makeApiCall(apiData);
+ * ```
+ */
+export function createAsyncRateLimitedCallback(
+ fn: TFn,
+ options: AsyncRateLimiterOptions,
+): (...args: Parameters) => Promise> | undefined> {
+ const rateLimiter = createAsyncRateLimiter(fn, options)
+ return (...args: Parameters) => rateLimiter.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimiter.ts b/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimiter.ts
new file mode 100644
index 00000000..39d5c397
--- /dev/null
+++ b/packages/angular-pacer/src/async-rate-limiter/createAsyncRateLimiter.ts
@@ -0,0 +1,103 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { AsyncRateLimiter } from '@tanstack/pacer/async-rate-limiter'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+import type {
+ AsyncRateLimiterOptions,
+ AsyncRateLimiterState,
+} from '@tanstack/pacer/async-rate-limiter'
+
+export interface AngularAsyncRateLimiter<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the async rate limiter state changes
+ *
+ * Use this instead of `rateLimiter.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `rateLimiter.state` instead of `rateLimiter.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages an AsyncRateLimiter instance.
+ *
+ * This is a lower-level function that provides direct access to the AsyncRateLimiter's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * This function provides async rate limiting functionality with promise support, error handling,
+ * retry capabilities, and abort support.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const rateLimiter = createAsyncRateLimiter(
+ * async (id: string) => {
+ * const response = await fetch(`/api/data/${id}`);
+ * return response.json();
+ * },
+ * { limit: 5, window: 60000, windowType: 'sliding' }
+ * );
+ *
+ * // In an event handler
+ * const handleRequest = async (id: string) => {
+ * const result = await rateLimiter.maybeExecute(id);
+ * console.log('Result:', result);
+ * };
+ * ```
+ */
+export function createAsyncRateLimiter<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+>(
+ fn: TFn,
+ options: AsyncRateLimiterOptions,
+ selector: (state: AsyncRateLimiterState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularAsyncRateLimiter {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().asyncRateLimiter,
+ ...options,
+ } as AsyncRateLimiterOptions
+
+ const rateLimiter = new AsyncRateLimiter(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(rateLimiter.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = rateLimiter.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ rateLimiter.reset()
+ })
+ }
+
+ return {
+ ...rateLimiter,
+ state: stateSignal.asReadonly(),
+ } as AngularAsyncRateLimiter
+}
diff --git a/packages/angular-pacer/src/async-rate-limiter/index.ts b/packages/angular-pacer/src/async-rate-limiter/index.ts
new file mode 100644
index 00000000..6b9afa07
--- /dev/null
+++ b/packages/angular-pacer/src/async-rate-limiter/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-rate-limiter module
+export * from '@tanstack/pacer/async-rate-limiter'
+
+export * from './createAsyncRateLimitedCallback'
+export * from './createAsyncRateLimiter'
diff --git a/packages/angular-pacer/src/async-retryer/index.ts b/packages/angular-pacer/src/async-retryer/index.ts
new file mode 100644
index 00000000..371a59aa
--- /dev/null
+++ b/packages/angular-pacer/src/async-retryer/index.ts
@@ -0,0 +1,2 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-retryer module
+export * from '@tanstack/pacer/async-retryer'
diff --git a/packages/angular-pacer/src/async-throttler/createAsyncThrottledCallback.ts b/packages/angular-pacer/src/async-throttler/createAsyncThrottledCallback.ts
new file mode 100644
index 00000000..0c98bf80
--- /dev/null
+++ b/packages/angular-pacer/src/async-throttler/createAsyncThrottledCallback.ts
@@ -0,0 +1,47 @@
+import { createAsyncThrottler } from './createAsyncThrottler'
+import type { AsyncThrottlerOptions } from '@tanstack/pacer/async-throttler'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates an async throttled version of a callback function.
+ * This function is essentially a wrapper around `createAsyncThrottler` that provides
+ * a simplified API for basic async throttling needs.
+ *
+ * The throttled function will execute at most once within the specified wait time.
+ *
+ * This function provides a simpler API compared to `createAsyncThrottler`, making it ideal for basic
+ * async throttling needs. However, it does not expose the underlying AsyncThrottler instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation
+ * - Access to execution counts
+ * - Error handling callbacks
+ * - Retry support
+ *
+ * Consider using the `createAsyncThrottler` function instead.
+ *
+ * @example
+ * ```ts
+ * // Throttle an async update handler
+ * const handleUpdate = createAsyncThrottledCallback(
+ * async (data: Data) => {
+ * const response = await fetch('/api/update', {
+ * method: 'POST',
+ * body: JSON.stringify(data)
+ * });
+ * return response.json();
+ * },
+ * { wait: 1000 }
+ * );
+ *
+ * // Use in an event handler
+ * const result = await handleUpdate(updateData);
+ * ```
+ */
+export function createAsyncThrottledCallback(
+ fn: TFn,
+ options: AsyncThrottlerOptions,
+): (...args: Parameters) => Promise> | undefined> {
+ const throttler = createAsyncThrottler(fn, options)
+ return (...args: Parameters) => throttler.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/async-throttler/createAsyncThrottler.ts b/packages/angular-pacer/src/async-throttler/createAsyncThrottler.ts
new file mode 100644
index 00000000..83becc2a
--- /dev/null
+++ b/packages/angular-pacer/src/async-throttler/createAsyncThrottler.ts
@@ -0,0 +1,108 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { AsyncThrottler } from '@tanstack/pacer/async-throttler'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { AnyAsyncFunction } from '@tanstack/pacer/types'
+import type {
+ AsyncThrottlerOptions,
+ AsyncThrottlerState,
+} from '@tanstack/pacer/async-throttler'
+
+export interface AngularAsyncThrottler<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the async throttler state changes
+ *
+ * Use this instead of `throttler.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `throttler.state` instead of `throttler.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages an AsyncThrottler instance.
+ *
+ * This is a lower-level function that provides direct access to the AsyncThrottler's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * This function provides async throttling functionality with promise support, error handling,
+ * retry capabilities, and abort support.
+ *
+ * The throttler will execute the function at most once within the specified wait time.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const throttler = createAsyncThrottler(
+ * async (data: Data) => {
+ * const response = await fetch('/api/update', {
+ * method: 'POST',
+ * body: JSON.stringify(data)
+ * });
+ * return response.json();
+ * },
+ * { wait: 1000 }
+ * );
+ *
+ * // In an event handler
+ * const handleUpdate = async (data: Data) => {
+ * const result = await throttler.maybeExecute(data);
+ * console.log('Update result:', result);
+ * };
+ * ```
+ */
+export function createAsyncThrottler<
+ TFn extends AnyAsyncFunction,
+ TSelected = {},
+>(
+ fn: TFn,
+ options: AsyncThrottlerOptions,
+ selector: (state: AsyncThrottlerState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularAsyncThrottler {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().asyncThrottler,
+ ...options,
+ } as AsyncThrottlerOptions
+
+ const throttler = new AsyncThrottler(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(throttler.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = throttler.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ throttler.cancel()
+ })
+ }
+
+ return {
+ ...throttler,
+ state: stateSignal.asReadonly(),
+ } as AngularAsyncThrottler
+}
diff --git a/packages/angular-pacer/src/async-throttler/index.ts b/packages/angular-pacer/src/async-throttler/index.ts
new file mode 100644
index 00000000..8cff2599
--- /dev/null
+++ b/packages/angular-pacer/src/async-throttler/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the async-throttler module
+export * from '@tanstack/pacer/async-throttler'
+
+export * from './createAsyncThrottledCallback'
+export * from './createAsyncThrottler'
diff --git a/packages/angular-pacer/src/batcher/createBatchedCallback.ts b/packages/angular-pacer/src/batcher/createBatchedCallback.ts
new file mode 100644
index 00000000..b1d6c7ee
--- /dev/null
+++ b/packages/angular-pacer/src/batcher/createBatchedCallback.ts
@@ -0,0 +1,46 @@
+import { createBatcher } from './createBatcher'
+import type { BatcherOptions } from '@tanstack/pacer/batcher'
+
+/**
+ * An Angular function that creates a batched version of a callback function.
+ * This function is essentially a wrapper around `createBatcher` that provides
+ * a simplified API for basic batching needs.
+ *
+ * The batched function will collect items and process them in batches based on
+ * the configured conditions (maxSize, wait time, etc.).
+ *
+ * This function provides a simpler API compared to `createBatcher`, making it ideal for basic
+ * batching needs. However, it does not expose the underlying Batcher instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual flushing
+ * - Access to batch state
+ * - State tracking
+ *
+ * Consider using the `createBatcher` function instead.
+ *
+ * @example
+ * ```ts
+ * // Batch API calls
+ * const batchApiCall = createBatchedCallback(
+ * (items) => {
+ * return fetch('/api/batch', {
+ * method: 'POST',
+ * body: JSON.stringify(items)
+ * });
+ * },
+ * { maxSize: 10, wait: 1000 }
+ * );
+ *
+ * // Items will be batched and sent together
+ * batchApiCall('item1');
+ * batchApiCall('item2');
+ * ```
+ */
+export function createBatchedCallback(
+ fn: (items: Array) => void,
+ options: BatcherOptions,
+): (item: TValue) => void {
+ const batcher = createBatcher(fn, options)
+ return (item: TValue) => batcher.addItem(item)
+}
diff --git a/packages/angular-pacer/src/batcher/createBatcher.ts b/packages/angular-pacer/src/batcher/createBatcher.ts
new file mode 100644
index 00000000..6c81a837
--- /dev/null
+++ b/packages/angular-pacer/src/batcher/createBatcher.ts
@@ -0,0 +1,95 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { Batcher } from '@tanstack/pacer/batcher'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { BatcherOptions, BatcherState } from '@tanstack/pacer/batcher'
+
+export interface AngularBatcher extends Omit<
+ Batcher,
+ 'store'
+> {
+ /**
+ * Reactive state signal that will be updated when the batcher state changes
+ *
+ * Use this instead of `batcher.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `batcher.state` instead of `batcher.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages a Batcher instance.
+ *
+ * This is a lower-level function that provides direct access to the Batcher's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * The Batcher collects items and processes them in batches based on configurable conditions:
+ * - Maximum batch size
+ * - Time-based batching (process after X milliseconds)
+ * - Custom batch processing logic via getShouldExecute
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const batcher = createBatcher(
+ * (items) => console.log('Processing batch:', items),
+ * { maxSize: 5, wait: 2000 }
+ * );
+ *
+ * // Add items
+ * batcher.addItem('task1');
+ *
+ * // Access the selected state
+ * const { items, isPending } = batcher.state();
+ * ```
+ */
+export function createBatcher(
+ fn: (items: Array) => void,
+ options: BatcherOptions = {},
+ selector: (state: BatcherState) => TSelected = () =>
+ ({}) as TSelected,
+): AngularBatcher {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().batcher,
+ ...options,
+ } as BatcherOptions
+
+ const batcher = new Batcher(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(batcher.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = batcher.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ batcher.flush()
+ })
+ }
+
+ return {
+ ...batcher,
+ state: stateSignal.asReadonly(),
+ } as AngularBatcher
+}
diff --git a/packages/angular-pacer/src/batcher/index.ts b/packages/angular-pacer/src/batcher/index.ts
new file mode 100644
index 00000000..2d9fbf77
--- /dev/null
+++ b/packages/angular-pacer/src/batcher/index.ts
@@ -0,0 +1,5 @@
+// re-export everything from the core pacer package, BUT ONLY from the batcher module
+export * from '@tanstack/pacer/batcher'
+
+export * from './createBatchedCallback'
+export * from './createBatcher'
diff --git a/packages/angular-pacer/src/debouncer/createDebouncedCallback.ts b/packages/angular-pacer/src/debouncer/createDebouncedCallback.ts
new file mode 100644
index 00000000..a475e9fe
--- /dev/null
+++ b/packages/angular-pacer/src/debouncer/createDebouncedCallback.ts
@@ -0,0 +1,46 @@
+import { createDebouncer } from './createDebouncer'
+import type { DebouncerOptions } from '@tanstack/pacer/debouncer'
+import type { AnyFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates a debounced version of a callback function.
+ * This function is essentially a wrapper around `createDebouncer` that provides
+ * a simplified API for basic debouncing needs.
+ *
+ * The debounced function will only execute after the specified wait time has elapsed
+ * since its last invocation. If called again before the wait time expires, the timer
+ * resets and starts waiting again.
+ *
+ * This function provides a simpler API compared to `createDebouncer`, making it ideal for basic
+ * debouncing needs. However, it does not expose the underlying Debouncer instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation
+ * - Access to execution counts
+ * - State tracking
+ *
+ * Consider using the `createDebouncer` function instead.
+ *
+ * @example
+ * ```ts
+ * // Debounce a search handler
+ * const handleSearch = createDebouncedCallback((query: string) => {
+ * fetchSearchResults(query);
+ * }, {
+ * wait: 500 // Wait 500ms between executions
+ * });
+ *
+ * // Use in an input
+ *
+ * ```
+ */
+export function createDebouncedCallback(
+ fn: TFn,
+ options: DebouncerOptions,
+): (...args: Parameters) => void {
+ const debouncer = createDebouncer(fn, options)
+ return (...args: Parameters) => debouncer.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/debouncer/createDebouncedSignal.ts b/packages/angular-pacer/src/debouncer/createDebouncedSignal.ts
new file mode 100644
index 00000000..f666473b
--- /dev/null
+++ b/packages/angular-pacer/src/debouncer/createDebouncedSignal.ts
@@ -0,0 +1,99 @@
+import { signal } from '@angular/core'
+import { createDebouncer } from './createDebouncer'
+import type { Signal } from '@angular/core'
+import type { AngularDebouncer } from './createDebouncer'
+import type {
+ DebouncerOptions,
+ DebouncerState,
+} from '@tanstack/pacer/debouncer'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a debounced state signal, combining Angular's signal with debouncing functionality.
+ * This function provides both the current debounced value and methods to update it.
+ *
+ * The state value is only updated after the specified wait time has elapsed since the last update attempt.
+ * If another update is attempted before the wait time expires, the timer resets and starts waiting again.
+ * This is useful for handling frequent state updates that should be throttled, like search input values
+ * or window resize dimensions.
+ *
+ * The function returns a tuple containing:
+ * - The current debounced value signal
+ * - A function to update the debounced value
+ * - The debouncer instance with additional control methods and state signals
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying debouncer instance.
+ * The `selector` parameter allows you to specify which debouncer state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes. Only when you provide a selector will
+ * the reactive system track the selected state values.
+ *
+ * Available debouncer state properties:
+ * - `canLeadingExecute`: Whether the debouncer can execute on the leading edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the debouncer is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const [searchTerm, setSearchTerm, debouncer] = createDebouncedSignal('', {
+ * wait: 500 // Wait 500ms after last keystroke
+ * });
+ *
+ * // Opt-in to reactive updates when pending state changes (optimized for loading indicators)
+ * const [searchTerm, setSearchTerm, debouncer] = createDebouncedSignal(
+ * '',
+ * { wait: 500 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // Update value - will be debounced
+ * const handleChange = (e: Event) => {
+ * const target = e.target as HTMLInputElement
+ * setSearchTerm(target.value);
+ * };
+ *
+ * // Access debouncer state via signals
+ * console.log('Executions:', debouncer.state().executionCount);
+ * console.log('Is pending:', debouncer.state().isPending);
+ * ```
+ */
+export function createDebouncedSignal(
+ value: TValue,
+ initialOptions: DebouncerOptions>,
+ selector?: (state: DebouncerState>) => TSelected,
+): [
+ Signal,
+ Setter,
+ AngularDebouncer, TSelected>,
+] {
+ const debouncedValue = signal(value)
+
+ const debouncer = createDebouncer(
+ (newValue: TValue | ((prev: TValue) => TValue)) => {
+ if (typeof newValue === 'function') {
+ debouncedValue.update(newValue as (prev: TValue) => TValue)
+ } else {
+ debouncedValue.set(newValue)
+ }
+ },
+ initialOptions,
+ selector,
+ )
+
+ const setter: Setter = (
+ newValue: TValue | ((prev: TValue) => TValue),
+ ) => {
+ debouncer.maybeExecute(newValue)
+ }
+
+ return [debouncedValue.asReadonly(), setter, debouncer]
+}
diff --git a/packages/angular-pacer/src/debouncer/createDebouncedValue.ts b/packages/angular-pacer/src/debouncer/createDebouncedValue.ts
new file mode 100644
index 00000000..57ee9ed0
--- /dev/null
+++ b/packages/angular-pacer/src/debouncer/createDebouncedValue.ts
@@ -0,0 +1,90 @@
+import { effect } from '@angular/core'
+import { createDebouncedSignal } from './createDebouncedSignal'
+import type { Signal } from '@angular/core';
+import type { AngularDebouncer } from './createDebouncer'
+import type {
+ DebouncerOptions,
+ DebouncerState,
+} from '@tanstack/pacer/debouncer'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a debounced value that updates only after a specified delay.
+ * Unlike createDebouncedSignal, this function automatically tracks changes to the input signal
+ * and updates the debounced value accordingly.
+ *
+ * The debounced value will only update after the specified wait time has elapsed since
+ * the last change to the input value. If the input value changes again before the wait
+ * time expires, the timer resets and starts waiting again.
+ *
+ * This is useful for deriving debounced values from signals that change frequently,
+ * like search queries or form inputs, where you want to limit how often downstream effects
+ * or calculations occur.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current debounced value
+ * - The debouncer instance with control methods
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying debouncer instance.
+ * The `selector` parameter allows you to specify which debouncer state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes. Only when you provide a selector will
+ * the reactive system track the selected state values.
+ *
+ * Available debouncer state properties:
+ * - `canLeadingExecute`: Whether the debouncer can execute on the leading edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the debouncer is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const searchQuery = signal('');
+ * const [debouncedQuery, debouncer] = createDebouncedValue(searchQuery, {
+ * wait: 500 // Wait 500ms after last change
+ * });
+ *
+ * // Opt-in to reactive updates when pending state changes (optimized for loading indicators)
+ * const [debouncedQuery, debouncer] = createDebouncedValue(
+ * searchQuery,
+ * { wait: 500 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // debouncedQuery will update 500ms after searchQuery stops changing
+ * effect(() => {
+ * fetchSearchResults(debouncedQuery());
+ * });
+ *
+ * // Access debouncer state via signals
+ * console.log('Is pending:', debouncer.state().isPending);
+ *
+ * // Control the debouncer
+ * debouncer.cancel(); // Cancel any pending updates
+ * ```
+ */
+export function createDebouncedValue(
+ value: Signal,
+ initialOptions: DebouncerOptions>,
+ selector?: (state: DebouncerState>) => TSelected,
+): [Signal, AngularDebouncer, TSelected>] {
+ const [debouncedValue, setDebouncedValue, debouncer] = createDebouncedSignal(
+ value(),
+ initialOptions,
+ selector,
+ )
+
+ effect(() => {
+ setDebouncedValue(value())
+ })
+
+ return [debouncedValue, debouncer]
+}
diff --git a/packages/angular-pacer/src/debouncer/createDebouncer.ts b/packages/angular-pacer/src/debouncer/createDebouncer.ts
new file mode 100644
index 00000000..c0537e3b
--- /dev/null
+++ b/packages/angular-pacer/src/debouncer/createDebouncer.ts
@@ -0,0 +1,123 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { Debouncer } from '@tanstack/pacer/debouncer'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core'
+import type { Store } from '@tanstack/store'
+import type { AnyFunction } from '@tanstack/pacer/types'
+import type {
+ DebouncerOptions,
+ DebouncerState,
+} from '@tanstack/pacer/debouncer'
+
+export interface AngularDebouncer<
+ TFn extends AnyFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the debouncer state changes
+ *
+ * Use this instead of `debouncer.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `debouncer.state` instead of `debouncer.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages a Debouncer instance.
+ *
+ * This is a lower-level function that provides direct access to the Debouncer's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * This function provides debouncing functionality to limit how often a function can be called,
+ * waiting for a specified delay before executing the latest call. This is useful for handling
+ * frequent events like window resizing, scroll events, or real-time search inputs.
+ *
+ * The debouncer will only execute the function after the specified wait time has elapsed
+ * since the last call. If the function is called again before the wait time expires, the
+ * timer resets and starts waiting again.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available state properties:
+ * - `canLeadingExecute`: Whether the debouncer can execute on the leading edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the debouncer is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const debouncer = createDebouncer(
+ * (query: string) => fetchSearchResults(query),
+ * { wait: 500 }
+ * );
+ *
+ * // Opt-in to track isPending changes (optimized for loading states)
+ * const debouncer = createDebouncer(
+ * (query: string) => fetchSearchResults(query),
+ * { wait: 500 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // In an event handler
+ * const handleChange = (e: Event) => {
+ * const target = e.target as HTMLInputElement
+ * debouncer.maybeExecute(target.value);
+ * };
+ *
+ * // Access the selected state (will be empty object {} unless selector provided)
+ * const { isPending } = debouncer.state();
+ * ```
+ */
+export function createDebouncer(
+ fn: TFn,
+ options: DebouncerOptions,
+ selector: (state: DebouncerState) => TSelected = () => ({}) as TSelected,
+): AngularDebouncer {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().debouncer,
+ ...options,
+ } as DebouncerOptions
+
+ const debouncer = new Debouncer(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(debouncer.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = debouncer.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ let destroyRef: DestroyRef | null = null
+ try {
+ destroyRef = inject(DestroyRef, { optional: true })
+ } catch {
+ // Not in injection context, skip cleanup registration
+ }
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ debouncer.cancel()
+ })
+ }
+
+ return {
+ ...debouncer,
+ state: stateSignal.asReadonly(),
+ } as AngularDebouncer
+}
diff --git a/packages/angular-pacer/src/debouncer/index.ts b/packages/angular-pacer/src/debouncer/index.ts
new file mode 100644
index 00000000..fbd250e0
--- /dev/null
+++ b/packages/angular-pacer/src/debouncer/index.ts
@@ -0,0 +1,7 @@
+// re-export everything from the core pacer package, BUT ONLY from the debouncer module
+export * from '@tanstack/pacer/debouncer'
+
+export * from './createDebouncedCallback'
+export * from './createDebouncedSignal'
+export * from './createDebouncedValue'
+export * from './createDebouncer'
diff --git a/packages/angular-pacer/src/index.ts b/packages/angular-pacer/src/index.ts
new file mode 100644
index 00000000..bb2d4339
--- /dev/null
+++ b/packages/angular-pacer/src/index.ts
@@ -0,0 +1,56 @@
+// re-export everything from the core pacer package
+export * from '@tanstack/pacer'
+
+// provider
+export * from './provider/pacer-provider'
+
+/**
+ * Export every function individually - DON'T export from barrel files
+ */
+
+// async-batcher
+export * from './async-batcher/createAsyncBatchedCallback'
+export * from './async-batcher/createAsyncBatcher'
+
+// async-debouncer
+export * from './async-debouncer/createAsyncDebouncedCallback'
+export * from './async-debouncer/createAsyncDebouncer'
+
+// async-queuer
+export * from './async-queuer/createAsyncQueuedSignal'
+export * from './async-queuer/createAsyncQueuer'
+
+// async-rate-limiter
+export * from './async-rate-limiter/createAsyncRateLimitedCallback'
+export * from './async-rate-limiter/createAsyncRateLimiter'
+
+// async-throttler
+export * from './async-throttler/createAsyncThrottledCallback'
+export * from './async-throttler/createAsyncThrottler'
+
+// batcher
+export * from './batcher/createBatchedCallback'
+export * from './batcher/createBatcher'
+
+// debouncer
+export * from './debouncer/createDebouncedCallback'
+export * from './debouncer/createDebouncedSignal'
+export * from './debouncer/createDebouncedValue'
+export * from './debouncer/createDebouncer'
+
+// queuer
+export * from './queuer/createQueuedSignal'
+export * from './queuer/createQueuedValue'
+export * from './queuer/createQueuer'
+
+// rate-limiter
+export * from './rate-limiter/createRateLimitedCallback'
+export * from './rate-limiter/createRateLimitedSignal'
+export * from './rate-limiter/createRateLimitedValue'
+export * from './rate-limiter/createRateLimiter'
+
+// throttler
+export * from './throttler/createThrottledCallback'
+export * from './throttler/createThrottledSignal'
+export * from './throttler/createThrottledValue'
+export * from './throttler/createThrottler'
diff --git a/packages/angular-pacer/src/provider/index.ts b/packages/angular-pacer/src/provider/index.ts
new file mode 100644
index 00000000..1faf1616
--- /dev/null
+++ b/packages/angular-pacer/src/provider/index.ts
@@ -0,0 +1,2 @@
+export * from './pacer-context'
+export * from './pacer-provider'
diff --git a/packages/angular-pacer/src/provider/pacer-context.ts b/packages/angular-pacer/src/provider/pacer-context.ts
new file mode 100644
index 00000000..7bf86f47
--- /dev/null
+++ b/packages/angular-pacer/src/provider/pacer-context.ts
@@ -0,0 +1,46 @@
+import { InjectionToken, inject } from '@angular/core'
+import type {
+ AnyAsyncFunction,
+ AnyFunction,
+ AsyncBatcherOptions,
+ AsyncDebouncerOptions,
+ AsyncQueuerOptions,
+ AsyncRateLimiterOptions,
+ AsyncThrottlerOptions,
+ BatcherOptions,
+ DebouncerOptions,
+ QueuerOptions,
+ RateLimiterOptions,
+ ThrottlerOptions,
+} from '@tanstack/pacer'
+
+export interface PacerProviderOptions {
+ asyncBatcher?: Partial>
+ asyncDebouncer?: Partial>
+ asyncQueuer?: Partial>
+ asyncRateLimiter?: Partial>
+ asyncThrottler?: Partial>
+ batcher?: Partial>
+ debouncer?: Partial>
+ queuer?: Partial>
+ rateLimiter?: Partial>
+ throttler?: Partial>
+}
+
+const DEFAULT_OPTIONS: PacerProviderOptions = {}
+
+export const PACER_OPTIONS = new InjectionToken(
+ 'PACER_OPTIONS',
+ {
+ providedIn: 'root',
+ factory: () => DEFAULT_OPTIONS,
+ },
+)
+
+export function useDefaultPacerOptions(): PacerProviderOptions {
+ try {
+ return inject(PACER_OPTIONS, { optional: true }) ?? DEFAULT_OPTIONS
+ } catch {
+ return DEFAULT_OPTIONS
+ }
+}
diff --git a/packages/angular-pacer/src/provider/pacer-provider.ts b/packages/angular-pacer/src/provider/pacer-provider.ts
new file mode 100644
index 00000000..fe142e34
--- /dev/null
+++ b/packages/angular-pacer/src/provider/pacer-provider.ts
@@ -0,0 +1,38 @@
+import { PACER_OPTIONS } from './pacer-context'
+import type { Provider } from '@angular/core'
+import type { PacerProviderOptions } from './pacer-context'
+
+/**
+ * Provides default options for all Pacer utilities in the Angular application.
+ * Use this function when configuring your Angular application to set default options
+ * that will be used by all Pacer utilities throughout your app.
+ *
+ * @example
+ * ```ts
+ * // In your app.config.ts (standalone)
+ * export const appConfig: ApplicationConfig = {
+ * providers: [
+ * providePacerOptions({
+ * debouncer: { wait: 300 },
+ * throttler: { wait: 100 },
+ * }),
+ * ],
+ * };
+ *
+ * // Or in NgModule (module-based)
+ * @NgModule({
+ * providers: [
+ * providePacerOptions({
+ * debouncer: { wait: 300 },
+ * }),
+ * ],
+ * })
+ * export class AppModule {}
+ * ```
+ */
+export function providePacerOptions(options: PacerProviderOptions): Provider {
+ return {
+ provide: PACER_OPTIONS,
+ useValue: options,
+ }
+}
diff --git a/packages/angular-pacer/src/queuer/createQueuedSignal.ts b/packages/angular-pacer/src/queuer/createQueuedSignal.ts
new file mode 100644
index 00000000..f1ffc68f
--- /dev/null
+++ b/packages/angular-pacer/src/queuer/createQueuedSignal.ts
@@ -0,0 +1,59 @@
+import { computed } from '@angular/core'
+import { createQueuer } from './createQueuer'
+import type { Signal } from '@angular/core';
+import type { AngularQueuer } from './createQueuer'
+import type { QueuerOptions, QueuerState } from '@tanstack/pacer/queuer'
+
+/**
+ * An Angular function that creates a queuer with managed state, combining Angular's signals with queuing functionality.
+ * This function provides both the current queue state and queue control methods.
+ *
+ * The queue state is automatically updated whenever items are added, removed, or reordered in the queue.
+ * All queue operations are reflected in the state array returned by the function.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current queue items as an array
+ * - The queuer's addItem method
+ * - The queuer instance with additional control methods
+ *
+ * @example
+ * ```ts
+ * // Default behavior - track items
+ * const [items, addItem, queue] = createQueuedSignal(
+ * (item) => console.log('Processing:', item),
+ * { started: true, wait: 1000 }
+ * );
+ *
+ * // Add items
+ * addItem('task1');
+ *
+ * // Access items
+ * console.log(items()); // ['task1']
+ *
+ * // Control the queue
+ * queue.start();
+ * queue.stop();
+ * ```
+ */
+export function createQueuedSignal<
+ TValue,
+ TSelected extends Pick, 'items'> = Pick<
+ QueuerState,
+ 'items'
+ >,
+>(
+ fn: (item: TValue) => void,
+ options: QueuerOptions = {},
+ selector: (state: QueuerState) => TSelected = (state) =>
+ ({ items: state.items }) as TSelected,
+): [
+ Signal>,
+ AngularQueuer['addItem'],
+ AngularQueuer,
+] {
+ const queue = createQueuer(fn, options, selector)
+
+ const items = computed(() => queue.state().items as Array)
+
+ return [items, queue.addItem.bind(queue), queue]
+}
diff --git a/packages/angular-pacer/src/queuer/createQueuedValue.ts b/packages/angular-pacer/src/queuer/createQueuedValue.ts
new file mode 100644
index 00000000..31c85a32
--- /dev/null
+++ b/packages/angular-pacer/src/queuer/createQueuedValue.ts
@@ -0,0 +1,57 @@
+import { effect, signal } from '@angular/core'
+import { createQueuedSignal } from './createQueuedSignal'
+import type { Signal } from '@angular/core';
+import type { AngularQueuer } from './createQueuer'
+import type { QueuerOptions, QueuerState } from '@tanstack/pacer/queuer'
+
+/**
+ * An Angular function that creates a queued value that processes state changes in order with an optional delay.
+ * This function uses createQueuedSignal internally to manage a queue of state changes and apply them sequentially.
+ *
+ * The queued value will process changes in the order they are received, with optional delays between
+ * processing each change. This is useful for handling state updates that need to be processed
+ * in a specific order, like animations or sequential UI updates.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current queued value
+ * - The queuer instance with control methods
+ *
+ * @example
+ * ```ts
+ * const initialValue = signal('initial');
+ * const [value, queuer] = createQueuedValue(initialValue, {
+ * wait: 500,
+ * started: true
+ * });
+ *
+ * // Add changes to the queue
+ * queuer.addItem('new value');
+ * ```
+ */
+export function createQueuedValue<
+ TValue,
+ TSelected extends Pick, 'items'> = Pick<
+ QueuerState,
+ 'items'
+ >,
+>(
+ initialValue: Signal,
+ options: QueuerOptions = {},
+ selector?: (state: QueuerState) => TSelected,
+): [Signal, AngularQueuer] {
+ const value = signal(initialValue())
+
+ const [, addItem, queuer] = createQueuedSignal(
+ (item) => {
+ value.set(item)
+ },
+ options,
+ selector,
+ )
+
+ effect(() => {
+ addItem(initialValue())
+ })
+
+ return [value.asReadonly(), queuer]
+}
diff --git a/packages/angular-pacer/src/queuer/createQueuer.ts b/packages/angular-pacer/src/queuer/createQueuer.ts
new file mode 100644
index 00000000..b8030c4f
--- /dev/null
+++ b/packages/angular-pacer/src/queuer/createQueuer.ts
@@ -0,0 +1,99 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { Queuer } from '@tanstack/pacer/queuer'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { QueuerOptions, QueuerState } from '@tanstack/pacer/queuer'
+
+export interface AngularQueuer extends Omit<
+ Queuer,
+ 'store'
+> {
+ /**
+ * Reactive state signal that will be updated when the queuer state changes
+ *
+ * Use this instead of `queuer.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `queuer.state` instead of `queuer.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages a Queuer instance.
+ *
+ * This is a lower-level function that provides direct access to the Queuer's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * The Queuer processes items synchronously in order, with optional delays between processing each item.
+ * The queuer includes an internal tick mechanism that can be started and stopped, making it useful as a scheduler.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const queue = createQueuer(
+ * (item) => console.log('Processing:', item),
+ * { started: true, wait: 1000 }
+ * );
+ *
+ * // Opt-in to track queue contents changes
+ * const queue = createQueuer(
+ * (item) => console.log('Processing:', item),
+ * { started: true, wait: 1000 },
+ * (state) => ({ items: state.items, size: state.size })
+ * );
+ *
+ * // Add items
+ * queue.addItem('task1');
+ *
+ * // Access the selected state
+ * const { items, isRunning } = queue.state();
+ * ```
+ */
+export function createQueuer(
+ fn: (item: TValue) => void,
+ options: QueuerOptions = {},
+ selector: (state: QueuerState) => TSelected = () => ({}) as TSelected,
+): AngularQueuer {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().queuer,
+ ...options,
+ } as QueuerOptions
+
+ const queuer = new Queuer(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(queuer.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = queuer.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ queuer.stop()
+ })
+ }
+
+ return {
+ ...queuer,
+ state: stateSignal.asReadonly(),
+ } as AngularQueuer
+}
diff --git a/packages/angular-pacer/src/queuer/index.ts b/packages/angular-pacer/src/queuer/index.ts
new file mode 100644
index 00000000..3a7f48b1
--- /dev/null
+++ b/packages/angular-pacer/src/queuer/index.ts
@@ -0,0 +1,6 @@
+// re-export everything from the core pacer package, BUT ONLY from the queuer module
+export * from '@tanstack/pacer/queuer'
+
+export * from './createQueuedSignal'
+export * from './createQueuedValue'
+export * from './createQueuer'
diff --git a/packages/angular-pacer/src/rate-limiter/createRateLimitedCallback.ts b/packages/angular-pacer/src/rate-limiter/createRateLimitedCallback.ts
new file mode 100644
index 00000000..87d532e3
--- /dev/null
+++ b/packages/angular-pacer/src/rate-limiter/createRateLimitedCallback.ts
@@ -0,0 +1,45 @@
+import { createRateLimiter } from './createRateLimiter'
+import type { RateLimiterOptions } from '@tanstack/pacer/rate-limiter'
+import type { AnyFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates a rate-limited version of a callback function.
+ * This function is essentially a wrapper around `createRateLimiter` that provides
+ * a simplified API for basic rate limiting needs.
+ *
+ * Rate limiting is a simple "hard limit" approach - it allows all calls until the limit
+ * is reached, then blocks subsequent calls until the window resets. Unlike throttling
+ * or debouncing, it does not attempt to space out or intelligently collapse calls.
+ *
+ * This function provides a simpler API compared to `createRateLimiter`, making it ideal for basic
+ * rate limiting needs. However, it does not expose the underlying RateLimiter instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation/reset
+ * - Access to execution counts
+ * - State tracking
+ *
+ * Consider using the `createRateLimiter` function instead.
+ *
+ * @example
+ * ```ts
+ * // Rate limit API calls to maximum 5 calls per minute
+ * const makeApiCall = createRateLimitedCallback(
+ * (data: ApiData) => {
+ * return fetch('/api/endpoint', { method: 'POST', body: JSON.stringify(data) });
+ * },
+ * {
+ * limit: 5,
+ * window: 60000, // 1 minute
+ * windowType: 'sliding',
+ * }
+ * );
+ * ```
+ */
+export function createRateLimitedCallback(
+ fn: TFn,
+ options: RateLimiterOptions,
+): (...args: Parameters) => boolean {
+ const rateLimiter = createRateLimiter(fn, options)
+ return (...args: Parameters) => rateLimiter.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/rate-limiter/createRateLimitedSignal.ts b/packages/angular-pacer/src/rate-limiter/createRateLimitedSignal.ts
new file mode 100644
index 00000000..042af931
--- /dev/null
+++ b/packages/angular-pacer/src/rate-limiter/createRateLimitedSignal.ts
@@ -0,0 +1,82 @@
+import { signal } from '@angular/core'
+import { createRateLimiter } from './createRateLimiter'
+import type { Signal } from '@angular/core';
+import type { AngularRateLimiter } from './createRateLimiter'
+import type {
+ RateLimiterOptions,
+ RateLimiterState,
+} from '@tanstack/pacer/rate-limiter'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a rate-limited state signal, combining Angular's signal with rate limiting functionality.
+ * This function provides both the current rate-limited value and methods to update it.
+ *
+ * Rate limiting is a simple "hard limit" approach - it allows all updates until the limit is reached, then blocks
+ * subsequent updates until the window resets. Unlike throttling or debouncing, it does not attempt to space out
+ * or intelligently collapse updates.
+ *
+ * The function returns a tuple containing:
+ * - The current rate-limited value signal
+ * - A function to update the rate-limited value
+ * - The rate limiter instance with additional control methods and state signals
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying rate limiter instance.
+ * The `selector` parameter allows you to specify which rate limiter state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const [value, setValue, rateLimiter] = createRateLimitedSignal(0, {
+ * limit: 5,
+ * window: 60000,
+ * windowType: 'sliding'
+ * });
+ *
+ * // Opt-in to reactive updates when limit state changes
+ * const [value, setValue, rateLimiter] = createRateLimitedSignal(
+ * 0,
+ * { limit: 5, window: 60000 },
+ * (state) => ({ rejectionCount: state.rejectionCount })
+ * );
+ * ```
+ */
+export function createRateLimitedSignal(
+ value: TValue,
+ initialOptions: RateLimiterOptions>,
+ selector?: (state: RateLimiterState) => TSelected,
+): [
+ Signal,
+ Setter,
+ AngularRateLimiter, TSelected>,
+] {
+ const rateLimitedValue = signal(value)
+
+ const rateLimiter = createRateLimiter(
+ (newValue: TValue | ((prev: TValue) => TValue)) => {
+ if (typeof newValue === 'function') {
+ rateLimitedValue.update(newValue as (prev: TValue) => TValue)
+ } else {
+ rateLimitedValue.set(newValue)
+ }
+ },
+ initialOptions,
+ selector,
+ )
+
+ const setter: Setter = (
+ newValue: TValue | ((prev: TValue) => TValue),
+ ) => {
+ rateLimiter.maybeExecute(newValue)
+ }
+
+ return [rateLimitedValue.asReadonly(), setter, rateLimiter]
+}
diff --git a/packages/angular-pacer/src/rate-limiter/createRateLimitedValue.ts b/packages/angular-pacer/src/rate-limiter/createRateLimitedValue.ts
new file mode 100644
index 00000000..1b999c72
--- /dev/null
+++ b/packages/angular-pacer/src/rate-limiter/createRateLimitedValue.ts
@@ -0,0 +1,63 @@
+import { effect } from '@angular/core'
+import { createRateLimitedSignal } from './createRateLimitedSignal'
+import type { Signal } from '@angular/core';
+import type { AngularRateLimiter } from './createRateLimiter'
+import type {
+ RateLimiterOptions,
+ RateLimiterState,
+} from '@tanstack/pacer/rate-limiter'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a rate-limited value that updates at most a certain number of times within a time window.
+ * Unlike createRateLimitedSignal, this function automatically tracks changes to the input signal
+ * and updates the rate-limited value accordingly.
+ *
+ * The rate-limited value will update according to the configured rate limit, blocking updates
+ * once the limit is reached until the window resets.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current rate-limited value
+ * - The rate limiter instance with control methods
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying rate limiter instance.
+ * The `selector` parameter allows you to specify which rate limiter state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const value = signal(0);
+ * const [rateLimitedValue, rateLimiter] = createRateLimitedValue(value, {
+ * limit: 5,
+ * window: 60000,
+ * windowType: 'sliding'
+ * });
+ *
+ * // rateLimitedValue will update at most 5 times per 60 seconds
+ * effect(() => {
+ * updateUI(rateLimitedValue());
+ * });
+ * ```
+ */
+export function createRateLimitedValue(
+ value: Signal,
+ initialOptions: RateLimiterOptions>,
+ selector?: (state: RateLimiterState) => TSelected,
+): [Signal, AngularRateLimiter, TSelected>] {
+ const [rateLimitedValue, setRateLimitedValue, rateLimiter] =
+ createRateLimitedSignal(value(), initialOptions, selector)
+
+ effect(() => {
+ setRateLimitedValue(value())
+ })
+
+ return [rateLimitedValue, rateLimiter]
+}
diff --git a/packages/angular-pacer/src/rate-limiter/createRateLimiter.ts b/packages/angular-pacer/src/rate-limiter/createRateLimiter.ts
new file mode 100644
index 00000000..a3334156
--- /dev/null
+++ b/packages/angular-pacer/src/rate-limiter/createRateLimiter.ts
@@ -0,0 +1,132 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { RateLimiter } from '@tanstack/pacer/rate-limiter'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { AnyFunction } from '@tanstack/pacer/types'
+import type {
+ RateLimiterOptions,
+ RateLimiterState,
+} from '@tanstack/pacer/rate-limiter'
+
+export interface AngularRateLimiter<
+ TFn extends AnyFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the rate limiter state changes
+ *
+ * Use this instead of `rateLimiter.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `rateLimiter.state` instead of `rateLimiter.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>
+}
+
+/**
+ * An Angular function that creates and manages a RateLimiter instance.
+ *
+ * This is a lower-level function that provides direct access to the RateLimiter's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * Rate limiting is a simple "hard limit" approach that allows executions until a maximum count is reached within
+ * a time window, then blocks all subsequent calls until the window resets. Unlike throttling or debouncing,
+ * it does not attempt to space out or collapse executions intelligently.
+ *
+ * The rate limiter supports two types of windows:
+ * - 'fixed': A strict window that resets after the window period. All executions within the window count
+ * towards the limit, and the window resets completely after the period.
+ * - 'sliding': A rolling window that allows executions as old ones expire. This provides a more
+ * consistent rate of execution over time.
+ *
+ * For smoother execution patterns:
+ * - Use throttling when you want consistent spacing between executions (e.g. UI updates)
+ * - Use debouncing when you want to collapse rapid-fire events (e.g. search input)
+ * - Use rate limiting only when you need to enforce hard limits (e.g. API rate limits)
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available state properties:
+ * - `executionCount`: Number of function executions that have been completed
+ * - `executionTimes`: Array of timestamps when executions occurred for rate limiting calculations
+ * - `rejectionCount`: Number of function executions that have been rejected due to rate limiting
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const rateLimiter = createRateLimiter(apiCall, {
+ * limit: 5,
+ * window: 60000,
+ * windowType: 'sliding',
+ * });
+ *
+ * // Opt-in to track execution count changes
+ * const rateLimiter = createRateLimiter(
+ * apiCall,
+ * {
+ * limit: 5,
+ * window: 60000,
+ * windowType: 'sliding',
+ * },
+ * (state) => ({ executionCount: state.executionCount })
+ * );
+ *
+ * // Monitor rate limit status
+ * const handleClick = () => {
+ * const remaining = rateLimiter.getRemainingInWindow();
+ * if (remaining > 0) {
+ * rateLimiter.maybeExecute(data);
+ * } else {
+ * showRateLimitWarning();
+ * }
+ * };
+ *
+ * // Access the selected state (will be empty object {} unless selector provided)
+ * const { executionCount, rejectionCount } = rateLimiter.state();
+ * ```
+ */
+export function createRateLimiter(
+ fn: TFn,
+ options: RateLimiterOptions,
+ selector: (state: RateLimiterState) => TSelected = () => ({}) as TSelected,
+): AngularRateLimiter {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().rateLimiter,
+ ...options,
+ } as RateLimiterOptions
+
+ const rateLimiter = new RateLimiter(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(rateLimiter.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = rateLimiter.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ rateLimiter.reset()
+ })
+ }
+
+ return {
+ ...rateLimiter,
+ state: stateSignal.asReadonly(),
+ } as AngularRateLimiter
+}
diff --git a/packages/angular-pacer/src/rate-limiter/index.ts b/packages/angular-pacer/src/rate-limiter/index.ts
new file mode 100644
index 00000000..15570cb3
--- /dev/null
+++ b/packages/angular-pacer/src/rate-limiter/index.ts
@@ -0,0 +1,7 @@
+// re-export everything from the core pacer package, BUT ONLY from the rate-limiter module
+export * from '@tanstack/pacer/rate-limiter'
+
+export * from './createRateLimitedCallback'
+export * from './createRateLimitedSignal'
+export * from './createRateLimitedValue'
+export * from './createRateLimiter'
diff --git a/packages/angular-pacer/src/throttler/createThrottledCallback.ts b/packages/angular-pacer/src/throttler/createThrottledCallback.ts
new file mode 100644
index 00000000..213756f3
--- /dev/null
+++ b/packages/angular-pacer/src/throttler/createThrottledCallback.ts
@@ -0,0 +1,45 @@
+import { createThrottler } from './createThrottler'
+import type { ThrottlerOptions } from '@tanstack/pacer/throttler'
+import type { AnyFunction } from '@tanstack/pacer/types'
+
+/**
+ * An Angular function that creates a throttled version of a callback function.
+ * This function is essentially a wrapper around `createThrottler` that provides
+ * a simplified API for basic throttling needs.
+ *
+ * The throttled function will execute at most once within the specified wait time.
+ * If called multiple times within the wait period, only the first call (if leading is enabled)
+ * or the last call (if trailing is enabled) will execute.
+ *
+ * This function provides a simpler API compared to `createThrottler`, making it ideal for basic
+ * throttling needs. However, it does not expose the underlying Throttler instance.
+ *
+ * For advanced usage requiring features like:
+ * - Manual cancellation
+ * - Access to execution counts
+ * - State tracking
+ *
+ * Consider using the `createThrottler` function instead.
+ *
+ * @example
+ * ```ts
+ * // Throttle a scroll handler
+ * const handleScroll = createThrottledCallback((scrollY: number) => {
+ * updateScrollPosition(scrollY);
+ * }, {
+ * wait: 100 // Execute at most once per 100ms
+ * });
+ *
+ * // Use in an event listener
+ * window.addEventListener('scroll', () => {
+ * handleScroll(window.scrollY);
+ * });
+ * ```
+ */
+export function createThrottledCallback(
+ fn: TFn,
+ options: ThrottlerOptions,
+): (...args: Parameters) => void {
+ const throttler = createThrottler(fn, options)
+ return (...args: Parameters) => throttler.maybeExecute(...args)
+}
diff --git a/packages/angular-pacer/src/throttler/createThrottledSignal.ts b/packages/angular-pacer/src/throttler/createThrottledSignal.ts
new file mode 100644
index 00000000..dc28a3cf
--- /dev/null
+++ b/packages/angular-pacer/src/throttler/createThrottledSignal.ts
@@ -0,0 +1,95 @@
+import { signal } from '@angular/core'
+import { createThrottler } from './createThrottler'
+import type { Signal } from '@angular/core';
+import type { AngularThrottler } from './createThrottler'
+import type {
+ ThrottlerOptions,
+ ThrottlerState,
+} from '@tanstack/pacer/throttler'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a throttled state signal, combining Angular's signal with throttling functionality.
+ * This function provides both the current throttled value and methods to update it.
+ *
+ * The state value is updated at most once within the specified wait time.
+ * This is useful for handling frequent state updates that should be rate-limited, like scroll positions
+ * or mouse movements.
+ *
+ * The function returns a tuple containing:
+ * - The current throttled value signal
+ * - A function to update the throttled value
+ * - The throttler instance with additional control methods and state signals
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying throttler instance.
+ * The `selector` parameter allows you to specify which throttler state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available throttler state properties:
+ * - `canLeadingExecute`: Whether the throttler can execute on the leading edge
+ * - `canTrailingExecute`: Whether the throttler can execute on the trailing edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the throttler is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `lastExecutionTime`: Timestamp of the last execution
+ * - `nextExecutionTime`: Timestamp of the next allowed execution
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const [scrollY, setScrollY, throttler] = createThrottledSignal(0, {
+ * wait: 100 // Update at most once per 100ms
+ * });
+ *
+ * // Opt-in to reactive updates when pending state changes
+ * const [scrollY, setScrollY, throttler] = createThrottledSignal(
+ * 0,
+ * { wait: 100 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // Update value - will be throttled
+ * window.addEventListener('scroll', () => {
+ * setScrollY(window.scrollY);
+ * });
+ * ```
+ */
+export function createThrottledSignal(
+ value: TValue,
+ initialOptions: ThrottlerOptions>,
+ selector?: (state: ThrottlerState>) => TSelected,
+): [
+ Signal,
+ Setter,
+ AngularThrottler, TSelected>,
+] {
+ const throttledValue = signal(value)
+
+ const throttler = createThrottler(
+ (newValue: TValue | ((prev: TValue) => TValue)) => {
+ if (typeof newValue === 'function') {
+ throttledValue.update(newValue as (prev: TValue) => TValue)
+ } else {
+ throttledValue.set(newValue)
+ }
+ },
+ initialOptions,
+ selector,
+ )
+
+ const setter: Setter = (
+ newValue: TValue | ((prev: TValue) => TValue),
+ ) => {
+ throttler.maybeExecute(newValue)
+ }
+
+ return [throttledValue.asReadonly(), setter, throttler]
+}
diff --git a/packages/angular-pacer/src/throttler/createThrottledValue.ts b/packages/angular-pacer/src/throttler/createThrottledValue.ts
new file mode 100644
index 00000000..3e4775f6
--- /dev/null
+++ b/packages/angular-pacer/src/throttler/createThrottledValue.ts
@@ -0,0 +1,91 @@
+import { effect } from '@angular/core'
+import { createThrottledSignal } from './createThrottledSignal'
+import type { Signal } from '@angular/core';
+import type { AngularThrottler } from './createThrottler'
+import type {
+ ThrottlerOptions,
+ ThrottlerState,
+} from '@tanstack/pacer/throttler'
+
+type Setter = (value: T | ((prev: T) => T)) => void
+
+/**
+ * An Angular function that creates a throttled value that updates at most once within a specified time window.
+ * Unlike createThrottledSignal, this function automatically tracks changes to the input signal
+ * and updates the throttled value accordingly.
+ *
+ * The throttled value will update at most once within the specified wait time, regardless of
+ * how frequently the input value changes.
+ *
+ * This is useful for deriving throttled values from signals that change frequently,
+ * like scroll positions or mouse coordinates, where you want to limit how often downstream effects
+ * or calculations occur.
+ *
+ * The function returns a tuple containing:
+ * - A Signal that provides the current throttled value
+ * - The throttler instance with control methods
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for reactive state management via the underlying throttler instance.
+ * The `selector` parameter allows you to specify which throttler state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary subscriptions when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available throttler state properties:
+ * - `canLeadingExecute`: Whether the throttler can execute on the leading edge
+ * - `canTrailingExecute`: Whether the throttler can execute on the trailing edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the throttler is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `lastExecutionTime`: Timestamp of the last execution
+ * - `nextExecutionTime`: Timestamp of the next allowed execution
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const scrollY = signal(0);
+ * const [throttledScrollY, throttler] = createThrottledValue(scrollY, {
+ * wait: 100 // Update at most once per 100ms
+ * });
+ *
+ * // Opt-in to reactive updates when pending state changes
+ * const [throttledScrollY, throttler] = createThrottledValue(
+ * scrollY,
+ * { wait: 100 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // throttledScrollY will update at most once per 100ms
+ * effect(() => {
+ * updateUI(throttledScrollY());
+ * });
+ *
+ * // Access throttler state via signals
+ * console.log('Is pending:', throttler.state().isPending);
+ *
+ * // Control the throttler
+ * throttler.cancel(); // Cancel any pending updates
+ * ```
+ */
+export function createThrottledValue(
+ value: Signal,
+ initialOptions: ThrottlerOptions>,
+ selector?: (state: ThrottlerState>) => TSelected,
+): [Signal, AngularThrottler, TSelected>] {
+ const [throttledValue, setThrottledValue, throttler] = createThrottledSignal(
+ value(),
+ initialOptions,
+ selector,
+ )
+
+ effect(() => {
+ setThrottledValue(value())
+ })
+
+ return [throttledValue, throttler]
+}
diff --git a/packages/angular-pacer/src/throttler/createThrottler.ts b/packages/angular-pacer/src/throttler/createThrottler.ts
new file mode 100644
index 00000000..40ab95ed
--- /dev/null
+++ b/packages/angular-pacer/src/throttler/createThrottler.ts
@@ -0,0 +1,118 @@
+import { DestroyRef, inject, signal } from '@angular/core'
+import { Throttler } from '@tanstack/pacer/throttler'
+import { useDefaultPacerOptions } from '../provider/pacer-context'
+import type { Signal } from '@angular/core';
+import type { Store } from '@tanstack/store'
+import type { AnyFunction } from '@tanstack/pacer/types'
+import type {
+ ThrottlerOptions,
+ ThrottlerState,
+} from '@tanstack/pacer/throttler'
+
+export interface AngularThrottler<
+ TFn extends AnyFunction,
+ TSelected = {},
+> extends Omit, 'store'> {
+ /**
+ * Reactive state signal that will be updated when the throttler state changes
+ *
+ * Use this instead of `throttler.store.state`
+ */
+ readonly state: Signal>
+ /**
+ * @deprecated Use `throttler.state` instead of `throttler.store.state` if you want to read reactive state.
+ * The state on the store object is not reactive in Angular signals.
+ */
+ readonly store: Store>>
+}
+
+/**
+ * An Angular function that creates and manages a Throttler instance.
+ *
+ * This is a lower-level function that provides direct access to the Throttler's functionality.
+ * This allows you to integrate it with any state management solution you prefer.
+ *
+ * This function provides throttling functionality to limit how often a function can be called,
+ * ensuring it executes at most once within a specified time window.
+ *
+ * The throttler will execute the function immediately (if leading is enabled) and then
+ * prevent further executions until the wait period has elapsed.
+ *
+ * ## State Management and Selector
+ *
+ * The function uses TanStack Store for state management and wraps it with Angular signals.
+ * The `selector` parameter allows you to specify which state changes will trigger signal updates,
+ * optimizing performance by preventing unnecessary updates when irrelevant state changes occur.
+ *
+ * **By default, there will be no reactive state subscriptions** and you must opt-in to state
+ * tracking by providing a selector function. This prevents unnecessary updates and gives you
+ * full control over when your component tracks state changes.
+ *
+ * Available state properties:
+ * - `canLeadingExecute`: Whether the throttler can execute on the leading edge
+ * - `canTrailingExecute`: Whether the throttler can execute on the trailing edge
+ * - `executionCount`: Number of function executions that have been completed
+ * - `isPending`: Whether the throttler is waiting for the timeout to trigger execution
+ * - `lastArgs`: The arguments from the most recent call to maybeExecute
+ * - `lastExecutionTime`: Timestamp of the last execution
+ * - `nextExecutionTime`: Timestamp of the next allowed execution
+ * - `status`: Current execution status ('disabled' | 'idle' | 'pending')
+ *
+ * @example
+ * ```ts
+ * // Default behavior - no reactive state subscriptions
+ * const throttler = createThrottler(
+ * (scrollY: number) => updateScrollPosition(scrollY),
+ * { wait: 100 }
+ * );
+ *
+ * // Opt-in to track isPending changes (optimized for loading states)
+ * const throttler = createThrottler(
+ * (scrollY: number) => updateScrollPosition(scrollY),
+ * { wait: 100 },
+ * (state) => ({ isPending: state.isPending })
+ * );
+ *
+ * // In an event handler
+ * window.addEventListener('scroll', () => {
+ * throttler.maybeExecute(window.scrollY);
+ * });
+ *
+ * // Access the selected state (will be empty object {} unless selector provided)
+ * const { isPending } = throttler.state();
+ * ```
+ */
+export function createThrottler(
+ fn: TFn,
+ options: ThrottlerOptions,
+ selector: (state: ThrottlerState) => TSelected = () => ({}) as TSelected,
+): AngularThrottler {
+ const mergedOptions = {
+ ...useDefaultPacerOptions().throttler,
+ ...options,
+ } as ThrottlerOptions
+
+ const throttler = new Throttler(fn, mergedOptions)
+ const stateSignal = signal>(
+ selector(throttler.store.state) as Readonly,
+ )
+
+ // Subscribe to store changes and update signal
+ const unsubscribe = throttler.store.subscribe((state) => {
+ const selected = selector(state)
+ stateSignal.set(selected as Readonly)
+ })
+
+ const destroyRef = inject(DestroyRef, { optional: true })
+ if (destroyRef) {
+ destroyRef.onDestroy(() => {
+ unsubscribe()
+ throttler.cancel()
+ })
+ }
+
+ return {
+ ...throttler,
+ state: stateSignal.asReadonly(),
+ } as AngularThrottler
+}
diff --git a/packages/angular-pacer/src/throttler/index.ts b/packages/angular-pacer/src/throttler/index.ts
new file mode 100644
index 00000000..b80982b1
--- /dev/null
+++ b/packages/angular-pacer/src/throttler/index.ts
@@ -0,0 +1,7 @@
+// re-export everything from the core pacer package, BUT ONLY from the throttler module
+export * from '@tanstack/pacer/throttler'
+
+export * from './createThrottledCallback'
+export * from './createThrottledSignal'
+export * from './createThrottledValue'
+export * from './createThrottler'
diff --git a/packages/angular-pacer/src/types/index.ts b/packages/angular-pacer/src/types/index.ts
new file mode 100644
index 00000000..bc0ca24c
--- /dev/null
+++ b/packages/angular-pacer/src/types/index.ts
@@ -0,0 +1 @@
+export * from '@tanstack/pacer/types'
diff --git a/packages/angular-pacer/src/utils/index.ts b/packages/angular-pacer/src/utils/index.ts
new file mode 100644
index 00000000..c5c19a2a
--- /dev/null
+++ b/packages/angular-pacer/src/utils/index.ts
@@ -0,0 +1 @@
+export * from '@tanstack/pacer/utils'
diff --git a/packages/angular-pacer/tsconfig.docs.json b/packages/angular-pacer/tsconfig.docs.json
new file mode 100644
index 00000000..20ccb038
--- /dev/null
+++ b/packages/angular-pacer/tsconfig.docs.json
@@ -0,0 +1,9 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "paths": {
+ "@tanstack/pacer": ["../pacer/src"]
+ }
+ },
+ "include": ["src"]
+}
diff --git a/packages/angular-pacer/tsconfig.json b/packages/angular-pacer/tsconfig.json
new file mode 100644
index 00000000..66baec5e
--- /dev/null
+++ b/packages/angular-pacer/tsconfig.json
@@ -0,0 +1,8 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "jsx": "preserve"
+ },
+ "include": ["src", "vitest.config.ts", "tests"],
+ "exclude": ["eslint.config.js"]
+}
diff --git a/packages/angular-pacer/tsdown.config.ts b/packages/angular-pacer/tsdown.config.ts
new file mode 100644
index 00000000..24dd8a5c
--- /dev/null
+++ b/packages/angular-pacer/tsdown.config.ts
@@ -0,0 +1,32 @@
+import { defineConfig } from 'tsdown'
+
+export default defineConfig({
+ entry: [
+ './src/index.ts',
+ './src/async-batcher/index.ts',
+ './src/async-debouncer/index.ts',
+ './src/async-queuer/index.ts',
+ './src/async-rate-limiter/index.ts',
+ './src/async-retryer/index.ts',
+ './src/async-throttler/index.ts',
+ './src/batcher/index.ts',
+ './src/debouncer/index.ts',
+ './src/provider/index.ts',
+ './src/queuer/index.ts',
+ './src/rate-limiter/index.ts',
+ './src/throttler/index.ts',
+ './src/types/index.ts',
+ './src/utils/index.ts',
+ ],
+ format: ['esm', 'cjs'],
+ unbundle: true,
+ dts: true,
+ sourcemap: true,
+ clean: true,
+ minify: false,
+ fixedExtension: false,
+ exports: true,
+ publint: {
+ strict: true,
+ },
+})
diff --git a/packages/angular-pacer/vitest.config.ts b/packages/angular-pacer/vitest.config.ts
new file mode 100644
index 00000000..514aa720
--- /dev/null
+++ b/packages/angular-pacer/vitest.config.ts
@@ -0,0 +1,12 @@
+import { defineConfig } from 'vitest/config'
+import packageJson from './package.json' with { type: 'json' }
+
+export default defineConfig({
+ test: {
+ name: packageJson.name,
+ dir: './tests',
+ watch: false,
+ environment: 'happy-dom',
+ globals: true,
+ },
+})
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b74f9906..f507e9bb 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,7 +19,7 @@ importers:
version: 12.0.0(size-limit@12.0.0(jiti@2.6.1))
'@svitejs/changesets-changelog-github-compact':
specifier: ^1.2.0
- version: 1.2.0
+ version: 1.2.0(encoding@0.1.13)
'@tanstack/eslint-config':
specifier: 0.3.4
version: 0.3.4(@typescript-eslint/utils@8.52.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
@@ -79,7 +79,56 @@ importers:
version: 5.9.3
vitest:
specifier: ^4.0.16
- version: 4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(yaml@2.8.2)
+ version: 4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2)
+
+ examples/angular/basic:
+ dependencies:
+ '@angular/common':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/compiler':
+ specifier: ^21.0.0
+ version: 21.0.8
+ '@angular/core':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ '@angular/forms':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(rxjs@7.8.2)
+ '@angular/platform-browser':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))
+ '@angular/router':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(rxjs@7.8.2)
+ '@tanstack/angular-pacer':
+ specifier: workspace:^
+ version: link:../../../packages/angular-pacer
+ rxjs:
+ specifier: ~7.8.0
+ version: 7.8.2
+ tslib:
+ specifier: ^2.3.0
+ version: 2.8.1
+ devDependencies:
+ '@angular/build':
+ specifier: ^21.0.5
+ version: 21.0.5(@angular/compiler-cli@21.0.8(@angular/compiler@21.0.8)(typescript@5.9.3))(@angular/compiler@21.0.8)(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(@types/node@25.0.3)(chokidar@4.0.3)(jiti@2.6.1)(postcss@8.5.6)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2))(yaml@2.8.2)
+ '@angular/cli':
+ specifier: ^21.0.5
+ version: 21.0.5(@types/node@25.0.3)(chokidar@4.0.3)(hono@4.11.3)
+ '@angular/compiler-cli':
+ specifier: ^21.0.0
+ version: 21.0.8(@angular/compiler@21.0.8)(typescript@5.9.3)
+ jsdom:
+ specifier: ^27.1.0
+ version: 27.4.0
+ typescript:
+ specifier: ~5.9.2
+ version: 5.9.3
+ vitest:
+ specifier: ^4.0.8
+ version: 4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2)
examples/preact/asyncBatch:
dependencies:
@@ -92,10 +141,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/asyncDebounce:
dependencies:
@@ -108,10 +157,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/asyncRateLimit:
dependencies:
@@ -124,10 +173,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/asyncRetry:
dependencies:
@@ -140,10 +189,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/asyncThrottle:
dependencies:
@@ -156,10 +205,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/batch:
dependencies:
@@ -172,10 +221,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/debounce:
dependencies:
@@ -188,10 +237,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/queue:
dependencies:
@@ -204,10 +253,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/rateLimit:
dependencies:
@@ -220,10 +269,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/throttle:
dependencies:
@@ -236,10 +285,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncBatchedCallback:
dependencies:
@@ -252,10 +301,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncBatcher:
dependencies:
@@ -268,10 +317,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncDebouncedCallback:
dependencies:
@@ -284,10 +333,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncDebouncer:
dependencies:
@@ -300,10 +349,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncQueuedState:
dependencies:
@@ -316,10 +365,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncQueuer:
dependencies:
@@ -332,10 +381,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncRateLimiter:
dependencies:
@@ -348,10 +397,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncRateLimiterWithPersister:
dependencies:
@@ -364,10 +413,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncThrottledCallback:
dependencies:
@@ -380,10 +429,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useAsyncThrottler:
dependencies:
@@ -396,10 +445,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useBatchedCallback:
dependencies:
@@ -412,10 +461,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useBatcher:
dependencies:
@@ -428,10 +477,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useDebouncedCallback:
dependencies:
@@ -444,10 +493,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useDebouncedState:
dependencies:
@@ -460,10 +509,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useDebouncedValue:
dependencies:
@@ -476,10 +525,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useDebouncer:
dependencies:
@@ -492,10 +541,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useQueuedState:
dependencies:
@@ -508,10 +557,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useQueuedValue:
dependencies:
@@ -524,10 +573,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useQueuer:
dependencies:
@@ -546,10 +595,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useQueuerWithPersister:
dependencies:
@@ -562,10 +611,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useRateLimitedCallback:
dependencies:
@@ -578,10 +627,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useRateLimitedState:
dependencies:
@@ -594,10 +643,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useRateLimitedValue:
dependencies:
@@ -610,10 +659,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useRateLimiter:
dependencies:
@@ -626,10 +675,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useRateLimiterWithPersister:
dependencies:
@@ -642,10 +691,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useThrottledCallback:
dependencies:
@@ -658,10 +707,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useThrottledState:
dependencies:
@@ -674,10 +723,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useThrottledValue:
dependencies:
@@ -690,10 +739,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/useThrottler:
dependencies:
@@ -706,10 +755,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/preact/util-comparison:
dependencies:
@@ -728,10 +777,10 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/asyncBatch:
dependencies:
@@ -753,10 +802,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/asyncDebounce:
dependencies:
@@ -778,10 +827,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/asyncRateLimit:
dependencies:
@@ -803,10 +852,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/asyncRetry:
dependencies:
@@ -828,10 +877,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/asyncThrottle:
dependencies:
@@ -853,10 +902,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/batch:
dependencies:
@@ -878,10 +927,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/debounce:
dependencies:
@@ -903,10 +952,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/queue:
dependencies:
@@ -934,10 +983,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/rateLimit:
dependencies:
@@ -959,10 +1008,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/react-query-debounced-prefetch:
dependencies:
@@ -990,10 +1039,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/react-query-queued-prefetch:
dependencies:
@@ -1021,10 +1070,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/react-query-throttled-prefetch:
dependencies:
@@ -1052,10 +1101,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/throttle:
dependencies:
@@ -1077,10 +1126,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncBatchedCallback:
dependencies:
@@ -1102,10 +1151,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncBatcher:
dependencies:
@@ -1127,10 +1176,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncDebouncedCallback:
dependencies:
@@ -1152,10 +1201,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncDebouncer:
dependencies:
@@ -1177,10 +1226,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncQueuedState:
dependencies:
@@ -1202,10 +1251,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncQueuer:
dependencies:
@@ -1227,10 +1276,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncRateLimiter:
dependencies:
@@ -1255,10 +1304,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncRateLimiterWithPersister:
dependencies:
@@ -1283,10 +1332,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncThrottledCallback:
dependencies:
@@ -1308,10 +1357,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useAsyncThrottler:
dependencies:
@@ -1333,10 +1382,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useBatchedCallback:
dependencies:
@@ -1358,10 +1407,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useBatcher:
dependencies:
@@ -1383,10 +1432,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useDebouncedCallback:
dependencies:
@@ -1408,10 +1457,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useDebouncedState:
dependencies:
@@ -1433,10 +1482,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useDebouncedValue:
dependencies:
@@ -1458,10 +1507,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useDebouncer:
dependencies:
@@ -1483,10 +1532,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useQueuedState:
dependencies:
@@ -1508,10 +1557,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useQueuedValue:
dependencies:
@@ -1533,10 +1582,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useQueuer:
dependencies:
@@ -1567,10 +1616,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useQueuerWithPersister:
dependencies:
@@ -1595,10 +1644,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useRateLimitedCallback:
dependencies:
@@ -1620,10 +1669,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useRateLimitedState:
dependencies:
@@ -1645,10 +1694,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useRateLimitedValue:
dependencies:
@@ -1670,10 +1719,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useRateLimiter:
dependencies:
@@ -1698,10 +1747,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useRateLimiterWithPersister:
dependencies:
@@ -1726,10 +1775,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useThrottledCallback:
dependencies:
@@ -1751,10 +1800,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useThrottledState:
dependencies:
@@ -1776,10 +1825,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useThrottledValue:
dependencies:
@@ -1801,10 +1850,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/useThrottler:
dependencies:
@@ -1826,10 +1875,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/react/util-comparison:
dependencies:
@@ -1857,10 +1906,10 @@ importers:
version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/solid/asyncBatch:
dependencies:
@@ -1873,10 +1922,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/asyncDebounce:
dependencies:
@@ -1889,10 +1938,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/asyncRateLimit:
dependencies:
@@ -1905,10 +1954,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/asyncThrottle:
dependencies:
@@ -1921,10 +1970,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/batch:
dependencies:
@@ -1937,10 +1986,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createAsyncBatcher:
dependencies:
@@ -1953,10 +2002,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createAsyncDebouncer:
dependencies:
@@ -1969,10 +2018,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createAsyncQueuer:
dependencies:
@@ -1985,10 +2034,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createAsyncRateLimiter:
dependencies:
@@ -2001,10 +2050,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createAsyncThrottler:
dependencies:
@@ -2017,10 +2066,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createBatcher:
dependencies:
@@ -2033,10 +2082,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createDebouncedSignal:
dependencies:
@@ -2049,10 +2098,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createDebouncedValue:
dependencies:
@@ -2065,10 +2114,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createDebouncer:
dependencies:
@@ -2081,10 +2130,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createQueuedSignal:
dependencies:
@@ -2103,10 +2152,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createQueuer:
dependencies:
@@ -2125,10 +2174,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createRateLimitedSignal:
dependencies:
@@ -2141,10 +2190,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createRateLimitedValue:
dependencies:
@@ -2157,10 +2206,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createRateLimiter:
dependencies:
@@ -2173,10 +2222,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createThrottledSignal:
dependencies:
@@ -2189,10 +2238,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createThrottledValue:
dependencies:
@@ -2205,10 +2254,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/createThrottler:
dependencies:
@@ -2221,10 +2270,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/debounce:
dependencies:
@@ -2237,10 +2286,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/queue:
dependencies:
@@ -2259,10 +2308,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/rateLimit:
dependencies:
@@ -2275,10 +2324,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/solid/throttle:
dependencies:
@@ -2291,10 +2340,10 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
examples/vanilla/LiteBatcher:
dependencies:
@@ -2304,7 +2353,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/LiteDebouncer:
dependencies:
@@ -2314,7 +2363,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/LiteQueuer:
dependencies:
@@ -2324,7 +2373,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/LiteRateLimiter:
dependencies:
@@ -2334,7 +2383,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/LiteThrottler:
dependencies:
@@ -2344,7 +2393,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/liteBatch:
dependencies:
@@ -2354,7 +2403,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/liteDebounce:
dependencies:
@@ -2364,7 +2413,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/liteQueue:
dependencies:
@@ -2374,7 +2423,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/liteRateLimit:
dependencies:
@@ -2384,7 +2433,7 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
examples/vanilla/liteThrottle:
dependencies:
@@ -2394,7 +2443,23 @@ importers:
devDependencies:
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ version: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+
+ packages/angular-pacer:
+ dependencies:
+ '@tanstack/pacer':
+ specifier: workspace:*
+ version: link:../pacer
+ '@tanstack/store':
+ specifier: ^0.8.0
+ version: 0.8.0
+ devDependencies:
+ '@angular/core':
+ specifier: ^18.0.0
+ version: 18.2.14(rxjs@7.8.2)(zone.js@0.14.10)
+ '@types/node':
+ specifier: ^25.0.3
+ version: 25.0.3
packages/pacer:
dependencies:
@@ -2434,7 +2499,7 @@ importers:
devDependencies:
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
packages/pacer-lite:
devDependencies:
@@ -2453,7 +2518,7 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
eslint-plugin-react-hooks:
specifier: ^7.0.1
version: 7.0.1(eslint@9.39.2(jiti@2.6.1))
@@ -2472,7 +2537,7 @@ importers:
devDependencies:
'@preact/preset-vite':
specifier: ^2.10.2
- version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
'@testing-library/preact':
specifier: ^3.2.4
version: 3.2.4(preact@10.28.2)
@@ -2500,7 +2565,7 @@ importers:
version: 19.2.7
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.2
version: 19.1.0-rc.2(eslint@9.39.2(jiti@2.6.1))
@@ -2537,7 +2602,7 @@ importers:
version: 2.5.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
'@vitejs/plugin-react':
specifier: ^5.1.2
- version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.2
version: 19.1.0-rc.2(eslint@9.39.2(jiti@2.6.1))
@@ -2559,7 +2624,7 @@ importers:
version: 1.9.10
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
packages/solid-pacer-devtools:
dependencies:
@@ -2575,20 +2640,231 @@ importers:
devDependencies:
vite-plugin-solid:
specifier: ^2.11.10
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
packages:
+ '@acemir/cssom@0.9.31':
+ resolution: {integrity: sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==}
+
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
+ '@algolia/abtesting@1.6.1':
+ resolution: {integrity: sha512-wV/gNRkzb7sI9vs1OneG129hwe3Q5zPj7zigz3Ps7M5Lpo2hSorrOnXNodHEOV+yXE/ks4Pd+G3CDFIjFTWhMQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-abtesting@5.40.1':
+ resolution: {integrity: sha512-cxKNATPY5t+Mv8XAVTI57altkaPH+DZi4uMrnexPxPHODMljhGYY+GDZyHwv9a+8CbZHcY372OkxXrDMZA4Lnw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-analytics@5.40.1':
+ resolution: {integrity: sha512-XP008aMffJCRGAY8/70t+hyEyvqqV7YKm502VPu0+Ji30oefrTn2al7LXkITz7CK6I4eYXWRhN6NaIUi65F1OA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-common@5.40.1':
+ resolution: {integrity: sha512-gWfQuQUBtzUboJv/apVGZMoxSaB0M4Imwl1c9Ap+HpCW7V0KhjBddqF2QQt5tJZCOFsfNIgBbZDGsEPaeKUosw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-insights@5.40.1':
+ resolution: {integrity: sha512-RTLjST/t+lsLMouQ4zeLJq2Ss+UNkLGyNVu+yWHanx6kQ3LT5jv8UvPwyht9s7R6jCPnlSI77WnL80J32ZuyJg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-personalization@5.40.1':
+ resolution: {integrity: sha512-2FEK6bUomBzEYkTKzD0iRs7Ljtjb45rKK/VSkyHqeJnG+77qx557IeSO0qVFE3SfzapNcoytTofnZum0BQ6r3Q==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-query-suggestions@5.40.1':
+ resolution: {integrity: sha512-Nju4NtxAvXjrV2hHZNLKVJLXjOlW6jAXHef/CwNzk1b2qIrCWDO589ELi5ZHH1uiWYoYyBXDQTtHmhaOVVoyXg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-search@5.40.1':
+ resolution: {integrity: sha512-Mw6pAUF121MfngQtcUb5quZVqMC68pSYYjCRZkSITC085S3zdk+h/g7i6FxnVdbSU6OztxikSDMh1r7Z+4iPlA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/ingestion@1.40.1':
+ resolution: {integrity: sha512-z+BPlhs45VURKJIxsR99NNBWpUEEqIgwt10v/fATlNxc4UlXvALdOsWzaFfe89/lbP5Bu4+mbO59nqBC87ZM/g==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/monitoring@1.40.1':
+ resolution: {integrity: sha512-VJMUMbO0wD8Rd2VVV/nlFtLJsOAQvjnVNGkMkspFiFhpBA7s/xJOb+fJvvqwKFUjbKTUA7DjiSi1ljSMYBasXg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/recommend@5.40.1':
+ resolution: {integrity: sha512-ehvJLadKVwTp9Scg9NfzVSlBKH34KoWOQNTaN8i1Ac64AnO6iH2apJVSP6GOxssaghZ/s8mFQsDH3QIZoluFHA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-browser-xhr@5.40.1':
+ resolution: {integrity: sha512-PbidVsPurUSQIr6X9/7s34mgOMdJnn0i6p+N6Ab+lsNhY5eiu+S33kZEpZwkITYBCIbhzDLOvb7xZD3gDi+USA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-fetch@5.40.1':
+ resolution: {integrity: sha512-ThZ5j6uOZCF11fMw9IBkhigjOYdXGXQpj6h4k+T9UkZrF2RlKcPynFzDeRgaLdpYk8Yn3/MnFbwUmib7yxj5Lw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-node-http@5.40.1':
+ resolution: {integrity: sha512-H1gYPojO6krWHnUXu/T44DrEun/Wl95PJzMXRcM/szstNQczSbwq6wIFJPI9nyE95tarZfUNU3rgorT+wZ6iCQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@ampproject/remapping@2.3.0':
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
+ engines: {node: '>=6.0.0'}
+
'@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
+ '@angular-devkit/architect@0.2100.5':
+ resolution: {integrity: sha512-KKmZMXzHCX0cWHY7xo9yy1J0fV7S/suhPO00YTcHBgLivkLsnbI177CrmWiMdLxSJD3NqTVkBEMPFQ2I2ooDFw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+
+ '@angular-devkit/core@21.0.5':
+ resolution: {integrity: sha512-STDOtPbd8vePqyneQaLR8c9hnu7BieU7aPG5Icgl0pevv7EfCmwZUTqvK5nCpLk0tVFo6D1WHwIDZ3fnyvFW1A==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ chokidar: ^4.0.0
+ peerDependenciesMeta:
+ chokidar:
+ optional: true
+
+ '@angular-devkit/schematics@21.0.5':
+ resolution: {integrity: sha512-U6Z/OEce3R9CJl8/xuVrNVp0uhv3Ac4wRjpG18kE0dh5R87ablhqr/wkP3rZbWpdGwuGSJ+cR7LE5IbwSswejA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+
+ '@angular/build@21.0.5':
+ resolution: {integrity: sha512-4Ejb5pA118GGyZOAGjSmZMCx5HbovRSjiqLuCmpjf9hUgs50GPNJbigWW1ewz5+KmFrc8ouEoirpgTQyaKKZ3Q==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ peerDependencies:
+ '@angular/compiler': ^21.0.0
+ '@angular/compiler-cli': ^21.0.0
+ '@angular/core': ^21.0.0
+ '@angular/localize': ^21.0.0
+ '@angular/platform-browser': ^21.0.0
+ '@angular/platform-server': ^21.0.0
+ '@angular/service-worker': ^21.0.0
+ '@angular/ssr': ^21.0.5
+ karma: ^6.4.0
+ less: ^4.2.0
+ ng-packagr: ^21.0.0
+ postcss: ^8.4.0
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
+ tslib: ^2.3.0
+ typescript: '>=5.9 <6.0'
+ vitest: ^4.0.8
+ peerDependenciesMeta:
+ '@angular/core':
+ optional: true
+ '@angular/localize':
+ optional: true
+ '@angular/platform-browser':
+ optional: true
+ '@angular/platform-server':
+ optional: true
+ '@angular/service-worker':
+ optional: true
+ '@angular/ssr':
+ optional: true
+ karma:
+ optional: true
+ less:
+ optional: true
+ ng-packagr:
+ optional: true
+ postcss:
+ optional: true
+ tailwindcss:
+ optional: true
+ vitest:
+ optional: true
+
+ '@angular/cli@21.0.5':
+ resolution: {integrity: sha512-UYFQqn9Ow1wFVSwdB/xfjmZo4Yb7CUNxilbeYDFIybesfxXSdjMJBbXLtV0+icIhjmqfSUm2gTls6WIrG8qv9A==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ hasBin: true
+
+ '@angular/common@21.0.8':
+ resolution: {integrity: sha512-on1B4oc/pf7IlkbG08Et/cCDSX8dpZz9iwp3zMFN/0JvorspyL5YOovFJfjdpmjdlrIi+ToGImwyIkY9P8Mblw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@angular/core': 21.0.8
+ rxjs: ^6.5.3 || ^7.4.0
+
+ '@angular/compiler-cli@21.0.8':
+ resolution: {integrity: sha512-+i/wFvi5FTg47Ei+aiFf8j3iYfjQ79ieg8oJM86+Mw4bNwEKQqvWcpmKjoqcfmCescuw0sr2DXU6OEeX+yWeVg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ hasBin: true
+ peerDependencies:
+ '@angular/compiler': 21.0.8
+ typescript: '>=5.9 <6.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@angular/compiler@21.0.8':
+ resolution: {integrity: sha512-k/EPMuNvfn0eebEMmVcwhMlCWqzER/BEHVqTQCKsAAt7AuYZuluz7oR8Ypw96v3jbY+ZaH1ZvAzrK6URzryhOg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+
+ '@angular/core@18.2.14':
+ resolution: {integrity: sha512-BIPrCs93ZZTY9ym7yfoTgAQ5rs706yoYeAdrgc8kh/bDbM9DawxKlgeKBx2FLt09Y0YQ1bFhKVp0cV4gDEaMxQ==}
+ engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ peerDependencies:
+ rxjs: ^6.5.3 || ^7.4.0
+ zone.js: ~0.14.10
+
+ '@angular/core@21.0.8':
+ resolution: {integrity: sha512-8dNolIQn8WHrD3PsqGuPrujxDX5hjpMbioifIByjjX9yaJy9on7AewVGb8m/DHVwWQ1eGVAGmvW9wt+h+nlzLg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@angular/compiler': 21.0.8
+ rxjs: ^6.5.3 || ^7.4.0
+ zone.js: ~0.15.0 || ~0.16.0
+ peerDependenciesMeta:
+ '@angular/compiler':
+ optional: true
+ zone.js:
+ optional: true
+
+ '@angular/forms@21.0.8':
+ resolution: {integrity: sha512-H03A50elawXO53xkz0Aytar5kYT14GLeaj6dLKc1kcR5NqvX9Y/R7z3bY52tvypAdIR8CmPT7ad07TlT4O9lkg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@angular/common': 21.0.8
+ '@angular/core': 21.0.8
+ '@angular/platform-browser': 21.0.8
+ rxjs: ^6.5.3 || ^7.4.0
+
+ '@angular/platform-browser@21.0.8':
+ resolution: {integrity: sha512-5rPyrP6n6ClO0ZEUXndS2/Xb7nZrbjjYWOxgfCb+ZTCiU7eyN6zhSmicKk2dLQxE1M15wbTa87dN6/Ytuq2uvg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@angular/animations': 21.0.8
+ '@angular/common': 21.0.8
+ '@angular/core': 21.0.8
+ peerDependenciesMeta:
+ '@angular/animations':
+ optional: true
+
+ '@angular/router@21.0.8':
+ resolution: {integrity: sha512-LPR65wyWBSyR46fGeQtD92+TM635o0lh+N5k9qPZdMacogwViTrtBHWPfKYBtBUXLWEWXXKJfSbXvhh3w3uLxw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@angular/common': 21.0.8
+ '@angular/core': 21.0.8
+ '@angular/platform-browser': 21.0.8
+ rxjs: ^6.5.3 || ^7.4.0
+
'@arethetypeswrong/core@0.18.2':
resolution: {integrity: sha512-GiwTmBFOU1/+UVNqqCGzFJYfBXEytUkiI+iRZ6Qx7KmUVtLm00sYySkfe203C9QtPG11yOz1ZaMek8dT/xnlgg==}
engines: {node: '>=20'}
+ '@asamuzakjp/css-color@4.1.1':
+ resolution: {integrity: sha512-B0Hv6G3gWGMn0xKJ0txEi/jM5iFpT3MfDxmhZFb4W047GvytCf1DHQ1D69W3zHI4yWe2aTZAA0JnbMZ7Xc8DuQ==}
+
+ '@asamuzakjp/dom-selector@6.7.6':
+ resolution: {integrity: sha512-hBaJER6A9MpdG3WgdlOolHmbOYvSk46y7IQN/1+iqiCuUu6iWdQrs9DGKF8ocqsEqWujWf/V7b7vaDgiUmIvUg==}
+
+ '@asamuzakjp/nwsapi@2.3.9':
+ resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
+
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
@@ -2597,6 +2873,10 @@ packages:
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.28.4':
+ resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
@@ -2659,6 +2939,10 @@ packages:
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-split-export-declaration@7.24.7':
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
@@ -2794,6 +3078,38 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
+ '@csstools/color-helpers@5.1.0':
+ resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
+ engines: {node: '>=18'}
+
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-color-parser@3.1.0':
+ resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-syntax-patches-for-csstree@1.0.25':
+ resolution: {integrity: sha512-g0Kw9W3vjx5BEBAF8c5Fm2NcB/Fs8jJXh85aXqwEXiL+tqtOut07TWgyaGzAAfTM+gKckrrncyeGEZPcaRgm2Q==}
+ engines: {node: '>=18'}
+
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ engines: {node: '>=18'}
+
'@emnapi/core@1.7.1':
resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
@@ -2803,156 +3119,468 @@ packages:
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+ '@esbuild/aix-ppc64@0.25.12':
+ resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/aix-ppc64@0.26.0':
+ resolution: {integrity: sha512-hj0sKNCQOOo2fgyII3clmJXP28VhgDfU5iy3GNHlWO76KG6N7x4D9ezH5lJtQTG+1J6MFDAJXC1qsI+W+LvZoA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/aix-ppc64@0.27.1':
resolution: {integrity: sha512-HHB50pdsBX6k47S4u5g/CaLjqS3qwaOVE5ILsq64jyzgMhLuCuZ8rGzM9yhsAjfjkbgUPMzZEPa7DAp7yz6vuA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
+ '@esbuild/android-arm64@0.25.12':
+ resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm64@0.26.0':
+ resolution: {integrity: sha512-DDnoJ5eoa13L8zPh87PUlRd/IyFaIKOlRbxiwcSbeumcJ7UZKdtuMCHa1Q27LWQggug6W4m28i4/O2qiQQ5NZQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm64@0.27.1':
resolution: {integrity: sha512-45fuKmAJpxnQWixOGCrS+ro4Uvb4Re9+UTieUY2f8AEc+t7d4AaZ6eUJ3Hva7dtrxAAWHtlEFsXFMAgNnGU9uQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm@0.25.12':
+ resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-arm@0.26.0':
+ resolution: {integrity: sha512-C0hkDsYNHZkBtPxxDx177JN90/1MiCpvBNjz1f5yWJo1+5+c5zr8apjastpEG+wtPjo9FFtGG7owSsAxyKiHxA==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-arm@0.27.1':
resolution: {integrity: sha512-kFqa6/UcaTbGm/NncN9kzVOODjhZW8e+FRdSeypWe6j33gzclHtwlANs26JrupOntlcWmB0u8+8HZo8s7thHvg==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
+ '@esbuild/android-x64@0.25.12':
+ resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/android-x64@0.26.0':
+ resolution: {integrity: sha512-bKDkGXGZnj0T70cRpgmv549x38Vr2O3UWLbjT2qmIkdIWcmlg8yebcFWoT9Dku7b5OV3UqPEuNKRzlNhjwUJ9A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/android-x64@0.27.1':
resolution: {integrity: sha512-LBEpOz0BsgMEeHgenf5aqmn/lLNTFXVfoWMUox8CtWWYK9X4jmQzWjoGoNb8lmAYml/tQ/Ysvm8q7szu7BoxRQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ '@esbuild/darwin-arm64@0.25.12':
+ resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-arm64@0.26.0':
+ resolution: {integrity: sha512-6Z3naJgOuAIB0RLlJkYc81An3rTlQ/IeRdrU3dOea8h/PvZSgitZV+thNuIccw0MuK1GmIAnAmd5TrMZad8FTQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-arm64@0.27.1':
resolution: {integrity: sha512-veg7fL8eMSCVKL7IW4pxb54QERtedFDfY/ASrumK/SbFsXnRazxY4YykN/THYqFnFwJ0aVjiUrVG2PwcdAEqQQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.12':
+ resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.26.0':
+ resolution: {integrity: sha512-OPnYj0zpYW0tHusMefyaMvNYQX5pNQuSsHFTHUBNp3vVXupwqpxofcjVsUx11CQhGVkGeXjC3WLjh91hgBG2xw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.27.1':
resolution: {integrity: sha512-+3ELd+nTzhfWb07Vol7EZ+5PTbJ/u74nC6iv4/lwIU99Ip5uuY6QoIf0Hn4m2HoV0qcnRivN3KSqc+FyCHjoVQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ '@esbuild/freebsd-arm64@0.25.12':
+ resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-arm64@0.26.0':
+ resolution: {integrity: sha512-jix2fa6GQeZhO1sCKNaNMjfj5hbOvoL2F5t+w6gEPxALumkpOV/wq7oUBMHBn2hY2dOm+mEV/K+xfZy3mrsxNQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-arm64@0.27.1':
resolution: {integrity: sha512-/8Rfgns4XD9XOSXlzUDepG8PX+AVWHliYlUkFI3K3GB6tqbdjYqdhcb4BKRd7C0BhZSoaCxhv8kTcBrcZWP+xg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.12':
+ resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.26.0':
+ resolution: {integrity: sha512-tccJaH5xHJD/239LjbVvJwf6T4kSzbk6wPFerF0uwWlkw/u7HL+wnAzAH5GB2irGhYemDgiNTp8wJzhAHQ64oA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.27.1':
resolution: {integrity: sha512-GITpD8dK9C+r+5yRT/UKVT36h/DQLOHdwGVwwoHidlnA168oD3uxA878XloXebK4Ul3gDBBIvEdL7go9gCUFzQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/linux-arm64@0.25.12':
+ resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm64@0.26.0':
+ resolution: {integrity: sha512-IMJYN7FSkLttYyTbsbme0Ra14cBO5z47kpamo16IwggzzATFY2lcZAwkbcNkWiAduKrTgFJP7fW5cBI7FzcuNQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm64@0.27.1':
resolution: {integrity: sha512-W9//kCrh/6in9rWIBdKaMtuTTzNj6jSeG/haWBADqLLa9P8O5YSRDzgD5y9QBok4AYlzS6ARHifAb75V6G670Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm@0.25.12':
+ resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.26.0':
+ resolution: {integrity: sha512-JY8NyU31SyRmRpuc5W8PQarAx4TvuYbyxbPIpHAZdr/0g4iBr8KwQBS4kiiamGl2f42BBecHusYCsyxi7Kn8UQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-arm@0.27.1':
resolution: {integrity: sha512-ieMID0JRZY/ZeCrsFQ3Y3NlHNCqIhTprJfDgSB3/lv5jJZ8FX3hqPyXWhe+gvS5ARMBJ242PM+VNz/ctNj//eA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-ia32@0.25.12':
+ resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.26.0':
+ resolution: {integrity: sha512-XITaGqGVLgk8WOHw8We9Z1L0lbLFip8LyQzKYFKO4zFo1PFaaSKsbNjvkb7O8kEXytmSGRkYpE8LLVpPJpsSlw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-ia32@0.27.1':
resolution: {integrity: sha512-VIUV4z8GD8rtSVMfAj1aXFahsi/+tcoXXNYmXgzISL+KB381vbSTNdeZHHHIYqFyXcoEhu9n5cT+05tRv13rlw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-loong64@0.25.12':
+ resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.26.0':
+ resolution: {integrity: sha512-MkggfbDIczStUJwq9wU7gQ7kO33d8j9lWuOCDifN9t47+PeI+9m2QVh51EI/zZQ1spZtFMC1nzBJ+qNGCjJnsg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-loong64@0.27.1':
resolution: {integrity: sha512-l4rfiiJRN7sTNI//ff65zJ9z8U+k6zcCg0LALU5iEWzY+a1mVZ8iWC1k5EsNKThZ7XCQ6YWtsZ8EWYm7r1UEsg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.12':
+ resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.26.0':
+ resolution: {integrity: sha512-fUYup12HZWAeccNLhQ5HwNBPr4zXCPgUWzEq2Rfw7UwqwfQrFZ0SR/JljaURR8xIh9t+o1lNUFTECUTmaP7yKA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.27.1':
resolution: {integrity: sha512-U0bEuAOLvO/DWFdygTHWY8C067FXz+UbzKgxYhXC0fDieFa0kDIra1FAhsAARRJbvEyso8aAqvPdNxzWuStBnA==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.12':
+ resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.26.0':
+ resolution: {integrity: sha512-MzRKhM0Ip+//VYwC8tialCiwUQ4G65WfALtJEFyU0GKJzfTYoPBw5XNWf0SLbCUYQbxTKamlVwPmcw4DgZzFxg==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.27.1':
resolution: {integrity: sha512-NzdQ/Xwu6vPSf/GkdmRNsOfIeSGnh7muundsWItmBsVpMoNPVpM61qNzAVY3pZ1glzzAxLR40UyYM23eaDDbYQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.12':
+ resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.26.0':
+ resolution: {integrity: sha512-QhCc32CwI1I4Jrg1enCv292sm3YJprW8WHHlyxJhae/dVs+KRWkbvz2Nynl5HmZDW/m9ZxrXayHzjzVNvQMGQA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.27.1':
resolution: {integrity: sha512-7zlw8p3IApcsN7mFw0O1Z1PyEk6PlKMu18roImfl3iQHTnr/yAfYv6s4hXPidbDoI2Q0pW+5xeoM4eTCC0UdrQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-s390x@0.25.12':
+ resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.26.0':
+ resolution: {integrity: sha512-1D6vi6lfI18aNT1aTf2HV+RIlm6fxtlAp8eOJ4mmnbYmZ4boz8zYDar86sIYNh0wmiLJEbW/EocaKAX6Yso2fw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-s390x@0.27.1':
resolution: {integrity: sha512-cGj5wli+G+nkVQdZo3+7FDKC25Uh4ZVwOAK6A06Hsvgr8WqBBuOy/1s+PUEd/6Je+vjfm6stX0kmib5b/O2Ykw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-x64@0.25.12':
+ resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.26.0':
+ resolution: {integrity: sha512-rnDcepj7LjrKFvZkx+WrBv6wECeYACcFjdNPvVPojCPJD8nHpb3pv3AuR9CXgdnjH1O23btICj0rsp0L9wAnHA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/linux-x64@0.27.1':
resolution: {integrity: sha512-z3H/HYI9MM0HTv3hQZ81f+AKb+yEoCRlUby1F80vbQ5XdzEMyY/9iNlAmhqiBKw4MJXwfgsh7ERGEOhrM1niMA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.27.1':
- resolution: {integrity: sha512-wzC24DxAvk8Em01YmVXyjl96Mr+ecTPyOuADAvjGg+fyBpGmxmcr2E5ttf7Im8D0sXZihpxzO1isus8MdjMCXQ==}
+ '@esbuild/netbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.27.1':
- resolution: {integrity: sha512-1YQ8ybGi2yIXswu6eNzJsrYIGFpnlzEWRl6iR5gMgmsrR0FcNoV1m9k9sc3PuP5rUBLshOZylc9nqSgymI+TYg==}
+ '@esbuild/netbsd-arm64@0.26.0':
+ resolution: {integrity: sha512-FSWmgGp0mDNjEXXFcsf12BmVrb+sZBBBlyh3LwB/B9ac3Kkc8x5D2WimYW9N7SUkolui8JzVnVlWh7ZmjCpnxw==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.27.1':
- resolution: {integrity: sha512-5Z+DzLCrq5wmU7RDaMDe2DVXMRm2tTDvX2KU14JJVBN2CT/qov7XVix85QoJqHltpvAOZUAc3ndU56HSMWrv8g==}
+ '@esbuild/netbsd-arm64@0.27.1':
+ resolution: {integrity: sha512-wzC24DxAvk8Em01YmVXyjl96Mr+ecTPyOuADAvjGg+fyBpGmxmcr2E5ttf7Im8D0sXZihpxzO1isus8MdjMCXQ==}
engines: {node: '>=18'}
cpu: [arm64]
- os: [openbsd]
+ os: [netbsd]
- '@esbuild/openbsd-x64@0.27.1':
- resolution: {integrity: sha512-Q73ENzIdPF5jap4wqLtsfh8YbYSZ8Q0wnxplOlZUOyZy7B4ZKW8DXGWgTCZmF8VWD7Tciwv5F4NsRf6vYlZtqg==}
+ '@esbuild/netbsd-x64@0.25.12':
+ resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
engines: {node: '>=18'}
cpu: [x64]
- os: [openbsd]
+ os: [netbsd]
- '@esbuild/openharmony-arm64@0.27.1':
+ '@esbuild/netbsd-x64@0.26.0':
+ resolution: {integrity: sha512-0QfciUDFryD39QoSPUDshj4uNEjQhp73+3pbSAaxjV2qGOEDsM67P7KbJq7LzHoVl46oqhIhJ1S+skKGR7lMXA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.27.1':
+ resolution: {integrity: sha512-1YQ8ybGi2yIXswu6eNzJsrYIGFpnlzEWRl6iR5gMgmsrR0FcNoV1m9k9sc3PuP5rUBLshOZylc9nqSgymI+TYg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-arm64@0.26.0':
+ resolution: {integrity: sha512-vmAK+nHhIZWImwJ3RNw9hX3fU4UGN/OqbSE0imqljNbUQC3GvVJ1jpwYoTfD6mmXmQaxdJY6Hn4jQbLGJKg5Yw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-arm64@0.27.1':
+ resolution: {integrity: sha512-5Z+DzLCrq5wmU7RDaMDe2DVXMRm2tTDvX2KU14JJVBN2CT/qov7XVix85QoJqHltpvAOZUAc3ndU56HSMWrv8g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.25.12':
+ resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.26.0':
+ resolution: {integrity: sha512-GPXF7RMkJ7o9bTyUsnyNtrFMqgM3X+uM/LWw4CeHIjqc32fm0Ir6jKDnWHpj8xHFstgWDUYseSABK9KCkHGnpg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.27.1':
+ resolution: {integrity: sha512-Q73ENzIdPF5jap4wqLtsfh8YbYSZ8Q0wnxplOlZUOyZy7B4ZKW8DXGWgTCZmF8VWD7Tciwv5F4NsRf6vYlZtqg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openharmony-arm64@0.25.12':
+ resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/openharmony-arm64@0.26.0':
+ resolution: {integrity: sha512-nUHZ5jEYqbBthbiBksbmHTlbb5eElyVfs/s1iHQ8rLBq1eWsd5maOnDpCocw1OM8kFK747d1Xms8dXJHtduxSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/openharmony-arm64@0.27.1':
resolution: {integrity: sha512-ajbHrGM/XiK+sXM0JzEbJAen+0E+JMQZ2l4RR4VFwvV9JEERx+oxtgkpoKv1SevhjavK2z2ReHk32pjzktWbGg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
+ '@esbuild/sunos-x64@0.25.12':
+ resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.26.0':
+ resolution: {integrity: sha512-TMg3KCTCYYaVO+R6P5mSORhcNDDlemUVnUbb8QkboUtOhb5JWKAzd5uMIMECJQOxHZ/R+N8HHtDF5ylzLfMiLw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/sunos-x64@0.27.1':
resolution: {integrity: sha512-IPUW+y4VIjuDVn+OMzHc5FV4GubIwPnsz6ubkvN8cuhEqH81NovB53IUlrlBkPMEPxvNnf79MGBoz8rZ2iW8HA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ '@esbuild/win32-arm64@0.25.12':
+ resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-arm64@0.26.0':
+ resolution: {integrity: sha512-apqYgoAUd6ZCb9Phcs8zN32q6l0ZQzQBdVXOofa6WvHDlSOhwCWgSfVQabGViThS40Y1NA4SCvQickgZMFZRlA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-arm64@0.27.1':
resolution: {integrity: sha512-RIVRWiljWA6CdVu8zkWcRmGP7iRRIIwvhDKem8UMBjPql2TXM5PkDVvvrzMtj1V+WFPB4K7zkIGM7VzRtFkjdg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-ia32@0.25.12':
+ resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.26.0':
+ resolution: {integrity: sha512-FGJAcImbJNZzLWu7U6WB0iKHl4RuY4TsXEwxJPl9UZLS47agIZuILZEX3Pagfw7I4J3ddflomt9f0apfaJSbaw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-ia32@0.27.1':
resolution: {integrity: sha512-2BR5M8CPbptC1AK5JbJT1fWrHLvejwZidKx3UMSF0ecHMa+smhi16drIrCEggkgviBwLYd5nwrFLSl5Kho96RQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-x64@0.25.12':
+ resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.26.0':
+ resolution: {integrity: sha512-WAckBKaVnmFqbEhbymrPK7M086DQMpL1XoRbpmN0iW8k5JSXjDRQBhcZNa0VweItknLq9eAeCL34jK7/CDcw7A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@esbuild/win32-x64@0.27.1':
resolution: {integrity: sha512-d5X6RMYv6taIymSk8JBP+nxv8DQAMY6A51GPgusqLdK9wBz5wWIXy1KjTck6HnjE9hqJzJRdk+1p/t5soSbCtw==}
engines: {node: '>=18'}
@@ -3042,6 +3670,15 @@ packages:
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@exodus/bytes@1.8.0':
+ resolution: {integrity: sha512-8JPn18Bcp8Uo1T82gR8lh2guEOa5KKU/IEKvvdp0sgmi7coPBWf1Doi1EXsGZb2ehc8ym/StJCjffYV+ne7sXQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@exodus/crypto': ^1.0.0-rc.4
+ peerDependenciesMeta:
+ '@exodus/crypto':
+ optional: true
+
'@faker-js/faker@10.2.0':
resolution: {integrity: sha512-rTXwAsIxpCqzUnZvrxVh3L0QA0NzToqWBLAhV+zDV3MIIwiQhAZHMdPCIaj5n/yADu/tyk12wIPgL6YHGXJP+g==}
engines: {node: ^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0, npm: '>=10'}
@@ -3049,6 +3686,12 @@ packages:
'@gerrit0/mini-shiki@3.19.0':
resolution: {integrity: sha512-ZSlWfLvr8Nl0T4iA3FF/8VH8HivYF82xQts2DY0tJxZd4wtXJ8AA0nmdW9lmO4hlrh3f9xNwEPtOgqETPqKwDA==}
+ '@hono/node-server@1.19.8':
+ resolution: {integrity: sha512-0/g2lIOPzX8f3vzW1ggQgvG5mjtFBDBHFAzI5SFAi2DzSqS9luJwqg9T6O/gKYLi+inS7eNxBeIFkkghIPvrMA==}
+ engines: {node: '>=18.14.1'}
+ peerDependencies:
+ hono: ^4
+
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -3065,6 +3708,64 @@ packages:
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
+ '@inquirer/ansi@1.0.2':
+ resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/checkbox@4.3.2':
+ resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/confirm@5.1.19':
+ resolution: {integrity: sha512-wQNz9cfcxrtEnUyG5PndC8g3gZ7lGDBzmWiXZkX8ot3vfZ+/BLjR8EvyGX4YzQLeVqtAlY/YScZpW7CW8qMoDQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/confirm@5.1.21':
+ resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/core@10.3.2':
+ resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/editor@4.2.23':
+ resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/expand@4.0.23':
+ resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/external-editor@1.0.3':
resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
engines: {node: '>=18'}
@@ -3074,6 +3775,82 @@ packages:
'@types/node':
optional: true
+ '@inquirer/figures@1.0.15':
+ resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
+ engines: {node: '>=18'}
+
+ '@inquirer/input@4.3.1':
+ resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/number@3.0.23':
+ resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/password@4.0.23':
+ resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/prompts@7.9.0':
+ resolution: {integrity: sha512-X7/+dG9SLpSzRkwgG5/xiIzW0oMrV3C0HOa7YHG1WnrLK+vCQHfte4k/T80059YBdei29RBC3s+pSMvPJDU9/A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/rawlist@4.1.11':
+ resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/search@3.2.2':
+ resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/select@4.4.2':
+ resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/type@3.0.10':
+ resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@isaacs/balanced-match@4.0.1':
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
engines: {node: 20 || >=22}
@@ -3082,6 +3859,14 @@ packages:
resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
engines: {node: 20 || >=22}
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
+ '@istanbuljs/schema@0.1.3':
+ resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ engines: {node: '>=8'}
+
'@jest/diff-sequences@30.0.1':
resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -3110,6 +3895,48 @@ packages:
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+ '@listr2/prompt-adapter-inquirer@3.0.5':
+ resolution: {integrity: sha512-WELs+hj6xcilkloBXYf9XXK8tYEnKsgLj01Xl5ONUJpKjmT5hGVUzNUS5tooUxs7pGMrw+jFD/41WpqW4V3LDA==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ '@inquirer/prompts': '>= 3 < 8'
+ listr2: 9.0.5
+
+ '@lmdb/lmdb-darwin-arm64@3.4.3':
+ resolution: {integrity: sha512-zR6Y45VNtW5s+A+4AyhrJk0VJKhXdkLhrySCpCu7PSdnakebsOzNxf58p5Xoq66vOSuueGAxlqDAF49HwdrSTQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@lmdb/lmdb-darwin-x64@3.4.3':
+ resolution: {integrity: sha512-nfGm5pQksBGfaj9uMbjC0YyQreny/Pl7mIDtHtw6g7WQuCgeLullr9FNRsYyKplaEJBPrCVpEjpAznxTBIrXBw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@lmdb/lmdb-linux-arm64@3.4.3':
+ resolution: {integrity: sha512-uX9eaPqWb740wg5D3TCvU/js23lSRSKT7lJrrQ8IuEG/VLgpPlxO3lHDywU44yFYdGS7pElBn6ioKFKhvALZlw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@lmdb/lmdb-linux-arm@3.4.3':
+ resolution: {integrity: sha512-Kjqomp7i0rgSbYSUmv9JnXpS55zYT/YcW3Bdf9oqOTjcH0/8tFAP8MLhu/i9V2pMKIURDZk63Ww49DTK0T3c/Q==}
+ cpu: [arm]
+ os: [linux]
+
+ '@lmdb/lmdb-linux-x64@3.4.3':
+ resolution: {integrity: sha512-7/8l20D55CfwdMupkc3fNxNJdn4bHsti2X0cp6PwiXlLeSFvAfWs5kCCx+2Cyje4l4GtN//LtKWjTru/9hDJQg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@lmdb/lmdb-win32-arm64@3.4.3':
+ resolution: {integrity: sha512-yWVR0e5Gl35EGJBsAuqPOdjtUYuN8CcTLKrqpQFoM+KsMadViVCulhKNhkcjSGJB88Am5bRPjMro4MBB9FS23Q==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@lmdb/lmdb-win32-x64@3.4.3':
+ resolution: {integrity: sha512-1JdBkcO0Vrua4LUgr4jAe4FUyluwCeq/pDkBrlaVjX3/BBWP1TzVjCL+TibWNQtPAL1BITXPAhlK5Ru4FBd/hg==}
+ cpu: [x64]
+ os: [win32]
+
'@loaderkit/resolve@1.0.4':
resolution: {integrity: sha512-rJzYKVcV4dxJv+vW6jlvagF8zvGxHJ2+HTr1e2qOejfmGhAApgJHl8Aog4mMszxceTRiKTTbnpgmTO1bEZHV/A==}
@@ -3119,6 +3946,152 @@ packages:
'@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
+ '@modelcontextprotocol/sdk@1.25.2':
+ resolution: {integrity: sha512-LZFeo4F9M5qOhC/Uc1aQSrBHxMrvxett+9KLHt7OhcExtoiRN9DKgbZffMP/nxjutWDQpfMDfP3nkHI4X9ijww==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@cfworker/json-schema': ^4.1.1
+ zod: ^3.25 || ^4.0
+ peerDependenciesMeta:
+ '@cfworker/json-schema':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@napi-rs/nice-android-arm-eabi@1.1.1':
+ resolution: {integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [android]
+
+ '@napi-rs/nice-android-arm64@1.1.1':
+ resolution: {integrity: sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@napi-rs/nice-darwin-arm64@1.1.1':
+ resolution: {integrity: sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@napi-rs/nice-darwin-x64@1.1.1':
+ resolution: {integrity: sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@napi-rs/nice-freebsd-x64@1.1.1':
+ resolution: {integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@napi-rs/nice-linux-arm-gnueabihf@1.1.1':
+ resolution: {integrity: sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@napi-rs/nice-linux-arm64-gnu@1.1.1':
+ resolution: {integrity: sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-arm64-musl@1.1.1':
+ resolution: {integrity: sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-ppc64-gnu@1.1.1':
+ resolution: {integrity: sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg==}
+ engines: {node: '>= 10'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-riscv64-gnu@1.1.1':
+ resolution: {integrity: sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw==}
+ engines: {node: '>= 10'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-s390x-gnu@1.1.1':
+ resolution: {integrity: sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ==}
+ engines: {node: '>= 10'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@napi-rs/nice-linux-x64-gnu@1.1.1':
+ resolution: {integrity: sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@napi-rs/nice-linux-x64-musl@1.1.1':
+ resolution: {integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@napi-rs/nice-openharmony-arm64@1.1.1':
+ resolution: {integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@napi-rs/nice-win32-arm64-msvc@1.1.1':
+ resolution: {integrity: sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@napi-rs/nice-win32-ia32-msvc@1.1.1':
+ resolution: {integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@napi-rs/nice-win32-x64-msvc@1.1.1':
+ resolution: {integrity: sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@napi-rs/nice@1.1.1':
+ resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==}
+ engines: {node: '>= 10'}
+
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
@@ -3143,6 +4116,47 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@npmcli/agent@4.0.0':
+ resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/fs@5.0.0':
+ resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/git@7.0.1':
+ resolution: {integrity: sha512-+XTFxK2jJF/EJJ5SoAzXk3qwIDfvFc5/g+bD274LZ7uY7LE8sTfG6Z8rOanPl2ZEvZWqNvmEdtXC25cE54VcoA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/installed-package-contents@3.0.0':
+ resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ hasBin: true
+
+ '@npmcli/node-gyp@5.0.0':
+ resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/package-json@7.0.4':
+ resolution: {integrity: sha512-0wInJG3j/K40OJt/33ax47WfWMzZTm6OQxB9cDhTt5huCP2a9g2GnlsxmfN+PulItNPIpPrZ+kfwwUil7eHcZQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/promise-spawn@8.0.3':
+ resolution: {integrity: sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ '@npmcli/promise-spawn@9.0.1':
+ resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/redact@4.0.0':
+ resolution: {integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@npmcli/run-script@10.0.3':
+ resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
'@nx/nx-darwin-arm64@22.3.3':
resolution: {integrity: sha512-zBAGFGLal09CxhQkdMpOVwcwa9Y01aFm88jTTn35s/DdIWsfngmPzz0t4mG7u2D05q7TJfGQ31pIf5GkNUjo6g==}
cpu: [arm64]
@@ -3199,6 +4213,9 @@ packages:
'@oxc-project/types@0.106.0':
resolution: {integrity: sha512-QdsH3rZq480VnOHSHgPYOhjL8O8LBdcnSjM408BpPCCUc0JYYZPG9Gafl9i3OcGk/7137o+gweb4cCv3WAUykg==}
+ '@oxc-project/types@0.96.0':
+ resolution: {integrity: sha512-r/xkmoXA0xEpU6UGtn18CNVjXH6erU3KCpCDbpLmbVxBFor1U9MqN5Z2uMmCHJuXjJzlnDR+hWY+yPoLo8oHDw==}
+
'@oxc-resolver/binding-android-arm-eabi@11.15.0':
resolution: {integrity: sha512-Q+lWuFfq7whNelNJIP1dhXaVz4zO9Tu77GcQHyxDWh3MaCoO2Bisphgzmsh4ZoUe2zIchQh6OvQL99GlWHg9Tw==}
cpu: [arm]
@@ -3299,6 +4316,88 @@ packages:
cpu: [x64]
os: [win32]
+ '@parcel/watcher-android-arm64@2.5.4':
+ resolution: {integrity: sha512-hoh0vx4v+b3BNI7Cjoy2/B0ARqcwVNrzN/n7DLq9ZB4I3lrsvhrkCViJyfTj/Qi5xM9YFiH4AmHGK6pgH1ss7g==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ '@parcel/watcher-darwin-arm64@2.5.4':
+ resolution: {integrity: sha512-kphKy377pZiWpAOyTgQYPE5/XEKVMaj6VUjKT5VkNyUJlr2qZAn8gIc7CPzx+kbhvqHDT9d7EqdOqRXT6vk0zw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@parcel/watcher-darwin-x64@2.5.4':
+ resolution: {integrity: sha512-UKaQFhCtNJW1A9YyVz3Ju7ydf6QgrpNQfRZ35wNKUhTQ3dxJ/3MULXN5JN/0Z80V/KUBDGa3RZaKq1EQT2a2gg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@parcel/watcher-freebsd-x64@2.5.4':
+ resolution: {integrity: sha512-Dib0Wv3Ow/m2/ttvLdeI2DBXloO7t3Z0oCp4bAb2aqyqOjKPPGrg10pMJJAQ7tt8P4V2rwYwywkDhUia/FgS+Q==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@parcel/watcher-linux-arm-glibc@2.5.4':
+ resolution: {integrity: sha512-I5Vb769pdf7Q7Sf4KNy8Pogl/URRCKu9ImMmnVKYayhynuyGYMzuI4UOWnegQNa2sGpsPSbzDsqbHNMyeyPCgw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm-musl@2.5.4':
+ resolution: {integrity: sha512-kGO8RPvVrcAotV4QcWh8kZuHr9bXi9a3bSZw7kFarYR0+fGliU7hd/zevhjw8fnvIKG3J9EO5G6sXNGCSNMYPQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.4':
+ resolution: {integrity: sha512-KU75aooXhqGFY2W5/p8DYYHt4hrjHZod8AhcGAmhzPn/etTa+lYCDB2b1sJy3sWJ8ahFVTdy+EbqSBvMx3iFlw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm64-musl@2.5.4':
+ resolution: {integrity: sha512-Qx8uNiIekVutnzbVdrgSanM+cbpDD3boB1f8vMtnuG5Zau4/bdDbXyKwIn0ToqFhIuob73bcxV9NwRm04/hzHQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@parcel/watcher-linux-x64-glibc@2.5.4':
+ resolution: {integrity: sha512-UYBQvhYmgAv61LNUn24qGQdjtycFBKSK3EXr72DbJqX9aaLbtCOO8+1SkKhD/GNiJ97ExgcHBrukcYhVjrnogA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@parcel/watcher-linux-x64-musl@2.5.4':
+ resolution: {integrity: sha512-YoRWCVgxv8akZrMhdyVi6/TyoeeMkQ0PGGOf2E4omODrvd1wxniXP+DBynKoHryStks7l+fDAMUBRzqNHrVOpg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@parcel/watcher-win32-arm64@2.5.4':
+ resolution: {integrity: sha512-iby+D/YNXWkiQNYcIhg8P5hSjzXEHaQrk2SLrWOUD7VeC4Ohu0WQvmV+HDJokZVJ2UjJ4AGXW3bx7Lls9Ln4TQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@parcel/watcher-win32-ia32@2.5.4':
+ resolution: {integrity: sha512-vQN+KIReG0a2ZDpVv8cgddlf67J8hk1WfZMMP7sMeZmJRSmEax5xNDNWKdgqSe2brOKTQQAs3aCCUal2qBHAyg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@parcel/watcher-win32-x64@2.5.4':
+ resolution: {integrity: sha512-3A6efb6BOKwyw7yk9ro2vus2YTt2nvcd56AuzxdMiVOxL9umDyN5PKkKfZ/gZ9row41SjVmTVQNWQhaRRGpOKw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@parcel/watcher@2.5.4':
+ resolution: {integrity: sha512-WYa2tUVV5HiArWPB3ydlOc4R2ivq0IDrlqhMi3l7mVsFEXNcTfxYFPIHXHXIh/ca/y/V5N4E1zecyxdIBjYnkQ==}
+ engines: {node: '>= 10.0.0'}
+
'@preact/preset-vite@2.10.2':
resolution: {integrity: sha512-K9wHlJOtkE+cGqlyQ5v9kL3Ge0Ql4LlIZjkUTL+1zf3nNdF88F9UZN6VTV8jdzBX9Fl7WSzeNMSDG7qECPmSmg==}
peerDependencies:
@@ -3329,6 +4428,12 @@ packages:
'@quansync/fs@1.0.0':
resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
+ '@rolldown/binding-android-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-vPP9/MZzESh9QtmvQYojXP/midjgkkc1E4AdnPPAzQXo668ncHJcVLKjJKzoBdsQmaIvNjrMdsCwES8vTQHRQw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
'@rolldown/binding-android-arm64@1.0.0-beta.57':
resolution: {integrity: sha512-GoOVDy8bjw9z1K30Oo803nSzXJS/vWhFijFsW3kzvZCO8IZwFnNa6pGctmbbJstKl3Fv6UBwyjJQN6msejW0IQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3341,6 +4446,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-Lc3nrkxeaDVCVl8qR3qoxh6ltDZfkQ98j5vwIr5ALPkgjZtDK4BGCrrBoLpGVMg+csWcaqUbwbKwH5yvVa0oOw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
'@rolldown/binding-darwin-arm64@1.0.0-beta.57':
resolution: {integrity: sha512-9c4FOhRGpl+PX7zBK5p17c5efpF9aSpTPgyigv57hXf5NjQUaJOOiejPLAtFiKNBIfm5Uu6yFkvLKzOafNvlTw==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3353,6 +4464,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@rolldown/binding-darwin-x64@1.0.0-beta.47':
+ resolution: {integrity: sha512-eBYxQDwP0O33plqNVqOtUHqRiSYVneAknviM5XMawke3mwMuVlAsohtOqEjbCEl/Loi/FWdVeks5WkqAkzkYWQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
'@rolldown/binding-darwin-x64@1.0.0-beta.57':
resolution: {integrity: sha512-6RsB8Qy4LnGqNGJJC/8uWeLWGOvbRL/KG5aJ8XXpSEupg/KQtlBEiFaYU/Ma5Usj1s+bt3ItkqZYAI50kSplBA==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3365,6 +4482,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.47':
+ resolution: {integrity: sha512-Ns+kgp2+1Iq/44bY/Z30DETUSiHY7ZuqaOgD5bHVW++8vme9rdiWsN4yG4rRPXkdgzjvQ9TDHmZZKfY4/G11AA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
'@rolldown/binding-freebsd-x64@1.0.0-beta.57':
resolution: {integrity: sha512-uA9kG7+MYkHTbqwv67Tx+5GV5YcKd33HCJIi0311iYBd25yuwyIqvJfBdt1VVB8tdOlyTb9cPAgfCki8nhwTQg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3377,6 +4500,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47':
+ resolution: {integrity: sha512-4PecgWCJhTA2EFOlptYJiNyVP2MrVP4cWdndpOu3WmXqWqZUmSubhb4YUAIxAxnXATlGjC1WjxNPhV7ZllNgdA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.57':
resolution: {integrity: sha512-3KkS0cHsllT2T+Te+VZMKHNw6FPQihYsQh+8J4jkzwgvAQpbsbXmrqhkw3YU/QGRrD8qgcOvBr6z5y6Jid+rmw==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3389,6 +4518,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47':
+ resolution: {integrity: sha512-CyIunZ6D9U9Xg94roQI1INt/bLkOpPsZjZZkiaAZ0r6uccQdICmC99M9RUPlMLw/qg4yEWLlQhG73W/mG437NA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-beta.57':
resolution: {integrity: sha512-A3/wu1RgsHhqP3rVH2+sM81bpk+Qd2XaHTl8LtX5/1LNR7QVBFBCpAoiXwjTdGnI5cMdBVi7Z1pi52euW760Fw==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3401,6 +4536,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47':
+ resolution: {integrity: sha512-doozc/Goe7qRCSnzfJbFINTHsMktqmZQmweull6hsZZ9sjNWQ6BWQnbvOlfZJe4xE5NxM1NhPnY5Giqnl3ZrYQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
'@rolldown/binding-linux-arm64-musl@1.0.0-beta.57':
resolution: {integrity: sha512-d0kIVezTQtazpyWjiJIn5to8JlwfKITDqwsFv0Xc6s31N16CD2PC/Pl2OtKgS7n8WLOJbfqgIp5ixYzTAxCqMg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3413,6 +4554,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47':
+ resolution: {integrity: sha512-fodvSMf6Aqwa0wEUSTPewmmZOD44rc5Tpr5p9NkwQ6W1SSpUKzD3SwpJIgANDOhwiYhDuiIaYPGB7Ujkx1q0UQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
'@rolldown/binding-linux-x64-gnu@1.0.0-beta.57':
resolution: {integrity: sha512-E199LPijo98yrLjPCmETx8EF43sZf9t3guSrLee/ej1rCCc3zDVTR4xFfN9BRAapGVl7/8hYqbbiQPTkv73kUg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3425,6 +4572,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.47':
+ resolution: {integrity: sha512-Rxm5hYc0mGjwLh5sjlGmMygxAaV2gnsx7CNm2lsb47oyt5UQyPDZf3GP/ct8BEcwuikdqzsrrlIp8+kCSvMFNQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
'@rolldown/binding-linux-x64-musl@1.0.0-beta.57':
resolution: {integrity: sha512-++EQDpk/UJ33kY/BNsh7A7/P1sr/jbMuQ8cE554ZIy+tCUWCivo9zfyjDUoiMdnxqX6HLJEqqGnbGQOvzm2OMQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3437,6 +4590,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-YakuVe+Gc87jjxazBL34hbr8RJpRuFBhun7NEqoChVDlH5FLhLXjAPHqZd990TVGVNkemourf817Z8u2fONS8w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
'@rolldown/binding-openharmony-arm64@1.0.0-beta.57':
resolution: {integrity: sha512-voDEBcNqxbUv/GeXKFtxXVWA+H45P/8Dec4Ii/SbyJyGvCqV1j+nNHfnFUIiRQ2Q40DwPe/djvgYBs9PpETiMA==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3449,6 +4608,11 @@ packages:
cpu: [arm64]
os: [openharmony]
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.47':
+ resolution: {integrity: sha512-ak2GvTFQz3UAOw8cuQq8pWE+TNygQB6O47rMhvevvTzETh7VkHRFtRUwJynX5hwzFvQMP6G0az5JrBGuwaMwYQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
'@rolldown/binding-wasm32-wasi@1.0.0-beta.57':
resolution: {integrity: sha512-bRhcF7NLlCnpkzLVlVhrDEd0KH22VbTPkPTbMjlYvqhSmarxNIq5vtlQS8qmV7LkPKHrNLWyJW/V/sOyFba26Q==}
engines: {node: '>=14.0.0'}
@@ -3459,6 +4623,12 @@ packages:
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-o5BpmBnXU+Cj+9+ndMcdKjhZlPb79dVPBZnWwMnI4RlNSSq5yOvFZqvfPYbyacvnW03Na4n5XXQAPhu3RydZ0w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-beta.57':
resolution: {integrity: sha512-rnDVGRks2FQ2hgJ2g15pHtfxqkGFGjJQUDWzYznEkE8Ra2+Vag9OffxdbJMZqBWXHVM0iS4dv8qSiEn7bO+n1Q==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3471,6 +4641,18 @@ packages:
cpu: [arm64]
os: [win32]
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-FVOmfyYehNE92IfC9Kgs913UerDog2M1m+FADJypKz0gmRg3UyTt4o1cZMCAl7MiR89JpM9jegNO1nXuP1w1vw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-by/70F13IUE101Bat0oeH8miwWX5mhMFPk1yjCdxoTNHTyTdLgb0THNaebRM6AP7Kz+O3O2qx87sruYuF5UxHg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
'@rolldown/binding-win32-x64-msvc@1.0.0-beta.57':
resolution: {integrity: sha512-OqIUyNid1M4xTj6VRXp/Lht/qIP8fo25QyAZlCP+p6D2ATCEhyW4ZIFLnC9zAGN/HMbXoCzvwfa8Jjg/8J4YEg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3483,6 +4665,9 @@ packages:
cpu: [x64]
os: [win32]
+ '@rolldown/pluginutils@1.0.0-beta.47':
+ resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==}
+
'@rolldown/pluginutils@1.0.0-beta.53':
resolution: {integrity: sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==}
@@ -3606,6 +4791,10 @@ packages:
cpu: [x64]
os: [win32]
+ '@schematics/angular@21.0.5':
+ resolution: {integrity: sha512-uNBIilq5bGnln3D7Nbm3/K+Ot++eGj4rygU0DCw//IZiTQU/iSyF3UAsN++iRetu/OMs+97T/RoGPjD22ryiZg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+
'@shikijs/engine-oniguruma@3.19.0':
resolution: {integrity: sha512-1hRxtYIJfJSZeM5ivbUXv9hcJP3PWRo5prG/V2sWwiubUKTa+7P62d2qxCW8jiVFX4pgRHhnHNp+qeR7Xl+6kg==}
@@ -3621,6 +4810,30 @@ packages:
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
+ '@sigstore/bundle@4.0.0':
+ resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@sigstore/core@3.1.0':
+ resolution: {integrity: sha512-o5cw1QYhNQ9IroioJxpzexmPjfCe7gzafd2RY3qnMpxr4ZEja+Jad/U8sgFpaue6bOaF+z7RVkyKVV44FN+N8A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@sigstore/protobuf-specs@0.5.0':
+ resolution: {integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ '@sigstore/sign@4.1.0':
+ resolution: {integrity: sha512-Vx1RmLxLGnSUqx/o5/VsCjkuN5L7y+vxEEwawvc7u+6WtX2W4GNa7b9HEjmcRWohw/d6BpATXmvOwc78m+Swdg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@sigstore/tuf@4.0.1':
+ resolution: {integrity: sha512-OPZBg8y5Vc9yZjmWCHrlWPMBqW5yd8+wFNl+thMdtcWz3vjVSoJQutF8YkrzI0SLGnkuFof4HSsWUhXrf219Lw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@sigstore/verify@3.1.0':
+ resolution: {integrity: sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
'@sinclair/typebox@0.34.41':
resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
@@ -3826,6 +5039,14 @@ packages:
peerDependencies:
preact: '>=10 || ^10.0.0-alpha.0 || ^10.0.0-beta.0'
+ '@tufjs/canonical-json@2.0.0':
+ resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@tufjs/models@4.1.0':
+ resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
@@ -4093,6 +5314,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@vitejs/plugin-basic-ssl@2.1.0':
+ resolution: {integrity: sha512-dOxxrhgyDIEUADhb/8OlV9JIqYLgos03YorAueTIeOUskLJSEsfwCByjbu98ctXitUN3znXKp0bYD/WHSudCeA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ peerDependencies:
+ vite: ^6.0.0 || ^7.0.0
+
'@vitejs/plugin-react@5.1.2':
resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -4139,6 +5366,14 @@ packages:
resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
+ abbrev@4.0.0:
+ resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -4149,17 +5384,44 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
+
+ ajv-formats@3.0.1:
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
+ peerDependencies:
+ ajv: ^8.0.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+
+ algoliasearch@5.40.1:
+ resolution: {integrity: sha512-iUNxcXUNg9085TJx0HJLjqtDE0r1RZ0GOGrt8KNQqQT5ugu8lZsHuMUYW/e0lHhq6xBvmktU9Bw4CXP9VQeKrg==}
+ engines: {node: '>= 14.0.0'}
+
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
+ ansi-escapes@7.2.0:
+ resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==}
+ engines: {node: '>=18'}
+
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+ engines: {node: '>=12'}
+
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -4168,6 +5430,10 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+ engines: {node: '>=12'}
+
ansis@4.2.0:
resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
engines: {node: '>=14'}
@@ -4244,10 +5510,17 @@ packages:
resolution: {integrity: sha512-8QdH6czo+G7uBsNo0GiUfouPN1lRzKdJTGnKXwe12gkFbnnOUaUKGN55dMkfy+mnxmvjwl9zcI4VncczcVXDhA==}
hasBin: true
+ beasties@0.3.5:
+ resolution: {integrity: sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==}
+ engines: {node: '>=14.0.0'}
+
better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
+ bidi-js@1.0.3:
+ resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
+
birecord@0.1.1:
resolution: {integrity: sha512-VUpsf/qykW0heRlC8LooCq28Kxn3mAqKohhDG/49rrsQ1dT1CXyj/pgXS+5BSRzFTR/3DyIBOqQOrGyZOh71Aw==}
@@ -4257,6 +5530,10 @@ packages:
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ body-parser@2.2.2:
+ resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
+ engines: {node: '>=18'}
+
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -4275,6 +5552,9 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
@@ -4282,10 +5562,18 @@ packages:
resolution: {integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==}
engines: {node: '>= 0.8'}
+ bytes@3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
+ cacache@20.0.3:
+ resolution: {integrity: sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
@@ -4313,6 +5601,10 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
@@ -4323,6 +5615,14 @@ packages:
resolution: {integrity: sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==}
engines: {node: '>=20.18.1'}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
+ engines: {node: '>= 14.16.0'}
+
+ chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
+
ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
@@ -4334,14 +5634,34 @@ packages:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
+ cli-cursor@5.0.0:
+ resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
+ engines: {node: '>=18'}
+
cli-spinners@2.6.1:
resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
+ cli-spinners@3.3.0:
+ resolution: {integrity: sha512-/+40ljC3ONVnYIttjMWrlL51nItDAbBrq2upN8BPyvGU/2n5Oxw3tbNwORCaNuNqLJnxGqOfjUuhsv7l5Q4IsQ==}
+ engines: {node: '>=18.20'}
+
+ cli-truncate@5.1.1:
+ resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==}
+ engines: {node: '>=20'}
+
+ cli-width@4.1.0:
+ resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
+ engines: {node: '>= 12'}
+
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
+
clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -4357,6 +5677,9 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -4371,9 +5694,32 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ content-disposition@1.0.1:
+ resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==}
+ engines: {node: '>=18'}
+
+ content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+
+ convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
+
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
+ engines: {node: '>= 0.6'}
+
+ cors@2.8.5:
+ resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
+ engines: {node: '>= 0.10'}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -4381,16 +5727,35 @@ packages:
css-select@5.2.2:
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
+ css-select@6.0.0:
+ resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==}
+
+ css-tree@3.1.0:
+ resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+
css-what@6.2.2:
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
+ css-what@7.0.0:
+ resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==}
+ engines: {node: '>= 6'}
+
css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
+ cssstyle@5.3.7:
+ resolution: {integrity: sha512-7D2EPVltRrsTkhpQmksIu+LxeWAIEk6wRDMJ1qljlv+CKHJM+cJLlfhWIzNA44eAsHXSNe3+vO6DW1yCYx8SuQ==}
+ engines: {node: '>=20'}
+
csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+ data-urls@6.0.0:
+ resolution: {integrity: sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==}
+ engines: {node: '>=20'}
+
dataloader@1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
@@ -4406,6 +5771,9 @@ packages:
supports-color:
optional: true
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
deep-equal@2.2.3:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
@@ -4435,10 +5803,18 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
+ depd@2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+
detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
+
devalue@5.5.0:
resolution: {integrity: sha512-69sM5yrHfFLJt0AZ9QqZXGCPfJ7fQjvpln3Rq5+PS03LD32Ost1Q9N+eEnaQwGRIriKkMImXD56ocjQmfjbV3w==}
@@ -4490,9 +5866,15 @@ packages:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
+ ee-first@1.1.1:
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+
electron-to-chromium@1.5.266:
resolution: {integrity: sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg==}
+ emoji-regex@10.6.0:
+ resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
+
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -4500,9 +5882,16 @@ packages:
resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==}
engines: {node: '>=14'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
encoding-sniffer@0.2.1:
resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==}
+ encoding@0.1.13:
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+
end-of-stream@1.4.5:
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
@@ -4526,6 +5915,17 @@ packages:
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
engines: {node: '>=0.12'}
+ env-paths@2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+
+ environment@1.1.0:
+ resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
+ engines: {node: '>=18'}
+
+ err-code@2.0.3:
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -4548,6 +5948,16 @@ packages:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
+ esbuild@0.25.12:
+ resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ esbuild@0.26.0:
+ resolution: {integrity: sha512-3Hq7jri+tRrVWha+ZeIVhl4qJRha/XjRNSopvTsOaCvfPHrflTYTcUFcEjMKdxofsXXsdc4zjg5NOTnL4Gl57Q==}
+ engines: {node: '>=18'}
+ hasBin: true
+
esbuild@0.27.1:
resolution: {integrity: sha512-yY35KZckJJuVVPXpvjgxiCuVEJT67F6zDeVTv4rizyPrfGBUpZQsvmxnN+C371c2esD/hNMjj4tpBhuueLN7aA==}
engines: {node: '>=18'}
@@ -4557,6 +5967,9 @@ packages:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
+ escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
@@ -4720,10 +6133,38 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
+ etag@1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
+
+ eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+
+ eventsource-parser@3.0.6:
+ resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
+ engines: {node: '>=18.0.0'}
+
+ eventsource@3.0.7:
+ resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==}
+ engines: {node: '>=18.0.0'}
+
expect-type@1.2.2:
resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
engines: {node: '>=12.0.0'}
+ exponential-backoff@3.1.3:
+ resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
+
+ express-rate-limit@7.5.1:
+ resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ express: '>= 4.11'
+
+ express@5.2.1:
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
+ engines: {node: '>= 18'}
+
extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
@@ -4740,6 +6181,9 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-uri@3.1.0:
+ resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
+
fastq@1.19.1:
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
@@ -4770,6 +6214,10 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
+ finalhandler@2.1.1:
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
+ engines: {node: '>= 18.0.0'}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -4811,6 +6259,14 @@ packages:
engines: {node: '>=18.3.0'}
hasBin: true
+ forwarded@0.2.0:
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
+
+ fresh@2.0.0:
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
+ engines: {node: '>= 0.8'}
+
front-matter@4.0.2:
resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
@@ -4825,6 +6281,10 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
+ fs-minipass@3.0.3:
+ resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -4844,6 +6304,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
+ get-east-asian-width@1.4.0:
+ resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
+ engines: {node: '>=18'}
+
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -4863,6 +6327,13 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
+ glob-to-regexp@0.4.1:
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+
+ glob@13.0.0:
+ resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==}
+ engines: {node: 20 || >=22}
+
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
@@ -4934,9 +6405,21 @@ packages:
hermes-parser@0.25.1:
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
+ hono@4.11.3:
+ resolution: {integrity: sha512-PmQi306+M/ct/m5s66Hrg+adPnkD5jiO6IjA7WhWw0gSBSo1EcRegwuI1deZ+wd5pzCGynCcn2DprnE4/yEV4w==}
+ engines: {node: '>=16.9.0'}
+
hookable@6.0.1:
resolution: {integrity: sha512-uKGyY8BuzN/a5gvzvA+3FVWo0+wUjgtfSdnmjtrOVwQCZPHpHDH2WRO3VZSOeluYrHoDCiXFffZXs8Dj1ULWtw==}
+ hosted-git-info@9.0.2:
+ resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ html-encoding-sniffer@6.0.0:
+ resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+
html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
@@ -4946,6 +6429,21 @@ packages:
htmlparser2@10.0.0:
resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
+ http-cache-semantics@4.2.0:
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
+
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
+ engines: {node: '>= 0.8'}
+
+ http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
+
human-id@4.1.3:
resolution: {integrity: sha512-tsYlhAYpjCKa//8rXZ9DqKEawhPoSytweBC2eNvcaDK+57RZLHGqNs3PZTQO6yekLFSuvA6AlnAfrw1uBvtb+Q==}
hasBin: true
@@ -4961,6 +6459,10 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ ignore-walk@8.0.0:
+ resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
@@ -4969,6 +6471,9 @@ packages:
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
+ immutable@5.1.4:
+ resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
+
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
@@ -4988,10 +6493,26 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ ini@5.0.0:
+ resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ ini@6.0.0:
+ resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
+ ip-address@10.1.0:
+ resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
+ engines: {node: '>= 12'}
+
+ ipaddr.js@1.9.1:
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
+
is-arguments@1.2.0:
resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
engines: {node: '>= 0.4'}
@@ -5012,6 +6533,10 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
+
is-date-object@1.1.0:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
@@ -5029,6 +6554,10 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
+ is-fullwidth-code-point@5.1.0:
+ resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
+ engines: {node: '>=18'}
+
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -5043,6 +6572,10 @@ packages:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
+ is-interactive@2.0.0:
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
+
is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
@@ -5055,6 +6588,12 @@ packages:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
+ is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
+
is-reference@3.0.3:
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
@@ -5086,6 +6625,10 @@ packages:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -5112,6 +6655,18 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+
+ istanbul-lib-coverage@3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
+
+ istanbul-lib-instrument@6.0.3:
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ engines: {node: '>=10'}
+
jest-diff@30.2.0:
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -5120,6 +6675,9 @@ packages:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
+ jose@6.1.3:
+ resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -5131,6 +6689,15 @@ packages:
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
+ jsdom@27.4.0:
+ resolution: {integrity: sha512-mjzqwWRD9Y1J1KUi7W97Gja1bwOOM5Ug0EZ6UDK3xS7j7mndrkwozHtSblfomlzyB4NepioNt+B2sOSzczVgtQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ canvas: ^3.0.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -5139,9 +6706,19 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+ json-parse-even-better-errors@5.0.0:
+ resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ json-schema-traverse@1.0.0:
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+
+ json-schema-typed@8.0.2:
+ resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==}
+
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@@ -5153,9 +6730,16 @@ packages:
jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
+
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ jsonparse@1.3.1:
+ resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
+ engines: {'0': node >= 0.2.0}
+
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -5185,6 +6769,14 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
+ listr2@9.0.5:
+ resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
+ engines: {node: '>=20.0.0'}
+
+ lmdb@3.4.3:
+ resolution: {integrity: sha512-GWV1kVi6uhrXWqe+3NXWO73OYe8fto6q8JMo0HOpk1vf8nEyFWgo4CSNJpIFzsOxOrysVUlcO48qRbQfmKd1gA==}
+ hasBin: true
+
locate-character@3.0.0:
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
@@ -5206,6 +6798,14 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
+ engines: {node: '>=18'}
+
+ log-update@6.1.0:
+ resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
+ engines: {node: '>=18'}
+
lru-cache@11.2.4:
resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==}
engines: {node: 20 || >=22}
@@ -5220,9 +6820,16 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
+ magic-string@0.30.19:
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
+
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+ make-fetch-happen@15.0.3:
+ resolution: {integrity: sha512-iyyEpDty1mwW3dGlYXAJqC/azFn5PPvgKVwXayOGBSmKLxhKZ9fg4qIan2ePpp1vJIwfFiO34LAPZgq9SZW9Aw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
@@ -5239,13 +6846,24 @@ packages:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
+ mdn-data@2.12.2:
+ resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
+
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
merge-anything@5.1.7:
resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==}
engines: {node: '>=12.13'}
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
+
merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
@@ -5258,14 +6876,26 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.54.0:
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mime-types@3.0.2:
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
+
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
+ mimic-function@5.0.1:
+ resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
+ engines: {node: '>=18'}
+
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -5288,13 +6918,60 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ minipass-collect@2.0.1:
+ resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minipass-fetch@5.0.0:
+ resolution: {integrity: sha512-fiCdUALipqgPWrOVTz9fw0XhcazULXOSU6ie40DDbX1F49p1dBrSRBuswndTx1x3vEb/g0FT7vC4c4C2u/mh3A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ minipass-flush@1.0.5:
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
+
+ minipass-pipeline@1.2.4:
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
+
+ minipass-sized@1.0.3:
+ resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ engines: {node: '>=8'}
+
+ minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minizlib@3.1.0:
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
+ engines: {node: '>= 18'}
+
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
+ mrmime@2.0.1:
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
+ engines: {node: '>=10'}
+
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ msgpackr-extract@3.0.3:
+ resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==}
+ hasBin: true
+
+ msgpackr@1.11.8:
+ resolution: {integrity: sha512-bC4UGzHhVvgDNS7kn9tV8fAucIYUBuGojcaLiz7v+P63Lmtm0Xeji8B/8tYKddALXxJLpwIeBmUN3u64C4YkRA==}
+
+ mute-stream@2.0.0:
+ resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -5316,6 +6993,16 @@ packages:
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
+ node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -5325,6 +7012,15 @@ packages:
encoding:
optional: true
+ node-gyp-build-optional-packages@5.2.2:
+ resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
+ hasBin: true
+
+ node-gyp@12.1.0:
+ resolution: {integrity: sha512-W+RYA8jBnhSr2vrTtlPYPc1K+CSjGpVDRZxcqJcERZ8ND3A1ThWPHRwctTx3qC3oW99jt726jhdz3Y6ky87J4g==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
node-html-parser@6.1.13:
resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
@@ -5334,6 +7030,43 @@ packages:
node-releases@2.0.27:
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+ nopt@9.0.0:
+ resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
+ npm-bundled@4.0.0:
+ resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ npm-install-checks@8.0.0:
+ resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ npm-normalize-package-bin@4.0.0:
+ resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ npm-normalize-package-bin@5.0.0:
+ resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ npm-package-arg@13.0.1:
+ resolution: {integrity: sha512-6zqls5xFvJbgFjB1B2U6yITtyGBjDBORB7suI4zA4T/sZ1OmkMFlaQSNB/4K0LtXNA1t4OprAFxPisadK5O2ag==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ npm-packlist@10.0.3:
+ resolution: {integrity: sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ npm-pick-manifest@11.0.3:
+ resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ npm-registry-fetch@19.1.1:
+ resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -5353,6 +7086,10 @@ packages:
'@swc/core':
optional: true
+ object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
@@ -5372,6 +7109,10 @@ packages:
obug@2.1.1:
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
+ on-finished@2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -5379,6 +7120,10 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
+ onetime@7.0.0:
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
+ engines: {node: '>=18'}
+
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -5391,6 +7136,13 @@ packages:
resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
engines: {node: '>=10'}
+ ora@9.0.0:
+ resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==}
+ engines: {node: '>=20'}
+
+ ordered-binary@1.6.1:
+ resolution: {integrity: sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==}
+
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
@@ -5421,6 +7173,10 @@ packages:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
+ p-map@7.0.4:
+ resolution: {integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==}
+ engines: {node: '>=18'}
+
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
@@ -5431,19 +7187,37 @@ packages:
package-manager-detector@1.6.0:
resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==}
+ pacote@21.0.3:
+ resolution: {integrity: sha512-itdFlanxO0nmQv4ORsvA9K1wv40IPfB9OmWqfaJWvoJ30VKyHsqNgDVeG+TVhI7Gk7XW8slUy7cA9r6dF5qohw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
+ parse5-html-rewriting-stream@8.0.0:
+ resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==}
+
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
parse5-parser-stream@7.1.2:
resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
+ parse5-sax-parser@8.0.0:
+ resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==}
+
parse5@7.3.0:
resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+ parse5@8.0.0:
+ resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
+
+ parseurl@1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
+
path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
@@ -5452,6 +7226,16 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
+ path-parse@1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+ path-scurry@2.0.1:
+ resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
+ engines: {node: 20 || >=22}
+
+ path-to-regexp@8.3.0:
+ resolution: {integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -5474,10 +7258,21 @@ packages:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
+ piscina@5.1.3:
+ resolution: {integrity: sha512-0u3N7H4+hbr40KjuVn2uNhOcthu/9usKhnw5vT3J7ply79v3D3M8naI00el9Klcy16x557VsEkkUQaHCWFXC/g==}
+ engines: {node: '>=20.x'}
+
+ pkce-challenge@5.0.1:
+ resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
+ engines: {node: '>=16.20.0'}
+
possible-typed-array-names@1.1.0:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
+ postcss-media-query-parser@0.2.3:
+ resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
+
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -5518,6 +7313,22 @@ packages:
resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ proc-log@5.0.0:
+ resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ proc-log@6.1.0:
+ resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ promise-retry@2.0.1:
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
+
+ proxy-addr@2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
+
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -5534,6 +7345,10 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
+ qs@6.14.1:
+ resolution: {integrity: sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==}
+ engines: {node: '>=0.6'}
+
quansync@0.2.11:
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
@@ -5543,6 +7358,14 @@ packages:
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ range-parser@1.2.1:
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
+
+ raw-body@3.0.2:
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
+ engines: {node: '>= 0.10'}
+
react-dom@19.2.3:
resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
peerDependencies:
@@ -5570,10 +7393,17 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
+
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
+ reflect-metadata@0.2.2:
+ resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
+
regexp.prototype.flags@1.5.4:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
@@ -5582,6 +7412,10 @@ packages:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
+ require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+
resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -5597,14 +7431,30 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
+ restore-cursor@5.1.0:
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
+ engines: {node: '>=18'}
+
+ retry@0.12.0:
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
+
reusify@1.1.0:
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
rolldown-plugin-dts@0.20.0:
resolution: {integrity: sha512-cLAY1kN2ilTYMfZcFlGWbXnu6Nb+8uwUBsi+Mjbh4uIx7IN8uMOmJ7RxrrRgPsO4H7eSz3E+JwGoL1gyugiyUA==}
engines: {node: '>=20.19.0'}
@@ -5624,6 +7474,11 @@ packages:
vue-tsc:
optional: true
+ rolldown@1.0.0-beta.47:
+ resolution: {integrity: sha512-Mid74GckX1OeFAOYz9KuXeWYhq3xkXbMziYIC+ULVdUzPTG9y70OBSBQDQn9hQP8u/AfhuYw1R0BSg15nBI4Dg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
rolldown@1.0.0-beta.57:
resolution: {integrity: sha512-lMMxcNN71GMsSko8RyeTaFoATHkCh4IWU7pYF73ziMYjhHZWfVesC6GQ+iaJCvZmVjvgSks9Ks1aaqEkBd8udg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -5639,9 +7494,16 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ rxjs@7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
+
sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
@@ -5656,6 +7518,15 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ sass@1.93.2:
+ resolution: {integrity: sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
scheduler@0.27.0:
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
@@ -5668,6 +7539,10 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ send@1.2.1:
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
+ engines: {node: '>= 18'}
+
seroval-plugins@1.3.3:
resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==}
engines: {node: '>=10'}
@@ -5678,6 +7553,10 @@ packages:
resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==}
engines: {node: '>=10'}
+ serve-static@2.2.1:
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
+ engines: {node: '>= 18'}
+
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
@@ -5686,6 +7565,9 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ setprototypeof@1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -5764,6 +7646,10 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
+ sigstore@4.1.0:
+ resolution: {integrity: sha512-/fUgUhYghuLzVT/gaJoeVehLCgZiUxPCPMcyVNY0lIf/cTCz58K/WTI7PefDarXxp9nUKpEwg1yyz3eSBMTtgA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
simple-code-frame@1.3.0:
resolution: {integrity: sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==}
@@ -5781,10 +7667,26 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
+ slice-ansi@7.1.2:
+ resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
+ engines: {node: '>=18'}
+
+ smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+
smol-toml@1.5.2:
resolution: {integrity: sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==}
engines: {node: '>= 18'}
+ socks-proxy-agent@8.0.5:
+ resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
+ engines: {node: '>= 14'}
+
+ socks@2.8.7:
+ resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+
solid-js@1.9.10:
resolution: {integrity: sha512-Coz956cos/EPDlhs6+jsdTxKuJDPT7B5SVIWgABwROyxjY7Xbr8wkzD68Et+NxnV7DLJ3nJdAC2r9InuV/4Jew==}
@@ -5797,6 +7699,13 @@ packages:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
+ source-map-support@0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+
+ source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+
source-map@0.7.6:
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
engines: {node: '>= 12'}
@@ -5804,9 +7713,29 @@ packages:
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
+ spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+
+ spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+
+ spdx-expression-parse@3.0.1:
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+
+ spdx-license-ids@3.0.22:
+ resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
+
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ ssri@12.0.0:
+ resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ ssri@13.0.0:
+ resolution: {integrity: sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
stable-hash-x@0.2.0:
resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
engines: {node: '>=12.0.0'}
@@ -5818,9 +7747,17 @@ packages:
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
+ engines: {node: '>= 0.8'}
+
std-env@3.10.0:
resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
+ stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+
stop-iteration-iterator@1.1.0:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
@@ -5832,6 +7769,14 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
+ string-width@7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
+ engines: {node: '>=18'}
+
+ string-width@8.1.0:
+ resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
+ engines: {node: '>=20'}
+
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
@@ -5839,6 +7784,10 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
+ strip-ansi@7.1.2:
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
+ engines: {node: '>=12'}
+
strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
@@ -5859,10 +7808,17 @@ packages:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
+ supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
svelte@5.45.5:
resolution: {integrity: sha512-2074U+vObO5Zs8/qhxtBwdi6ZXNIhEBTzNmUFjiZexLxTdt9vq96D/0pnQELl6YcpLMD7pZ2dhXKByfGS8SAdg==}
engines: {node: '>=18'}
+ symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+
tapable@2.3.0:
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
@@ -5871,6 +7827,10 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
+ tar@7.5.2:
+ resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==}
+ engines: {node: '>=18'}
+
term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
@@ -5890,6 +7850,13 @@ packages:
resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
engines: {node: '>=14.0.0'}
+ tldts-core@7.0.19:
+ resolution: {integrity: sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==}
+
+ tldts@7.0.19:
+ resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==}
+ hasBin: true
+
tmp@0.2.5:
resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
engines: {node: '>=14.14'}
@@ -5898,9 +7865,21 @@ packages:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
+ toidentifier@1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
+
+ tough-cookie@6.0.0:
+ resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
+ engines: {node: '>=16'}
+
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ tr46@6.0.0:
+ resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
+ engines: {node: '>=20'}
+
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -5957,10 +7936,18 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+ tuf-js@4.1.0:
+ resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
+ type-is@2.0.1:
+ resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
+ engines: {node: '>= 0.6'}
+
typedoc-plugin-frontmatter@1.3.0:
resolution: {integrity: sha512-xYQFMAecMlsRUjmf9oM/Sq2FVz4zlgcbIeVFNLdO118CHTN06gIKJNSlyExh9+Xl8sK0YhIvoQwViUURxritWA==}
peerDependencies:
@@ -6012,10 +7999,22 @@ packages:
resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==}
engines: {node: '>=20.18.1'}
+ unique-filename@5.0.0:
+ resolution: {integrity: sha512-2RaJTAvAb4owyjllTfXzFClJ7WsGxlykkPvCr9pA//LD9goVq+m4PPAeBgNodGZ7nSrntT/auWpJ6Y5IFXcfjg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ unique-slug@6.0.0:
+ resolution: {integrity: sha512-4Lup7Ezn8W3d52/xBhZBVdx323ckxa7DEvd9kPQHppTkLoJXw6ltrBCyj5pnrxj0qKDxYMJ56CoxNuFCscdTiw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
+ unpipe@1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+
unrs-resolver@1.11.1:
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
@@ -6046,10 +8045,21 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ validate-npm-package-license@3.0.4:
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+
validate-npm-package-name@5.0.1:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ validate-npm-package-name@6.0.2:
+ resolution: {integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ vary@1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
+
vite-plugin-solid@2.11.10:
resolution: {integrity: sha512-Yr1dQybmtDtDAHkii6hXuc1oVH9CPcS/Zb2jN/P36qqcrkNnVPsMTzQ06jyzFPFjj3U1IYKMVt/9ZqcwGCEbjw==}
peerDependencies:
@@ -6065,6 +8075,46 @@ packages:
peerDependencies:
vite: 5.x || 6.x || 7.x
+ vite@7.2.2:
+ resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vite@7.3.1:
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -6153,19 +8203,35 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+
walk-up-path@4.0.0:
resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==}
engines: {node: 20 || >=22}
+ watchpack@2.4.4:
+ resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
+ engines: {node: '>=10.13.0'}
+
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ weak-lru-cache@1.2.2:
+ resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==}
+
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ webidl-conversions@8.0.1:
+ resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==}
+ engines: {node: '>=20'}
+
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@3.0.0:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
@@ -6175,6 +8241,10 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
+ whatwg-url@15.1.0:
+ resolution: {integrity: sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==}
+ engines: {node: '>=20'}
+
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -6195,6 +8265,16 @@ packages:
engines: {node: '>= 8'}
hasBin: true
+ which@5.0.0:
+ resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+ hasBin: true
+
+ which@6.0.0:
+ resolution: {integrity: sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
why-is-node-running@2.3.0:
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
engines: {node: '>=8'}
@@ -6204,10 +8284,18 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
+ wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
+ wrap-ansi@9.0.2:
+ resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
+ engines: {node: '>=18'}
+
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -6223,6 +8311,13 @@ packages:
utf-8-validate:
optional: true
+ xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+
+ xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -6230,53 +8325,345 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yaml@2.8.2:
- resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
- engines: {node: '>= 14.6'}
- hasBin: true
+ yallist@4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+ yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
+ yargs-parser@21.1.1:
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
+
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
+ yargs@17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
+
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
+ yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ yoctocolors-cjs@2.1.3:
+ resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
+ engines: {node: '>=18'}
+
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
+ engines: {node: '>=18'}
+
+ zimmerframe@1.1.4:
+ resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
+
+ zod-to-json-schema@3.25.1:
+ resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==}
+ peerDependencies:
+ zod: ^3.25 || ^4
+
+ zod-validation-error@3.5.4:
+ resolution: {integrity: sha512-+hEiRIiPobgyuFlEojnqjJnhFvg4r/i3cqgcm67eehZf/WBaK3g6cD02YU9mtdVxZjv8CzCA9n/Rhrs3yAAvAw==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ zod: ^3.24.4
+
+ zod-validation-error@4.0.2:
+ resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ zod: ^3.25.0 || ^4.0.0
+
+ zod@3.25.76:
+ resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+
+ zod@4.1.13:
+ resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
+
+ zod@4.3.5:
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
+
+ zone.js@0.14.10:
+ resolution: {integrity: sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==}
+
+snapshots:
+
+ '@acemir/cssom@0.9.31': {}
+
+ '@adobe/css-tools@4.4.4': {}
+
+ '@algolia/abtesting@1.6.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-abtesting@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-analytics@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-common@5.40.1': {}
+
+ '@algolia/client-insights@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-personalization@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-query-suggestions@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/client-search@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/ingestion@1.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/monitoring@1.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/recommend@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/requester-browser-xhr@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
+ '@algolia/requester-fetch@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
+ '@algolia/requester-node-http@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
+ '@ampproject/remapping@2.3.0':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@andrewbranch/untar.js@1.0.3':
+ optional: true
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ '@angular-devkit/architect@0.2100.5(chokidar@4.0.3)':
+ dependencies:
+ '@angular-devkit/core': 21.0.5(chokidar@4.0.3)
+ rxjs: 7.8.2
+ transitivePeerDependencies:
+ - chokidar
- yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
+ '@angular-devkit/core@21.0.5(chokidar@4.0.3)':
+ dependencies:
+ ajv: 8.17.1
+ ajv-formats: 3.0.1(ajv@8.17.1)
+ jsonc-parser: 3.3.1
+ picomatch: 4.0.3
+ rxjs: 7.8.2
+ source-map: 0.7.6
+ optionalDependencies:
+ chokidar: 4.0.3
- yocto-queue@0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
- engines: {node: '>=10'}
+ '@angular-devkit/schematics@21.0.5(chokidar@4.0.3)':
+ dependencies:
+ '@angular-devkit/core': 21.0.5(chokidar@4.0.3)
+ jsonc-parser: 3.3.1
+ magic-string: 0.30.19
+ ora: 9.0.0
+ rxjs: 7.8.2
+ transitivePeerDependencies:
+ - chokidar
- zimmerframe@1.1.4:
- resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
+ '@angular/build@21.0.5(@angular/compiler-cli@21.0.8(@angular/compiler@21.0.8)(typescript@5.9.3))(@angular/compiler@21.0.8)(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(@types/node@25.0.3)(chokidar@4.0.3)(jiti@2.6.1)(postcss@8.5.6)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2))(yaml@2.8.2)':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.2100.5(chokidar@4.0.3)
+ '@angular/compiler': 21.0.8
+ '@angular/compiler-cli': 21.0.8(@angular/compiler@21.0.8)(typescript@5.9.3)
+ '@babel/core': 7.28.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@inquirer/confirm': 5.1.19(@types/node@25.0.3)
+ '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.2(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
+ beasties: 0.3.5
+ browserslist: 4.28.1
+ esbuild: 0.26.0
+ https-proxy-agent: 7.0.6
+ istanbul-lib-instrument: 6.0.3
+ jsonc-parser: 3.3.1
+ listr2: 9.0.5
+ magic-string: 0.30.19
+ mrmime: 2.0.1
+ parse5-html-rewriting-stream: 8.0.0
+ picomatch: 4.0.3
+ piscina: 5.1.3
+ rolldown: 1.0.0-beta.47
+ sass: 1.93.2
+ semver: 7.7.3
+ source-map-support: 0.5.21
+ tinyglobby: 0.2.15
+ tslib: 2.8.1
+ typescript: 5.9.3
+ undici: 7.16.0
+ vite: 7.2.2(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+ watchpack: 2.4.4
+ optionalDependencies:
+ '@angular/core': 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ '@angular/platform-browser': 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))
+ lmdb: 3.4.3
+ postcss: 8.5.6
+ vitest: 4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2)
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - jiti
+ - lightningcss
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
- zod-validation-error@3.5.4:
- resolution: {integrity: sha512-+hEiRIiPobgyuFlEojnqjJnhFvg4r/i3cqgcm67eehZf/WBaK3g6cD02YU9mtdVxZjv8CzCA9n/Rhrs3yAAvAw==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- zod: ^3.24.4
+ '@angular/cli@21.0.5(@types/node@25.0.3)(chokidar@4.0.3)(hono@4.11.3)':
+ dependencies:
+ '@angular-devkit/architect': 0.2100.5(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.5(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.5(chokidar@4.0.3)
+ '@inquirer/prompts': 7.9.0(@types/node@25.0.3)
+ '@listr2/prompt-adapter-inquirer': 3.0.5(@inquirer/prompts@7.9.0(@types/node@25.0.3))(@types/node@25.0.3)(listr2@9.0.5)
+ '@modelcontextprotocol/sdk': 1.25.2(hono@4.11.3)(zod@4.1.13)
+ '@schematics/angular': 21.0.5(chokidar@4.0.3)
+ '@yarnpkg/lockfile': 1.1.0
+ algoliasearch: 5.40.1
+ ini: 5.0.0
+ jsonc-parser: 3.3.1
+ listr2: 9.0.5
+ npm-package-arg: 13.0.1
+ pacote: 21.0.3
+ parse5-html-rewriting-stream: 8.0.0
+ resolve: 1.22.11
+ semver: 7.7.3
+ yargs: 18.0.0
+ zod: 4.1.13
+ transitivePeerDependencies:
+ - '@cfworker/json-schema'
+ - '@types/node'
+ - chokidar
+ - hono
+ - supports-color
- zod-validation-error@4.0.2:
- resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- zod: ^3.25.0 || ^4.0.0
+ '@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2)':
+ dependencies:
+ '@angular/core': 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ rxjs: 7.8.2
+ tslib: 2.8.1
- zod@3.25.76:
- resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+ '@angular/compiler-cli@21.0.8(@angular/compiler@21.0.8)(typescript@5.9.3)':
+ dependencies:
+ '@angular/compiler': 21.0.8
+ '@babel/core': 7.28.4
+ '@jridgewell/sourcemap-codec': 1.5.5
+ chokidar: 4.0.3
+ convert-source-map: 1.9.0
+ reflect-metadata: 0.2.2
+ semver: 7.7.3
+ tslib: 2.8.1
+ yargs: 18.0.0
+ optionalDependencies:
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
- zod@4.1.13:
- resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
+ '@angular/compiler@21.0.8':
+ dependencies:
+ tslib: 2.8.1
- zod@4.3.5:
- resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
+ '@angular/core@18.2.14(rxjs@7.8.2)(zone.js@0.14.10)':
+ dependencies:
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ zone.js: 0.14.10
-snapshots:
+ '@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)':
+ dependencies:
+ rxjs: 7.8.2
+ tslib: 2.8.1
+ optionalDependencies:
+ '@angular/compiler': 21.0.8
- '@adobe/css-tools@4.4.4': {}
+ '@angular/forms@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(rxjs@7.8.2)':
+ dependencies:
+ '@angular/common': 21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ '@angular/platform-browser': 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))
+ '@standard-schema/spec': 1.0.0
+ rxjs: 7.8.2
+ tslib: 2.8.1
- '@andrewbranch/untar.js@1.0.3':
- optional: true
+ '@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))':
+ dependencies:
+ '@angular/common': 21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ tslib: 2.8.1
+
+ '@angular/router@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(@angular/platform-browser@21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)))(rxjs@7.8.2)':
+ dependencies:
+ '@angular/common': 21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2)
+ '@angular/core': 21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2)
+ '@angular/platform-browser': 21.0.8(@angular/common@21.0.8(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.0.8(@angular/compiler@21.0.8)(rxjs@7.8.2))
+ rxjs: 7.8.2
+ tslib: 2.8.1
'@arethetypeswrong/core@0.18.2':
dependencies:
@@ -6290,6 +8677,24 @@ snapshots:
validate-npm-package-name: 5.0.1
optional: true
+ '@asamuzakjp/css-color@4.1.1':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ lru-cache: 11.2.4
+
+ '@asamuzakjp/dom-selector@6.7.6':
+ 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
+
+ '@asamuzakjp/nwsapi@2.3.9': {}
+
'@babel/code-frame@7.27.1':
dependencies:
'@babel/helper-validator-identifier': 7.28.5
@@ -6298,6 +8703,26 @@ snapshots:
'@babel/compat-data@7.28.5': {}
+ '@babel/core@7.28.4':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.5
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+ '@babel/helpers': 7.28.4
+ '@babel/parser': 7.28.5
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
+ '@jridgewell/remapping': 2.3.5
+ convert-source-map: 2.0.0
+ debug: 4.4.3
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/core@7.28.5':
dependencies:
'@babel/code-frame': 7.27.1
@@ -6371,6 +8796,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.5
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -6402,6 +8836,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-split-export-declaration@7.24.7':
+ dependencies:
+ '@babel/types': 7.28.5
+
'@babel/helper-string-parser@7.27.1': {}
'@babel/helper-validator-identifier@7.28.5': {}
@@ -6569,10 +9007,10 @@ snapshots:
picocolors: 1.1.1
semver: 7.7.3
- '@changesets/get-github-info@0.6.0':
+ '@changesets/get-github-info@0.6.0(encoding@0.1.13)':
dependencies:
dataloader: 1.4.0
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -6637,6 +9075,28 @@ snapshots:
human-id: 4.1.3
prettier: 2.8.8
+ '@csstools/color-helpers@5.1.0': {}
+
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/color-helpers': 5.1.0
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-syntax-patches-for-csstree@1.0.25': {}
+
+ '@csstools/css-tokenizer@3.0.4': {}
+
'@emnapi/core@1.7.1':
dependencies:
'@emnapi/wasi-threads': 1.1.0
@@ -6650,81 +9110,237 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@esbuild/aix-ppc64@0.27.1':
+ '@esbuild/aix-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.26.0':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.27.1':
+ optional: true
+
+ '@esbuild/android-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/android-arm64@0.27.1':
+ optional: true
+
+ '@esbuild/android-arm@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm@0.26.0':
+ optional: true
+
+ '@esbuild/android-arm@0.27.1':
+ optional: true
+
+ '@esbuild/android-x64@0.25.12':
+ optional: true
+
+ '@esbuild/android-x64@0.26.0':
+ optional: true
+
+ '@esbuild/android-x64@0.27.1':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.27.1':
+ optional: true
+
+ '@esbuild/darwin-x64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-x64@0.26.0':
+ optional: true
+
+ '@esbuild/darwin-x64@0.27.1':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.27.1':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.26.0':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.27.1':
+ optional: true
+
+ '@esbuild/linux-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-arm64@0.27.1':
+ optional: true
+
+ '@esbuild/linux-arm@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm@0.26.0':
+ optional: true
+
+ '@esbuild/linux-arm@0.27.1':
+ optional: true
+
+ '@esbuild/linux-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ia32@0.26.0':
+ optional: true
+
+ '@esbuild/linux-ia32@0.27.1':
+ optional: true
+
+ '@esbuild/linux-loong64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-loong64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-loong64@0.27.1':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.25.12':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.26.0':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.27.1':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.27.1':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.27.1':
+ optional: true
+
+ '@esbuild/linux-s390x@0.25.12':
+ optional: true
+
+ '@esbuild/linux-s390x@0.26.0':
+ optional: true
+
+ '@esbuild/linux-s390x@0.27.1':
+ optional: true
+
+ '@esbuild/linux-x64@0.25.12':
optional: true
- '@esbuild/android-arm64@0.27.1':
+ '@esbuild/linux-x64@0.26.0':
optional: true
- '@esbuild/android-arm@0.27.1':
+ '@esbuild/linux-x64@0.27.1':
optional: true
- '@esbuild/android-x64@0.27.1':
+ '@esbuild/netbsd-arm64@0.25.12':
optional: true
- '@esbuild/darwin-arm64@0.27.1':
+ '@esbuild/netbsd-arm64@0.26.0':
optional: true
- '@esbuild/darwin-x64@0.27.1':
+ '@esbuild/netbsd-arm64@0.27.1':
optional: true
- '@esbuild/freebsd-arm64@0.27.1':
+ '@esbuild/netbsd-x64@0.25.12':
optional: true
- '@esbuild/freebsd-x64@0.27.1':
+ '@esbuild/netbsd-x64@0.26.0':
optional: true
- '@esbuild/linux-arm64@0.27.1':
+ '@esbuild/netbsd-x64@0.27.1':
optional: true
- '@esbuild/linux-arm@0.27.1':
+ '@esbuild/openbsd-arm64@0.25.12':
optional: true
- '@esbuild/linux-ia32@0.27.1':
+ '@esbuild/openbsd-arm64@0.26.0':
optional: true
- '@esbuild/linux-loong64@0.27.1':
+ '@esbuild/openbsd-arm64@0.27.1':
optional: true
- '@esbuild/linux-mips64el@0.27.1':
+ '@esbuild/openbsd-x64@0.25.12':
optional: true
- '@esbuild/linux-ppc64@0.27.1':
+ '@esbuild/openbsd-x64@0.26.0':
optional: true
- '@esbuild/linux-riscv64@0.27.1':
+ '@esbuild/openbsd-x64@0.27.1':
optional: true
- '@esbuild/linux-s390x@0.27.1':
+ '@esbuild/openharmony-arm64@0.25.12':
optional: true
- '@esbuild/linux-x64@0.27.1':
+ '@esbuild/openharmony-arm64@0.26.0':
optional: true
- '@esbuild/netbsd-arm64@0.27.1':
+ '@esbuild/openharmony-arm64@0.27.1':
optional: true
- '@esbuild/netbsd-x64@0.27.1':
+ '@esbuild/sunos-x64@0.25.12':
optional: true
- '@esbuild/openbsd-arm64@0.27.1':
+ '@esbuild/sunos-x64@0.26.0':
optional: true
- '@esbuild/openbsd-x64@0.27.1':
+ '@esbuild/sunos-x64@0.27.1':
optional: true
- '@esbuild/openharmony-arm64@0.27.1':
+ '@esbuild/win32-arm64@0.25.12':
optional: true
- '@esbuild/sunos-x64@0.27.1':
+ '@esbuild/win32-arm64@0.26.0':
optional: true
'@esbuild/win32-arm64@0.27.1':
optional: true
+ '@esbuild/win32-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/win32-ia32@0.26.0':
+ optional: true
+
'@esbuild/win32-ia32@0.27.1':
optional: true
+ '@esbuild/win32-x64@0.25.12':
+ optional: true
+
+ '@esbuild/win32-x64@0.26.0':
+ optional: true
+
'@esbuild/win32-x64@0.27.1':
optional: true
@@ -6852,6 +9468,8 @@ snapshots:
'@eslint/core': 0.17.0
levn: 0.4.1
+ '@exodus/bytes@1.8.0': {}
+
'@faker-js/faker@10.2.0': {}
'@gerrit0/mini-shiki@3.19.0':
@@ -6862,6 +9480,10 @@ snapshots:
'@shikijs/types': 3.19.0
'@shikijs/vscode-textmate': 10.0.2
+ '@hono/node-server@1.19.8(hono@4.11.3)':
+ dependencies:
+ hono: 4.11.3
+
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.7':
@@ -6873,6 +9495,61 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
+ '@inquirer/ansi@1.0.2': {}
+
+ '@inquirer/checkbox@4.3.2(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/confirm@5.1.19(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/confirm@5.1.21(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/core@10.3.2(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/editor@4.2.23(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/external-editor': 1.0.3(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/expand@4.0.23(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
'@inquirer/external-editor@1.0.3(@types/node@25.0.3)':
dependencies:
chardet: 2.1.1
@@ -6880,12 +9557,88 @@ snapshots:
optionalDependencies:
'@types/node': 25.0.3
+ '@inquirer/figures@1.0.15': {}
+
+ '@inquirer/input@4.3.1(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/number@3.0.23(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/password@4.0.23(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/prompts@7.9.0(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/checkbox': 4.3.2(@types/node@25.0.3)
+ '@inquirer/confirm': 5.1.21(@types/node@25.0.3)
+ '@inquirer/editor': 4.2.23(@types/node@25.0.3)
+ '@inquirer/expand': 4.0.23(@types/node@25.0.3)
+ '@inquirer/input': 4.3.1(@types/node@25.0.3)
+ '@inquirer/number': 3.0.23(@types/node@25.0.3)
+ '@inquirer/password': 4.0.23(@types/node@25.0.3)
+ '@inquirer/rawlist': 4.1.11(@types/node@25.0.3)
+ '@inquirer/search': 3.2.2(@types/node@25.0.3)
+ '@inquirer/select': 4.4.2(@types/node@25.0.3)
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/rawlist@4.1.11(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/search@3.2.2(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/select@4.4.2(@types/node@25.0.3)':
+ dependencies:
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@25.0.3)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ yoctocolors-cjs: 2.1.3
+ optionalDependencies:
+ '@types/node': 25.0.3
+
+ '@inquirer/type@3.0.10(@types/node@25.0.3)':
+ optionalDependencies:
+ '@types/node': 25.0.3
+
'@isaacs/balanced-match@4.0.1': {}
'@isaacs/brace-expansion@5.0.0':
dependencies:
'@isaacs/balanced-match': 4.0.1
+ '@isaacs/fs-minipass@4.0.1':
+ dependencies:
+ minipass: 7.1.2
+
+ '@istanbuljs/schema@0.1.3': {}
+
'@jest/diff-sequences@30.0.1': {}
'@jest/get-type@30.1.0': {}
@@ -6913,6 +9666,35 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
+ '@listr2/prompt-adapter-inquirer@3.0.5(@inquirer/prompts@7.9.0(@types/node@25.0.3))(@types/node@25.0.3)(listr2@9.0.5)':
+ dependencies:
+ '@inquirer/prompts': 7.9.0(@types/node@25.0.3)
+ '@inquirer/type': 3.0.10(@types/node@25.0.3)
+ listr2: 9.0.5
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@lmdb/lmdb-darwin-arm64@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-darwin-x64@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-linux-arm64@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-linux-arm@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-linux-x64@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-win32-arm64@3.4.3':
+ optional: true
+
+ '@lmdb/lmdb-win32-x64@3.4.3':
+ optional: true
+
'@loaderkit/resolve@1.0.4':
dependencies:
'@braidai/lang': 1.1.2
@@ -6934,6 +9716,118 @@ snapshots:
globby: 11.1.0
read-yaml-file: 1.1.0
+ '@modelcontextprotocol/sdk@1.25.2(hono@4.11.3)(zod@4.1.13)':
+ dependencies:
+ '@hono/node-server': 1.19.8(hono@4.11.3)
+ ajv: 8.17.1
+ ajv-formats: 3.0.1(ajv@8.17.1)
+ content-type: 1.0.5
+ cors: 2.8.5
+ cross-spawn: 7.0.6
+ eventsource: 3.0.7
+ eventsource-parser: 3.0.6
+ express: 5.2.1
+ express-rate-limit: 7.5.1(express@5.2.1)
+ jose: 6.1.3
+ json-schema-typed: 8.0.2
+ pkce-challenge: 5.0.1
+ raw-body: 3.0.2
+ zod: 4.1.13
+ zod-to-json-schema: 3.25.1(zod@4.1.13)
+ transitivePeerDependencies:
+ - hono
+ - supports-color
+
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ optional: true
+
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ optional: true
+
+ '@napi-rs/nice-android-arm-eabi@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-android-arm64@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-darwin-arm64@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-darwin-x64@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-freebsd-x64@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm-gnueabihf@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm64-gnu@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-arm64-musl@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-ppc64-gnu@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-riscv64-gnu@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-s390x-gnu@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-x64-gnu@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-linux-x64-musl@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-openharmony-arm64@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-win32-arm64-msvc@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-win32-ia32-msvc@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-win32-x64-msvc@1.1.1':
+ optional: true
+
+ '@napi-rs/nice@1.1.1':
+ optionalDependencies:
+ '@napi-rs/nice-android-arm-eabi': 1.1.1
+ '@napi-rs/nice-android-arm64': 1.1.1
+ '@napi-rs/nice-darwin-arm64': 1.1.1
+ '@napi-rs/nice-darwin-x64': 1.1.1
+ '@napi-rs/nice-freebsd-x64': 1.1.1
+ '@napi-rs/nice-linux-arm-gnueabihf': 1.1.1
+ '@napi-rs/nice-linux-arm64-gnu': 1.1.1
+ '@napi-rs/nice-linux-arm64-musl': 1.1.1
+ '@napi-rs/nice-linux-ppc64-gnu': 1.1.1
+ '@napi-rs/nice-linux-riscv64-gnu': 1.1.1
+ '@napi-rs/nice-linux-s390x-gnu': 1.1.1
+ '@napi-rs/nice-linux-x64-gnu': 1.1.1
+ '@napi-rs/nice-linux-x64-musl': 1.1.1
+ '@napi-rs/nice-openharmony-arm64': 1.1.1
+ '@napi-rs/nice-win32-arm64-msvc': 1.1.1
+ '@napi-rs/nice-win32-ia32-msvc': 1.1.1
+ '@napi-rs/nice-win32-x64-msvc': 1.1.1
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
'@emnapi/core': 1.7.1
@@ -6973,6 +9867,69 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
+ '@npmcli/agent@4.0.0':
+ dependencies:
+ agent-base: 7.1.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ lru-cache: 11.2.4
+ socks-proxy-agent: 8.0.5
+ transitivePeerDependencies:
+ - supports-color
+
+ '@npmcli/fs@5.0.0':
+ dependencies:
+ semver: 7.7.3
+
+ '@npmcli/git@7.0.1':
+ dependencies:
+ '@npmcli/promise-spawn': 9.0.1
+ ini: 6.0.0
+ lru-cache: 11.2.4
+ npm-pick-manifest: 11.0.3
+ proc-log: 6.1.0
+ promise-retry: 2.0.1
+ semver: 7.7.3
+ which: 6.0.0
+
+ '@npmcli/installed-package-contents@3.0.0':
+ dependencies:
+ npm-bundled: 4.0.0
+ npm-normalize-package-bin: 4.0.0
+
+ '@npmcli/node-gyp@5.0.0': {}
+
+ '@npmcli/package-json@7.0.4':
+ dependencies:
+ '@npmcli/git': 7.0.1
+ glob: 13.0.0
+ hosted-git-info: 9.0.2
+ json-parse-even-better-errors: 5.0.0
+ proc-log: 6.1.0
+ semver: 7.7.3
+ validate-npm-package-license: 3.0.4
+
+ '@npmcli/promise-spawn@8.0.3':
+ dependencies:
+ which: 5.0.0
+
+ '@npmcli/promise-spawn@9.0.1':
+ dependencies:
+ which: 6.0.0
+
+ '@npmcli/redact@4.0.0': {}
+
+ '@npmcli/run-script@10.0.3':
+ dependencies:
+ '@npmcli/node-gyp': 5.0.0
+ '@npmcli/package-json': 7.0.4
+ '@npmcli/promise-spawn': 9.0.1
+ node-gyp: 12.1.0
+ proc-log: 6.1.0
+ which: 6.0.0
+ transitivePeerDependencies:
+ - supports-color
+
'@nx/nx-darwin-arm64@22.3.3':
optional: true
@@ -7007,6 +9964,8 @@ snapshots:
'@oxc-project/types@0.106.0': {}
+ '@oxc-project/types@0.96.0': {}
+
'@oxc-resolver/binding-android-arm-eabi@11.15.0':
optional: true
@@ -7069,18 +10028,79 @@ snapshots:
'@oxc-resolver/binding-win32-x64-msvc@11.15.0':
optional: true
- '@preact/preset-vite@2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))':
+ '@parcel/watcher-android-arm64@2.5.4':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.5.4':
+ optional: true
+
+ '@parcel/watcher-darwin-x64@2.5.4':
+ optional: true
+
+ '@parcel/watcher-freebsd-x64@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-arm-glibc@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-arm-musl@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-musl@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-x64-glibc@2.5.4':
+ optional: true
+
+ '@parcel/watcher-linux-x64-musl@2.5.4':
+ optional: true
+
+ '@parcel/watcher-win32-arm64@2.5.4':
+ optional: true
+
+ '@parcel/watcher-win32-ia32@2.5.4':
+ optional: true
+
+ '@parcel/watcher-win32-x64@2.5.4':
+ optional: true
+
+ '@parcel/watcher@2.5.4':
+ dependencies:
+ detect-libc: 2.1.2
+ is-glob: 4.0.3
+ node-addon-api: 7.1.1
+ picomatch: 4.0.3
+ optionalDependencies:
+ '@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
+ optional: true
+
+ '@preact/preset-vite@2.10.2(@babel/core@7.28.5)(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.5)
- '@prefresh/vite': 2.4.11(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ '@prefresh/vite': 2.4.11(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
'@rollup/pluginutils': 4.2.1
babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.28.5)
debug: 4.4.3
picocolors: 1.1.1
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
- vite-prerender-plugin: 0.5.12(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+ vite-prerender-plugin: 0.5.12(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
transitivePeerDependencies:
- preact
- supports-color
@@ -7093,7 +10113,7 @@ snapshots:
'@prefresh/utils@1.2.1': {}
- '@prefresh/vite@2.4.11(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))':
+ '@prefresh/vite@2.4.11(preact@10.28.2)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@prefresh/babel-plugin': 0.5.2
@@ -7101,7 +10121,7 @@ snapshots:
'@prefresh/utils': 1.2.1
'@rollup/pluginutils': 4.2.1
preact: 10.28.2
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
@@ -7111,64 +10131,99 @@ snapshots:
dependencies:
quansync: 1.0.0
+ '@rolldown/binding-android-arm64@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-android-arm64@1.0.0-beta.57':
optional: true
'@rolldown/binding-android-arm64@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-darwin-arm64@1.0.0-beta.57':
optional: true
'@rolldown/binding-darwin-arm64@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-darwin-x64@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-darwin-x64@1.0.0-beta.57':
optional: true
'@rolldown/binding-darwin-x64@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-freebsd-x64@1.0.0-beta.57':
optional: true
'@rolldown/binding-freebsd-x64@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.57':
optional: true
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-beta.57':
optional: true
'@rolldown/binding-linux-arm64-gnu@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-linux-arm64-musl@1.0.0-beta.57':
optional: true
'@rolldown/binding-linux-arm64-musl@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-linux-x64-gnu@1.0.0-beta.57':
optional: true
'@rolldown/binding-linux-x64-gnu@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-linux-x64-musl@1.0.0-beta.57':
optional: true
'@rolldown/binding-linux-x64-musl@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-openharmony-arm64@1.0.0-beta.57':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.0-beta.58':
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.58':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.47':
+ dependencies:
+ '@napi-rs/wasm-runtime': 1.1.1
optional: true
'@rolldown/binding-wasm32-wasi@1.0.0-beta.57':
@@ -7181,18 +10236,29 @@ snapshots:
'@napi-rs/wasm-runtime': 1.1.1
optional: true
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-beta.57':
optional: true
'@rolldown/binding-win32-arm64-msvc@1.0.0-beta.58':
optional: true
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47':
+ optional: true
+
'@rolldown/binding-win32-x64-msvc@1.0.0-beta.57':
optional: true
'@rolldown/binding-win32-x64-msvc@1.0.0-beta.58':
optional: true
+ '@rolldown/pluginutils@1.0.0-beta.47': {}
+
'@rolldown/pluginutils@1.0.0-beta.53': {}
'@rolldown/pluginutils@1.0.0-beta.57': {}
@@ -7270,6 +10336,14 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.53.3':
optional: true
+ '@schematics/angular@21.0.5(chokidar@4.0.3)':
+ dependencies:
+ '@angular-devkit/core': 21.0.5(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.5(chokidar@4.0.3)
+ jsonc-parser: 3.3.1
+ transitivePeerDependencies:
+ - chokidar
+
'@shikijs/engine-oniguruma@3.19.0':
dependencies:
'@shikijs/types': 3.19.0
@@ -7290,6 +10364,38 @@ snapshots:
'@shikijs/vscode-textmate@10.0.2': {}
+ '@sigstore/bundle@4.0.0':
+ dependencies:
+ '@sigstore/protobuf-specs': 0.5.0
+
+ '@sigstore/core@3.1.0': {}
+
+ '@sigstore/protobuf-specs@0.5.0': {}
+
+ '@sigstore/sign@4.1.0':
+ dependencies:
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.1.0
+ '@sigstore/protobuf-specs': 0.5.0
+ make-fetch-happen: 15.0.3
+ proc-log: 6.1.0
+ promise-retry: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sigstore/tuf@4.0.1':
+ dependencies:
+ '@sigstore/protobuf-specs': 0.5.0
+ tuf-js: 4.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sigstore/verify@3.1.0':
+ dependencies:
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.1.0
+ '@sigstore/protobuf-specs': 0.5.0
+
'@sinclair/typebox@0.34.41': {}
'@size-limit/esbuild@12.0.0(size-limit@12.0.0(jiti@2.6.1))':
@@ -7358,9 +10464,9 @@ snapshots:
dependencies:
acorn: 8.15.0
- '@svitejs/changesets-changelog-github-compact@1.2.0':
+ '@svitejs/changesets-changelog-github-compact@1.2.0(encoding@0.1.13)':
dependencies:
- '@changesets/get-github-info': 0.6.0
+ '@changesets/get-github-info': 0.6.0(encoding@0.1.13)
dotenv: 16.6.1
transitivePeerDependencies:
- encoding
@@ -7536,6 +10642,13 @@ snapshots:
'@testing-library/dom': 8.20.1
preact: 10.28.2
+ '@tufjs/canonical-json@2.0.0': {}
+
+ '@tufjs/models@4.1.0':
+ dependencies:
+ '@tufjs/canonical-json': 2.0.0
+ minimatch: 10.1.1
+
'@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
@@ -7825,7 +10938,11 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vitejs/plugin-react@5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))':
+ '@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.2(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))':
+ dependencies:
+ vite: 7.2.2(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+
+ '@vitejs/plugin-react@5.1.2(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
@@ -7833,7 +10950,7 @@ snapshots:
'@rolldown/pluginutils': 1.0.0-beta.53
'@types/babel__core': 7.20.5
react-refresh: 0.18.0
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
@@ -7846,13 +10963,13 @@ snapshots:
chai: 6.2.1
tinyrainbow: 3.0.3
- '@vitest/mocker@4.0.16(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))':
+ '@vitest/mocker@4.0.16(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))':
dependencies:
'@vitest/spy': 4.0.16
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
'@vitest/pretty-format@4.0.16':
dependencies:
@@ -7887,12 +11004,25 @@ snapshots:
dependencies:
argparse: 2.0.1
+ abbrev@4.0.0: {}
+
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.2
+ negotiator: 1.0.0
+
acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
acorn: 8.15.0
acorn@8.15.0: {}
+ agent-base@7.1.4: {}
+
+ ajv-formats@3.0.1(ajv@8.17.1):
+ optionalDependencies:
+ ajv: 8.17.1
+
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -7900,16 +11030,48 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
+ ajv@8.17.1:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.1.0
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+
+ algoliasearch@5.40.1:
+ dependencies:
+ '@algolia/abtesting': 1.6.1
+ '@algolia/client-abtesting': 5.40.1
+ '@algolia/client-analytics': 5.40.1
+ '@algolia/client-common': 5.40.1
+ '@algolia/client-insights': 5.40.1
+ '@algolia/client-personalization': 5.40.1
+ '@algolia/client-query-suggestions': 5.40.1
+ '@algolia/client-search': 5.40.1
+ '@algolia/ingestion': 1.40.1
+ '@algolia/monitoring': 1.40.1
+ '@algolia/recommend': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
ansi-colors@4.1.3: {}
+ ansi-escapes@7.2.0:
+ dependencies:
+ environment: 1.1.0
+
ansi-regex@5.0.1: {}
+ ansi-regex@6.2.2: {}
+
ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
ansi-styles@5.2.0: {}
+ ansi-styles@6.2.3: {}
+
ansis@4.2.0: {}
argparse@1.0.10:
@@ -7980,10 +11142,25 @@ snapshots:
baseline-browser-mapping@2.9.3: {}
+ beasties@0.3.5:
+ dependencies:
+ css-select: 6.0.0
+ css-what: 7.0.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ htmlparser2: 10.0.0
+ picocolors: 1.1.1
+ postcss: 8.5.6
+ postcss-media-query-parser: 0.2.3
+
better-path-resolve@1.0.0:
dependencies:
is-windows: 1.0.2
+ bidi-js@1.0.3:
+ dependencies:
+ require-from-string: 2.0.2
+
birecord@0.1.1: {}
birpc@4.0.0: {}
@@ -7994,6 +11171,20 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
+ body-parser@2.2.2:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 4.4.3
+ http-errors: 2.0.1
+ iconv-lite: 0.7.0
+ on-finished: 2.4.1
+ qs: 6.14.1
+ raw-body: 3.0.2
+ type-is: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
boolbase@1.0.0: {}
brace-expansion@1.1.12:
@@ -8017,6 +11208,8 @@ snapshots:
node-releases: 2.0.27
update-browserslist-db: 1.2.2(browserslist@4.28.1)
+ buffer-from@1.1.2: {}
+
buffer@5.7.1:
dependencies:
base64-js: 1.5.1
@@ -8024,8 +11217,24 @@ snapshots:
bytes-iec@3.1.1: {}
+ bytes@3.1.2: {}
+
cac@6.7.14: {}
+ cacache@20.0.3:
+ dependencies:
+ '@npmcli/fs': 5.0.0
+ fs-minipass: 3.0.3
+ glob: 13.0.0
+ lru-cache: 11.2.4
+ minipass: 7.1.2
+ minipass-collect: 2.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 7.0.4
+ ssri: 13.0.0
+ unique-filename: 5.0.0
+
call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
@@ -8054,6 +11263,8 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.6.2: {}
+
chardet@2.1.1: {}
cheerio-select@2.1.0:
@@ -8079,6 +11290,12 @@ snapshots:
undici: 7.16.0
whatwg-mimetype: 4.0.0
+ chokidar@4.0.3:
+ dependencies:
+ readdirp: 4.1.2
+
+ chownr@3.0.0: {}
+
ci-info@3.9.0: {}
cjs-module-lexer@1.4.3:
@@ -8088,14 +11305,33 @@ snapshots:
dependencies:
restore-cursor: 3.1.0
+ cli-cursor@5.0.0:
+ dependencies:
+ restore-cursor: 5.1.0
+
cli-spinners@2.6.1: {}
+ cli-spinners@3.3.0: {}
+
+ cli-truncate@5.1.1:
+ dependencies:
+ slice-ansi: 7.1.2
+ string-width: 8.1.0
+
+ cli-width@4.1.0: {}
+
cliui@8.0.1:
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.1.2
+ wrap-ansi: 9.0.2
+
clone@1.0.4: {}
clsx@2.1.1: {}
@@ -8106,6 +11342,8 @@ snapshots:
color-name@1.1.4: {}
+ colorette@2.0.20: {}
+
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -8116,8 +11354,23 @@ snapshots:
concat-map@0.0.1: {}
+ content-disposition@1.0.1: {}
+
+ content-type@1.0.5: {}
+
+ convert-source-map@1.9.0: {}
+
convert-source-map@2.0.0: {}
+ cookie-signature@1.2.2: {}
+
+ cookie@0.7.2: {}
+
+ cors@2.8.5:
+ dependencies:
+ object-assign: 4.1.1
+ vary: 1.1.2
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -8132,12 +11385,39 @@ snapshots:
domutils: 3.2.2
nth-check: 2.1.1
+ css-select@6.0.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 7.0.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ nth-check: 2.1.1
+
+ css-tree@3.1.0:
+ dependencies:
+ mdn-data: 2.12.2
+ source-map-js: 1.2.1
+
css-what@6.2.2: {}
+ css-what@7.0.0: {}
+
css.escape@1.5.1: {}
+ cssstyle@5.3.7:
+ dependencies:
+ '@asamuzakjp/css-color': 4.1.1
+ '@csstools/css-syntax-patches-for-csstree': 1.0.25
+ css-tree: 3.1.0
+ lru-cache: 11.2.4
+
csstype@3.2.3: {}
+ data-urls@6.0.0:
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 15.1.0
+
dataloader@1.4.0: {}
dayjs@1.11.19: {}
@@ -8146,6 +11426,8 @@ snapshots:
dependencies:
ms: 2.1.3
+ decimal.js@10.6.0: {}
+
deep-equal@2.2.3:
dependencies:
array-buffer-byte-length: 1.0.2
@@ -8191,8 +11473,13 @@ snapshots:
delayed-stream@1.0.0: {}
+ depd@2.0.0: {}
+
detect-indent@6.1.0: {}
+ detect-libc@2.1.2:
+ optional: true
+
devalue@5.5.0: {}
dir-glob@3.0.1:
@@ -8239,17 +11526,28 @@ snapshots:
es-errors: 1.3.0
gopd: 1.2.0
+ ee-first@1.1.1: {}
+
electron-to-chromium@1.5.266: {}
+ emoji-regex@10.6.0: {}
+
emoji-regex@8.0.0: {}
empathic@2.0.0: {}
+ encodeurl@2.0.0: {}
+
encoding-sniffer@0.2.1:
dependencies:
iconv-lite: 0.6.3
whatwg-encoding: 3.1.1
+ encoding@0.1.13:
+ dependencies:
+ iconv-lite: 0.6.3
+ optional: true
+
end-of-stream@1.4.5:
dependencies:
once: 1.4.0
@@ -8272,6 +11570,12 @@ snapshots:
entities@6.0.1: {}
+ env-paths@2.2.1: {}
+
+ environment@1.1.0: {}
+
+ err-code@2.0.3: {}
+
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -8301,6 +11605,64 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
+ esbuild@0.25.12:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.12
+ '@esbuild/android-arm': 0.25.12
+ '@esbuild/android-arm64': 0.25.12
+ '@esbuild/android-x64': 0.25.12
+ '@esbuild/darwin-arm64': 0.25.12
+ '@esbuild/darwin-x64': 0.25.12
+ '@esbuild/freebsd-arm64': 0.25.12
+ '@esbuild/freebsd-x64': 0.25.12
+ '@esbuild/linux-arm': 0.25.12
+ '@esbuild/linux-arm64': 0.25.12
+ '@esbuild/linux-ia32': 0.25.12
+ '@esbuild/linux-loong64': 0.25.12
+ '@esbuild/linux-mips64el': 0.25.12
+ '@esbuild/linux-ppc64': 0.25.12
+ '@esbuild/linux-riscv64': 0.25.12
+ '@esbuild/linux-s390x': 0.25.12
+ '@esbuild/linux-x64': 0.25.12
+ '@esbuild/netbsd-arm64': 0.25.12
+ '@esbuild/netbsd-x64': 0.25.12
+ '@esbuild/openbsd-arm64': 0.25.12
+ '@esbuild/openbsd-x64': 0.25.12
+ '@esbuild/openharmony-arm64': 0.25.12
+ '@esbuild/sunos-x64': 0.25.12
+ '@esbuild/win32-arm64': 0.25.12
+ '@esbuild/win32-ia32': 0.25.12
+ '@esbuild/win32-x64': 0.25.12
+
+ esbuild@0.26.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.26.0
+ '@esbuild/android-arm': 0.26.0
+ '@esbuild/android-arm64': 0.26.0
+ '@esbuild/android-x64': 0.26.0
+ '@esbuild/darwin-arm64': 0.26.0
+ '@esbuild/darwin-x64': 0.26.0
+ '@esbuild/freebsd-arm64': 0.26.0
+ '@esbuild/freebsd-x64': 0.26.0
+ '@esbuild/linux-arm': 0.26.0
+ '@esbuild/linux-arm64': 0.26.0
+ '@esbuild/linux-ia32': 0.26.0
+ '@esbuild/linux-loong64': 0.26.0
+ '@esbuild/linux-mips64el': 0.26.0
+ '@esbuild/linux-ppc64': 0.26.0
+ '@esbuild/linux-riscv64': 0.26.0
+ '@esbuild/linux-s390x': 0.26.0
+ '@esbuild/linux-x64': 0.26.0
+ '@esbuild/netbsd-arm64': 0.26.0
+ '@esbuild/netbsd-x64': 0.26.0
+ '@esbuild/openbsd-arm64': 0.26.0
+ '@esbuild/openbsd-x64': 0.26.0
+ '@esbuild/openharmony-arm64': 0.26.0
+ '@esbuild/sunos-x64': 0.26.0
+ '@esbuild/win32-arm64': 0.26.0
+ '@esbuild/win32-ia32': 0.26.0
+ '@esbuild/win32-x64': 0.26.0
+
esbuild@0.27.1:
optionalDependencies:
'@esbuild/aix-ppc64': 0.27.1
@@ -8332,6 +11694,8 @@ snapshots:
escalade@3.2.0: {}
+ escape-html@1.0.3: {}
+
escape-string-regexp@1.0.5: {}
escape-string-regexp@4.0.0: {}
@@ -8590,8 +11954,57 @@ snapshots:
esutils@2.0.3: {}
+ etag@1.8.1: {}
+
+ eventemitter3@5.0.1: {}
+
+ eventsource-parser@3.0.6: {}
+
+ eventsource@3.0.7:
+ dependencies:
+ eventsource-parser: 3.0.6
+
expect-type@1.2.2: {}
+ exponential-backoff@3.1.3: {}
+
+ express-rate-limit@7.5.1(express@5.2.1):
+ dependencies:
+ express: 5.2.1
+
+ express@5.2.1:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.2.2
+ content-disposition: 1.0.1
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.3
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.2
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.14.1
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.1
+ serve-static: 2.2.1
+ statuses: 2.0.2
+ type-is: 2.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
extendable-error@0.1.7: {}
fast-deep-equal@3.1.3: {}
@@ -8608,6 +12021,8 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-uri@3.1.0: {}
+
fastq@1.19.1:
dependencies:
reusify: 1.1.0
@@ -8635,6 +12050,17 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
+ finalhandler@2.1.1:
+ dependencies:
+ debug: 4.4.3
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -8672,6 +12098,10 @@ snapshots:
dependencies:
fd-package-json: 2.0.0
+ forwarded@0.2.0: {}
+
+ fresh@2.0.0: {}
+
front-matter@4.0.2:
dependencies:
js-yaml: 3.14.2
@@ -8690,6 +12120,10 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
+ fs-minipass@3.0.3:
+ dependencies:
+ minipass: 7.1.2
+
fsevents@2.3.3:
optional: true
@@ -8701,6 +12135,8 @@ snapshots:
get-caller-file@2.0.5: {}
+ get-east-asian-width@1.4.0: {}
+
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -8731,6 +12167,14 @@ snapshots:
dependencies:
is-glob: 4.0.3
+ glob-to-regexp@0.4.1: {}
+
+ glob@13.0.0:
+ dependencies:
+ minimatch: 10.1.1
+ minipass: 7.1.2
+ path-scurry: 2.0.1
+
globals@14.0.0: {}
globals@15.15.0: {}
@@ -8790,8 +12234,20 @@ snapshots:
dependencies:
hermes-estree: 0.25.1
+ hono@4.11.3: {}
+
hookable@6.0.1: {}
+ hosted-git-info@9.0.2:
+ dependencies:
+ lru-cache: 11.2.4
+
+ html-encoding-sniffer@6.0.0:
+ dependencies:
+ '@exodus/bytes': 1.8.0
+ transitivePeerDependencies:
+ - '@exodus/crypto'
+
html-entities@2.3.3: {}
html-link-extractor@1.0.5:
@@ -8805,6 +12261,30 @@ snapshots:
domutils: 3.2.2
entities: 6.0.1
+ http-cache-semantics@4.2.0: {}
+
+ http-errors@2.0.1:
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.2
+ toidentifier: 1.0.1
+
+ http-proxy-agent@7.0.2:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.6:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
human-id@4.1.3: {}
iconv-lite@0.6.3:
@@ -8817,10 +12297,16 @@ snapshots:
ieee754@1.2.1: {}
+ ignore-walk@8.0.0:
+ dependencies:
+ minimatch: 10.1.1
+
ignore@5.3.2: {}
ignore@7.0.5: {}
+ immutable@5.1.4: {}
+
import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
@@ -8834,12 +12320,20 @@ snapshots:
inherits@2.0.4: {}
+ ini@5.0.0: {}
+
+ ini@6.0.0: {}
+
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
side-channel: 1.1.0
+ ip-address@10.1.0: {}
+
+ ipaddr.js@1.9.1: {}
+
is-arguments@1.2.0:
dependencies:
call-bound: 1.0.4
@@ -8862,6 +12356,10 @@ snapshots:
is-callable@1.2.7: {}
+ is-core-module@2.16.1:
+ dependencies:
+ hasown: 2.0.2
+
is-date-object@1.1.0:
dependencies:
call-bound: 1.0.4
@@ -8873,6 +12371,10 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
+ is-fullwidth-code-point@5.1.0:
+ dependencies:
+ get-east-asian-width: 1.4.0
+
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
@@ -8889,6 +12391,8 @@ snapshots:
is-interactive@1.0.0: {}
+ is-interactive@2.0.0: {}
+
is-map@2.0.3: {}
is-number-object@1.1.1:
@@ -8898,6 +12402,10 @@ snapshots:
is-number@7.0.0: {}
+ is-potential-custom-element-name@1.0.1: {}
+
+ is-promise@4.0.0: {}
+
is-reference@3.0.3:
dependencies:
'@types/estree': 1.0.8
@@ -8932,6 +12440,8 @@ snapshots:
is-unicode-supported@0.1.0: {}
+ is-unicode-supported@2.1.0: {}
+
is-weakmap@2.0.2: {}
is-weakset@2.0.4:
@@ -8951,6 +12461,20 @@ snapshots:
isexe@2.0.0: {}
+ isexe@3.1.1: {}
+
+ istanbul-lib-coverage@3.2.2: {}
+
+ istanbul-lib-instrument@6.0.3:
+ dependencies:
+ '@babel/core': 7.28.5
+ '@babel/parser': 7.28.5
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 7.7.3
+ transitivePeerDependencies:
+ - supports-color
+
jest-diff@30.2.0:
dependencies:
'@jest/diff-sequences': 30.0.1
@@ -8960,6 +12484,8 @@ snapshots:
jiti@2.6.1: {}
+ jose@6.1.3: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.2:
@@ -8971,22 +12497,60 @@ snapshots:
dependencies:
argparse: 2.0.1
+ jsdom@27.4.0:
+ dependencies:
+ '@acemir/cssom': 0.9.31
+ '@asamuzakjp/dom-selector': 6.7.6
+ '@exodus/bytes': 1.8.0
+ cssstyle: 5.3.7
+ data-urls: 6.0.0
+ decimal.js: 10.6.0
+ html-encoding-sniffer: 6.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ is-potential-custom-element-name: 1.0.1
+ parse5: 8.0.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 6.0.0
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 8.0.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 15.1.0
+ ws: 8.18.3
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - '@exodus/crypto'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
+ json-parse-even-better-errors@5.0.0: {}
+
json-schema-traverse@0.4.1: {}
+ json-schema-traverse@1.0.0: {}
+
+ json-schema-typed@8.0.2: {}
+
json-stable-stringify-without-jsonify@1.0.1: {}
json5@2.2.3: {}
jsonc-parser@3.2.0: {}
+ jsonc-parser@3.3.1: {}
+
jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
+ jsonparse@1.3.1: {}
+
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
@@ -9023,6 +12587,32 @@ snapshots:
dependencies:
uc.micro: 2.1.0
+ listr2@9.0.5:
+ dependencies:
+ cli-truncate: 5.1.1
+ colorette: 2.0.20
+ eventemitter3: 5.0.1
+ log-update: 6.1.0
+ rfdc: 1.4.1
+ wrap-ansi: 9.0.2
+
+ lmdb@3.4.3:
+ dependencies:
+ msgpackr: 1.11.8
+ node-addon-api: 6.1.0
+ node-gyp-build-optional-packages: 5.2.2
+ ordered-binary: 1.6.1
+ weak-lru-cache: 1.2.2
+ optionalDependencies:
+ '@lmdb/lmdb-darwin-arm64': 3.4.3
+ '@lmdb/lmdb-darwin-x64': 3.4.3
+ '@lmdb/lmdb-linux-arm': 3.4.3
+ '@lmdb/lmdb-linux-arm64': 3.4.3
+ '@lmdb/lmdb-linux-x64': 3.4.3
+ '@lmdb/lmdb-win32-arm64': 3.4.3
+ '@lmdb/lmdb-win32-x64': 3.4.3
+ optional: true
+
locate-character@3.0.0: {}
locate-path@5.0.0:
@@ -9042,8 +12632,20 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- lru-cache@11.2.4:
- optional: true
+ log-symbols@7.0.1:
+ dependencies:
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
+
+ log-update@6.1.0:
+ dependencies:
+ ansi-escapes: 7.2.0
+ cli-cursor: 5.0.0
+ slice-ansi: 7.1.2
+ strip-ansi: 7.1.2
+ wrap-ansi: 9.0.2
+
+ lru-cache@11.2.4: {}
lru-cache@5.1.1:
dependencies:
@@ -9053,10 +12655,30 @@ snapshots:
lz-string@1.5.0: {}
+ magic-string@0.30.19:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
+ make-fetch-happen@15.0.3:
+ dependencies:
+ '@npmcli/agent': 4.0.0
+ cacache: 20.0.3
+ http-cache-semantics: 4.2.0
+ minipass: 7.1.2
+ minipass-fetch: 5.0.0
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 1.0.0
+ proc-log: 6.1.0
+ promise-retry: 2.0.1
+ ssri: 13.0.0
+ transitivePeerDependencies:
+ - supports-color
+
markdown-it@14.1.0:
dependencies:
argparse: 2.0.1
@@ -9075,12 +12697,18 @@ snapshots:
math-intrinsics@1.1.0: {}
+ mdn-data@2.12.2: {}
+
mdurl@2.0.0: {}
+ media-typer@1.1.0: {}
+
merge-anything@5.1.7:
dependencies:
is-what: 4.1.16
+ merge-descriptors@2.0.0: {}
+
merge2@1.4.1: {}
micromatch@4.0.8:
@@ -9090,36 +12718,99 @@ snapshots:
mime-db@1.52.0: {}
+ mime-db@1.54.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
+ mime-types@3.0.2:
+ dependencies:
+ mime-db: 1.54.0
+
mimic-fn@2.1.0: {}
+ mimic-function@5.0.1: {}
+
min-indent@1.0.1: {}
- minimatch@10.1.1:
+ minimatch@10.1.1:
+ dependencies:
+ '@isaacs/brace-expansion': 5.0.0
+
+ minimatch@3.1.2:
+ dependencies:
+ brace-expansion: 1.1.12
+
+ minimatch@9.0.3:
+ dependencies:
+ brace-expansion: 2.0.2
+
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.2
+
+ minimist@1.2.8: {}
+
+ minipass-collect@2.0.1:
+ dependencies:
+ minipass: 7.1.2
+
+ minipass-fetch@5.0.0:
+ dependencies:
+ minipass: 7.1.2
+ minipass-sized: 1.0.3
+ minizlib: 3.1.0
+ optionalDependencies:
+ encoding: 0.1.13
+
+ minipass-flush@1.0.5:
dependencies:
- '@isaacs/brace-expansion': 5.0.0
+ minipass: 3.3.6
- minimatch@3.1.2:
+ minipass-pipeline@1.2.4:
dependencies:
- brace-expansion: 1.1.12
+ minipass: 3.3.6
- minimatch@9.0.3:
+ minipass-sized@1.0.3:
dependencies:
- brace-expansion: 2.0.2
+ minipass: 3.3.6
- minimatch@9.0.5:
+ minipass@3.3.6:
dependencies:
- brace-expansion: 2.0.2
+ yallist: 4.0.0
- minimist@1.2.8: {}
+ minipass@7.1.2: {}
+
+ minizlib@3.1.0:
+ dependencies:
+ minipass: 7.1.2
mri@1.2.0: {}
+ mrmime@2.0.1: {}
+
ms@2.1.3: {}
+ msgpackr-extract@3.0.3:
+ dependencies:
+ node-gyp-build-optional-packages: 5.2.2
+ optionalDependencies:
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3
+ '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3
+ optional: true
+
+ msgpackr@1.11.8:
+ optionalDependencies:
+ msgpackr-extract: 3.0.3
+ optional: true
+
+ mute-stream@2.0.0: {}
+
nanoid@3.3.11: {}
nanoid@5.1.6: {}
@@ -9132,9 +12823,39 @@ snapshots:
natural-compare@1.4.0: {}
- node-fetch@2.7.0:
+ negotiator@1.0.0: {}
+
+ node-addon-api@6.1.0:
+ optional: true
+
+ node-addon-api@7.1.1:
+ optional: true
+
+ node-fetch@2.7.0(encoding@0.1.13):
dependencies:
whatwg-url: 5.0.0
+ optionalDependencies:
+ encoding: 0.1.13
+
+ node-gyp-build-optional-packages@5.2.2:
+ dependencies:
+ detect-libc: 2.1.2
+ optional: true
+
+ node-gyp@12.1.0:
+ dependencies:
+ env-paths: 2.2.1
+ exponential-backoff: 3.1.3
+ graceful-fs: 4.2.11
+ make-fetch-happen: 15.0.3
+ nopt: 9.0.0
+ proc-log: 6.1.0
+ semver: 7.7.3
+ tar: 7.5.2
+ tinyglobby: 0.2.15
+ which: 6.0.0
+ transitivePeerDependencies:
+ - supports-color
node-html-parser@6.1.13:
dependencies:
@@ -9145,6 +12866,54 @@ snapshots:
node-releases@2.0.27: {}
+ nopt@9.0.0:
+ dependencies:
+ abbrev: 4.0.0
+
+ npm-bundled@4.0.0:
+ dependencies:
+ npm-normalize-package-bin: 4.0.0
+
+ npm-install-checks@8.0.0:
+ dependencies:
+ semver: 7.7.3
+
+ npm-normalize-package-bin@4.0.0: {}
+
+ npm-normalize-package-bin@5.0.0: {}
+
+ npm-package-arg@13.0.1:
+ dependencies:
+ hosted-git-info: 9.0.2
+ proc-log: 5.0.0
+ semver: 7.7.3
+ validate-npm-package-name: 6.0.2
+
+ npm-packlist@10.0.3:
+ dependencies:
+ ignore-walk: 8.0.0
+ proc-log: 6.1.0
+
+ npm-pick-manifest@11.0.3:
+ dependencies:
+ npm-install-checks: 8.0.0
+ npm-normalize-package-bin: 5.0.0
+ npm-package-arg: 13.0.1
+ semver: 7.7.3
+
+ npm-registry-fetch@19.1.1:
+ dependencies:
+ '@npmcli/redact': 4.0.0
+ jsonparse: 1.3.1
+ make-fetch-happen: 15.0.3
+ minipass: 7.1.2
+ minipass-fetch: 5.0.0
+ minizlib: 3.1.0
+ npm-package-arg: 13.0.1
+ proc-log: 6.1.0
+ transitivePeerDependencies:
+ - supports-color
+
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -9204,6 +12973,8 @@ snapshots:
transitivePeerDependencies:
- debug
+ object-assign@4.1.1: {}
+
object-inspect@1.13.4: {}
object-is@1.1.6:
@@ -9224,6 +12995,10 @@ snapshots:
obug@2.1.1: {}
+ on-finished@2.4.1:
+ dependencies:
+ ee-first: 1.1.1
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -9232,6 +13007,10 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
+ onetime@7.0.0:
+ dependencies:
+ mimic-function: 5.0.1
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -9258,6 +13037,21 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
+ ora@9.0.0:
+ dependencies:
+ chalk: 5.6.2
+ cli-cursor: 5.0.0
+ cli-spinners: 3.3.0
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 7.0.1
+ stdin-discarder: 0.2.2
+ string-width: 8.1.0
+ strip-ansi: 7.1.2
+
+ ordered-binary@1.6.1:
+ optional: true
+
outdent@0.5.0: {}
oxc-resolver@11.15.0:
@@ -9305,6 +13099,8 @@ snapshots:
p-map@2.1.0: {}
+ p-map@7.0.4: {}
+
p-try@2.2.0: {}
package-manager-detector@0.2.11:
@@ -9313,10 +13109,38 @@ snapshots:
package-manager-detector@1.6.0: {}
+ pacote@21.0.3:
+ dependencies:
+ '@npmcli/git': 7.0.1
+ '@npmcli/installed-package-contents': 3.0.0
+ '@npmcli/package-json': 7.0.4
+ '@npmcli/promise-spawn': 8.0.3
+ '@npmcli/run-script': 10.0.3
+ cacache: 20.0.3
+ fs-minipass: 3.0.3
+ minipass: 7.1.2
+ npm-package-arg: 13.0.1
+ npm-packlist: 10.0.3
+ npm-pick-manifest: 11.0.3
+ npm-registry-fetch: 19.1.1
+ proc-log: 5.0.0
+ promise-retry: 2.0.1
+ sigstore: 4.1.0
+ ssri: 12.0.0
+ tar: 7.5.2
+ transitivePeerDependencies:
+ - supports-color
+
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
+ parse5-html-rewriting-stream@8.0.0:
+ dependencies:
+ entities: 6.0.1
+ parse5: 8.0.0
+ parse5-sax-parser: 8.0.0
+
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
@@ -9326,14 +13150,33 @@ snapshots:
dependencies:
parse5: 7.3.0
+ parse5-sax-parser@8.0.0:
+ dependencies:
+ parse5: 8.0.0
+
parse5@7.3.0:
dependencies:
entities: 6.0.1
+ parse5@8.0.0:
+ dependencies:
+ entities: 6.0.1
+
+ parseurl@1.3.3: {}
+
path-exists@4.0.0: {}
path-key@3.1.1: {}
+ path-parse@1.0.7: {}
+
+ path-scurry@2.0.1:
+ dependencies:
+ lru-cache: 11.2.4
+ minipass: 7.1.2
+
+ path-to-regexp@8.3.0: {}
+
path-type@4.0.0: {}
pathe@2.0.3: {}
@@ -9346,8 +13189,16 @@ snapshots:
pify@4.0.1: {}
+ piscina@5.1.3:
+ optionalDependencies:
+ '@napi-rs/nice': 1.1.1
+
+ pkce-challenge@5.0.1: {}
+
possible-typed-array-names@1.1.0: {}
+ postcss-media-query-parser@0.2.3: {}
+
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -9381,6 +13232,20 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
+ proc-log@5.0.0: {}
+
+ proc-log@6.1.0: {}
+
+ promise-retry@2.0.1:
+ dependencies:
+ err-code: 2.0.3
+ retry: 0.12.0
+
+ proxy-addr@2.0.7:
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+
proxy-from-env@1.1.0: {}
publint@0.3.16:
@@ -9394,12 +13259,25 @@ snapshots:
punycode@2.3.1: {}
+ qs@6.14.1:
+ dependencies:
+ side-channel: 1.1.0
+
quansync@0.2.11: {}
quansync@1.0.0: {}
queue-microtask@1.2.3: {}
+ range-parser@1.2.1: {}
+
+ raw-body@3.0.2:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.1
+ iconv-lite: 0.7.0
+ unpipe: 1.0.0
+
react-dom@19.2.3(react@19.2.3):
dependencies:
react: 19.2.3
@@ -9426,11 +13304,15 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readdirp@4.1.2: {}
+
redent@3.0.0:
dependencies:
indent-string: 4.0.0
strip-indent: 3.0.0
+ reflect-metadata@0.2.2: {}
+
regexp.prototype.flags@1.5.4:
dependencies:
call-bind: 1.0.8
@@ -9442,6 +13324,8 @@ snapshots:
require-directory@2.1.1: {}
+ require-from-string@2.0.2: {}
+
resolve-from@4.0.0: {}
resolve-from@5.0.0: {}
@@ -9450,13 +13334,28 @@ snapshots:
resolve.exports@2.0.3: {}
+ resolve@1.22.11:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
+ restore-cursor@5.1.0:
+ dependencies:
+ onetime: 7.0.0
+ signal-exit: 4.1.0
+
+ retry@0.12.0: {}
+
reusify@1.1.0: {}
+ rfdc@1.4.1: {}
+
rolldown-plugin-dts@0.20.0(oxc-resolver@11.15.0)(rolldown@1.0.0-beta.57)(typescript@5.9.3):
dependencies:
'@babel/generator': 7.28.5
@@ -9473,6 +13372,26 @@ snapshots:
transitivePeerDependencies:
- oxc-resolver
+ rolldown@1.0.0-beta.47:
+ dependencies:
+ '@oxc-project/types': 0.96.0
+ '@rolldown/pluginutils': 1.0.0-beta.47
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.0.0-beta.47
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.47
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.47
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.47
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.47
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.47
+ '@rolldown/binding-openharmony-arm64': 1.0.0-beta.47
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.47
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.47
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.47
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.47
+
rolldown@1.0.0-beta.57:
dependencies:
'@oxc-project/types': 0.103.0
@@ -9539,10 +13458,24 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.53.3
fsevents: 2.3.3
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.3
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.3.0
+ transitivePeerDependencies:
+ - supports-color
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
+ rxjs@7.8.2:
+ dependencies:
+ tslib: 2.8.1
+
sade@1.8.1:
dependencies:
mri: 1.2.0
@@ -9557,18 +13490,55 @@ snapshots:
safer-buffer@2.1.2: {}
+ sass@1.93.2:
+ dependencies:
+ chokidar: 4.0.3
+ immutable: 5.1.4
+ source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.4
+
+ saxes@6.0.0:
+ dependencies:
+ xmlchars: 2.2.0
+
scheduler@0.27.0: {}
semver@6.3.1: {}
semver@7.7.3: {}
+ send@1.2.1:
+ dependencies:
+ debug: 4.4.3
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ mime-types: 3.0.2
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
seroval-plugins@1.3.3(seroval@1.3.2):
dependencies:
seroval: 1.3.2
seroval@1.3.2: {}
+ serve-static@2.2.1:
+ dependencies:
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 1.2.1
+ transitivePeerDependencies:
+ - supports-color
+
set-function-length@1.2.2:
dependencies:
define-data-property: 1.1.4
@@ -9585,6 +13555,8 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ setprototypeof@1.2.0: {}
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -9660,6 +13632,17 @@ snapshots:
signal-exit@4.1.0: {}
+ sigstore@4.1.0:
+ dependencies:
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.1.0
+ '@sigstore/protobuf-specs': 0.5.0
+ '@sigstore/sign': 4.1.0
+ '@sigstore/tuf': 4.0.1
+ '@sigstore/verify': 3.1.0
+ transitivePeerDependencies:
+ - supports-color
+
simple-code-frame@1.3.0:
dependencies:
kolorist: 1.8.0
@@ -9676,8 +13659,28 @@ snapshots:
slash@3.0.0: {}
+ slice-ansi@7.1.2:
+ dependencies:
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
+
+ smart-buffer@4.2.0: {}
+
smol-toml@1.5.2: {}
+ socks-proxy-agent@8.0.5:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ socks: 2.8.7
+ transitivePeerDependencies:
+ - supports-color
+
+ socks@2.8.7:
+ dependencies:
+ ip-address: 10.1.0
+ smart-buffer: 4.2.0
+
solid-js@1.9.10:
dependencies:
csstype: 3.2.3
@@ -9695,6 +13698,13 @@ snapshots:
source-map-js@1.2.1: {}
+ source-map-support@0.5.21:
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+
+ source-map@0.6.1: {}
+
source-map@0.7.6: {}
spawndamnit@3.0.1:
@@ -9702,16 +13712,42 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
+ spdx-correct@3.2.0:
+ dependencies:
+ spdx-expression-parse: 3.0.1
+ spdx-license-ids: 3.0.22
+
+ spdx-exceptions@2.5.0: {}
+
+ spdx-expression-parse@3.0.1:
+ dependencies:
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.22
+
+ spdx-license-ids@3.0.22: {}
+
sprintf-js@1.0.3: {}
+ ssri@12.0.0:
+ dependencies:
+ minipass: 7.1.2
+
+ ssri@13.0.0:
+ dependencies:
+ minipass: 7.1.2
+
stable-hash-x@0.2.0: {}
stack-trace@1.0.0-pre2: {}
stackback@0.0.2: {}
+ statuses@2.0.2: {}
+
std-env@3.10.0: {}
+ stdin-discarder@0.2.2: {}
+
stop-iteration-iterator@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -9725,6 +13761,17 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
+ string-width@7.2.0:
+ dependencies:
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
+
+ string-width@8.1.0:
+ dependencies:
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
+
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
@@ -9733,6 +13780,10 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
+ strip-ansi@7.1.2:
+ dependencies:
+ ansi-regex: 6.2.2
+
strip-bom@3.0.0: {}
strip-indent@3.0.0:
@@ -9747,6 +13798,8 @@ snapshots:
dependencies:
has-flag: 4.0.0
+ supports-preserve-symlinks-flag@1.0.0: {}
+
svelte@5.45.5:
dependencies:
'@jridgewell/remapping': 2.3.5
@@ -9765,6 +13818,8 @@ snapshots:
magic-string: 0.30.21
zimmerframe: 1.1.4
+ symbol-tree@3.2.4: {}
+
tapable@2.3.0: {}
tar-stream@2.2.0:
@@ -9775,6 +13830,14 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
+ tar@7.5.2:
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.1.0
+ yallist: 5.0.0
+
term-size@2.2.1: {}
tinybench@2.9.0: {}
@@ -9788,14 +13851,30 @@ snapshots:
tinyrainbow@3.0.3: {}
+ tldts-core@7.0.19: {}
+
+ tldts@7.0.19:
+ dependencies:
+ tldts-core: 7.0.19
+
tmp@0.2.5: {}
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
+ toidentifier@1.0.1: {}
+
+ tough-cookie@6.0.0:
+ dependencies:
+ tldts: 7.0.19
+
tr46@0.0.3: {}
+ tr46@6.0.0:
+ dependencies:
+ punycode: 2.3.1
+
tree-kill@1.2.2: {}
ts-api-utils@2.1.0(typescript@5.9.3):
@@ -9850,10 +13929,24 @@ snapshots:
tslib@2.8.1: {}
+ tuf-js@4.1.0:
+ dependencies:
+ '@tufjs/models': 4.1.0
+ debug: 4.4.3
+ make-fetch-happen: 15.0.3
+ transitivePeerDependencies:
+ - supports-color
+
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
+ type-is@2.0.1:
+ dependencies:
+ content-type: 1.0.5
+ media-typer: 1.1.0
+ mime-types: 3.0.2
+
typedoc-plugin-frontmatter@1.3.0(typedoc-plugin-markdown@4.9.0(typedoc@0.28.14(typescript@5.9.3))):
dependencies:
typedoc-plugin-markdown: 4.9.0(typedoc@0.28.14(typescript@5.9.3))
@@ -9901,8 +13994,18 @@ snapshots:
undici@7.16.0: {}
+ unique-filename@5.0.0:
+ dependencies:
+ unique-slug: 6.0.0
+
+ unique-slug@6.0.0:
+ dependencies:
+ imurmurhash: 0.1.4
+
universalify@0.1.2: {}
+ unpipe@1.0.0: {}
+
unrs-resolver@1.11.1:
dependencies:
napi-postinstall: 0.3.4
@@ -9947,10 +14050,19 @@ snapshots:
util-deprecate@1.0.2: {}
+ validate-npm-package-license@3.0.4:
+ dependencies:
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
+
validate-npm-package-name@5.0.1:
optional: true
- vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)):
+ validate-npm-package-name@6.0.2: {}
+
+ vary@1.1.2: {}
+
+ vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)):
dependencies:
'@babel/core': 7.28.5
'@types/babel__core': 7.20.5
@@ -9958,14 +14070,14 @@ snapshots:
merge-anything: 5.1.7
solid-js: 1.9.10
solid-refresh: 0.6.3(solid-js@1.9.10)
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
- vitefu: 1.1.1(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+ vitefu: 1.1.1(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
optionalDependencies:
'@testing-library/jest-dom': 6.9.1
transitivePeerDependencies:
- supports-color
- vite-prerender-plugin@0.5.12(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)):
+ vite-prerender-plugin@0.5.12(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)):
dependencies:
kolorist: 1.8.0
magic-string: 0.30.21
@@ -9973,9 +14085,24 @@ snapshots:
simple-code-frame: 1.3.0
source-map: 0.7.6
stack-trace: 1.0.0-pre2
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
+
+ vite@7.2.2(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2):
+ dependencies:
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 25.0.3
+ fsevents: 2.3.3
+ jiti: 2.6.1
+ sass: 1.93.2
+ yaml: 2.8.2
- vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2):
+ vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2):
dependencies:
esbuild: 0.27.1
fdir: 6.5.0(picomatch@4.0.3)
@@ -9987,16 +14114,17 @@ snapshots:
'@types/node': 25.0.3
fsevents: 2.3.3
jiti: 2.6.1
+ sass: 1.93.2
yaml: 2.8.2
- vitefu@1.1.1(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)):
+ vitefu@1.1.1(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)):
optionalDependencies:
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
- vitest@4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(yaml@2.8.2):
+ vitest@4.0.16(@types/node@25.0.3)(happy-dom@20.0.11)(jiti@2.6.1)(jsdom@27.4.0)(sass@1.93.2)(yaml@2.8.2):
dependencies:
'@vitest/expect': 4.0.16
- '@vitest/mocker': 4.0.16(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2))
+ '@vitest/mocker': 4.0.16(vite@7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2))
'@vitest/pretty-format': 4.0.16
'@vitest/runner': 4.0.16
'@vitest/snapshot': 4.0.16
@@ -10013,11 +14141,12 @@ snapshots:
tinyexec: 1.0.2
tinyglobby: 0.2.15
tinyrainbow: 3.0.3
- vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@25.0.3)(jiti@2.6.1)(sass@1.93.2)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 25.0.3
happy-dom: 20.0.11
+ jsdom: 27.4.0
transitivePeerDependencies:
- jiti
- less
@@ -10043,14 +14172,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ w3c-xmlserializer@5.0.0:
+ dependencies:
+ xml-name-validator: 5.0.0
+
walk-up-path@4.0.0: {}
+ watchpack@2.4.4:
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
+ weak-lru-cache@1.2.2:
+ optional: true
+
webidl-conversions@3.0.1: {}
+ webidl-conversions@8.0.1: {}
+
whatwg-encoding@3.1.1:
dependencies:
iconv-lite: 0.6.3
@@ -10059,6 +14202,11 @@ snapshots:
whatwg-mimetype@4.0.0: {}
+ whatwg-url@15.1.0:
+ dependencies:
+ tr46: 6.0.0
+ webidl-conversions: 8.0.1
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -10093,6 +14241,14 @@ snapshots:
dependencies:
isexe: 2.0.0
+ which@5.0.0:
+ dependencies:
+ isexe: 3.1.1
+
+ which@6.0.0:
+ dependencies:
+ isexe: 3.1.1
+
why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
@@ -10100,24 +14256,46 @@ snapshots:
word-wrap@1.2.5: {}
+ wrap-ansi@6.2.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
+ wrap-ansi@9.0.2:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 7.2.0
+ strip-ansi: 7.1.2
+
wrappy@1.0.2: {}
ws@8.18.3: {}
+ xml-name-validator@5.0.0: {}
+
+ xmlchars@2.2.0: {}
+
y18n@5.0.8: {}
yallist@3.1.1: {}
+ yallist@4.0.0: {}
+
+ yallist@5.0.0: {}
+
yaml@2.8.2: {}
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -10128,10 +14306,27 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
yocto-queue@0.1.0: {}
+ yoctocolors-cjs@2.1.3: {}
+
+ yoctocolors@2.1.2: {}
+
zimmerframe@1.1.4: {}
+ zod-to-json-schema@3.25.1(zod@4.1.13):
+ dependencies:
+ zod: 4.1.13
+
zod-validation-error@3.5.4(zod@3.25.76):
dependencies:
zod: 3.25.76
@@ -10145,3 +14340,5 @@ snapshots:
zod@4.1.13: {}
zod@4.3.5: {}
+
+ zone.js@0.14.10: {}
diff --git a/scripts/generate-docs.ts b/scripts/generate-docs.ts
index d01f4eb6..8e5c6bc1 100644
--- a/scripts/generate-docs.ts
+++ b/scripts/generate-docs.ts
@@ -44,6 +44,18 @@ await generateReferenceDocs({
outputDir: resolve(__dirname, '../docs/framework/solid/reference'),
exclude: ['packages/pacer/**/*'],
},
+ {
+ name: 'angular-pacer',
+ entryPoints: [
+ resolve(__dirname, '../packages/angular-pacer/src/index.ts'),
+ ],
+ tsconfig: resolve(
+ __dirname,
+ '../packages/angular-pacer/tsconfig.docs.json',
+ ),
+ outputDir: resolve(__dirname, '../docs/framework/angular/reference'),
+ exclude: ['packages/pacer/**/*'],
+ },
],
})