From 369f728f26535956bb1d8ba6ef633e727a5bcf08 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 22:59:07 +0000
Subject: [PATCH 1/8] feat: rename inquirerer to genomic and create @genomic
packages
- Rename inquirerer package to genomic (v3.0.0)
- Rename create-gen-app package to @genomic/scaffolds (v1.0.0)
- Create new @genomic/utils package with CLI lifecycle utilities:
- extractFirst: command routing utility
- cliExitWithError: error handling with cleanup hooks
- checkForUpdates: npm version checking with configurable registry
- getSelfPackageJson: package.json resolution helpers
- Add test-utils subpath export to genomic package
- Update all internal references and dependencies
- Rename Inquirerer class to Genomic
BREAKING CHANGE: Package names have changed:
- inquirerer -> genomic
- create-gen-app -> @genomic/scaffolds
---
packages/create-gen-app-test/dev/index.ts | 10 +-
packages/create-gen-app-test/package.json | 4 +-
packages/create-gen-app-test/src/cli.ts | 13 +-
packages/create-gen-app-test/src/index.ts | 8 +-
.../src/test-utils/integration-helpers.ts | 2 +-
packages/create-gen-app/CHANGELOG.md | 159 -
packages/genomic/CHANGELOG.md | 246 +
packages/{inquirerer => genomic}/README.md | 80 +-
.../__snapshots__/autocomplete.test.ts.snap | 0
.../__snapshots__/prompt.test.ts.snap | 0
.../__tests__/autocomplete.test.ts | 6 +-
.../__tests__/defaultFrom.test.ts | 38 +-
.../__tests__/positional.test.ts | 8 +-
.../__tests__/prompt.test.ts | 16 +-
.../__tests__/resolvers.test.ts | 10 +-
.../__tests__/setFrom.test.ts | 30 +-
packages/{inquirerer => genomic}/dev/dev.ts | 4 +-
packages/{inquirerer => genomic}/dev/index.ts | 4 +-
.../examples/defaultFrom-example.ts | 6 +-
.../{inquirerer => genomic}/jest.config.js | 0
packages/{inquirerer => genomic}/package.json | 16 +-
.../{inquirerer => genomic}/src/commander.ts | 10 +-
packages/{inquirerer => genomic}/src/index.ts | 0
.../{inquirerer => genomic}/src/keypress.ts | 2 +-
.../{inquirerer => genomic}/src/prompt.ts | 6 +-
.../src/question/index.ts | 0
.../src/question/types.ts | 0
.../src/resolvers/date.ts | 0
.../src/resolvers/git.ts | 0
.../src/resolvers/index.ts | 6 +-
.../src/resolvers/npm.ts | 0
.../src/resolvers/types.ts | 0
.../src/resolvers/workspace.ts | 0
packages/{inquirerer => genomic}/src/utils.ts | 0
.../test-utils/setup.ts | 0
.../tsconfig.esm.json | 0
.../{create-gen-app => genomic}/tsconfig.json | 0
packages/inquirerer/CHANGELOG.md | 246 -
packages/scaffolds/CHANGELOG.md | 159 +
.../{create-gen-app => scaffolds}/README.md | 30 +-
.../__tests__/create-gen.test.ts | 34 +-
.../__tests__/licenses.test.ts | 0
.../__tests__/ttl-expiration.test.ts | 0
.../jest.config.js | 0
.../licenses-templates/APACHE-2.0.txt | 0
.../licenses-templates/BSD-3-CLAUSE.txt | 0
.../licenses-templates/CLOSED.txt | 0
.../licenses-templates/GPL-3.0.txt | 0
.../licenses-templates/ISC.txt | 0
.../licenses-templates/MIT.txt | 0
.../licenses-templates/MPL-2.0.txt | 0
.../licenses-templates/UNLICENSE.txt | 0
.../package.json | 6 +-
.../src/cache/cache-manager.ts | 0
.../src/cache/types.ts | 0
.../src/git/git-cloner.ts | 0
.../src/git/types.ts | 0
.../src/index.ts | 6 +-
.../src/licenses.ts | 0
.../src/scaffolder/index.ts | 0
.../src/scaffolder/template-scaffolder.ts | 0
.../src/scaffolder/types.ts | 8 +-
.../src/template/extract.ts | 0
.../src/template/prompt.ts | 8 +-
.../src/template/replace.ts | 2 +-
.../src/template/templatizer.ts | 4 +-
.../src/template/types.ts | 6 +-
.../src/types.ts | 4 +-
.../src/utils/npm-version-check.ts | 0
.../src/utils/types.ts | 0
.../test-utils/integration-helpers.ts | 0
.../tsconfig.esm.json | 0
.../{inquirerer => scaffolds}/tsconfig.json | 0
packages/utils/README.md | 71 +
packages/utils/jest.config.js | 9 +
packages/utils/package.json | 40 +
packages/utils/src/argv.ts | 16 +
packages/utils/src/cli-error.ts | 43 +
packages/utils/src/index.ts | 15 +
packages/utils/src/package-json.ts | 29 +
packages/utils/src/update-check.ts | 104 +
packages/utils/tsconfig.esm.json | 7 +
packages/utils/tsconfig.json | 8 +
pnpm-lock.yaml | 7722 ++++++-----------
84 files changed, 3527 insertions(+), 5734 deletions(-)
delete mode 100644 packages/create-gen-app/CHANGELOG.md
create mode 100644 packages/genomic/CHANGELOG.md
rename packages/{inquirerer => genomic}/README.md (92%)
rename packages/{inquirerer => genomic}/__tests__/__snapshots__/autocomplete.test.ts.snap (100%)
rename packages/{inquirerer => genomic}/__tests__/__snapshots__/prompt.test.ts.snap (100%)
rename packages/{inquirerer => genomic}/__tests__/autocomplete.test.ts (91%)
rename packages/{inquirerer => genomic}/__tests__/defaultFrom.test.ts (94%)
rename packages/{inquirerer => genomic}/__tests__/positional.test.ts (98%)
rename packages/{inquirerer => genomic}/__tests__/prompt.test.ts (96%)
rename packages/{inquirerer => genomic}/__tests__/resolvers.test.ts (98%)
rename packages/{inquirerer => genomic}/__tests__/setFrom.test.ts (94%)
rename packages/{inquirerer => genomic}/dev/dev.ts (98%)
rename packages/{inquirerer => genomic}/dev/index.ts (95%)
rename packages/{inquirerer => genomic}/examples/defaultFrom-example.ts (95%)
rename packages/{inquirerer => genomic}/jest.config.js (100%)
rename packages/{inquirerer => genomic}/package.json (77%)
rename packages/{inquirerer => genomic}/src/commander.ts (87%)
rename packages/{inquirerer => genomic}/src/index.ts (100%)
rename packages/{inquirerer => genomic}/src/keypress.ts (97%)
rename packages/{inquirerer => genomic}/src/prompt.ts (99%)
rename packages/{inquirerer => genomic}/src/question/index.ts (100%)
rename packages/{inquirerer => genomic}/src/question/types.ts (100%)
rename packages/{inquirerer => genomic}/src/resolvers/date.ts (100%)
rename packages/{inquirerer => genomic}/src/resolvers/git.ts (100%)
rename packages/{inquirerer => genomic}/src/resolvers/index.ts (93%)
rename packages/{inquirerer => genomic}/src/resolvers/npm.ts (100%)
rename packages/{inquirerer => genomic}/src/resolvers/types.ts (100%)
rename packages/{inquirerer => genomic}/src/resolvers/workspace.ts (100%)
rename packages/{inquirerer => genomic}/src/utils.ts (100%)
rename packages/{inquirerer => genomic}/test-utils/setup.ts (100%)
rename packages/{create-gen-app => genomic}/tsconfig.esm.json (100%)
rename packages/{create-gen-app => genomic}/tsconfig.json (100%)
delete mode 100644 packages/inquirerer/CHANGELOG.md
create mode 100644 packages/scaffolds/CHANGELOG.md
rename packages/{create-gen-app => scaffolds}/README.md (84%)
rename packages/{create-gen-app => scaffolds}/__tests__/create-gen.test.ts (95%)
rename packages/{create-gen-app => scaffolds}/__tests__/licenses.test.ts (100%)
rename packages/{create-gen-app => scaffolds}/__tests__/ttl-expiration.test.ts (100%)
rename packages/{create-gen-app => scaffolds}/jest.config.js (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/APACHE-2.0.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/BSD-3-CLAUSE.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/CLOSED.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/GPL-3.0.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/ISC.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/MIT.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/MPL-2.0.txt (100%)
rename packages/{create-gen-app => scaffolds}/licenses-templates/UNLICENSE.txt (100%)
rename packages/{create-gen-app => scaffolds}/package.json (92%)
rename packages/{create-gen-app => scaffolds}/src/cache/cache-manager.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/cache/types.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/git/git-cloner.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/git/types.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/index.ts (89%)
rename packages/{create-gen-app => scaffolds}/src/licenses.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/scaffolder/index.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/scaffolder/template-scaffolder.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/scaffolder/types.ts (96%)
rename packages/{create-gen-app => scaffolds}/src/template/extract.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/template/prompt.ts (93%)
rename packages/{create-gen-app => scaffolds}/src/template/replace.ts (97%)
rename packages/{create-gen-app => scaffolds}/src/template/templatizer.ts (96%)
rename packages/{create-gen-app => scaffolds}/src/template/types.ts (78%)
rename packages/{create-gen-app => scaffolds}/src/types.ts (95%)
rename packages/{create-gen-app => scaffolds}/src/utils/npm-version-check.ts (100%)
rename packages/{create-gen-app => scaffolds}/src/utils/types.ts (100%)
rename packages/{create-gen-app => scaffolds}/test-utils/integration-helpers.ts (100%)
rename packages/{inquirerer => scaffolds}/tsconfig.esm.json (100%)
rename packages/{inquirerer => scaffolds}/tsconfig.json (100%)
create mode 100644 packages/utils/README.md
create mode 100644 packages/utils/jest.config.js
create mode 100644 packages/utils/package.json
create mode 100644 packages/utils/src/argv.ts
create mode 100644 packages/utils/src/cli-error.ts
create mode 100644 packages/utils/src/index.ts
create mode 100644 packages/utils/src/package-json.ts
create mode 100644 packages/utils/src/update-check.ts
create mode 100644 packages/utils/tsconfig.esm.json
create mode 100644 packages/utils/tsconfig.json
diff --git a/packages/create-gen-app-test/dev/index.ts b/packages/create-gen-app-test/dev/index.ts
index ab01cb6..50a5368 100644
--- a/packages/create-gen-app-test/dev/index.ts
+++ b/packages/create-gen-app-test/dev/index.ts
@@ -1,9 +1,9 @@
import * as fs from 'fs';
-import { Inquirerer, ListQuestion } from 'inquirerer';
+import { Genomic, ListQuestion } from 'genomic';
import minimist from 'minimist';
import * as path from 'path';
-import { cloneRepo, extractVariables, promptUser, replaceVariables } from 'create-gen-app';
+import { cloneRepo, extractVariables, promptUser, replaceVariables } from '@genomic/scaffolds';
const DEFAULT_REPO = 'https://github.com/constructive-io/pgpm-boilerplates/';
const OUTPUT_DIR = './test-output';
@@ -70,7 +70,7 @@ async function main() {
);
}
} else {
- const inquirerer = new Inquirerer();
+ const genomic = new Genomic();
const question: ListQuestion = {
type: 'list',
name: 'template',
@@ -80,12 +80,12 @@ async function main() {
};
try {
- const answers = (await inquirerer.prompt({}, [question])) as {
+ const answers = (await genomic.prompt({}, [question])) as {
template: string;
};
selectedFolder = answers.template;
} finally {
- inquirerer.close();
+ genomic.close();
}
}
diff --git a/packages/create-gen-app-test/package.json b/packages/create-gen-app-test/package.json
index ba0bfed..ccaaff8 100644
--- a/packages/create-gen-app-test/package.json
+++ b/packages/create-gen-app-test/package.json
@@ -31,8 +31,8 @@
},
"dependencies": {
"appstash": "workspace:*",
- "create-gen-app": "workspace:*",
- "inquirerer": "workspace:*",
+ "@genomic/scaffolds": "workspace:*",
+ "genomic": "workspace:*",
"minimist": "^1.2.8"
},
"devDependencies": {
diff --git a/packages/create-gen-app-test/src/cli.ts b/packages/create-gen-app-test/src/cli.ts
index a54be40..f1f364f 100644
--- a/packages/create-gen-app-test/src/cli.ts
+++ b/packages/create-gen-app-test/src/cli.ts
@@ -3,10 +3,10 @@
import * as fs from 'fs';
import * as path from 'path';
-import { Inquirerer, ListQuestion } from 'inquirerer';
+import { Genomic, ListQuestion } from 'genomic';
import minimist, { ParsedArgs } from 'minimist';
-import { CacheManager, GitCloner, checkNpmVersion } from 'create-gen-app';
+import { CacheManager, GitCloner, checkNpmVersion } from '@genomic/scaffolds';
import { createFromTemplate } from './index';
const DEFAULT_REPO = 'https://github.com/constructive-io/pgpm-boilerplates.git';
@@ -15,10 +15,9 @@ const DEFAULT_TOOL_NAME = 'create-gen-app-test';
const DEFAULT_TTL = 604800000; // 1 week
const DEFAULT_TTL_DAYS = DEFAULT_TTL / (24 * 60 * 60 * 1000);
-// Import package.json for version
-import * as createGenPackageJson from 'create-gen-app/package.json';
-const PACKAGE_NAME = createGenPackageJson.name ?? '@launchql/cli';
-const PACKAGE_VERSION = createGenPackageJson.version ?? '0.0.0';
+// Package info - using the scaffolds package name and version
+const PACKAGE_NAME = '@genomic/scaffolds';
+const PACKAGE_VERSION = '1.0.0';
const RESERVED_ARG_KEYS = new Set([
'_',
@@ -280,7 +279,7 @@ function printVersion(): void {
}
async function promptForTemplate(templates: string[]): Promise {
- const prompter = new Inquirerer();
+ const prompter = new Genomic();
const question: ListQuestion = {
type: 'list',
name: 'template',
diff --git a/packages/create-gen-app-test/src/index.ts b/packages/create-gen-app-test/src/index.ts
index b0718bf..1642cca 100644
--- a/packages/create-gen-app-test/src/index.ts
+++ b/packages/create-gen-app-test/src/index.ts
@@ -1,7 +1,7 @@
import * as path from 'path';
-import { CacheManager } from 'create-gen-app';
-import { GitCloner } from 'create-gen-app';
-import { Templatizer } from 'create-gen-app';
+import { CacheManager } from '@genomic/scaffolds';
+import { GitCloner } from '@genomic/scaffolds';
+import { Templatizer } from '@genomic/scaffolds';
// Configuration constants (top-most layer owns defaults)
const DEFAULT_TOOL_NAME = 'pgpm';
@@ -102,4 +102,4 @@ export async function createFromTemplate(
}
// Re-export components for external use
-export { CacheManager, GitCloner, Templatizer } from 'create-gen-app';
+export { CacheManager, GitCloner, Templatizer } from '@genomic/scaffolds';
diff --git a/packages/create-gen-app-test/src/test-utils/integration-helpers.ts b/packages/create-gen-app-test/src/test-utils/integration-helpers.ts
index 3a75512..f02d65a 100644
--- a/packages/create-gen-app-test/src/test-utils/integration-helpers.ts
+++ b/packages/create-gen-app-test/src/test-utils/integration-helpers.ts
@@ -2,7 +2,7 @@ import * as fs from 'fs';
import * as os from 'os';
import * as path from 'path';
-import { CacheManager, GitCloner } from 'create-gen-app';
+import { CacheManager, GitCloner } from '@genomic/scaffolds';
export const TEST_REPO =
process.env.CREATE_GEN_TEST_REPO ??
diff --git a/packages/create-gen-app/CHANGELOG.md b/packages/create-gen-app/CHANGELOG.md
deleted file mode 100644
index c6df231..0000000
--- a/packages/create-gen-app/CHANGELOG.md
+++ /dev/null
@@ -1,159 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-# [0.10.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.9.0...create-gen-app@0.10.0) (2025-12-26)
-
-### Features
-
-- **create-gen-app:** make MIT the default license ([4834848](https://github.com/constructive-io/dev-utils/commit/4834848fe990ef4d841c5041401eb9fecc78d885))
-- **create-gen-app:** put CLOSED license last in the list ([d5ab753](https://github.com/constructive-io/dev-utils/commit/d5ab7530510a8f40473962d3ca1c3acb1fe1f6f6))
-
-# [0.9.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.8.1...create-gen-app@0.9.0) (2025-12-25)
-
-### Features
-
-- **create-gen-app:** add useBoilerplatesConfig option to control .boilerplates.json resolution ([f700cfe](https://github.com/constructive-io/dev-utils/commit/f700cfe35b0886de80946648cbdb8dc49154ffd3))
-
-## [0.8.1](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.8.0...create-gen-app@0.8.1) (2025-12-25)
-
-**Note:** Version bump only for package create-gen-app
-
-# [0.8.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.7.0...create-gen-app@0.8.0) (2025-12-25)
-
-### Features
-
-- **create-gen-app:** add inspect() method to TemplateScaffolder ([8cf8c4f](https://github.com/constructive-io/dev-utils/commit/8cf8c4fc04ed9fe7f8b0beb3a98fc268c01f336c))
-
-# [0.7.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.6.4...create-gen-app@0.7.0) (2025-12-25)
-
-### Features
-
-- **create-gen-app:** add optional prompter parameter for reuse ([c54e01d](https://github.com/constructive-io/dev-utils/commit/c54e01d7f2efd639e0545ba438ba713bf1377c7a))
-- **create-gen-app:** add TemplateScaffolder orchestrator class ([0a62e36](https://github.com/constructive-io/dev-utils/commit/0a62e362f2e42a3cdc7727731f104afab76c7c07))
-
-## [0.6.4](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.6.3...create-gen-app@0.6.4) (2025-12-25)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.6.3](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.6.2...create-gen-app@0.6.3) (2025-12-25)
-
-### Bug Fixes
-
-- **inquirerer:** implement stack-based ownership for keypress handling ([1c57b2f](https://github.com/constructive-io/dev-utils/commit/1c57b2fa2a794af7f3f86dc713904c5a6a4970da))
-
-## [0.6.2](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.6.1...create-gen-app@0.6.2) (2025-12-25)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.6.1](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.6.0...create-gen-app@0.6.1) (2025-12-25)
-
-**Note:** Version bump only for package create-gen-app
-
-# [0.6.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.5.0...create-gen-app@0.6.0) (2025-12-21)
-
-### Features
-
-- **create-gen-app:** register licenses resolver for optionsFrom support ([0818c77](https://github.com/constructive-io/dev-utils/commit/0818c773ad71aaeee2bd79bfe56e6ed6d69573ff))
-
-# [0.5.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.4.0...create-gen-app@0.5.0) (2025-12-21)
-
-### Features
-
-- **create-gen-app:** add CLOSED license option for all rights reserved ([b589212](https://github.com/constructive-io/dev-utils/commit/b589212f53aa0fc937d89e0e1fc914fb4491d23e))
-
-# [0.4.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.6...create-gen-app@0.4.0) (2025-12-21)
-
-### Features
-
-- **create-gen-app:** replace .questions.json with .boilerplate.json format ([dc2bf1d](https://github.com/constructive-io/dev-utils/commit/dc2bf1d3ed77c7c63acc67b996926fc4a225599e))
-
-### BREAKING CHANGES
-
-- **create-gen-app:** .questions.json/.js files are no longer supported.
- Use .boilerplate.json/.js instead.
-
-Co-Authored-By: Dan Lynch
-
-## [0.3.6](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.5...create-gen-app@0.3.6) (2025-12-17)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.3.5](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.4...create-gen-app@0.3.5) (2025-12-14)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.3.4](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.3...create-gen-app@0.3.4) (2025-12-14)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.3.3](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.2...create-gen-app@0.3.3) (2025-12-13)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.3.2](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.1...create-gen-app@0.3.2) (2025-12-13)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.3.1](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.3.0...create-gen-app@0.3.1) (2025-12-08)
-
-### Bug Fixes
-
-- update copy script in package.json to separate license templates into their own directory ([eb91513](https://github.com/constructive-io/dev-utils/commit/eb91513d260a85a8996a140f0a8bfc7876677cf7))
-
-# [0.3.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.2.2...create-gen-app@0.3.0) (2025-12-01)
-
-### Features
-
-- enhance license handling with new utility functions ([72d78b4](https://github.com/constructive-io/dev-utils/commit/72d78b4ba3cc5c13560058ae0610ea53194de721))
-
-## [0.2.2](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.2.1...create-gen-app@0.2.2) (2025-11-28)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.2.1](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.2.0...create-gen-app@0.2.1) (2025-11-26)
-
-**Note:** Version bump only for package create-gen-app
-
-# [0.2.0](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.7...create-gen-app@0.2.0) (2025-11-25)
-
-### Bug Fixes
-
-- **create-gen-app:** update tests to match camelCase variable naming ([5fe54b5](https://github.com/constructive-io/dev-utils/commit/5fe54b5bc2e1dadeb4c349b8c0f0bc7e83eee322))
-
-### Features
-
-- **create-gen-app:** add template caching with appstash ([8118699](https://github.com/constructive-io/dev-utils/commit/8118699f6322d1800cf27b969303e11b2195725c))
-
-## [0.1.7](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.6...create-gen-app@0.1.7) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.6](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.5...create-gen-app@0.1.6) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.5](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.4...create-gen-app@0.1.5) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.4](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.3...create-gen-app@0.1.4) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.3](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.2...create-gen-app@0.1.3) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.2](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.1...create-gen-app@0.1.2) (2025-11-24)
-
-**Note:** Version bump only for package create-gen-app
-
-## [0.1.1](https://github.com/constructive-io/dev-utils/compare/create-gen-app@0.1.0...create-gen-app@0.1.1) (2025-11-23)
-
-**Note:** Version bump only for package create-gen-app
-
-# 0.1.0 (2025-11-16)
-
-**Note:** Version bump only for package create-gen-app
diff --git a/packages/genomic/CHANGELOG.md b/packages/genomic/CHANGELOG.md
new file mode 100644
index 0000000..aa70ad6
--- /dev/null
+++ b/packages/genomic/CHANGELOG.md
@@ -0,0 +1,246 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.4.0](https://github.com/constructive-io/dev-utils/compare/genomic@2.3.2...genomic@2.4.0) (2025-12-25)
+
+### Bug Fixes
+
+- **genomic:** strip consumed positionals from argv.\_ and respect mutateArgs ([9341f86](https://github.com/constructive-io/dev-utils/commit/9341f860479b473f95af7daa482340b868774859))
+
+### Features
+
+- **genomic:** add positional arguments support with \_ property ([227409d](https://github.com/constructive-io/dev-utils/commit/227409df232f7efc520dfc761e901bb5e2eb5979))
+
+## [2.3.2](https://github.com/constructive-io/dev-utils/compare/genomic@2.3.1...genomic@2.3.2) (2025-12-25)
+
+### Reverts
+
+- **genomic:** simplify keypress to per-instance model ([36a4697](https://github.com/constructive-io/dev-utils/commit/36a469754329e8fbc2adbd86915fd73e1c4284f7))
+
+## [2.3.1](https://github.com/constructive-io/dev-utils/compare/genomic@2.3.0...genomic@2.3.1) (2025-12-25)
+
+### Bug Fixes
+
+- **genomic:** implement stack-based ownership for keypress handling ([1c57b2f](https://github.com/constructive-io/dev-utils/commit/1c57b2fa2a794af7f3f86dc713904c5a6a4970da))
+
+# [2.3.0](https://github.com/constructive-io/dev-utils/compare/genomic@2.2.1...genomic@2.3.0) (2025-12-25)
+
+### Bug Fixes
+
+- **genomic:** remove redundant $ input indicator, keep only > ([4b1b739](https://github.com/constructive-io/dev-utils/commit/4b1b7394b60ef2fea3cc67b885b92ddd52f01270))
+
+### Features
+
+- **genomic:** add compact prompt style as default ([b757265](https://github.com/constructive-io/dev-utils/commit/b757265365b5f5e2541b49cec31f8d141abbe044))
+
+## [2.2.1](https://github.com/constructive-io/dev-utils/compare/genomic@2.2.0...genomic@2.2.1) (2025-12-25)
+
+### Bug Fixes
+
+- **genomic:** prevent keypress event duplication with multiple instances ([d15a82a](https://github.com/constructive-io/dev-utils/commit/d15a82aac897e08c45ac1a350d746290d2360319))
+
+# [2.2.0](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.14...genomic@2.2.0) (2025-12-21)
+
+### Features
+
+- **genomic:** add optionsFrom resolver support for dynamic options ([5eaf31c](https://github.com/constructive-io/dev-utils/commit/5eaf31c7ab33400195bda83c94e434e6a0f9af1c))
+
+## [2.1.14](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.13...genomic@2.1.14) (2025-12-17)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.13](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.12...genomic@2.1.13) (2025-12-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.12](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.11...genomic@2.1.12) (2025-12-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.11](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.10...genomic@2.1.11) (2025-12-13)
+
+### Bug Fixes
+
+- **genomic:** pass \_\_dirname to findAndRequirePackageJson ([21d32d1](https://github.com/constructive-io/dev-utils/commit/21d32d1ed58474bca3ce55ab098bf47340bae14d))
+
+## [2.1.10](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.9...genomic@2.1.10) (2025-12-13)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.9](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.8...genomic@2.1.9) (2025-11-28)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.8](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.7...genomic@2.1.8) (2025-11-26)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.7](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.6...genomic@2.1.7) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.6](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.5...genomic@2.1.6) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.5](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.4...genomic@2.1.5) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.4](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.3...genomic@2.1.4) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.3](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.2...genomic@2.1.3) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.2](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.1...genomic@2.1.2) (2025-11-24)
+
+**Note:** Version bump only for package genomic
+
+## [2.1.1](https://github.com/constructive-io/dev-utils/compare/genomic@2.1.0...genomic@2.1.1) (2025-11-23)
+
+**Note:** Version bump only for package genomic
+
+# [2.1.0](https://github.com/pyramation/genomic/compare/genomic@2.0.8...genomic@2.1.0) (2025-11-16)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.8](https://github.com/pyramation/genomic/compare/genomic@2.0.7...genomic@2.0.8) (2025-05-25)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.7](https://github.com/pyramation/genomic/compare/genomic@2.0.6...genomic@2.0.7) (2025-05-22)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.6](https://github.com/pyramation/genomic/compare/genomic@2.0.5...genomic@2.0.6) (2025-05-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.5](https://github.com/pyramation/genomic/compare/genomic@2.0.4...genomic@2.0.5) (2025-05-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.4](https://github.com/pyramation/genomic/compare/genomic@2.0.3...genomic@2.0.4) (2025-05-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.3](https://github.com/pyramation/genomic/compare/genomic@2.0.2...genomic@2.0.3) (2025-05-14)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.2](https://github.com/pyramation/genomic/compare/genomic@2.0.1...genomic@2.0.2) (2025-05-13)
+
+**Note:** Version bump only for package genomic
+
+## [2.0.1](https://github.com/pyramation/genomic/compare/genomic@2.0.0...genomic@2.0.1) (2025-05-13)
+
+**Note:** Version bump only for package genomic
+
+# [2.0.0](https://github.com/pyramation/genomic/compare/genomic@1.9.1...genomic@2.0.0) (2025-05-13)
+
+**Note:** Version bump only for package genomic
+
+## [1.9.1](https://github.com/pyramation/genomic/compare/genomic@1.9.0...genomic@1.9.1) (2025-05-09)
+
+**Note:** Version bump only for package genomic
+
+# [1.9.0](https://github.com/pyramation/genomic/compare/genomic@1.8.0...genomic@1.9.0) (2024-04-30)
+
+**Note:** Version bump only for package genomic
+
+# [1.8.0](https://github.com/pyramation/genomic/compare/genomic@1.7.0...genomic@1.8.0) (2024-04-24)
+
+**Note:** Version bump only for package genomic
+
+# [1.7.0](https://github.com/pyramation/genomic/compare/genomic@1.6.1...genomic@1.7.0) (2024-04-24)
+
+**Note:** Version bump only for package genomic
+
+## [1.6.1](https://github.com/pyramation/genomic/compare/genomic@1.6.0...genomic@1.6.1) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.6.0](https://github.com/pyramation/genomic/compare/genomic@1.5.0...genomic@1.6.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.5.0](https://github.com/pyramation/genomic/compare/genomic@1.4.0...genomic@1.5.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.4.0](https://github.com/pyramation/genomic/compare/genomic@1.3.0...genomic@1.4.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.3.0](https://github.com/pyramation/genomic/compare/genomic@1.2.0...genomic@1.3.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.2.0](https://github.com/pyramation/genomic/compare/genomic@1.1.0...genomic@1.2.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.1.0](https://github.com/pyramation/genomic/compare/genomic@1.0.0...genomic@1.1.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [1.0.0](https://github.com/pyramation/genomic/compare/genomic@0.12.0...genomic@1.0.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.12.0](https://github.com/pyramation/genomic/compare/genomic@0.11.0...genomic@0.12.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.11.0](https://github.com/pyramation/genomic/compare/genomic@0.10.1...genomic@0.11.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+## [0.10.1](https://github.com/pyramation/genomic/compare/genomic@0.10.0...genomic@0.10.1) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.10.0](https://github.com/pyramation/genomic/compare/genomic@0.9.0...genomic@0.10.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.9.0](https://github.com/pyramation/genomic/compare/genomic@0.8.1...genomic@0.9.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+## [0.8.1](https://github.com/pyramation/genomic/compare/genomic@0.8.0...genomic@0.8.1) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.8.0](https://github.com/pyramation/genomic/compare/genomic@0.7.0...genomic@0.8.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.7.0](https://github.com/pyramation/genomic/compare/genomic@0.6.0...genomic@0.7.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.6.0](https://github.com/pyramation/genomic/compare/genomic@0.5.0...genomic@0.6.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.5.0](https://github.com/pyramation/genomic/compare/genomic@0.4.0...genomic@0.5.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# [0.4.0](https://github.com/pyramation/genomic/compare/genomic@0.3.0...genomic@0.4.0) (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+# 0.3.0 (2024-04-22)
+
+**Note:** Version bump only for package genomic
+
+## 0.0.2 (2024-04-21)
+
+**Note:** Version bump only for package @pyramation/genomic
diff --git a/packages/inquirerer/README.md b/packages/genomic/README.md
similarity index 92%
rename from packages/inquirerer/README.md
rename to packages/genomic/README.md
index d644dec..8c81db7 100644
--- a/packages/inquirerer/README.md
+++ b/packages/genomic/README.md
@@ -1,7 +1,7 @@
-# inquirerer
+# genomic
-
+
@@ -11,8 +11,8 @@
-
-
+
+
A powerful, TypeScript-first library for building beautiful command-line interfaces. Create interactive CLI tools with ease using intuitive prompts, validation, and rich user experiences.
@@ -20,7 +20,7 @@ A powerful, TypeScript-first library for building beautiful command-line interfa
## Installation
```bash
-npm install inquirerer
+npm install genomic
```
## Features
@@ -41,7 +41,7 @@ npm install inquirerer
- [Question Types](#question-types)
- [Non-Interactive Mode](#non-interactive-mode)
- [API Reference](#api-reference)
- - [Inquirerer Class](#inquirerer-class)
+ - [Genomic Class](#genomic-class)
- [Question Types](#question-types-1)
- [Text Question](#text-question)
- [Number Question](#number-question)
@@ -67,9 +67,9 @@ npm install inquirerer
## Quick Start
```typescript
-import { Inquirerer } from 'inquirerer';
+import { Genomic } from 'genomic';
-const prompter = new Inquirerer();
+const prompter = new Genomic();
const answers = await prompter.prompt({}, [
{
@@ -98,7 +98,7 @@ Import types for full type safety:
```typescript
import {
- Inquirerer,
+ Genomic,
Question,
TextQuestion,
NumberQuestion,
@@ -106,11 +106,11 @@ import {
ListQuestion,
AutocompleteQuestion,
CheckboxQuestion,
- InquirererOptions,
+ GenomicOptions,
DefaultResolverRegistry,
registerDefaultResolver,
resolveDefault
-} from 'inquirerer';
+} from 'genomic';
interface UserConfig {
name: string;
@@ -148,10 +148,10 @@ interface BaseQuestion {
### Non-Interactive Mode
-When running in CI/CD or without a TTY, inquirerer automatically falls back to default values:
+When running in CI/CD or without a TTY, genomic automatically falls back to default values:
```typescript
-const prompter = new Inquirerer({
+const prompter = new Genomic({
noTty: true, // Force non-interactive mode
useDefaults: true // Use defaults without prompting
});
@@ -159,12 +159,12 @@ const prompter = new Inquirerer({
## API Reference
-### Inquirerer Class
+### Genomic Class
#### Constructor Options
```typescript
-interface InquirererOptions {
+interface GenomicOptions {
noTty?: boolean; // Disable interactive mode
input?: Readable; // Input stream (default: process.stdin)
output?: Writable; // Output stream (default: process.stdout)
@@ -174,7 +174,7 @@ interface InquirererOptions {
resolverRegistry?: DefaultResolverRegistry; // Custom resolver registry
}
-const prompter = new Inquirerer(options);
+const prompter = new Genomic(options);
```
#### Methods
@@ -193,13 +193,13 @@ exit(): void
#### Managing Multiple Instances
-When working with multiple `Inquirerer` instances that share the same input stream (typically `process.stdin`), only one instance should be actively prompting at a time. Each instance attaches its own keyboard listener, so having multiple active instances will cause duplicate or unexpected keypress behavior.
+When working with multiple `Genomic` instances that share the same input stream (typically `process.stdin`), only one instance should be actively prompting at a time. Each instance attaches its own keyboard listener, so having multiple active instances will cause duplicate or unexpected keypress behavior.
**Best practices:**
-1. **Reuse a single instance** - Create one `Inquirerer` instance and reuse it for all prompts:
+1. **Reuse a single instance** - Create one `Genomic` instance and reuse it for all prompts:
```typescript
- const prompter = new Inquirerer();
+ const prompter = new Genomic();
// Use the same instance for multiple prompt sessions
const answers1 = await prompter.prompt({}, questions1);
@@ -210,11 +210,11 @@ When working with multiple `Inquirerer` instances that share the same input stre
2. **Close before creating another** - If you need separate instances, close the first before using the second:
```typescript
- const prompter1 = new Inquirerer();
+ const prompter1 = new Genomic();
const answers1 = await prompter1.prompt({}, questions1);
prompter1.close(); // Important: close before creating another
- const prompter2 = new Inquirerer();
+ const prompter2 = new Genomic();
const answers2 = await prompter2.prompt({}, questions2);
prompter2.close();
```
@@ -508,11 +508,11 @@ const questions: Question[] = [
### Project Setup Wizard
```typescript
-import { Inquirerer, Question } from 'inquirerer';
+import { Genomic, Question } from 'genomic';
import minimist from 'minimist';
const argv = minimist(process.argv.slice(2));
-const prompter = new Inquirerer();
+const prompter = new Genomic();
const questions: Question[] = [
{
@@ -636,8 +636,8 @@ fs.writeFileSync('config.json', JSON.stringify(config, null, 2));
### CLI with Commander Integration
```typescript
-import { CLI, CommandHandler } from 'inquirerer';
-import { Question } from 'inquirerer';
+import { CLI, CommandHandler } from 'genomic';
+import { Question } from 'genomic';
const handler: CommandHandler = async (argv, prompter, options) => {
const questions: Question[] = [
@@ -797,7 +797,7 @@ The `defaultFrom` feature allows you to automatically populate question defaults
### Quick Example
```typescript
-import { Inquirerer } from 'inquirerer';
+import { Genomic } from 'genomic';
const questions = [
{
@@ -826,13 +826,13 @@ const questions = [
}
];
-const prompter = new Inquirerer();
+const prompter = new Genomic();
const answers = await prompter.prompt({}, questions);
```
### Built-in Resolvers
-Inquirerer comes with several built-in resolvers ready to use:
+Genomic comes with several built-in resolvers ready to use:
#### Git Configuration
@@ -873,7 +873,7 @@ Inquirerer comes with several built-in resolvers ready to use:
### Priority Order
-When resolving default values, inquirerer follows this priority:
+When resolving default values, genomic follows this priority:
1. **CLI Arguments** - Values passed via command line (highest priority)
2. **`setFrom`** - Auto-set values (bypasses prompt entirely)
@@ -964,7 +964,7 @@ const questions = [
Register your own custom resolvers for project-specific needs:
```typescript
-import { registerDefaultResolver } from 'inquirerer';
+import { registerDefaultResolver } from 'genomic';
// Register a resolver for current directory name
registerDefaultResolver('cwd.name', () => {
@@ -996,10 +996,10 @@ const questions = [
### Instance-Specific Resolvers
-For isolated resolver registries, use a custom resolver registry per Inquirerer instance:
+For isolated resolver registries, use a custom resolver registry per Genomic instance:
```typescript
-import { DefaultResolverRegistry, Inquirerer } from 'inquirerer';
+import { DefaultResolverRegistry, Genomic } from 'genomic';
const customRegistry = new DefaultResolverRegistry();
@@ -1007,7 +1007,7 @@ const customRegistry = new DefaultResolverRegistry();
customRegistry.register('app.name', () => 'my-app');
customRegistry.register('app.port', () => 3000);
-const prompter = new Inquirerer({
+const prompter = new Genomic({
resolverRegistry: customRegistry // Use custom registry
});
@@ -1033,7 +1033,7 @@ const answers = await prompter.prompt({}, questions);
```typescript
import os from 'os';
-import { registerDefaultResolver } from 'inquirerer';
+import { registerDefaultResolver } from 'genomic';
registerDefaultResolver('system.hostname', () => os.hostname());
registerDefaultResolver('system.username', () => os.userInfo().username);
@@ -1067,7 +1067,7 @@ const questions = [
### Error Handling
-Resolvers fail silently by default. If a resolver throws an error or returns `undefined`, inquirerer falls back to the static `default` value (if provided):
+Resolvers fail silently by default. If a resolver throws an error or returns `undefined`, genomic falls back to the static `default` value (if provided):
```typescript
{
@@ -1079,16 +1079,16 @@ Resolvers fail silently by default. If a resolver throws an error or returns `un
}
```
-For debugging, set `DEBUG=inquirerer` to see resolver errors:
+For debugging, set `DEBUG=genomic` to see resolver errors:
```bash
-DEBUG=inquirerer node your-cli.js
+DEBUG=genomic node your-cli.js
```
### Real-World Use Case
```typescript
-import { Inquirerer, registerDefaultResolver } from 'inquirerer';
+import { Genomic, registerDefaultResolver } from 'genomic';
// Register a resolver for current directory name
registerDefaultResolver('cwd.name', () => {
@@ -1125,7 +1125,7 @@ const questions = [
}
];
-const prompter = new Inquirerer();
+const prompter = new Genomic();
const config = await prompter.prompt({}, questions);
```
@@ -1145,7 +1145,7 @@ All defaults automatically populated from git config, directory name, and curren
The `CLI` class provides integration with command-line argument parsing:
```typescript
-import { CLI, CommandHandler, CLIOptions } from 'inquirerer';
+import { CLI, CommandHandler, CLIOptions } from 'genomic';
const options: Partial = {
version: 'myapp@1.0.0',
diff --git a/packages/inquirerer/__tests__/__snapshots__/autocomplete.test.ts.snap b/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
similarity index 100%
rename from packages/inquirerer/__tests__/__snapshots__/autocomplete.test.ts.snap
rename to packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
diff --git a/packages/inquirerer/__tests__/__snapshots__/prompt.test.ts.snap b/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
similarity index 100%
rename from packages/inquirerer/__tests__/__snapshots__/prompt.test.ts.snap
rename to packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
diff --git a/packages/inquirerer/__tests__/autocomplete.test.ts b/packages/genomic/__tests__/autocomplete.test.ts
similarity index 91%
rename from packages/inquirerer/__tests__/autocomplete.test.ts
rename to packages/genomic/__tests__/autocomplete.test.ts
index 6d81145..dce8937 100644
--- a/packages/inquirerer/__tests__/autocomplete.test.ts
+++ b/packages/genomic/__tests__/autocomplete.test.ts
@@ -1,9 +1,9 @@
-import { Inquirerer, Question } from '../src';
+import { Genomic, Question } from '../src';
import { KEY_SEQUENCES, setupTests, TestEnvironment } from '../test-utils/setup';
const beforeEachSetup = setupTests();
-describe('Inquirerer', () => {
+describe('Genomic', () => {
let environment: TestEnvironment;
beforeEach(() => {
@@ -13,7 +13,7 @@ describe('Inquirerer', () => {
it('prompts user and correctly processes delayed input', async () => {
const { mockInput, mockOutput, writeResults, transformResults, enqueueInputResponse } = environment;
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
diff --git a/packages/inquirerer/__tests__/defaultFrom.test.ts b/packages/genomic/__tests__/defaultFrom.test.ts
similarity index 94%
rename from packages/inquirerer/__tests__/defaultFrom.test.ts
rename to packages/genomic/__tests__/defaultFrom.test.ts
index 0d35221..4de7731 100644
--- a/packages/inquirerer/__tests__/defaultFrom.test.ts
+++ b/packages/genomic/__tests__/defaultFrom.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Inquirerer, DefaultResolverRegistry } from '../src';
+import { Genomic, DefaultResolverRegistry } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -16,7 +16,7 @@ function sleep(ms: number): Promise {
return new Promise(resolve => setTimeout(resolve, ms));
}
-describe('Inquirerer - defaultFrom feature', () => {
+describe('Genomic - defaultFrom feature', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -100,7 +100,7 @@ describe('Inquirerer - defaultFrom feature', () => {
it('should use git.user.name as default', async () => {
mockedExecSync.mockReturnValue('John Doe\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true // Non-interactive mode to use defaults
@@ -126,7 +126,7 @@ describe('Inquirerer - defaultFrom feature', () => {
it('should use git.user.email as default', async () => {
mockedExecSync.mockReturnValue('john@example.com\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -154,7 +154,7 @@ describe('Inquirerer - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -179,7 +179,7 @@ describe('Inquirerer - defaultFrom feature', () => {
.mockReturnValueOnce('Jane Smith\n' as any)
.mockReturnValueOnce('jane@example.com\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -209,7 +209,7 @@ describe('Inquirerer - defaultFrom feature', () => {
describe('date resolvers', () => {
it('should use date.year as default', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -229,7 +229,7 @@ describe('Inquirerer - defaultFrom feature', () => {
});
it('should use date.iso as default', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -249,7 +249,7 @@ describe('Inquirerer - defaultFrom feature', () => {
});
it('should resolve multiple date fields', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -288,7 +288,7 @@ describe('Inquirerer - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'custom-result');
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -315,7 +315,7 @@ describe('Inquirerer - defaultFrom feature', () => {
return Promise.resolve('async-result');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -340,7 +340,7 @@ describe('Inquirerer - defaultFrom feature', () => {
it('should prioritize argv over defaultFrom', async () => {
mockedExecSync.mockReturnValue('Git User\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -365,7 +365,7 @@ describe('Inquirerer - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -387,7 +387,7 @@ describe('Inquirerer - defaultFrom feature', () => {
it('should handle mixed defaultFrom and static defaults', async () => {
mockedExecSync.mockReturnValue('Jane Doe\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -426,7 +426,7 @@ describe('Inquirerer - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.bool', () => true);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true, // Non-interactive to avoid readline complexity
@@ -450,7 +450,7 @@ describe('Inquirerer - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.number', () => 42);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -476,7 +476,7 @@ describe('Inquirerer - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.empty', () => '');
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -504,7 +504,7 @@ describe('Inquirerer - defaultFrom feature', () => {
throw new Error('Resolver error');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -530,7 +530,7 @@ describe('Inquirerer - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
diff --git a/packages/inquirerer/__tests__/positional.test.ts b/packages/genomic/__tests__/positional.test.ts
similarity index 98%
rename from packages/inquirerer/__tests__/positional.test.ts
rename to packages/genomic/__tests__/positional.test.ts
index 6d7278b..3a17d1b 100644
--- a/packages/inquirerer/__tests__/positional.test.ts
+++ b/packages/genomic/__tests__/positional.test.ts
@@ -1,4 +1,4 @@
-import { Inquirerer } from '../src';
+import { Genomic } from '../src';
import { Question } from '../src/question';
interface TestResult {
@@ -7,10 +7,10 @@ interface TestResult {
}
describe('Positional Arguments (_: true)', () => {
- let prompter: Inquirerer;
+ let prompter: Genomic;
beforeEach(() => {
- prompter = new Inquirerer({ noTty: true });
+ prompter = new Genomic({ noTty: true });
});
afterEach(() => {
@@ -319,7 +319,7 @@ describe('Positional Arguments (_: true)', () => {
});
it('does not mutate original argv when mutateArgs is false', async () => {
- const nonMutatingPrompter = new Inquirerer({ noTty: true, mutateArgs: false });
+ const nonMutatingPrompter = new Genomic({ noTty: true, mutateArgs: false });
const questions: Question[] = [
{ _: true, name: 'foo', type: 'text' }
];
diff --git a/packages/inquirerer/__tests__/prompt.test.ts b/packages/genomic/__tests__/prompt.test.ts
similarity index 96%
rename from packages/inquirerer/__tests__/prompt.test.ts
rename to packages/genomic/__tests__/prompt.test.ts
index 1a2c76a..4013112 100644
--- a/packages/inquirerer/__tests__/prompt.test.ts
+++ b/packages/genomic/__tests__/prompt.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Inquirerer } from '../src';
+import { Genomic } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -12,7 +12,7 @@ function sleep(ms: number): Promise {
const snap = (str: any) => expect(str).toMatchSnapshot();
-describe('Inquirerer', () => {
+describe('Genomic', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -100,7 +100,7 @@ describe('Inquirerer', () => {
it('prompts user and correctly processes delayed input', async () => {
enqueueInputResponse({ type: 'read', value: 'user input' });
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
@@ -122,7 +122,7 @@ describe('Inquirerer', () => {
enqueueInputResponse({ type: 'read', value: 'first question answer' });
enqueueInputResponse({ type: 'read', value: 'second question answer' });
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
@@ -145,7 +145,7 @@ describe('Inquirerer', () => {
it('handles combined key events and readline inputs', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
@@ -173,7 +173,7 @@ describe('Inquirerer', () => {
it('checkbox', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
@@ -202,7 +202,7 @@ describe('Inquirerer', () => {
it('checkbox w/options', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
@@ -234,7 +234,7 @@ describe('Inquirerer', () => {
it('handles readline inputs', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: false
diff --git a/packages/inquirerer/__tests__/resolvers.test.ts b/packages/genomic/__tests__/resolvers.test.ts
similarity index 98%
rename from packages/inquirerer/__tests__/resolvers.test.ts
rename to packages/genomic/__tests__/resolvers.test.ts
index 8c4c469..65659a2 100644
--- a/packages/inquirerer/__tests__/resolvers.test.ts
+++ b/packages/genomic/__tests__/resolvers.test.ts
@@ -471,8 +471,8 @@ describe("Debug Mode", () => {
consoleErrorSpy.mockRestore();
});
- it("should log errors when DEBUG=inquirerer is set", async () => {
- process.env.DEBUG = "inquirerer";
+ it("should log errors when DEBUG=genomic is set", async () => {
+ process.env.DEBUG = "genomic";
const registry = new DefaultResolverRegistry();
registry.register("test.error", () => {
@@ -482,7 +482,7 @@ describe("Debug Mode", () => {
await registry.resolve("test.error");
expect(consoleErrorSpy).toHaveBeenCalledWith(
- "[inquirerer] Resolver 'test.error' failed:",
+ "[genomic] Resolver 'test.error' failed:",
expect.any(Error)
);
});
@@ -536,7 +536,7 @@ describe("Workspace Resolvers", () => {
"workspace.repo.organization"
);
- // Tests run from inquirerer package which has constructive-io as the org
+ // Tests run from genomic package which has constructive-io as the org
expect(result).toBe("constructive-io");
});
@@ -565,7 +565,7 @@ describe("Workspace Resolvers", () => {
"workspace.author.email"
);
- // Tests run from inquirerer package which has developers@constructive.io
+ // Tests run from genomic package which has developers@constructive.io
expect(result).toBe("developers@constructive.io");
});
});
diff --git a/packages/inquirerer/__tests__/setFrom.test.ts b/packages/genomic/__tests__/setFrom.test.ts
similarity index 94%
rename from packages/inquirerer/__tests__/setFrom.test.ts
rename to packages/genomic/__tests__/setFrom.test.ts
index bbbcace..3c49150 100644
--- a/packages/inquirerer/__tests__/setFrom.test.ts
+++ b/packages/genomic/__tests__/setFrom.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Inquirerer, DefaultResolverRegistry } from '../src';
+import { Genomic, DefaultResolverRegistry } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -12,7 +12,7 @@ jest.mock('child_process', () => ({
import { execSync } from 'child_process';
const mockedExecSync = execSync as jest.MockedFunction;
-describe('Inquirerer - setFrom feature', () => {
+describe('Genomic - setFrom feature', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -84,7 +84,7 @@ describe('Inquirerer - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'auto-set-value');
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -107,7 +107,7 @@ describe('Inquirerer - setFrom feature', () => {
it('should use git.user.name with setFrom', async () => {
mockedExecSync.mockReturnValue('John Doe\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -131,7 +131,7 @@ describe('Inquirerer - setFrom feature', () => {
});
it('should use date.year with setFrom', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -151,7 +151,7 @@ describe('Inquirerer - setFrom feature', () => {
});
it('should use workspace resolvers with setFrom', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -185,7 +185,7 @@ describe('Inquirerer - setFrom feature', () => {
customRegistry.register('resolver.a', () => 'value-a');
customRegistry.register('resolver.b', () => 'value-b');
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -217,7 +217,7 @@ describe('Inquirerer - setFrom feature', () => {
it('should allow both setFrom and defaultFrom on different questions', async () => {
mockedExecSync.mockReturnValue('Git User\n' as any);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -250,7 +250,7 @@ describe('Inquirerer - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'resolver-value');
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -274,7 +274,7 @@ describe('Inquirerer - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.undefined', () => undefined);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -302,7 +302,7 @@ describe('Inquirerer - setFrom feature', () => {
throw new Error('Resolver error');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -331,7 +331,7 @@ describe('Inquirerer - setFrom feature', () => {
return Promise.resolve('async-value');
});
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -354,7 +354,7 @@ describe('Inquirerer - setFrom feature', () => {
describe('multiple setFrom fields', () => {
it('should resolve multiple setFrom fields', async () => {
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true
@@ -393,7 +393,7 @@ describe('Inquirerer - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.number', () => 42);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -417,7 +417,7 @@ describe('Inquirerer - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.bool', () => true);
- const prompter = new Inquirerer({
+ const prompter = new Genomic({
input: mockInput,
output: mockOutput,
noTty: true,
diff --git a/packages/inquirerer/dev/dev.ts b/packages/genomic/dev/dev.ts
similarity index 98%
rename from packages/inquirerer/dev/dev.ts
rename to packages/genomic/dev/dev.ts
index dbb3b9e..0118c53 100644
--- a/packages/inquirerer/dev/dev.ts
+++ b/packages/genomic/dev/dev.ts
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import minimist from 'minimist';
-import { Inquirerer } from '../src';
+import { Genomic } from '../src';
import { AutocompleteQuestion, ConfirmQuestion, Question } from '../src/question';
import { displayVersion } from '../src/utils';
@@ -22,7 +22,7 @@ if (argv.version) {
process.exit(0);
}
-const prompter = new Inquirerer({
+const prompter = new Genomic({
noTty: !argv.tty
});
diff --git a/packages/inquirerer/dev/index.ts b/packages/genomic/dev/index.ts
similarity index 95%
rename from packages/inquirerer/dev/index.ts
rename to packages/genomic/dev/index.ts
index a3d855e..6324814 100644
--- a/packages/inquirerer/dev/index.ts
+++ b/packages/genomic/dev/index.ts
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import minimist from 'minimist';
-import { Inquirerer } from '../src';
+import { Genomic } from '../src';
import { AutocompleteQuestion, ConfirmQuestion, Question } from '../src/question';
import { displayVersion } from '../src/utils';
@@ -26,7 +26,7 @@ if (argv.version) {
process.exit(0);
}
-const prompter = new Inquirerer({
+const prompter = new Genomic({
noTty: !argv.tty
});
diff --git a/packages/inquirerer/examples/defaultFrom-example.ts b/packages/genomic/examples/defaultFrom-example.ts
similarity index 95%
rename from packages/inquirerer/examples/defaultFrom-example.ts
rename to packages/genomic/examples/defaultFrom-example.ts
index f8857b8..c94c9dc 100644
--- a/packages/inquirerer/examples/defaultFrom-example.ts
+++ b/packages/genomic/examples/defaultFrom-example.ts
@@ -1,4 +1,4 @@
-import { Inquirerer, registerDefaultResolver } from '../src';
+import { Genomic, registerDefaultResolver } from '../src';
/**
* Example demonstrating the new defaultFrom feature
@@ -33,7 +33,7 @@ async function basicExample() {
}
];
- const prompter = new Inquirerer();
+ const prompter = new Genomic();
const answers = await prompter.prompt({}, questions);
console.log('\nAnswers:', answers);
@@ -68,7 +68,7 @@ async function customResolverExample() {
}
];
- const prompter = new Inquirerer();
+ const prompter = new Genomic();
const answers = await prompter.prompt({}, questions);
console.log('\nAnswers:', answers);
diff --git a/packages/inquirerer/jest.config.js b/packages/genomic/jest.config.js
similarity index 100%
rename from packages/inquirerer/jest.config.js
rename to packages/genomic/jest.config.js
diff --git a/packages/inquirerer/package.json b/packages/genomic/package.json
similarity index 77%
rename from packages/inquirerer/package.json
rename to packages/genomic/package.json
index 33d1ff9..5242f6f 100644
--- a/packages/inquirerer/package.json
+++ b/packages/genomic/package.json
@@ -1,11 +1,23 @@
{
- "name": "inquirerer",
- "version": "2.4.0",
+ "name": "genomic",
+ "version": "3.0.0",
"author": "Constructive ",
"description": "TypeScript-first library for building beautiful CLI interfaces with interactive prompts",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./index.d.ts",
+ "import": "./esm/index.js",
+ "require": "./index.js"
+ },
+ "./test-utils": {
+ "types": "./test-utils/setup.d.ts",
+ "import": "./esm/test-utils/setup.js",
+ "require": "./test-utils/setup.js"
+ }
+ },
"homepage": "https://github.com/constructive-io/dev-utils",
"license": "MIT",
"publishConfig": {
diff --git a/packages/inquirerer/src/commander.ts b/packages/genomic/src/commander.ts
similarity index 87%
rename from packages/inquirerer/src/commander.ts
rename to packages/genomic/src/commander.ts
index bd1296c..b5a576c 100644
--- a/packages/inquirerer/src/commander.ts
+++ b/packages/genomic/src/commander.ts
@@ -2,11 +2,11 @@ import deepmerge from 'deepmerge';
import minimist, { Opts, ParsedArgs } from 'minimist';
import { Readable, Writable } from 'stream';
-import { Inquirerer } from './prompt';
+import { Genomic } from './prompt';
import { getVersion } from './utils';
// Define the type for the command handler function
-export type CommandHandler = (argv: ParsedArgs, prompter: Inquirerer, options: CLIOptions) => void;
+export type CommandHandler = (argv: ParsedArgs, prompter: Genomic, options: CLIOptions) => void;
export interface CLIOptions {
noTty: boolean;
@@ -17,7 +17,7 @@ export interface CLIOptions {
}
export const defaultCLIOptions: CLIOptions = {
- version: `inquirerer@${getVersion()}`,
+ version: `genomic@${getVersion()}`,
noTty: false,
input: process.stdin,
output: process.stdout,
@@ -30,7 +30,7 @@ export const defaultCLIOptions: CLIOptions = {
export class CLI {
private argv: ParsedArgs;
- private prompter: Inquirerer;
+ private prompter: Genomic;
private commandHandler: CommandHandler;
private options: CLIOptions;
@@ -48,7 +48,7 @@ export class CLI {
this.argv = argv ? argv : minimist(process.argv.slice(2), this.options.minimistOpts);
- this.prompter = new Inquirerer({
+ this.prompter = new Genomic({
noTty: this.options.noTty,
input: this.options.input,
output: this.options.output
diff --git a/packages/inquirerer/src/index.ts b/packages/genomic/src/index.ts
similarity index 100%
rename from packages/inquirerer/src/index.ts
rename to packages/genomic/src/index.ts
diff --git a/packages/inquirerer/src/keypress.ts b/packages/genomic/src/keypress.ts
similarity index 97%
rename from packages/inquirerer/src/keypress.ts
rename to packages/genomic/src/keypress.ts
index c2aa10f..c255813 100644
--- a/packages/inquirerer/src/keypress.ts
+++ b/packages/genomic/src/keypress.ts
@@ -26,7 +26,7 @@ export const KEY_CODES = {
* Handles keyboard input for interactive prompts.
*
* **Important**: Only one TerminalKeypress instance should be actively listening
- * on a given input stream at a time. If you need multiple Inquirerer instances,
+ * on a given input stream at a time. If you need multiple Genomic instances,
* call `close()` on the first instance before using the second, or reuse a single
* instance for all prompts.
*
diff --git a/packages/inquirerer/src/prompt.ts b/packages/genomic/src/prompt.ts
similarity index 99%
rename from packages/inquirerer/src/prompt.ts
rename to packages/genomic/src/prompt.ts
index 76631d5..60b9acd 100644
--- a/packages/inquirerer/src/prompt.ts
+++ b/packages/genomic/src/prompt.ts
@@ -171,7 +171,7 @@ function generatePromptMessage(question: Question, ctx: PromptContext): string {
return lines.join('\n') + '\n';
}
-export interface InquirererOptions {
+export interface GenomicOptions {
noTty?: boolean;
input?: Readable;
output?: Writable;
@@ -180,7 +180,7 @@ export interface InquirererOptions {
mutateArgs?: boolean;
resolverRegistry?: DefaultResolverRegistry;
}
-export class Inquirerer {
+export class Genomic {
private rl: readline.Interface | null;
private keypress: TerminalKeypress | null;
private noTty: boolean;
@@ -194,7 +194,7 @@ export class Inquirerer {
private handledKeys: Set = new Set();
constructor(
- options?: InquirererOptions
+ options?: GenomicOptions
) {
const {
noTty = false,
diff --git a/packages/inquirerer/src/question/index.ts b/packages/genomic/src/question/index.ts
similarity index 100%
rename from packages/inquirerer/src/question/index.ts
rename to packages/genomic/src/question/index.ts
diff --git a/packages/inquirerer/src/question/types.ts b/packages/genomic/src/question/types.ts
similarity index 100%
rename from packages/inquirerer/src/question/types.ts
rename to packages/genomic/src/question/types.ts
diff --git a/packages/inquirerer/src/resolvers/date.ts b/packages/genomic/src/resolvers/date.ts
similarity index 100%
rename from packages/inquirerer/src/resolvers/date.ts
rename to packages/genomic/src/resolvers/date.ts
diff --git a/packages/inquirerer/src/resolvers/git.ts b/packages/genomic/src/resolvers/git.ts
similarity index 100%
rename from packages/inquirerer/src/resolvers/git.ts
rename to packages/genomic/src/resolvers/git.ts
diff --git a/packages/inquirerer/src/resolvers/index.ts b/packages/genomic/src/resolvers/index.ts
similarity index 93%
rename from packages/inquirerer/src/resolvers/index.ts
rename to packages/genomic/src/resolvers/index.ts
index 63e5464..2b313c4 100644
--- a/packages/inquirerer/src/resolvers/index.ts
+++ b/packages/genomic/src/resolvers/index.ts
@@ -50,8 +50,8 @@ export class DefaultResolverRegistry {
return result === '' ? undefined : result;
} catch (error) {
// Silent failure - log only in debug mode
- if (process.env.DEBUG === 'inquirerer') {
- console.error(`[inquirerer] Resolver '${key}' failed:`, error);
+ if (process.env.DEBUG === 'genomic') {
+ console.error(`[genomic] Resolver '${key}' failed:`, error);
}
return undefined;
}
@@ -85,7 +85,7 @@ export class DefaultResolverRegistry {
/**
* Global resolver registry instance with built-in resolvers.
- * This is the default registry used by Inquirerer unless a custom one is provided.
+ * This is the default registry used by Genomic unless a custom one is provided.
*/
export const globalResolverRegistry = new DefaultResolverRegistry({
...gitResolvers,
diff --git a/packages/inquirerer/src/resolvers/npm.ts b/packages/genomic/src/resolvers/npm.ts
similarity index 100%
rename from packages/inquirerer/src/resolvers/npm.ts
rename to packages/genomic/src/resolvers/npm.ts
diff --git a/packages/inquirerer/src/resolvers/types.ts b/packages/genomic/src/resolvers/types.ts
similarity index 100%
rename from packages/inquirerer/src/resolvers/types.ts
rename to packages/genomic/src/resolvers/types.ts
diff --git a/packages/inquirerer/src/resolvers/workspace.ts b/packages/genomic/src/resolvers/workspace.ts
similarity index 100%
rename from packages/inquirerer/src/resolvers/workspace.ts
rename to packages/genomic/src/resolvers/workspace.ts
diff --git a/packages/inquirerer/src/utils.ts b/packages/genomic/src/utils.ts
similarity index 100%
rename from packages/inquirerer/src/utils.ts
rename to packages/genomic/src/utils.ts
diff --git a/packages/inquirerer/test-utils/setup.ts b/packages/genomic/test-utils/setup.ts
similarity index 100%
rename from packages/inquirerer/test-utils/setup.ts
rename to packages/genomic/test-utils/setup.ts
diff --git a/packages/create-gen-app/tsconfig.esm.json b/packages/genomic/tsconfig.esm.json
similarity index 100%
rename from packages/create-gen-app/tsconfig.esm.json
rename to packages/genomic/tsconfig.esm.json
diff --git a/packages/create-gen-app/tsconfig.json b/packages/genomic/tsconfig.json
similarity index 100%
rename from packages/create-gen-app/tsconfig.json
rename to packages/genomic/tsconfig.json
diff --git a/packages/inquirerer/CHANGELOG.md b/packages/inquirerer/CHANGELOG.md
deleted file mode 100644
index 489dd55..0000000
--- a/packages/inquirerer/CHANGELOG.md
+++ /dev/null
@@ -1,246 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-# [2.4.0](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.3.2...inquirerer@2.4.0) (2025-12-25)
-
-### Bug Fixes
-
-- **inquirerer:** strip consumed positionals from argv.\_ and respect mutateArgs ([9341f86](https://github.com/constructive-io/dev-utils/commit/9341f860479b473f95af7daa482340b868774859))
-
-### Features
-
-- **inquirerer:** add positional arguments support with \_ property ([227409d](https://github.com/constructive-io/dev-utils/commit/227409df232f7efc520dfc761e901bb5e2eb5979))
-
-## [2.3.2](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.3.1...inquirerer@2.3.2) (2025-12-25)
-
-### Reverts
-
-- **inquirerer:** simplify keypress to per-instance model ([36a4697](https://github.com/constructive-io/dev-utils/commit/36a469754329e8fbc2adbd86915fd73e1c4284f7))
-
-## [2.3.1](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.3.0...inquirerer@2.3.1) (2025-12-25)
-
-### Bug Fixes
-
-- **inquirerer:** implement stack-based ownership for keypress handling ([1c57b2f](https://github.com/constructive-io/dev-utils/commit/1c57b2fa2a794af7f3f86dc713904c5a6a4970da))
-
-# [2.3.0](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.2.1...inquirerer@2.3.0) (2025-12-25)
-
-### Bug Fixes
-
-- **inquirerer:** remove redundant $ input indicator, keep only > ([4b1b739](https://github.com/constructive-io/dev-utils/commit/4b1b7394b60ef2fea3cc67b885b92ddd52f01270))
-
-### Features
-
-- **inquirerer:** add compact prompt style as default ([b757265](https://github.com/constructive-io/dev-utils/commit/b757265365b5f5e2541b49cec31f8d141abbe044))
-
-## [2.2.1](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.2.0...inquirerer@2.2.1) (2025-12-25)
-
-### Bug Fixes
-
-- **inquirerer:** prevent keypress event duplication with multiple instances ([d15a82a](https://github.com/constructive-io/dev-utils/commit/d15a82aac897e08c45ac1a350d746290d2360319))
-
-# [2.2.0](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.14...inquirerer@2.2.0) (2025-12-21)
-
-### Features
-
-- **inquirerer:** add optionsFrom resolver support for dynamic options ([5eaf31c](https://github.com/constructive-io/dev-utils/commit/5eaf31c7ab33400195bda83c94e434e6a0f9af1c))
-
-## [2.1.14](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.13...inquirerer@2.1.14) (2025-12-17)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.13](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.12...inquirerer@2.1.13) (2025-12-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.12](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.11...inquirerer@2.1.12) (2025-12-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.11](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.10...inquirerer@2.1.11) (2025-12-13)
-
-### Bug Fixes
-
-- **inquirerer:** pass \_\_dirname to findAndRequirePackageJson ([21d32d1](https://github.com/constructive-io/dev-utils/commit/21d32d1ed58474bca3ce55ab098bf47340bae14d))
-
-## [2.1.10](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.9...inquirerer@2.1.10) (2025-12-13)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.9](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.8...inquirerer@2.1.9) (2025-11-28)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.8](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.7...inquirerer@2.1.8) (2025-11-26)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.7](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.6...inquirerer@2.1.7) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.6](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.5...inquirerer@2.1.6) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.5](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.4...inquirerer@2.1.5) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.4](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.3...inquirerer@2.1.4) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.3](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.2...inquirerer@2.1.3) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.2](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.1...inquirerer@2.1.2) (2025-11-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.1.1](https://github.com/constructive-io/dev-utils/compare/inquirerer@2.1.0...inquirerer@2.1.1) (2025-11-23)
-
-**Note:** Version bump only for package inquirerer
-
-# [2.1.0](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.8...inquirerer@2.1.0) (2025-11-16)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.8](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.7...inquirerer@2.0.8) (2025-05-25)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.7](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.6...inquirerer@2.0.7) (2025-05-22)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.6](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.5...inquirerer@2.0.6) (2025-05-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.5](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.4...inquirerer@2.0.5) (2025-05-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.4](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.3...inquirerer@2.0.4) (2025-05-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.3](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.2...inquirerer@2.0.3) (2025-05-14)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.2](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.1...inquirerer@2.0.2) (2025-05-13)
-
-**Note:** Version bump only for package inquirerer
-
-## [2.0.1](https://github.com/pyramation/inquirerer/compare/inquirerer@2.0.0...inquirerer@2.0.1) (2025-05-13)
-
-**Note:** Version bump only for package inquirerer
-
-# [2.0.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.9.1...inquirerer@2.0.0) (2025-05-13)
-
-**Note:** Version bump only for package inquirerer
-
-## [1.9.1](https://github.com/pyramation/inquirerer/compare/inquirerer@1.9.0...inquirerer@1.9.1) (2025-05-09)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.9.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.8.0...inquirerer@1.9.0) (2024-04-30)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.8.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.7.0...inquirerer@1.8.0) (2024-04-24)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.7.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.6.1...inquirerer@1.7.0) (2024-04-24)
-
-**Note:** Version bump only for package inquirerer
-
-## [1.6.1](https://github.com/pyramation/inquirerer/compare/inquirerer@1.6.0...inquirerer@1.6.1) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.6.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.5.0...inquirerer@1.6.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.5.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.4.0...inquirerer@1.5.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.4.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.3.0...inquirerer@1.4.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.3.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.2.0...inquirerer@1.3.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.2.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.1.0...inquirerer@1.2.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.1.0](https://github.com/pyramation/inquirerer/compare/inquirerer@1.0.0...inquirerer@1.1.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [1.0.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.12.0...inquirerer@1.0.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.12.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.11.0...inquirerer@0.12.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.11.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.10.1...inquirerer@0.11.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-## [0.10.1](https://github.com/pyramation/inquirerer/compare/inquirerer@0.10.0...inquirerer@0.10.1) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.10.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.9.0...inquirerer@0.10.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.9.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.8.1...inquirerer@0.9.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-## [0.8.1](https://github.com/pyramation/inquirerer/compare/inquirerer@0.8.0...inquirerer@0.8.1) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.8.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.7.0...inquirerer@0.8.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.7.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.6.0...inquirerer@0.7.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.6.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.5.0...inquirerer@0.6.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.5.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.4.0...inquirerer@0.5.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# [0.4.0](https://github.com/pyramation/inquirerer/compare/inquirerer@0.3.0...inquirerer@0.4.0) (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-# 0.3.0 (2024-04-22)
-
-**Note:** Version bump only for package inquirerer
-
-## 0.0.2 (2024-04-21)
-
-**Note:** Version bump only for package @pyramation/inquirerer
diff --git a/packages/scaffolds/CHANGELOG.md b/packages/scaffolds/CHANGELOG.md
new file mode 100644
index 0000000..bbe9fd6
--- /dev/null
+++ b/packages/scaffolds/CHANGELOG.md
@@ -0,0 +1,159 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [0.10.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.9.0...@genomic/scaffolds@0.10.0) (2025-12-26)
+
+### Features
+
+- **@genomic/scaffolds:** make MIT the default license ([4834848](https://github.com/constructive-io/dev-utils/commit/4834848fe990ef4d841c5041401eb9fecc78d885))
+- **@genomic/scaffolds:** put CLOSED license last in the list ([d5ab753](https://github.com/constructive-io/dev-utils/commit/d5ab7530510a8f40473962d3ca1c3acb1fe1f6f6))
+
+# [0.9.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.8.1...@genomic/scaffolds@0.9.0) (2025-12-25)
+
+### Features
+
+- **@genomic/scaffolds:** add useBoilerplatesConfig option to control .boilerplates.json resolution ([f700cfe](https://github.com/constructive-io/dev-utils/commit/f700cfe35b0886de80946648cbdb8dc49154ffd3))
+
+## [0.8.1](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.8.0...@genomic/scaffolds@0.8.1) (2025-12-25)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+# [0.8.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.7.0...@genomic/scaffolds@0.8.0) (2025-12-25)
+
+### Features
+
+- **@genomic/scaffolds:** add inspect() method to TemplateScaffolder ([8cf8c4f](https://github.com/constructive-io/dev-utils/commit/8cf8c4fc04ed9fe7f8b0beb3a98fc268c01f336c))
+
+# [0.7.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.6.4...@genomic/scaffolds@0.7.0) (2025-12-25)
+
+### Features
+
+- **@genomic/scaffolds:** add optional prompter parameter for reuse ([c54e01d](https://github.com/constructive-io/dev-utils/commit/c54e01d7f2efd639e0545ba438ba713bf1377c7a))
+- **@genomic/scaffolds:** add TemplateScaffolder orchestrator class ([0a62e36](https://github.com/constructive-io/dev-utils/commit/0a62e362f2e42a3cdc7727731f104afab76c7c07))
+
+## [0.6.4](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.6.3...@genomic/scaffolds@0.6.4) (2025-12-25)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.6.3](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.6.2...@genomic/scaffolds@0.6.3) (2025-12-25)
+
+### Bug Fixes
+
+- **genomic:** implement stack-based ownership for keypress handling ([1c57b2f](https://github.com/constructive-io/dev-utils/commit/1c57b2fa2a794af7f3f86dc713904c5a6a4970da))
+
+## [0.6.2](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.6.1...@genomic/scaffolds@0.6.2) (2025-12-25)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.6.1](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.6.0...@genomic/scaffolds@0.6.1) (2025-12-25)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+# [0.6.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.5.0...@genomic/scaffolds@0.6.0) (2025-12-21)
+
+### Features
+
+- **@genomic/scaffolds:** register licenses resolver for optionsFrom support ([0818c77](https://github.com/constructive-io/dev-utils/commit/0818c773ad71aaeee2bd79bfe56e6ed6d69573ff))
+
+# [0.5.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.4.0...@genomic/scaffolds@0.5.0) (2025-12-21)
+
+### Features
+
+- **@genomic/scaffolds:** add CLOSED license option for all rights reserved ([b589212](https://github.com/constructive-io/dev-utils/commit/b589212f53aa0fc937d89e0e1fc914fb4491d23e))
+
+# [0.4.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.6...@genomic/scaffolds@0.4.0) (2025-12-21)
+
+### Features
+
+- **@genomic/scaffolds:** replace .questions.json with .boilerplate.json format ([dc2bf1d](https://github.com/constructive-io/dev-utils/commit/dc2bf1d3ed77c7c63acc67b996926fc4a225599e))
+
+### BREAKING CHANGES
+
+- **@genomic/scaffolds:** .questions.json/.js files are no longer supported.
+ Use .boilerplate.json/.js instead.
+
+Co-Authored-By: Dan Lynch
+
+## [0.3.6](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.5...@genomic/scaffolds@0.3.6) (2025-12-17)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.3.5](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.4...@genomic/scaffolds@0.3.5) (2025-12-14)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.3.4](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.3...@genomic/scaffolds@0.3.4) (2025-12-14)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.3.3](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.2...@genomic/scaffolds@0.3.3) (2025-12-13)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.3.2](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.1...@genomic/scaffolds@0.3.2) (2025-12-13)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.3.1](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.3.0...@genomic/scaffolds@0.3.1) (2025-12-08)
+
+### Bug Fixes
+
+- update copy script in package.json to separate license templates into their own directory ([eb91513](https://github.com/constructive-io/dev-utils/commit/eb91513d260a85a8996a140f0a8bfc7876677cf7))
+
+# [0.3.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.2.2...@genomic/scaffolds@0.3.0) (2025-12-01)
+
+### Features
+
+- enhance license handling with new utility functions ([72d78b4](https://github.com/constructive-io/dev-utils/commit/72d78b4ba3cc5c13560058ae0610ea53194de721))
+
+## [0.2.2](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.2.1...@genomic/scaffolds@0.2.2) (2025-11-28)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.2.1](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.2.0...@genomic/scaffolds@0.2.1) (2025-11-26)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+# [0.2.0](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.7...@genomic/scaffolds@0.2.0) (2025-11-25)
+
+### Bug Fixes
+
+- **@genomic/scaffolds:** update tests to match camelCase variable naming ([5fe54b5](https://github.com/constructive-io/dev-utils/commit/5fe54b5bc2e1dadeb4c349b8c0f0bc7e83eee322))
+
+### Features
+
+- **@genomic/scaffolds:** add template caching with appstash ([8118699](https://github.com/constructive-io/dev-utils/commit/8118699f6322d1800cf27b969303e11b2195725c))
+
+## [0.1.7](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.6...@genomic/scaffolds@0.1.7) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.6](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.5...@genomic/scaffolds@0.1.6) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.5](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.4...@genomic/scaffolds@0.1.5) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.4](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.3...@genomic/scaffolds@0.1.4) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.3](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.2...@genomic/scaffolds@0.1.3) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.2](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.1...@genomic/scaffolds@0.1.2) (2025-11-24)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+## [0.1.1](https://github.com/constructive-io/dev-utils/compare/@genomic/scaffolds@0.1.0...@genomic/scaffolds@0.1.1) (2025-11-23)
+
+**Note:** Version bump only for package @genomic/scaffolds
+
+# 0.1.0 (2025-11-16)
+
+**Note:** Version bump only for package @genomic/scaffolds
diff --git a/packages/create-gen-app/README.md b/packages/scaffolds/README.md
similarity index 84%
rename from packages/create-gen-app/README.md
rename to packages/scaffolds/README.md
index 3aa31ff..9a083ab 100644
--- a/packages/create-gen-app/README.md
+++ b/packages/scaffolds/README.md
@@ -1,7 +1,7 @@
-# create-gen-app
+# @genomic/scaffolds
-
+
@@ -12,8 +12,8 @@
-
-
+
+
A TypeScript-first library for cloning template repositories, asking the user for variables, and generating a new project with sensible defaults.
@@ -23,28 +23,28 @@ A TypeScript-first library for cloning template repositories, asking the user fo
- Clone any Git repo (or GitHub `org/repo` shorthand) and optionally select a branch + subdirectory
- Extract template variables from filenames and file contents using the safer `____variable____` convention
- Merge auto-discovered variables with `.questions.{json,js}` (questions win)
-- Interactive prompts powered by `inquirerer`, with flexible override mapping (`argv` support) and non-TTY mode for CI
+- Interactive prompts powered by `genomic`, with flexible override mapping (`argv` support) and non-TTY mode for CI
- License scaffolding: choose from MIT, Apache-2.0, ISC, GPL-3.0, BSD-3-Clause, Unlicense, or MPL-2.0 and generate a populated `LICENSE`
- Built-in template caching powered by `appstash`, so repeat runs skip `git clone` (configurable via `cache` options; TTL is opt-in)
## Installation
```bash
-npm install create-gen-app
+npm install @genomic/scaffolds
```
-> **Note:** The published package is API-only. An internal CLI harness used for integration testing now lives in `packages/create-gen-app-test/`.
+> **Note:** The published package is API-only. An internal CLI harness used for integration testing now lives in `packages/@genomic/scaffolds-test/`.
## Library Usage
-`create-gen-app` provides both a high-level orchestrator and modular building blocks for template scaffolding.
+`@genomic/scaffolds` provides both a high-level orchestrator and modular building blocks for template scaffolding.
### Quick Start with TemplateScaffolder
-The easiest way to use `create-gen-app` is with the `TemplateScaffolder` class, which combines caching, cloning, and template processing into a single API:
+The easiest way to use `@genomic/scaffolds` is with the `TemplateScaffolder` class, which combines caching, cloning, and template processing into a single API:
```typescript
-import { TemplateScaffolder } from 'create-gen-app';
+import { TemplateScaffolder } from '@genomic/scaffolds';
const scaffolder = new TemplateScaffolder({
toolName: 'my-cli', // Cache directory: ~/.my-cli/cache
@@ -97,11 +97,11 @@ For more control, you can use the individual components directly:
### Example: Manual Orchestration
-Here is how you can combine these components to create a full CLI pipeline (similar to `create-gen-app-test`):
+Here is how you can combine these components to create a full CLI pipeline (similar to `@genomic/scaffolds-test`):
```typescript
import * as path from "path";
-import { CacheManager, GitCloner, Templatizer } from "create-gen-app";
+import { CacheManager, GitCloner, Templatizer } from "@genomic/scaffolds";
async function main() {
const repoUrl = "https://github.com/user/template-repo";
@@ -192,7 +192,7 @@ Note: `.boilerplate.json`, `.boilerplate.js`, and `.boilerplates.json` files are
### License Templates
-`create-gen-app` ships text templates in `licenses-templates/`. To add another license, drop a `.txt` file matching the desired key (e.g., `BSD-2-CLAUSE.txt`) with placeholders:
+`@genomic/scaffolds` ships text templates in `licenses-templates/`. To add another license, drop a `.txt` file matching the desired key (e.g., `BSD-2-CLAUSE.txt`) with placeholders:
- `{{YEAR}}`, `{{AUTHOR}}`, `{{EMAIL_LINE}}`
@@ -217,7 +217,7 @@ The high-level orchestrator that combines caching, cloning, and template process
- `branch`: Branch to clone
- `answers`: Pre-populated answers to skip prompting
- `noTty`: Disable interactive prompts
- - `prompter`: Reuse an existing Inquirerer instance
+ - `prompter`: Reuse an existing Genomic instance
- `readBoilerplatesConfig(dir)`: Read `.boilerplates.json` from a template repo
- `readBoilerplateConfig(dir)`: Read `.boilerplate.json` from a template directory
- `getCacheManager()`, `getGitCloner()`, `getTemplatizer()`: Access underlying components
@@ -239,4 +239,4 @@ The high-level orchestrator that combines caching, cloning, and template process
### Templatizer
- `process(templateDir, outputDir, options)`: Run the full template generation pipeline (extract -> prompt -> replace).
-See `packages/create-gen-app-test` for a complete reference implementation.
+See `packages/@genomic/scaffolds-test` for a complete reference implementation.
diff --git a/packages/create-gen-app/__tests__/create-gen.test.ts b/packages/scaffolds/__tests__/create-gen.test.ts
similarity index 95%
rename from packages/create-gen-app/__tests__/create-gen.test.ts
rename to packages/scaffolds/__tests__/create-gen.test.ts
index 8590b03..4b1b08b 100644
--- a/packages/create-gen-app/__tests__/create-gen.test.ts
+++ b/packages/scaffolds/__tests__/create-gen.test.ts
@@ -11,9 +11,9 @@ jest.mock('child_process', () => {
};
});
-jest.mock('inquirerer', () => {
+jest.mock('genomic', () => {
return {
- Inquirerer: jest.fn().mockImplementation(() => {
+ Genomic: jest.fn().mockImplementation(() => {
return {
prompt: jest.fn().mockResolvedValue({}),
close: jest.fn(),
@@ -23,7 +23,7 @@ jest.mock('inquirerer', () => {
};
});
-describe('create-gen-app', () => {
+describe('@genomic/scaffolds', () => {
let testTempDir: string;
let testOutputDir: string;
@@ -199,13 +199,13 @@ module.exports = {
describe('promptUser', () => {
it('should generate questions for file and content replacers', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
author: 'John Doe',
});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -228,12 +228,12 @@ module.exports = {
});
it('should prioritize project questions over auto-generated ones', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -263,13 +263,13 @@ module.exports = {
});
it('should use argv to pre-populate answers', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
author: 'John Doe',
});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -292,10 +292,10 @@ module.exports = {
});
it('should require exact CLI override names', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -325,10 +325,10 @@ module.exports = {
});
it('should not map CLI overrides sharing substrings', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -358,12 +358,12 @@ module.exports = {
});
it('should hydrate template variables from alias answers', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
fullName: 'Prompted User',
});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -389,12 +389,12 @@ module.exports = {
});
it('should not hydrate overlapping template variables implicitly', async () => {
- const { Inquirerer } = require('inquirerer');
+ const { Genomic } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
description: 'Prompted description',
});
- Inquirerer.mockImplementation(() => ({
+ Genomic.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
diff --git a/packages/create-gen-app/__tests__/licenses.test.ts b/packages/scaffolds/__tests__/licenses.test.ts
similarity index 100%
rename from packages/create-gen-app/__tests__/licenses.test.ts
rename to packages/scaffolds/__tests__/licenses.test.ts
diff --git a/packages/create-gen-app/__tests__/ttl-expiration.test.ts b/packages/scaffolds/__tests__/ttl-expiration.test.ts
similarity index 100%
rename from packages/create-gen-app/__tests__/ttl-expiration.test.ts
rename to packages/scaffolds/__tests__/ttl-expiration.test.ts
diff --git a/packages/create-gen-app/jest.config.js b/packages/scaffolds/jest.config.js
similarity index 100%
rename from packages/create-gen-app/jest.config.js
rename to packages/scaffolds/jest.config.js
diff --git a/packages/create-gen-app/licenses-templates/APACHE-2.0.txt b/packages/scaffolds/licenses-templates/APACHE-2.0.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/APACHE-2.0.txt
rename to packages/scaffolds/licenses-templates/APACHE-2.0.txt
diff --git a/packages/create-gen-app/licenses-templates/BSD-3-CLAUSE.txt b/packages/scaffolds/licenses-templates/BSD-3-CLAUSE.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/BSD-3-CLAUSE.txt
rename to packages/scaffolds/licenses-templates/BSD-3-CLAUSE.txt
diff --git a/packages/create-gen-app/licenses-templates/CLOSED.txt b/packages/scaffolds/licenses-templates/CLOSED.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/CLOSED.txt
rename to packages/scaffolds/licenses-templates/CLOSED.txt
diff --git a/packages/create-gen-app/licenses-templates/GPL-3.0.txt b/packages/scaffolds/licenses-templates/GPL-3.0.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/GPL-3.0.txt
rename to packages/scaffolds/licenses-templates/GPL-3.0.txt
diff --git a/packages/create-gen-app/licenses-templates/ISC.txt b/packages/scaffolds/licenses-templates/ISC.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/ISC.txt
rename to packages/scaffolds/licenses-templates/ISC.txt
diff --git a/packages/create-gen-app/licenses-templates/MIT.txt b/packages/scaffolds/licenses-templates/MIT.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/MIT.txt
rename to packages/scaffolds/licenses-templates/MIT.txt
diff --git a/packages/create-gen-app/licenses-templates/MPL-2.0.txt b/packages/scaffolds/licenses-templates/MPL-2.0.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/MPL-2.0.txt
rename to packages/scaffolds/licenses-templates/MPL-2.0.txt
diff --git a/packages/create-gen-app/licenses-templates/UNLICENSE.txt b/packages/scaffolds/licenses-templates/UNLICENSE.txt
similarity index 100%
rename from packages/create-gen-app/licenses-templates/UNLICENSE.txt
rename to packages/scaffolds/licenses-templates/UNLICENSE.txt
diff --git a/packages/create-gen-app/package.json b/packages/scaffolds/package.json
similarity index 92%
rename from packages/create-gen-app/package.json
rename to packages/scaffolds/package.json
index 0724feb..36807db 100644
--- a/packages/create-gen-app/package.json
+++ b/packages/scaffolds/package.json
@@ -1,6 +1,6 @@
{
- "name": "create-gen-app",
- "version": "0.10.0",
+ "name": "@genomic/scaffolds",
+ "version": "1.0.0",
"author": "Constructive ",
"description": "Clone and customize template repositories with variable replacement",
"main": "index.js",
@@ -29,7 +29,7 @@
},
"dependencies": {
"appstash": "workspace:*",
- "inquirerer": "workspace:*"
+ "genomic": "workspace:*"
},
"devDependencies": {
"copyfiles": "^2.4.1",
diff --git a/packages/create-gen-app/src/cache/cache-manager.ts b/packages/scaffolds/src/cache/cache-manager.ts
similarity index 100%
rename from packages/create-gen-app/src/cache/cache-manager.ts
rename to packages/scaffolds/src/cache/cache-manager.ts
diff --git a/packages/create-gen-app/src/cache/types.ts b/packages/scaffolds/src/cache/types.ts
similarity index 100%
rename from packages/create-gen-app/src/cache/types.ts
rename to packages/scaffolds/src/cache/types.ts
diff --git a/packages/create-gen-app/src/git/git-cloner.ts b/packages/scaffolds/src/git/git-cloner.ts
similarity index 100%
rename from packages/create-gen-app/src/git/git-cloner.ts
rename to packages/scaffolds/src/git/git-cloner.ts
diff --git a/packages/create-gen-app/src/git/types.ts b/packages/scaffolds/src/git/types.ts
similarity index 100%
rename from packages/create-gen-app/src/git/types.ts
rename to packages/scaffolds/src/git/types.ts
diff --git a/packages/create-gen-app/src/index.ts b/packages/scaffolds/src/index.ts
similarity index 89%
rename from packages/create-gen-app/src/index.ts
rename to packages/scaffolds/src/index.ts
index 0fff359..c1c8216 100644
--- a/packages/create-gen-app/src/index.ts
+++ b/packages/scaffolds/src/index.ts
@@ -1,7 +1,7 @@
import * as fs from 'fs';
import * as path from 'path';
-import { registerDefaultResolver } from 'inquirerer';
+import { registerDefaultResolver } from 'genomic';
import { extractVariables } from './template/extract';
import { promptUser } from './template/prompt';
@@ -40,7 +40,7 @@ export { extractVariables, promptUser, replaceVariables };
/**
* @deprecated This function is deprecated and will be removed in the next major version.
* Use the modular approach with CacheManager, GitCloner, and Templatizer classes instead.
- * See create-gen-app-test package for an example of the new orchestration pattern.
+ * See @genomic/scaffolds-test package for an example of the new orchestration pattern.
*
* Create a new project from a template repository
* @param options - Options for creating the project
@@ -49,6 +49,6 @@ export { extractVariables, promptUser, replaceVariables };
export async function createGen(options: CreateGenOptions): Promise {
throw new Error(
'createGen() has been deprecated. Please use CacheManager, GitCloner, and Templatizer classes for modular template processing. ' +
- 'See create-gen-app-test package for the new orchestration pattern.'
+ 'See @genomic/scaffolds-test package for the new orchestration pattern.'
);
}
diff --git a/packages/create-gen-app/src/licenses.ts b/packages/scaffolds/src/licenses.ts
similarity index 100%
rename from packages/create-gen-app/src/licenses.ts
rename to packages/scaffolds/src/licenses.ts
diff --git a/packages/create-gen-app/src/scaffolder/index.ts b/packages/scaffolds/src/scaffolder/index.ts
similarity index 100%
rename from packages/create-gen-app/src/scaffolder/index.ts
rename to packages/scaffolds/src/scaffolder/index.ts
diff --git a/packages/create-gen-app/src/scaffolder/template-scaffolder.ts b/packages/scaffolds/src/scaffolder/template-scaffolder.ts
similarity index 100%
rename from packages/create-gen-app/src/scaffolder/template-scaffolder.ts
rename to packages/scaffolds/src/scaffolder/template-scaffolder.ts
diff --git a/packages/create-gen-app/src/scaffolder/types.ts b/packages/scaffolds/src/scaffolder/types.ts
similarity index 96%
rename from packages/create-gen-app/src/scaffolder/types.ts
rename to packages/scaffolds/src/scaffolder/types.ts
index 6baceaa..ebc0a2b 100644
--- a/packages/create-gen-app/src/scaffolder/types.ts
+++ b/packages/scaffolds/src/scaffolder/types.ts
@@ -1,5 +1,5 @@
-import { Inquirerer } from 'inquirerer';
-import { Question } from 'inquirerer';
+import { Genomic } from 'genomic';
+import { Question } from 'genomic';
/**
* Configuration for TemplateScaffolder instance
@@ -81,11 +81,11 @@ export interface ScaffoldOptions {
noTty?: boolean;
/**
- * Optional Inquirerer instance to reuse for prompting.
+ * Optional Genomic instance to reuse for prompting.
* If provided, the caller retains ownership and is responsible for closing it.
* If not provided, a new instance will be created and closed automatically.
*/
- prompter?: Inquirerer;
+ prompter?: Genomic;
}
/**
diff --git a/packages/create-gen-app/src/template/extract.ts b/packages/scaffolds/src/template/extract.ts
similarity index 100%
rename from packages/create-gen-app/src/template/extract.ts
rename to packages/scaffolds/src/template/extract.ts
diff --git a/packages/create-gen-app/src/template/prompt.ts b/packages/scaffolds/src/template/prompt.ts
similarity index 93%
rename from packages/create-gen-app/src/template/prompt.ts
rename to packages/scaffolds/src/template/prompt.ts
index bae5377..29267bb 100644
--- a/packages/create-gen-app/src/template/prompt.ts
+++ b/packages/scaffolds/src/template/prompt.ts
@@ -1,4 +1,4 @@
-import { Inquirerer, Question } from 'inquirerer';
+import { Genomic, Question } from 'genomic';
import { ExtractedVariables } from '../types';
@@ -71,7 +71,7 @@ function normalizeQuestionName(name: string): string {
* Prompt the user for variable values
* @param extractedVariables - Variables extracted from the template
* @param argv - Command-line arguments to pre-populate answers
- * @param existingPrompter - Optional existing Inquirerer instance to reuse.
+ * @param existingPrompter - Optional existing Genomic instance to reuse.
* If provided, the caller retains ownership and must close it themselves.
* If not provided, a new instance is created and closed automatically.
* @param noTty - Whether to disable TTY mode (only used when creating a new prompter)
@@ -80,7 +80,7 @@ function normalizeQuestionName(name: string): string {
export async function promptUser(
extractedVariables: ExtractedVariables,
argv: Record = {},
- existingPrompter?: Inquirerer,
+ existingPrompter?: Genomic,
noTty: boolean = false
): Promise> {
const questions = generateQuestions(extractedVariables);
@@ -93,7 +93,7 @@ export async function promptUser(
// If an existing prompter is provided, use it (caller owns lifecycle)
// Otherwise, create a new one and close it when done
- const prompter = existingPrompter ?? new Inquirerer({ noTty });
+ const prompter = existingPrompter ?? new Genomic({ noTty });
const shouldClose = !existingPrompter;
try {
diff --git a/packages/create-gen-app/src/template/replace.ts b/packages/scaffolds/src/template/replace.ts
similarity index 97%
rename from packages/create-gen-app/src/template/replace.ts
rename to packages/scaffolds/src/template/replace.ts
index 9cdda47..cc9931a 100644
--- a/packages/create-gen-app/src/template/replace.ts
+++ b/packages/scaffolds/src/template/replace.ts
@@ -104,7 +104,7 @@ async function ensureLicenseFile(
const selectedLicense = licenseValue.trim();
if (!isSupportedLicense(selectedLicense)) {
console.warn(
- `[create-gen-app] License "${selectedLicense}" is not supported by the built-in templates. Leaving template LICENSE file as-is.`
+ `[@genomic/scaffolds] License "${selectedLicense}" is not supported by the built-in templates. Leaving template LICENSE file as-is.`
);
return;
}
diff --git a/packages/create-gen-app/src/template/templatizer.ts b/packages/scaffolds/src/template/templatizer.ts
similarity index 96%
rename from packages/create-gen-app/src/template/templatizer.ts
rename to packages/scaffolds/src/template/templatizer.ts
index 4ec5636..7f26918 100644
--- a/packages/create-gen-app/src/template/templatizer.ts
+++ b/packages/scaffolds/src/template/templatizer.ts
@@ -64,13 +64,13 @@ export class Templatizer {
* Prompt user for variables
* @param extracted - Extracted variables from template
* @param argv - Pre-populated answers
- * @param prompter - Optional existing Inquirerer instance to reuse
+ * @param prompter - Optional existing Genomic instance to reuse
* @param noTty - Whether to disable TTY mode (only used when creating a new prompter)
*/
async prompt(
extracted: ExtractedVariables,
argv?: Record,
- prompter?: import('inquirerer').Inquirerer,
+ prompter?: import('genomic').Genomic,
noTty?: boolean
): Promise> {
return promptUser(extracted, argv ?? {}, prompter, noTty ?? false);
diff --git a/packages/create-gen-app/src/template/types.ts b/packages/scaffolds/src/template/types.ts
similarity index 78%
rename from packages/create-gen-app/src/template/types.ts
rename to packages/scaffolds/src/template/types.ts
index 7b649b3..c1bd8fb 100644
--- a/packages/create-gen-app/src/template/types.ts
+++ b/packages/scaffolds/src/template/types.ts
@@ -1,4 +1,4 @@
-import { Inquirerer } from 'inquirerer';
+import { Genomic } from 'genomic';
import { ExtractedVariables } from '../types';
@@ -7,11 +7,11 @@ export interface ProcessOptions {
noTty?: boolean;
fromPath?: string;
/**
- * Optional Inquirerer instance to reuse for prompting.
+ * Optional Genomic instance to reuse for prompting.
* If provided, the caller retains ownership and is responsible for closing it.
* If not provided, a new instance will be created and closed automatically.
*/
- prompter?: Inquirerer;
+ prompter?: Genomic;
}
export interface TemplatizerResult {
diff --git a/packages/create-gen-app/src/types.ts b/packages/scaffolds/src/types.ts
similarity index 95%
rename from packages/create-gen-app/src/types.ts
rename to packages/scaffolds/src/types.ts
index 5523812..e3835dd 100644
--- a/packages/create-gen-app/src/types.ts
+++ b/packages/scaffolds/src/types.ts
@@ -1,9 +1,9 @@
-import { Question } from 'inquirerer';
+import { Question } from 'genomic';
/**
* Questions configuration that can be loaded from .boilerplate.json or .boilerplate.js
* @typedef {Object} Questions
- * @property {Question[]} questions - Array of inquirerer questions
+ * @property {Question[]} questions - Array of genomic questions
*/
export interface Questions {
questions: Question[];
diff --git a/packages/create-gen-app/src/utils/npm-version-check.ts b/packages/scaffolds/src/utils/npm-version-check.ts
similarity index 100%
rename from packages/create-gen-app/src/utils/npm-version-check.ts
rename to packages/scaffolds/src/utils/npm-version-check.ts
diff --git a/packages/create-gen-app/src/utils/types.ts b/packages/scaffolds/src/utils/types.ts
similarity index 100%
rename from packages/create-gen-app/src/utils/types.ts
rename to packages/scaffolds/src/utils/types.ts
diff --git a/packages/create-gen-app/test-utils/integration-helpers.ts b/packages/scaffolds/test-utils/integration-helpers.ts
similarity index 100%
rename from packages/create-gen-app/test-utils/integration-helpers.ts
rename to packages/scaffolds/test-utils/integration-helpers.ts
diff --git a/packages/inquirerer/tsconfig.esm.json b/packages/scaffolds/tsconfig.esm.json
similarity index 100%
rename from packages/inquirerer/tsconfig.esm.json
rename to packages/scaffolds/tsconfig.esm.json
diff --git a/packages/inquirerer/tsconfig.json b/packages/scaffolds/tsconfig.json
similarity index 100%
rename from packages/inquirerer/tsconfig.json
rename to packages/scaffolds/tsconfig.json
diff --git a/packages/utils/README.md b/packages/utils/README.md
new file mode 100644
index 0000000..6a13793
--- /dev/null
+++ b/packages/utils/README.md
@@ -0,0 +1,71 @@
+# @genomic/utils
+
+CLI lifecycle utilities for building command-line applications.
+
+## Installation
+
+```bash
+npm install @genomic/utils
+```
+
+## Features
+
+### extractFirst
+
+Extracts the first positional argument from argv for command routing:
+
+```typescript
+import { extractFirst } from '@genomic/utils';
+
+const { first, newArgv } = extractFirst(argv);
+// first = 'init' (the subcommand)
+// newArgv = remaining arguments with first positional removed
+```
+
+### cliExitWithError
+
+Exits the CLI with an error message and optional cleanup:
+
+```typescript
+import { cliExitWithError } from '@genomic/utils';
+
+await cliExitWithError(error, {
+ beforeExit: async () => {
+ await closeConnections();
+ }
+});
+```
+
+### checkForUpdates
+
+Checks for package updates with caching:
+
+```typescript
+import { checkForUpdates } from '@genomic/utils';
+
+const result = await checkForUpdates({
+ pkgName: '@my/cli',
+ pkgVersion: '1.0.0',
+ registryBaseUrl: 'https://registry.npmjs.org'
+});
+
+if (result.hasUpdate) {
+ console.log(result.message);
+}
+```
+
+### getSelfPackageJson
+
+Gets the package.json for the current package:
+
+```typescript
+import { getSelfPackageJson, getSelfVersion, getSelfName } from '@genomic/utils';
+
+const pkg = getSelfPackageJson(__dirname);
+const version = getSelfVersion(__dirname);
+const name = getSelfName(__dirname);
+```
+
+## License
+
+MIT
diff --git a/packages/utils/jest.config.js b/packages/utils/jest.config.js
new file mode 100644
index 0000000..8eef5ae
--- /dev/null
+++ b/packages/utils/jest.config.js
@@ -0,0 +1,9 @@
+module.exports = {
+ preset: 'ts-jest',
+ testEnvironment: 'node',
+ testMatch: ['**/__tests__/**/*.test.ts'],
+ moduleFileExtensions: ['ts', 'js', 'json'],
+ transform: {
+ '^.+\\.tsx?$': 'ts-jest'
+ }
+};
diff --git a/packages/utils/package.json b/packages/utils/package.json
new file mode 100644
index 0000000..1cf666f
--- /dev/null
+++ b/packages/utils/package.json
@@ -0,0 +1,40 @@
+{
+ "name": "@genomic/utils",
+ "version": "1.0.0",
+ "author": "Constructive ",
+ "description": "CLI lifecycle utilities for building command-line applications",
+ "main": "index.js",
+ "module": "esm/index.js",
+ "types": "index.d.ts",
+ "homepage": "https://github.com/constructive-io/dev-utils",
+ "license": "MIT",
+ "publishConfig": {
+ "access": "public",
+ "directory": "dist"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/constructive-io/dev-utils"
+ },
+ "bugs": {
+ "url": "https://github.com/constructive-io/dev-utils/issues"
+ },
+ "scripts": {
+ "copy": "makage assets",
+ "clean": "makage clean",
+ "prepublishOnly": "npm run build",
+ "build": "makage build",
+ "test": "jest",
+ "test:watch": "jest --watch"
+ },
+ "dependencies": {
+ "appstash": "workspace:*",
+ "find-and-require-package-json": "workspace:*",
+ "minimist": "^1.2.8"
+ },
+ "devDependencies": {
+ "@types/minimist": "^1.2.5",
+ "makage": "0.1.8"
+ },
+ "keywords": []
+}
diff --git a/packages/utils/src/argv.ts b/packages/utils/src/argv.ts
new file mode 100644
index 0000000..29875ba
--- /dev/null
+++ b/packages/utils/src/argv.ts
@@ -0,0 +1,16 @@
+import { ParsedArgs } from 'minimist';
+
+/**
+ * Extracts the first positional argument from argv and returns it along with the remaining argv.
+ * This is useful for command routing in CLI applications where the first argument is a subcommand.
+ */
+export const extractFirst = (argv: Partial) => {
+ const first = argv._?.[0];
+ const newArgv = {
+ ...argv,
+ _: argv._?.slice(1) ?? []
+ };
+ return { first, newArgv };
+};
+
+export type { ParsedArgs } from 'minimist';
diff --git a/packages/utils/src/cli-error.ts b/packages/utils/src/cli-error.ts
new file mode 100644
index 0000000..94475cf
--- /dev/null
+++ b/packages/utils/src/cli-error.ts
@@ -0,0 +1,43 @@
+export interface CliExitOptions {
+ context?: Record;
+ beforeExit?: () => Promise;
+ logger?: {
+ error: (message: string, ...args: any[]) => void;
+ debug: (message: string, ...args: any[]) => void;
+ warn: (message: string, ...args: any[]) => void;
+ };
+}
+
+/**
+ * Exits the CLI with an error message and optional cleanup.
+ * Supports a beforeExit hook for cleanup operations (e.g., closing database connections).
+ */
+export const cliExitWithError = async (
+ error: Error | string,
+ options: CliExitOptions = {}
+): Promise => {
+ const { context, beforeExit, logger = console } = options;
+
+ if (error instanceof Error) {
+ logger.error(`Error: ${error.message}`);
+ if (context) {
+ logger.debug('Context:', context);
+ }
+ } else if (typeof error === 'string') {
+ logger.error(`Error: ${error}`);
+ if (context) {
+ logger.debug('Context:', context);
+ }
+ }
+
+ if (beforeExit) {
+ try {
+ await beforeExit();
+ logger.debug('Cleanup completed');
+ } catch (cleanupError) {
+ logger.warn('Failed to complete cleanup:', cleanupError);
+ }
+ }
+
+ process.exit(1);
+};
diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts
new file mode 100644
index 0000000..f9418d7
--- /dev/null
+++ b/packages/utils/src/index.ts
@@ -0,0 +1,15 @@
+// Argv utilities
+export { extractFirst } from './argv';
+export type { ParsedArgs } from './argv';
+
+// CLI error handling
+export { cliExitWithError } from './cli-error';
+export type { CliExitOptions } from './cli-error';
+
+// Update checking
+export { checkForUpdates } from './update-check';
+export type { UpdateCheckOptions, UpdateCheckResult } from './update-check';
+
+// Package.json utilities
+export { getSelfPackageJson, getSelfVersion, getSelfName } from './package-json';
+export type { PackageJsonInfo } from './package-json';
diff --git a/packages/utils/src/package-json.ts b/packages/utils/src/package-json.ts
new file mode 100644
index 0000000..3e30919
--- /dev/null
+++ b/packages/utils/src/package-json.ts
@@ -0,0 +1,29 @@
+import { findAndRequirePackageJson } from 'find-and-require-package-json';
+
+export interface PackageJsonInfo {
+ name: string;
+ version: string;
+ [key: string]: any;
+}
+
+/**
+ * Gets the package.json for the current package by searching up from the given directory.
+ * This is useful for CLIs to get their own version information.
+ */
+export const getSelfPackageJson = (dirname: string): PackageJsonInfo => {
+ return findAndRequirePackageJson(dirname);
+};
+
+/**
+ * Gets the version from the package.json for the current package.
+ */
+export const getSelfVersion = (dirname: string): string => {
+ return getSelfPackageJson(dirname).version;
+};
+
+/**
+ * Gets the name from the package.json for the current package.
+ */
+export const getSelfName = (dirname: string): string => {
+ return getSelfPackageJson(dirname).name;
+};
diff --git a/packages/utils/src/update-check.ts b/packages/utils/src/update-check.ts
new file mode 100644
index 0000000..5b03126
--- /dev/null
+++ b/packages/utils/src/update-check.ts
@@ -0,0 +1,104 @@
+import { appstash } from 'appstash';
+import * as fs from 'fs';
+import * as path from 'path';
+
+export interface UpdateCheckOptions {
+ pkgName: string;
+ pkgVersion: string;
+ registryBaseUrl?: string;
+ toolName?: string;
+ ttl?: number;
+}
+
+export interface UpdateCheckResult {
+ hasUpdate: boolean;
+ currentVersion: string;
+ latestVersion: string | null;
+ message: string | null;
+}
+
+const DEFAULT_TTL = 24 * 60 * 60 * 1000; // 24 hours
+const DEFAULT_REGISTRY = 'https://registry.npmjs.org';
+
+/**
+ * Checks for updates to a package and caches the result.
+ * Uses appstash for configuration storage.
+ */
+export const checkForUpdates = async (
+ options: UpdateCheckOptions
+): Promise => {
+ const {
+ pkgName,
+ pkgVersion,
+ registryBaseUrl = DEFAULT_REGISTRY,
+ toolName = pkgName,
+ ttl = DEFAULT_TTL
+ } = options;
+
+ const dirs = appstash(toolName);
+ const cacheFile = path.join(dirs.cache, 'update-check.json');
+
+ // Check cache first
+ try {
+ if (fs.existsSync(cacheFile)) {
+ const cached = JSON.parse(fs.readFileSync(cacheFile, 'utf-8'));
+ if (Date.now() - cached.timestamp < ttl) {
+ return {
+ hasUpdate: cached.latestVersion !== pkgVersion && cached.latestVersion > pkgVersion,
+ currentVersion: pkgVersion,
+ latestVersion: cached.latestVersion,
+ message: cached.latestVersion > pkgVersion
+ ? `Update available: ${pkgVersion} -> ${cached.latestVersion}`
+ : null
+ };
+ }
+ }
+ } catch {
+ // Cache read failed, continue to fetch
+ }
+
+ // Fetch latest version from registry
+ try {
+ const response = await fetch(`${registryBaseUrl}/${pkgName}/latest`);
+ if (!response.ok) {
+ return {
+ hasUpdate: false,
+ currentVersion: pkgVersion,
+ latestVersion: null,
+ message: null
+ };
+ }
+
+ const data = await response.json();
+ const latestVersion = data.version;
+
+ // Cache the result
+ try {
+ if (!fs.existsSync(dirs.cache)) {
+ fs.mkdirSync(dirs.cache, { recursive: true });
+ }
+ fs.writeFileSync(cacheFile, JSON.stringify({
+ latestVersion,
+ timestamp: Date.now()
+ }));
+ } catch {
+ // Cache write failed, continue anyway
+ }
+
+ return {
+ hasUpdate: latestVersion !== pkgVersion && latestVersion > pkgVersion,
+ currentVersion: pkgVersion,
+ latestVersion,
+ message: latestVersion > pkgVersion
+ ? `Update available: ${pkgVersion} -> ${latestVersion}`
+ : null
+ };
+ } catch {
+ return {
+ hasUpdate: false,
+ currentVersion: pkgVersion,
+ latestVersion: null,
+ message: null
+ };
+ }
+};
diff --git a/packages/utils/tsconfig.esm.json b/packages/utils/tsconfig.esm.json
new file mode 100644
index 0000000..b0a690b
--- /dev/null
+++ b/packages/utils/tsconfig.esm.json
@@ -0,0 +1,7 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "module": "ES2022",
+ "outDir": "dist/esm"
+ }
+}
diff --git a/packages/utils/tsconfig.json b/packages/utils/tsconfig.json
new file mode 100644
index 0000000..9c8a7d7
--- /dev/null
+++ b/packages/utils/tsconfig.json
@@ -0,0 +1,8 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist",
+ "rootDir": "src"
+ },
+ "include": ["src/**/*"]
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 47bf3ec..84a7b51 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,22 +1,23 @@
-lockfileVersion: "9.0"
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
+
.:
devDependencies:
- "@types/jest":
+ '@types/jest':
specifier: ^30.0.0
version: 30.0.0
- "@types/node":
+ '@types/node':
specifier: ^22.10.2
version: 22.19.1
- "@typescript-eslint/eslint-plugin":
+ '@typescript-eslint/eslint-plugin':
specifier: ^8.48.0
version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)
- "@typescript-eslint/parser":
+ '@typescript-eslint/parser':
specifier: ^8.48.0
version: 8.48.0(eslint@9.39.1)(typescript@5.9.3)
cpy-cli:
@@ -73,39 +74,22 @@ importers:
version: 0.1.8
publishDirectory: dist
- packages/create-gen-app:
- dependencies:
- appstash:
- specifier: workspace:*
- version: link:../appstash/dist
- inquirerer:
- specifier: workspace:*
- version: link:../inquirerer/dist
- devDependencies:
- copyfiles:
- specifier: ^2.4.1
- version: 2.4.1
- makage:
- specifier: 0.1.8
- version: 0.1.8
- publishDirectory: dist
-
packages/create-gen-app-test:
dependencies:
+ '@genomic/scaffolds':
+ specifier: workspace:*
+ version: link:../scaffolds/dist
appstash:
specifier: workspace:*
version: link:../appstash/dist
- create-gen-app:
+ genomic:
specifier: workspace:*
- version: link:../create-gen-app/dist
- inquirerer:
- specifier: workspace:*
- version: link:../inquirerer/dist
+ version: link:../genomic/dist
minimist:
specifier: ^1.2.8
version: 1.2.8
devDependencies:
- "@types/minimist":
+ '@types/minimist':
specifier: ^1.2.5
version: 1.2.5
makage:
@@ -115,14 +99,14 @@ importers:
packages/fetch-api-client:
dependencies:
- "@interweb/http-errors":
+ '@interweb/http-errors':
specifier: workspace:*
version: link:../http-errors/dist
isomorphic-fetch:
specifier: ^3.0.0
version: 3.0.0(encoding@0.1.13)
devDependencies:
- "@types/isomorphic-fetch":
+ '@types/isomorphic-fetch':
specifier: ^0.0.39
version: 0.0.39
makage:
@@ -137,14 +121,7 @@ importers:
version: 0.1.8
publishDirectory: dist
- packages/http-errors:
- devDependencies:
- makage:
- specifier: 0.1.8
- version: 0.1.8
- publishDirectory: dist
-
- packages/inquirerer:
+ packages/genomic:
dependencies:
deepmerge:
specifier: ^4.3.1
@@ -162,7 +139,7 @@ importers:
specifier: workspace:*
version: link:../yanse/dist
devDependencies:
- "@types/minimist":
+ '@types/minimist':
specifier: ^1.2.5
version: 1.2.5
clean-ansi:
@@ -173,6 +150,13 @@ importers:
version: 0.1.8
publishDirectory: dist
+ packages/http-errors:
+ devDependencies:
+ makage:
+ specifier: 0.1.8
+ version: 0.1.8
+ publishDirectory: dist
+
packages/jsonld-tools:
devDependencies:
makage:
@@ -196,7 +180,7 @@ importers:
packages/node-api-client:
dependencies:
- "@interweb/http-errors":
+ '@interweb/http-errors':
specifier: workspace:*
version: link:../http-errors/dist
devDependencies:
@@ -205,21 +189,38 @@ importers:
version: 0.1.8
publishDirectory: dist
+ packages/scaffolds:
+ dependencies:
+ appstash:
+ specifier: workspace:*
+ version: link:../appstash/dist
+ genomic:
+ specifier: workspace:*
+ version: link:../genomic/dist
+ devDependencies:
+ copyfiles:
+ specifier: ^2.4.1
+ version: 2.4.1
+ makage:
+ specifier: 0.1.8
+ version: 0.1.8
+ publishDirectory: dist
+
packages/schema-sdk:
dependencies:
- "@babel/generator":
+ '@babel/generator':
specifier: 7.28.5
version: 7.28.5
- "@babel/parser":
+ '@babel/parser':
specifier: ^7.23.6
version: 7.28.5
- "@babel/traverse":
+ '@babel/traverse':
specifier: 7.28.5
version: 7.28.5
- "@babel/types":
+ '@babel/types':
specifier: 7.28.5
version: 7.28.5
- "@interweb/fetch-api-client":
+ '@interweb/fetch-api-client':
specifier: workspace:*
version: link:../fetch-api-client/dist
deepmerge:
@@ -235,7 +236,7 @@ importers:
specifier: workspace:*
version: link:../schema-typescript/dist
devDependencies:
- "@types/babel__generator":
+ '@types/babel__generator':
specifier: ^7.27.0
version: 7.27.0
jest-diff:
@@ -255,10 +256,10 @@ importers:
packages/schema-typescript:
dependencies:
- "@babel/generator":
+ '@babel/generator':
specifier: ^7.28.5
version: 7.28.5
- "@babel/types":
+ '@babel/types':
specifier: ^7.28.5
version: 7.28.5
deepmerge:
@@ -271,7 +272,7 @@ importers:
specifier: ^10.1.1
version: 10.1.1
devDependencies:
- "@types/babel__generator":
+ '@types/babel__generator':
specifier: ^7.27.0
version: 7.27.0
makage:
@@ -293,6 +294,26 @@ importers:
version: link:../nested-obj/dist
publishDirectory: dist
+ packages/utils:
+ dependencies:
+ appstash:
+ specifier: workspace:*
+ version: link:../appstash/dist
+ find-and-require-package-json:
+ specifier: workspace:*
+ version: link:../find-and-require-package-json/dist
+ minimist:
+ specifier: ^1.2.8
+ version: 1.2.8
+ devDependencies:
+ '@types/minimist':
+ specifier: ^1.2.5
+ version: 1.2.5
+ makage:
+ specifier: 0.1.8
+ version: 0.1.8
+ publishDirectory: dist
+
packages/yanse:
devDependencies:
makage:
@@ -301,2243 +322,1308 @@ importers:
publishDirectory: dist
packages:
- "@babel/code-frame@7.27.1":
- resolution:
- {
- integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/compat-data@7.28.5":
- resolution:
- {
- integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==,
- }
- 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" }
-
- "@babel/generator@7.28.5":
- resolution:
- {
- integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-compilation-targets@7.27.2":
- resolution:
- {
- integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-globals@7.28.0":
- resolution:
- {
- integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-imports@7.27.1":
- resolution:
- {
- integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-transforms@7.28.3":
- resolution:
- {
- integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==,
- }
- engines: { node: ">=6.9.0" }
+
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.28.5':
+ resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
+ 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'}
+
+ '@babel/generator@7.28.5':
+ resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.28.3':
+ resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-plugin-utils@7.27.1":
- resolution:
- {
- integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-string-parser@7.27.1":
- resolution:
- {
- integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-identifier@7.28.5":
- resolution:
- {
- integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-option@7.27.1":
- resolution:
- {
- integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helpers@7.28.4":
- resolution:
- {
- integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/parser@7.28.5":
- resolution:
- {
- integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==,
- }
- engines: { node: ">=6.0.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.28.4':
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.28.5':
+ resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- "@babel/plugin-syntax-async-generators@7.8.4":
- resolution:
- {
- integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
- }
+ '@babel/plugin-syntax-async-generators@7.8.4':
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-bigint@7.8.3":
- resolution:
- {
- integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==,
- }
+ '@babel/plugin-syntax-bigint@7.8.3':
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-class-properties@7.12.13":
- resolution:
- {
- integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
- }
+ '@babel/plugin-syntax-class-properties@7.12.13':
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-static-block@7.14.5":
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-class-static-block@7.14.5':
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-attributes@7.27.1":
- resolution:
- {
- integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-import-meta@7.10.4":
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
+ '@babel/plugin-syntax-import-meta@7.10.4':
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-json-strings@7.8.3":
- resolution:
- {
- integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
- }
+ '@babel/plugin-syntax-json-strings@7.8.3':
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-jsx@7.27.1":
- resolution:
- {
- integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4":
- resolution:
- {
- integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
- }
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3":
- resolution:
- {
- integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
- }
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-numeric-separator@7.10.4":
- resolution:
- {
- integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
- }
+ '@babel/plugin-syntax-numeric-separator@7.10.4':
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-object-rest-spread@7.8.3":
- resolution:
- {
- integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
- }
+ '@babel/plugin-syntax-object-rest-spread@7.8.3':
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-catch-binding@7.8.3":
- resolution:
- {
- integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
- }
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3':
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-chaining@7.8.3":
- resolution:
- {
- integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
- }
+ '@babel/plugin-syntax-optional-chaining@7.8.3':
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-private-property-in-object@7.14.5":
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-top-level-await@7.14.5":
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-top-level-await@7.14.5':
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-typescript@7.27.1":
- resolution:
- {
- integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/template@7.27.2":
- resolution:
- {
- integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/traverse@7.28.5":
- resolution:
- {
- integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/types@7.28.5":
- resolution:
- {
- integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@bcoe/v8-coverage@0.2.3":
- resolution:
- {
- integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==,
- }
-
- "@cspotcode/source-map-support@0.8.1":
- resolution:
- {
- integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==,
- }
- engines: { node: ">=12" }
-
- "@emnapi/core@1.7.1":
- resolution:
- {
- integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==,
- }
-
- "@emnapi/runtime@1.7.1":
- resolution:
- {
- integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==,
- }
-
- "@emnapi/wasi-threads@1.1.0":
- resolution:
- {
- integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==,
- }
-
- "@eslint-community/eslint-utils@4.9.0":
- resolution:
- {
- integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.28.5':
+ resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.28.5':
+ resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
+ engines: {node: '>=6.9.0'}
+
+ '@bcoe/v8-coverage@0.2.3':
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+
+ '@emnapi/core@1.7.1':
+ resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
+
+ '@emnapi/runtime@1.7.1':
+ resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
+
+ '@emnapi/wasi-threads@1.1.0':
+ resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+
+ '@eslint-community/eslint-utils@4.9.0':
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- "@eslint-community/regexpp@4.12.2":
- resolution:
- {
- integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
-
- "@eslint/config-array@0.21.1":
- resolution:
- {
- integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/config-helpers@0.4.2":
- resolution:
- {
- integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/core@0.17.0":
- resolution:
- {
- integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/eslintrc@3.3.1":
- resolution:
- {
- integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/js@9.39.1":
- resolution:
- {
- integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/object-schema@2.1.7":
- resolution:
- {
- integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/plugin-kit@0.4.1":
- resolution:
- {
- integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@humanfs/core@0.19.1":
- resolution:
- {
- integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==,
- }
- engines: { node: ">=18.18.0" }
-
- "@humanfs/node@0.16.7":
- resolution:
- {
- integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==,
- }
- engines: { node: ">=18.18.0" }
-
- "@humanwhocodes/module-importer@1.0.1":
- resolution:
- {
- integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
- }
- engines: { node: ">=12.22" }
-
- "@humanwhocodes/retry@0.4.3":
- resolution:
- {
- integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==,
- }
- engines: { node: ">=18.18" }
-
- "@hutson/parse-repository-url@3.0.2":
- resolution:
- {
- integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@inquirer/external-editor@1.0.3":
- resolution:
- {
- integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==,
- }
- engines: { node: ">=18" }
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/config-array@0.21.1':
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.3.1':
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.39.1':
+ resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.7':
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
+ engines: {node: '>=18.18'}
+
+ '@hutson/parse-repository-url@3.0.2':
+ resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@inquirer/external-editor@1.0.3':
+ resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
+ engines: {node: '>=18'}
peerDependencies:
- "@types/node": ">=18"
+ '@types/node': '>=18'
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
- "@isaacs/balanced-match@4.0.1":
- resolution:
- {
- integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==,
- }
- engines: { node: 20 || >=22 }
-
- "@isaacs/brace-expansion@5.0.0":
- resolution:
- {
- integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==,
- }
- engines: { node: 20 || >=22 }
-
- "@isaacs/cliui@8.0.2":
- resolution:
- {
- integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==,
- }
- engines: { node: ">=12" }
-
- "@isaacs/string-locale-compare@1.1.0":
- resolution:
- {
- integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==,
- }
-
- "@istanbuljs/load-nyc-config@1.1.0":
- resolution:
- {
- integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==,
- }
- engines: { node: ">=8" }
-
- "@istanbuljs/schema@0.1.3":
- resolution:
- {
- integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==,
- }
- engines: { node: ">=8" }
-
- "@jest/console@30.2.0":
- resolution:
- {
- integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/core@30.2.0":
- resolution:
- {
- integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ '@isaacs/balanced-match@4.0.1':
+ resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
+ engines: {node: 20 || >=22}
+
+ '@isaacs/brace-expansion@5.0.0':
+ resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
+ engines: {node: 20 || >=22}
+
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+
+ '@isaacs/string-locale-compare@1.1.0':
+ resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==}
+
+ '@istanbuljs/load-nyc-config@1.1.0':
+ resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+ engines: {node: '>=8'}
+
+ '@istanbuljs/schema@0.1.3':
+ resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ engines: {node: '>=8'}
+
+ '@jest/console@30.2.0':
+ resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/core@30.2.0':
+ resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
- "@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 }
-
- "@jest/environment@30.2.0":
- resolution:
- {
- integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/expect-utils@30.2.0":
- resolution:
- {
- integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/expect@30.2.0":
- resolution:
- {
- integrity: sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/fake-timers@30.2.0":
- resolution:
- {
- integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/get-type@30.1.0":
- resolution:
- {
- integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/globals@30.2.0":
- resolution:
- {
- integrity: sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/pattern@30.0.1":
- resolution:
- {
- integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/reporters@30.2.0":
- resolution:
- {
- integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ '@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}
+
+ '@jest/environment@30.2.0':
+ resolution: {integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/expect-utils@30.2.0':
+ resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/expect@30.2.0':
+ resolution: {integrity: sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/fake-timers@30.2.0':
+ resolution: {integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/get-type@30.1.0':
+ resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/globals@30.2.0':
+ resolution: {integrity: sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/pattern@30.0.1':
+ resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/reporters@30.2.0':
+ resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
- "@jest/schemas@29.6.3":
- resolution:
- {
- integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/schemas@30.0.5":
- resolution:
- {
- integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/snapshot-utils@30.2.0":
- resolution:
- {
- integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/source-map@30.0.1":
- resolution:
- {
- integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/test-result@30.2.0":
- resolution:
- {
- integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/test-sequencer@30.2.0":
- resolution:
- {
- integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/transform@30.2.0":
- resolution:
- {
- integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/types@30.2.0":
- resolution:
- {
- integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jridgewell/gen-mapping@0.3.13":
- resolution:
- {
- integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==,
- }
-
- "@jridgewell/remapping@2.3.5":
- resolution:
- {
- integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==,
- }
-
- "@jridgewell/resolve-uri@3.1.2":
- resolution:
- {
- integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/sourcemap-codec@1.5.5":
- resolution:
- {
- integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==,
- }
-
- "@jridgewell/trace-mapping@0.3.31":
- resolution:
- {
- integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==,
- }
-
- "@jridgewell/trace-mapping@0.3.9":
- resolution:
- {
- integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==,
- }
-
- "@lerna/create@8.2.4":
- resolution:
- {
- integrity: sha512-A8AlzetnS2WIuhijdAzKUyFpR5YbLLfV3luQ4lzBgIBgRfuoBDZeF+RSZPhra+7A6/zTUlrbhKZIOi/MNhqgvQ==,
- }
- engines: { node: ">=18.0.0" }
-
- "@napi-rs/wasm-runtime@0.2.12":
- resolution:
- {
- integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==,
- }
-
- "@napi-rs/wasm-runtime@0.2.4":
- resolution:
- {
- integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==,
- }
-
- "@nodelib/fs.scandir@2.1.5":
- resolution:
- {
- integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.stat@2.0.5":
- resolution:
- {
- integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.walk@1.2.8":
- resolution:
- {
- integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
- }
- engines: { node: ">= 8" }
-
- "@npmcli/agent@2.2.2":
- resolution:
- {
- integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/arborist@7.5.4":
- resolution:
- {
- integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ '@jest/schemas@29.6.3':
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/schemas@30.0.5':
+ resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/snapshot-utils@30.2.0':
+ resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/source-map@30.0.1':
+ resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/test-result@30.2.0':
+ resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/test-sequencer@30.2.0':
+ resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/transform@30.2.0':
+ resolution: {integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/types@30.2.0':
+ resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+
+ '@lerna/create@8.2.4':
+ resolution: {integrity: sha512-A8AlzetnS2WIuhijdAzKUyFpR5YbLLfV3luQ4lzBgIBgRfuoBDZeF+RSZPhra+7A6/zTUlrbhKZIOi/MNhqgvQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@napi-rs/wasm-runtime@0.2.12':
+ resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
+
+ '@napi-rs/wasm-runtime@0.2.4':
+ resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
+
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+
+ '@npmcli/agent@2.2.2':
+ resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/arborist@7.5.4':
+ resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
- "@npmcli/fs@3.1.1":
- resolution:
- {
- integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/git@5.0.8":
- resolution:
- {
- integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/installed-package-contents@2.1.0":
- resolution:
- {
- integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ '@npmcli/fs@3.1.1':
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/git@5.0.8':
+ resolution: {integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/installed-package-contents@2.1.0':
+ resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
- "@npmcli/map-workspaces@3.0.6":
- resolution:
- {
- integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/metavuln-calculator@7.1.1":
- resolution:
- {
- integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/name-from-folder@2.0.0":
- resolution:
- {
- integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/node-gyp@3.0.0":
- resolution:
- {
- integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/package-json@5.2.0":
- resolution:
- {
- integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/promise-spawn@7.0.2":
- resolution:
- {
- integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/query@3.1.0":
- resolution:
- {
- integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/redact@2.0.1":
- resolution:
- {
- integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/run-script@8.1.0":
- resolution:
- {
- integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@nx/devkit@20.8.3":
- resolution:
- {
- integrity: sha512-5lbfJ6ICFOiGeirldQOU5fQ/W/VQ8L3dfWnmHG4UgpWSLoK/YFdRf4lTB4rS0aDXsBL0gyWABz3sZGLPGNYnPA==,
- }
+ '@npmcli/map-workspaces@3.0.6':
+ resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/metavuln-calculator@7.1.1':
+ resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/name-from-folder@2.0.0':
+ resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/node-gyp@3.0.0':
+ resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/package-json@5.2.0':
+ resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/promise-spawn@7.0.2':
+ resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/query@3.1.0':
+ resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/redact@2.0.1':
+ resolution: {integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/run-script@8.1.0':
+ resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@nx/devkit@20.8.3':
+ resolution: {integrity: sha512-5lbfJ6ICFOiGeirldQOU5fQ/W/VQ8L3dfWnmHG4UgpWSLoK/YFdRf4lTB4rS0aDXsBL0gyWABz3sZGLPGNYnPA==}
peerDependencies:
- nx: ">= 19 <= 21"
-
- "@nx/nx-darwin-arm64@20.8.3":
- resolution:
- {
- integrity: sha512-BeYnPAcnaerg6q+qR0bAb0nebwwrsvm4STSVqqVlaqLmmQpU3Bfpx44CEa5d6T9b0V11ZqVE/bkmRhMqhUcrhw==,
- }
- engines: { node: ">= 10" }
+ nx: '>= 19 <= 21'
+
+ '@nx/nx-darwin-arm64@20.8.3':
+ resolution: {integrity: sha512-BeYnPAcnaerg6q+qR0bAb0nebwwrsvm4STSVqqVlaqLmmQpU3Bfpx44CEa5d6T9b0V11ZqVE/bkmRhMqhUcrhw==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@nx/nx-darwin-x64@20.8.3":
- resolution:
- {
- integrity: sha512-RIFg1VkQ4jhI+ErqEZuIeGBcJGD8t+u9J5CdQBDIASd8QRhtudBkiYLYCJb+qaQly09G7nVfxuyItlS2uRW3qA==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-darwin-x64@20.8.3':
+ resolution: {integrity: sha512-RIFg1VkQ4jhI+ErqEZuIeGBcJGD8t+u9J5CdQBDIASd8QRhtudBkiYLYCJb+qaQly09G7nVfxuyItlS2uRW3qA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@nx/nx-freebsd-x64@20.8.3":
- resolution:
- {
- integrity: sha512-boQTgMUdnqpZhHMrV/xgnp/dTg5dfxw8I4d16NBwmW4j+Sez7zi/dydgsJpfZsj8TicOHvPu6KK4W5wzp82NPw==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-freebsd-x64@20.8.3':
+ resolution: {integrity: sha512-boQTgMUdnqpZhHMrV/xgnp/dTg5dfxw8I4d16NBwmW4j+Sez7zi/dydgsJpfZsj8TicOHvPu6KK4W5wzp82NPw==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- "@nx/nx-linux-arm-gnueabihf@20.8.3":
- resolution:
- {
- integrity: sha512-wpiNyY1igx1rLN3EsTLum2lDtblFijdBZB9/9u/6UDub4z9CaQ4yaC4h9n5v7yFYILwfL44YTsQKzrE+iv0y1Q==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm-gnueabihf@20.8.3':
+ resolution: {integrity: sha512-wpiNyY1igx1rLN3EsTLum2lDtblFijdBZB9/9u/6UDub4z9CaQ4yaC4h9n5v7yFYILwfL44YTsQKzrE+iv0y1Q==}
+ engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- "@nx/nx-linux-arm64-gnu@20.8.3":
- resolution:
- {
- integrity: sha512-nbi/eZtJfWxuDwdUCiP+VJolFubtrz6XxVtB26eMAkODnREOKELHZtMOrlm8JBZCdtWCvTqibq9Az74XsqSfdA==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm64-gnu@20.8.3':
+ resolution: {integrity: sha512-nbi/eZtJfWxuDwdUCiP+VJolFubtrz6XxVtB26eMAkODnREOKELHZtMOrlm8JBZCdtWCvTqibq9Az74XsqSfdA==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nx/nx-linux-arm64-musl@20.8.3":
- resolution:
- {
- integrity: sha512-LTTGzI8YVPlF1v0YlVf+exM+1q7rpsiUbjTTHJcfHFRU5t4BsiZD54K19Y1UBg1XFx5cwhEaIomSmJ88RwPPVQ==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm64-musl@20.8.3':
+ resolution: {integrity: sha512-LTTGzI8YVPlF1v0YlVf+exM+1q7rpsiUbjTTHJcfHFRU5t4BsiZD54K19Y1UBg1XFx5cwhEaIomSmJ88RwPPVQ==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nx/nx-linux-x64-gnu@20.8.3":
- resolution:
- {
- integrity: sha512-SlA4GtXvQbSzSIWLgiIiLBOjdINPOUR/im+TUbaEMZ8wiGrOY8cnk0PVt95TIQJVBeXBCeb5HnoY0lHJpMOODg==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-x64-gnu@20.8.3':
+ resolution: {integrity: sha512-SlA4GtXvQbSzSIWLgiIiLBOjdINPOUR/im+TUbaEMZ8wiGrOY8cnk0PVt95TIQJVBeXBCeb5HnoY0lHJpMOODg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nx/nx-linux-x64-musl@20.8.3":
- resolution:
- {
- integrity: sha512-MNzkEwPktp5SQH9dJDH2wP9hgG9LsBDhKJXJfKw6sUI/6qz5+/aAjFziKy+zBnhU4AO1yXt5qEWzR8lDcIriVQ==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-x64-musl@20.8.3':
+ resolution: {integrity: sha512-MNzkEwPktp5SQH9dJDH2wP9hgG9LsBDhKJXJfKw6sUI/6qz5+/aAjFziKy+zBnhU4AO1yXt5qEWzR8lDcIriVQ==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nx/nx-win32-arm64-msvc@20.8.3":
- resolution:
- {
- integrity: sha512-qUV7CyXKwRCM/lkvyS6Xa1MqgAuK5da6w27RAehh7LATBUKn1I4/M7DGn6L7ERCxpZuh1TrDz9pUzEy0R+Ekkg==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-win32-arm64-msvc@20.8.3':
+ resolution: {integrity: sha512-qUV7CyXKwRCM/lkvyS6Xa1MqgAuK5da6w27RAehh7LATBUKn1I4/M7DGn6L7ERCxpZuh1TrDz9pUzEy0R+Ekkg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@nx/nx-win32-x64-msvc@20.8.3":
- resolution:
- {
- integrity: sha512-gX1G8u6W6EPX6PO/wv07+B++UHyCHBXyVWXITA3Kv6HoSajOxIa2Kk1rv1iDQGmX1WWxBaj3bUyYJAFBDITe4w==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-win32-x64-msvc@20.8.3':
+ resolution: {integrity: sha512-gX1G8u6W6EPX6PO/wv07+B++UHyCHBXyVWXITA3Kv6HoSajOxIa2Kk1rv1iDQGmX1WWxBaj3bUyYJAFBDITe4w==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@octokit/auth-token@4.0.0":
- resolution:
- {
- integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/core@5.2.2":
- resolution:
- {
- integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/endpoint@9.0.6":
- resolution:
- {
- integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/graphql@7.1.1":
- resolution:
- {
- integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/openapi-types@24.2.0":
- resolution:
- {
- integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==,
- }
-
- "@octokit/plugin-enterprise-rest@6.0.1":
- resolution:
- {
- integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==,
- }
-
- "@octokit/plugin-paginate-rest@11.4.4-cjs.2":
- resolution:
- {
- integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==,
- }
- engines: { node: ">= 18" }
+ '@octokit/auth-token@4.0.0':
+ resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
+ engines: {node: '>= 18'}
+
+ '@octokit/core@5.2.2':
+ resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==}
+ engines: {node: '>= 18'}
+
+ '@octokit/endpoint@9.0.6':
+ resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/graphql@7.1.1':
+ resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==}
+ engines: {node: '>= 18'}
+
+ '@octokit/openapi-types@24.2.0':
+ resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
+
+ '@octokit/plugin-enterprise-rest@6.0.1':
+ resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==}
+
+ '@octokit/plugin-paginate-rest@11.4.4-cjs.2':
+ resolution: {integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": "5"
-
- "@octokit/plugin-request-log@4.0.1":
- resolution:
- {
- integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==,
- }
- engines: { node: ">= 18" }
+ '@octokit/core': '5'
+
+ '@octokit/plugin-request-log@4.0.1':
+ resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": "5"
-
- "@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1":
- resolution:
- {
- integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==,
- }
- engines: { node: ">= 18" }
+ '@octokit/core': '5'
+
+ '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1':
+ resolution: {integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": ^5
-
- "@octokit/request-error@5.1.1":
- resolution:
- {
- integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/request@8.4.1":
- resolution:
- {
- integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/rest@20.1.2":
- resolution:
- {
- integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/types@13.10.0":
- resolution:
- {
- integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==,
- }
-
- "@pkgjs/parseargs@0.11.0":
- resolution:
- {
- integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==,
- }
- engines: { node: ">=14" }
-
- "@pkgr/core@0.2.9":
- resolution:
- {
- integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==,
- }
- engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
-
- "@sigstore/bundle@2.3.2":
- resolution:
- {
- integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/core@1.1.0":
- resolution:
- {
- integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/protobuf-specs@0.3.3":
- resolution:
- {
- integrity: sha512-RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ==,
- }
- engines: { node: ^18.17.0 || >=20.5.0 }
-
- "@sigstore/sign@2.3.2":
- resolution:
- {
- integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/tuf@2.3.4":
- resolution:
- {
- integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/verify@1.2.1":
- resolution:
- {
- integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sinclair/typebox@0.27.8":
- resolution:
- {
- integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==,
- }
-
- "@sinclair/typebox@0.34.41":
- resolution:
- {
- integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==,
- }
-
- "@sindresorhus/merge-streams@4.0.0":
- resolution:
- {
- integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==,
- }
- engines: { node: ">=18" }
-
- "@sinonjs/commons@3.0.1":
- resolution:
- {
- integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==,
- }
-
- "@sinonjs/fake-timers@13.0.5":
- resolution:
- {
- integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==,
- }
-
- "@tsconfig/node10@1.0.12":
- resolution:
- {
- integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==,
- }
-
- "@tsconfig/node12@1.0.11":
- resolution:
- {
- integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==,
- }
-
- "@tsconfig/node14@1.0.3":
- resolution:
- {
- integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==,
- }
-
- "@tsconfig/node16@1.0.4":
- resolution:
- {
- integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==,
- }
-
- "@tufjs/canonical-json@2.0.0":
- resolution:
- {
- integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@tufjs/models@2.0.1":
- resolution:
- {
- integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@tybys/wasm-util@0.10.1":
- resolution:
- {
- integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==,
- }
-
- "@tybys/wasm-util@0.9.0":
- resolution:
- {
- integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==,
- }
-
- "@types/babel__core@7.20.5":
- resolution:
- {
- integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
- }
-
- "@types/babel__generator@7.27.0":
- resolution:
- {
- integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==,
- }
-
- "@types/babel__template@7.4.4":
- resolution:
- {
- integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
- }
-
- "@types/babel__traverse@7.28.0":
- resolution:
- {
- integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==,
- }
-
- "@types/estree@1.0.8":
- resolution:
- {
- integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==,
- }
-
- "@types/isomorphic-fetch@0.0.39":
- resolution:
- {
- integrity: sha512-I0gou/ZdA1vMG7t7gMzL7VYu2xAKU78rW9U1l10MI0nn77pEHq3tQqHQ8hMmXdMpBlkxZOorjI4sO594Z3kKJw==,
- }
-
- "@types/istanbul-lib-coverage@2.0.6":
- resolution:
- {
- integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==,
- }
-
- "@types/istanbul-lib-report@3.0.3":
- resolution:
- {
- integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==,
- }
-
- "@types/istanbul-reports@3.0.4":
- resolution:
- {
- integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==,
- }
-
- "@types/jest@30.0.0":
- resolution:
- {
- integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==,
- }
-
- "@types/json-schema@7.0.15":
- resolution:
- {
- integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
- }
-
- "@types/minimatch@3.0.5":
- resolution:
- {
- integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
- }
-
- "@types/minimist@1.2.5":
- resolution:
- {
- integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==,
- }
-
- "@types/node@22.19.1":
- resolution:
- {
- integrity: sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==,
- }
-
- "@types/normalize-package-data@2.4.4":
- resolution:
- {
- integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==,
- }
-
- "@types/stack-utils@2.0.3":
- resolution:
- {
- integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==,
- }
-
- "@types/yargs-parser@21.0.3":
- resolution:
- {
- integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==,
- }
-
- "@types/yargs@17.0.35":
- resolution:
- {
- integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==,
- }
-
- "@typescript-eslint/eslint-plugin@8.48.0":
- resolution:
- {
- integrity: sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@octokit/core': ^5
+
+ '@octokit/request-error@5.1.1':
+ resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==}
+ engines: {node: '>= 18'}
+
+ '@octokit/request@8.4.1':
+ resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/rest@20.1.2':
+ resolution: {integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==}
+ engines: {node: '>= 18'}
+
+ '@octokit/types@13.10.0':
+ resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
+
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
+ '@pkgr/core@0.2.9':
+ resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+
+ '@sigstore/bundle@2.3.2':
+ resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/core@1.1.0':
+ resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/protobuf-specs@0.3.3':
+ resolution: {integrity: sha512-RpacQhBlwpBWd7KEJsRKcBQalbV28fvkxwTOJIqhIuDysMMaJW47V4OqW30iJB9uRpqOSxxEAQFdr8tTattReQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
+
+ '@sigstore/sign@2.3.2':
+ resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/tuf@2.3.4':
+ resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/verify@1.2.1':
+ resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sinclair/typebox@0.27.8':
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+
+ '@sinclair/typebox@0.34.41':
+ resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
+
+ '@sindresorhus/merge-streams@4.0.0':
+ resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
+ engines: {node: '>=18'}
+
+ '@sinonjs/commons@3.0.1':
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
+
+ '@sinonjs/fake-timers@13.0.5':
+ resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==}
+
+ '@tsconfig/node10@1.0.12':
+ resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
+ '@tufjs/canonical-json@2.0.0':
+ resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@tufjs/models@2.0.1':
+ resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@tybys/wasm-util@0.10.1':
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
+
+ '@tybys/wasm-util@0.9.0':
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.28.0':
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+
+ '@types/isomorphic-fetch@0.0.39':
+ resolution: {integrity: sha512-I0gou/ZdA1vMG7t7gMzL7VYu2xAKU78rW9U1l10MI0nn77pEHq3tQqHQ8hMmXdMpBlkxZOorjI4sO594Z3kKJw==}
+
+ '@types/istanbul-lib-coverage@2.0.6':
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+
+ '@types/istanbul-lib-report@3.0.3':
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+
+ '@types/istanbul-reports@3.0.4':
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+
+ '@types/jest@30.0.0':
+ resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/minimatch@3.0.5':
+ resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+
+ '@types/minimist@1.2.5':
+ resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
+
+ '@types/node@22.19.1':
+ resolution: {integrity: sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==}
+
+ '@types/normalize-package-data@2.4.4':
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+
+ '@types/stack-utils@2.0.3':
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+
+ '@types/yargs-parser@21.0.3':
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
+
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
+
+ '@typescript-eslint/eslint-plugin@8.48.0':
+ resolution: {integrity: sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- "@typescript-eslint/parser": ^8.48.0
+ '@typescript-eslint/parser': ^8.48.0
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/parser@8.48.0":
- resolution:
- {
- integrity: sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/parser@8.48.0':
+ resolution: {integrity: sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/project-service@8.48.0":
- resolution:
- {
- integrity: sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.48.0':
+ resolution: {integrity: sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/scope-manager@8.48.0":
- resolution:
- {
- integrity: sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/tsconfig-utils@8.48.0":
- resolution:
- {
- integrity: sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/scope-manager@8.48.0':
+ resolution: {integrity: sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/tsconfig-utils@8.48.0':
+ resolution: {integrity: sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/type-utils@8.48.0":
- resolution:
- {
- integrity: sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/type-utils@8.48.0':
+ resolution: {integrity: sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/types@8.48.0":
- resolution:
- {
- integrity: sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/typescript-estree@8.48.0":
- resolution:
- {
- integrity: sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/types@8.48.0':
+ resolution: {integrity: sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.48.0':
+ resolution: {integrity: sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/utils@8.48.0":
- resolution:
- {
- integrity: sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/utils@8.48.0':
+ resolution: {integrity: sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <6.0.0"
-
- "@typescript-eslint/visitor-keys@8.48.0":
- resolution:
- {
- integrity: sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@ungap/structured-clone@1.3.0":
- resolution:
- {
- integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==,
- }
-
- "@unrs/resolver-binding-android-arm-eabi@1.11.1":
- resolution:
- {
- integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==,
- }
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/visitor-keys@8.48.0':
+ resolution: {integrity: sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@ungap/structured-clone@1.3.0':
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
+
+ '@unrs/resolver-binding-android-arm-eabi@1.11.1':
+ resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
cpu: [arm]
os: [android]
- "@unrs/resolver-binding-android-arm64@1.11.1":
- resolution:
- {
- integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==,
- }
+ '@unrs/resolver-binding-android-arm64@1.11.1':
+ resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
cpu: [arm64]
os: [android]
- "@unrs/resolver-binding-darwin-arm64@1.11.1":
- resolution:
- {
- integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==,
- }
+ '@unrs/resolver-binding-darwin-arm64@1.11.1':
+ resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
cpu: [arm64]
os: [darwin]
- "@unrs/resolver-binding-darwin-x64@1.11.1":
- resolution:
- {
- integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==,
- }
+ '@unrs/resolver-binding-darwin-x64@1.11.1':
+ resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
cpu: [x64]
os: [darwin]
- "@unrs/resolver-binding-freebsd-x64@1.11.1":
- resolution:
- {
- integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==,
- }
+ '@unrs/resolver-binding-freebsd-x64@1.11.1':
+ resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
cpu: [x64]
os: [freebsd]
- "@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
- resolution:
- {
- integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==,
- }
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
+ resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
cpu: [arm]
os: [linux]
- "@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
- resolution:
- {
- integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==,
- }
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
+ resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
cpu: [arm]
os: [linux]
- "@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
- resolution:
- {
- integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==,
- }
+ '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
+ resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
cpu: [arm64]
os: [linux]
- "@unrs/resolver-binding-linux-arm64-musl@1.11.1":
- resolution:
- {
- integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==,
- }
+ '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
+ resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
cpu: [arm64]
os: [linux]
- "@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
- resolution:
- {
- integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==,
- }
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
+ resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
cpu: [ppc64]
os: [linux]
- "@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
- resolution:
- {
- integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==,
- }
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
+ resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
cpu: [riscv64]
os: [linux]
- "@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
- resolution:
- {
- integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==,
- }
+ '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
+ resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
cpu: [riscv64]
os: [linux]
- "@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
- resolution:
- {
- integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==,
- }
+ '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
+ resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
cpu: [s390x]
os: [linux]
- "@unrs/resolver-binding-linux-x64-gnu@1.11.1":
- resolution:
- {
- integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==,
- }
+ '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
+ resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
cpu: [x64]
os: [linux]
- "@unrs/resolver-binding-linux-x64-musl@1.11.1":
- resolution:
- {
- integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==,
- }
+ '@unrs/resolver-binding-linux-x64-musl@1.11.1':
+ resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
cpu: [x64]
os: [linux]
- "@unrs/resolver-binding-wasm32-wasi@1.11.1":
- resolution:
- {
- integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==,
- }
- engines: { node: ">=14.0.0" }
+ '@unrs/resolver-binding-wasm32-wasi@1.11.1':
+ resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
+ engines: {node: '>=14.0.0'}
cpu: [wasm32]
- "@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
- resolution:
- {
- integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==,
- }
+ '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
+ resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
cpu: [arm64]
os: [win32]
- "@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
- resolution:
- {
- integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==,
- }
+ '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
+ resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
cpu: [ia32]
os: [win32]
- "@unrs/resolver-binding-win32-x64-msvc@1.11.1":
- resolution:
- {
- integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==,
- }
+ '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
+ resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
cpu: [x64]
os: [win32]
- "@yarnpkg/lockfile@1.1.0":
- resolution:
- {
- integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==,
- }
-
- "@yarnpkg/parsers@3.0.2":
- resolution:
- {
- integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==,
- }
- engines: { node: ">=18.12.0" }
-
- "@zkochan/js-yaml@0.0.7":
- resolution:
- {
- integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==,
- }
+ '@yarnpkg/lockfile@1.1.0':
+ resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
+
+ '@yarnpkg/parsers@3.0.2':
+ resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==}
+ engines: {node: '>=18.12.0'}
+
+ '@zkochan/js-yaml@0.0.7':
+ resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
JSONStream@1.3.5:
- resolution:
- {
- integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==,
- }
+ resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
abbrev@2.0.0:
- resolution:
- {
- integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
acorn-jsx@5.3.2:
- resolution:
- {
- integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
- }
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
acorn-walk@8.3.4:
- resolution:
- {
- integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ engines: {node: '>=0.4.0'}
acorn@8.15.0:
- resolution:
- {
- integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ engines: {node: '>=0.4.0'}
hasBin: true
add-stream@1.0.0:
- resolution:
- {
- integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==,
- }
+ resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
agent-base@7.1.4:
- resolution:
- {
- integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
aggregate-error@3.1.0:
- resolution:
- {
- integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
ajv@6.12.6:
- resolution:
- {
- integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
- }
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
ansi-colors@4.1.3:
- resolution:
- {
- integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
ansi-escapes@4.3.2:
- resolution:
- {
- integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
ansi-regex@5.0.1:
- resolution:
- {
- integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
ansi-regex@6.2.2:
- resolution:
- {
- integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+ engines: {node: '>=12'}
ansi-styles@4.3.0:
- resolution:
- {
- integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
ansi-styles@5.2.0:
- resolution:
- {
- integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
ansi-styles@6.2.3:
- resolution:
- {
- integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+ engines: {node: '>=12'}
anymatch@3.1.3:
- resolution:
- {
- integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
aproba@2.0.0:
- resolution:
- {
- integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==,
- }
+ resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
arg@4.1.3:
- resolution:
- {
- integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==,
- }
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
argparse@1.0.10:
- resolution:
- {
- integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==,
- }
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
- resolution:
- {
- integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
- }
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
array-differ@3.0.0:
- resolution:
- {
- integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==}
+ engines: {node: '>=8'}
array-ify@1.0.0:
- resolution:
- {
- integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==,
- }
+ resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
array-union@2.1.0:
- resolution:
- {
- integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
arrify@1.0.1:
- resolution:
- {
- integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
arrify@2.0.1:
- resolution:
- {
- integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
+ engines: {node: '>=8'}
async@3.2.6:
- resolution:
- {
- integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==,
- }
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
- resolution:
- {
- integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
- }
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
axios@1.13.2:
- resolution:
- {
- integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==,
- }
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
babel-jest@30.2.0:
- resolution:
- {
- integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- "@babel/core": ^7.11.0 || ^8.0.0-0
+ '@babel/core': ^7.11.0 || ^8.0.0-0
babel-plugin-istanbul@7.0.1:
- resolution:
- {
- integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==}
+ engines: {node: '>=12'}
babel-plugin-jest-hoist@30.2.0:
- resolution:
- {
- integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
babel-preset-current-node-syntax@1.2.0:
- resolution:
- {
- integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==,
- }
+ resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==}
peerDependencies:
- "@babel/core": ^7.0.0 || ^8.0.0-0
+ '@babel/core': ^7.0.0 || ^8.0.0-0
babel-preset-jest@30.2.0:
- resolution:
- {
- integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- "@babel/core": ^7.11.0 || ^8.0.0-beta.1
+ '@babel/core': ^7.11.0 || ^8.0.0-beta.1
balanced-match@1.0.2:
- resolution:
- {
- integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
- }
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
base64-js@1.5.1:
- resolution:
- {
- integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==,
- }
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
baseline-browser-mapping@2.8.30:
- resolution:
- {
- integrity: sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA==,
- }
+ resolution: {integrity: sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA==}
hasBin: true
before-after-hook@2.2.3:
- resolution:
- {
- integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
- }
+ resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
bin-links@4.0.4:
- resolution:
- {
- integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
binary-extensions@2.3.0:
- resolution:
- {
- integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ engines: {node: '>=8'}
bl@4.1.0:
- resolution:
- {
- integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==,
- }
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
brace-expansion@1.1.12:
- resolution:
- {
- integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==,
- }
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
brace-expansion@2.0.2:
- resolution:
- {
- integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==,
- }
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
braces@3.0.3:
- resolution:
- {
- integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
browserslist@4.28.0:
- resolution:
- {
- integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
+ resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
bs-logger@0.2.6:
- resolution:
- {
- integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
+ engines: {node: '>= 6'}
bser@2.1.1:
- resolution:
- {
- integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==,
- }
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
buffer-from@1.1.2:
- resolution:
- {
- integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==,
- }
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
buffer@5.7.1:
- resolution:
- {
- integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==,
- }
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
byte-size@8.1.1:
- resolution:
- {
- integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==,
- }
- engines: { node: ">=12.17" }
+ resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==}
+ engines: {node: '>=12.17'}
cacache@18.0.4:
- resolution:
- {
- integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
call-bind-apply-helpers@1.0.2:
- resolution:
- {
- integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
- resolution:
- {
- integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
camelcase-keys@6.2.2:
- resolution:
- {
- integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
+ engines: {node: '>=8'}
camelcase@5.3.1:
- resolution:
- {
- integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
camelcase@6.3.0:
- resolution:
- {
- integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
caniuse-lite@1.0.30001756:
- resolution:
- {
- integrity: sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==,
- }
+ resolution: {integrity: sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==}
chalk@4.1.0:
- resolution:
- {
- integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
+ engines: {node: '>=10'}
chalk@4.1.2:
- resolution:
- {
- integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
char-regex@1.0.2:
- resolution:
- {
- integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+ engines: {node: '>=10'}
chardet@2.1.1:
- resolution:
- {
- integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==,
- }
+ resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
chokidar@3.6.0:
- resolution:
- {
- integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==,
- }
- engines: { node: ">= 8.10.0" }
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
chownr@2.0.0:
- resolution:
- {
- integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+ engines: {node: '>=10'}
ci-info@3.9.0:
- resolution:
- {
- integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
ci-info@4.3.1:
- resolution:
- {
- integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
+ engines: {node: '>=8'}
cjs-module-lexer@2.1.1:
- resolution:
- {
- integrity: sha512-+CmxIZ/L2vNcEfvNtLdU0ZQ6mbq3FZnwAP2PPTiKP+1QOoKwlKlPgb8UKV0Dds7QVaMnHm+FwSft2VB0s/SLjQ==,
- }
+ resolution: {integrity: sha512-+CmxIZ/L2vNcEfvNtLdU0ZQ6mbq3FZnwAP2PPTiKP+1QOoKwlKlPgb8UKV0Dds7QVaMnHm+FwSft2VB0s/SLjQ==}
clean-stack@2.2.0:
- resolution:
- {
- integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
cli-cursor@3.1.0:
- resolution:
- {
- integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
cli-spinners@2.6.1:
- resolution:
- {
- integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
+ engines: {node: '>=6'}
cli-spinners@2.9.2:
- resolution:
- {
- integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
cli-width@3.0.0:
- resolution:
- {
- integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
cliui@7.0.4:
- resolution:
- {
- integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==,
- }
+ resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
cliui@8.0.1:
- resolution:
- {
- integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
clone-deep@4.0.1:
- resolution:
- {
- integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
+ engines: {node: '>=6'}
clone@1.0.4:
- resolution:
- {
- integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
cmd-shim@6.0.3:
- resolution:
- {
- integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
co@4.6.0:
- resolution:
- {
- integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==,
- }
- engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" }
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
collect-v8-coverage@1.0.3:
- resolution:
- {
- integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==,
- }
+ resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==}
color-convert@2.0.1:
- resolution:
- {
- integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
- }
- engines: { node: ">=7.0.0" }
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
color-name@1.1.4:
- resolution:
- {
- integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
- }
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
color-support@1.1.3:
- resolution:
- {
- integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==,
- }
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
columnify@1.6.0:
- resolution:
- {
- integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==}
+ engines: {node: '>=8.0.0'}
combined-stream@1.0.8:
- resolution:
- {
- integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
common-ancestor-path@1.0.1:
- resolution:
- {
- integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==,
- }
+ resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
compare-func@2.0.0:
- resolution:
- {
- integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==,
- }
+ resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
concat-map@0.0.1:
- resolution:
- {
- integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
- }
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
concat-stream@2.0.0:
- resolution:
- {
- integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==,
- }
- engines: { "0": node >= 6.0 }
+ resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
+ engines: {'0': node >= 6.0}
console-control-strings@1.1.0:
- resolution:
- {
- integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==,
- }
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
conventional-changelog-angular@7.0.0:
- resolution:
- {
- integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
+ engines: {node: '>=16'}
conventional-changelog-core@5.0.1:
- resolution:
- {
- integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==}
+ engines: {node: '>=14'}
conventional-changelog-preset-loader@3.0.0:
- resolution:
- {
- integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==}
+ engines: {node: '>=14'}
conventional-changelog-writer@6.0.1:
- resolution:
- {
- integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==}
+ engines: {node: '>=14'}
hasBin: true
conventional-commits-filter@3.0.0:
- resolution:
- {
- integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==}
+ engines: {node: '>=14'}
conventional-commits-parser@4.0.0:
- resolution:
- {
- integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==}
+ engines: {node: '>=14'}
hasBin: true
conventional-recommended-bump@7.0.1:
- resolution:
- {
- integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==}
+ engines: {node: '>=14'}
hasBin: true
convert-source-map@2.0.0:
- resolution:
- {
- integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
- }
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
copy-file@11.1.0:
- resolution:
- {
- integrity: sha512-X8XDzyvYaA6msMyAM575CUoygY5b44QzLcGRKsK3MFmXcOvQa518dNPLsKYwkYsn72g3EiW+LE0ytd/FlqWmyw==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-X8XDzyvYaA6msMyAM575CUoygY5b44QzLcGRKsK3MFmXcOvQa518dNPLsKYwkYsn72g3EiW+LE0ytd/FlqWmyw==}
+ engines: {node: '>=18'}
copyfiles@2.4.1:
- resolution:
- {
- integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==,
- }
+ resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==}
hasBin: true
core-util-is@1.0.3:
- resolution:
- {
- integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==,
- }
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
cosmiconfig@9.0.0:
- resolution:
- {
- integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
peerDependencies:
- typescript: ">=4.9.5"
+ typescript: '>=4.9.5'
peerDependenciesMeta:
typescript:
optional: true
cpy-cli@6.0.0:
- resolution:
- {
- integrity: sha512-q7GUqTDnRymCbScJ4Ph1IUM86wWdKG8JbgrvKLgvvehH4wrbRcVN+jRwOTlxJdwm7ykdXMKSp6IESksFeHa0eA==,
- }
- engines: { node: ">=20" }
+ resolution: {integrity: sha512-q7GUqTDnRymCbScJ4Ph1IUM86wWdKG8JbgrvKLgvvehH4wrbRcVN+jRwOTlxJdwm7ykdXMKSp6IESksFeHa0eA==}
+ engines: {node: '>=20'}
hasBin: true
cpy@12.1.0:
- resolution:
- {
- integrity: sha512-3z9tP1rPBLG7pQYn9iRgl7JOSew0SMPuWmakaRfzhXpmFBHmRbp7JekpuqPkXbbWOdSeKSbInYEcdIZjov2fNQ==,
- }
- engines: { node: ">=20" }
+ resolution: {integrity: sha512-3z9tP1rPBLG7pQYn9iRgl7JOSew0SMPuWmakaRfzhXpmFBHmRbp7JekpuqPkXbbWOdSeKSbInYEcdIZjov2fNQ==}
+ engines: {node: '>=20'}
create-require@1.1.1:
- resolution:
- {
- integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==,
- }
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
cross-spawn@7.0.6:
- resolution:
- {
- integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
cssesc@3.0.0:
- resolution:
- {
- integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
hasBin: true
dargs@7.0.0:
- resolution:
- {
- integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
+ engines: {node: '>=8'}
dateformat@3.0.3:
- resolution:
- {
- integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==,
- }
+ resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
debug@4.4.3:
- resolution:
- {
- integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
decamelize-keys@1.1.1:
- resolution:
- {
- integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
+ engines: {node: '>=0.10.0'}
decamelize@1.2.0:
- resolution:
- {
- integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
dedent@1.5.3:
- resolution:
- {
- integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==,
- }
+ resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -2545,10 +1631,7 @@ packages:
optional: true
dedent@1.7.0:
- resolution:
- {
- integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==,
- }
+ resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -2556,459 +1639,267 @@ packages:
optional: true
deep-is@0.1.4:
- resolution:
- {
- integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
- }
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
deepmerge@4.3.1:
- resolution:
- {
- integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
defaults@1.0.4:
- resolution:
- {
- integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==,
- }
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
define-lazy-prop@2.0.0:
- resolution:
- {
- integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
+ engines: {node: '>=8'}
delayed-stream@1.0.0:
- resolution:
- {
- integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
deprecation@2.3.1:
- resolution:
- {
- integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
- }
+ resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
detect-indent@5.0.0:
- resolution:
- {
- integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==}
+ engines: {node: '>=4'}
detect-newline@3.1.0:
- resolution:
- {
- integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+ engines: {node: '>=8'}
diff-sequences@29.6.3:
- resolution:
- {
- integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
diff@4.0.2:
- resolution:
- {
- integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==,
- }
- engines: { node: ">=0.3.1" }
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
dot-prop@5.3.0:
- resolution:
- {
- integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
+ engines: {node: '>=8'}
dotenv-expand@11.0.7:
- resolution:
- {
- integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
+ engines: {node: '>=12'}
dotenv@16.4.7:
- resolution:
- {
- integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
+ engines: {node: '>=12'}
dunder-proto@1.0.1:
- resolution:
- {
- integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
eastasianwidth@0.2.0:
- resolution:
- {
- integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==,
- }
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
ejs@3.1.10:
- resolution:
- {
- integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
+ engines: {node: '>=0.10.0'}
hasBin: true
electron-to-chromium@1.5.259:
- resolution:
- {
- integrity: sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ==,
- }
+ resolution: {integrity: sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ==}
emittery@0.13.1:
- resolution:
- {
- integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
+ engines: {node: '>=12'}
emoji-regex@8.0.0:
- resolution:
- {
- integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==,
- }
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
emoji-regex@9.2.2:
- resolution:
- {
- integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==,
- }
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
encoding@0.1.13:
- resolution:
- {
- integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==,
- }
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
end-of-stream@1.4.5:
- resolution:
- {
- integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==,
- }
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
enquirer@2.3.6:
- resolution:
- {
- integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
+ engines: {node: '>=8.6'}
env-paths@2.2.1:
- resolution:
- {
- integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
envinfo@7.13.0:
- resolution:
- {
- integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
+ engines: {node: '>=4'}
hasBin: true
err-code@2.0.3:
- resolution:
- {
- integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==,
- }
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
error-ex@1.3.4:
- resolution:
- {
- integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==,
- }
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
es-define-property@1.0.1:
- resolution:
- {
- integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
es-errors@1.3.0:
- resolution:
- {
- integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
es-object-atoms@1.1.1:
- resolution:
- {
- integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ engines: {node: '>= 0.4'}
es-set-tostringtag@2.1.0:
- resolution:
- {
- integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
escalade@3.2.0:
- resolution:
- {
- integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
escape-string-regexp@1.0.5:
- resolution:
- {
- integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
escape-string-regexp@2.0.0:
- resolution:
- {
- integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+ engines: {node: '>=8'}
escape-string-regexp@4.0.0:
- resolution:
- {
- integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
eslint-config-prettier@10.1.8:
- resolution:
- {
- integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==,
- }
+ resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==}
hasBin: true
peerDependencies:
- eslint: ">=7.0.0"
+ eslint: '>=7.0.0'
eslint-plugin-prettier@5.5.4:
- resolution:
- {
- integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
+ resolution: {integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- "@types/eslint": ">=8.0.0"
- eslint: ">=8.0.0"
- eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
- prettier: ">=3.0.0"
+ '@types/eslint': '>=8.0.0'
+ eslint: '>=8.0.0'
+ eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
+ prettier: '>=3.0.0'
peerDependenciesMeta:
- "@types/eslint":
+ '@types/eslint':
optional: true
eslint-config-prettier:
optional: true
eslint-plugin-simple-import-sort@12.1.1:
- resolution:
- {
- integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==,
- }
+ resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==}
peerDependencies:
- eslint: ">=5.0.0"
+ eslint: '>=5.0.0'
eslint-plugin-unused-imports@4.3.0:
- resolution:
- {
- integrity: sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==,
- }
+ resolution: {integrity: sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==}
peerDependencies:
- "@typescript-eslint/eslint-plugin": ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
+ '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
eslint: ^9.0.0 || ^8.0.0
peerDependenciesMeta:
- "@typescript-eslint/eslint-plugin":
+ '@typescript-eslint/eslint-plugin':
optional: true
eslint-scope@8.4.0:
- resolution:
- {
- integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
- resolution:
- {
- integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
eslint-visitor-keys@4.2.1:
- resolution:
- {
- integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint@9.39.1:
- resolution:
- {
- integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
- jiti: "*"
+ jiti: '*'
peerDependenciesMeta:
jiti:
optional: true
espree@10.4.0:
- resolution:
- {
- integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@4.0.1:
- resolution:
- {
- integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
hasBin: true
esquery@1.6.0:
- resolution:
- {
- integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ engines: {node: '>=0.10'}
esrecurse@4.3.0:
- resolution:
- {
- integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
estraverse@5.3.0:
- resolution:
- {
- integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
esutils@2.0.3:
- resolution:
- {
- integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
eventemitter3@4.0.7:
- resolution:
- {
- integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==,
- }
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
execa@5.0.0:
- resolution:
- {
- integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==}
+ engines: {node: '>=10'}
execa@5.1.1:
- resolution:
- {
- integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+ engines: {node: '>=10'}
exit-x@0.2.2:
- resolution:
- {
- integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==}
+ engines: {node: '>= 0.8.0'}
expect@30.2.0:
- resolution:
- {
- integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
exponential-backoff@3.1.3:
- resolution:
- {
- integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==,
- }
+ resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
fast-deep-equal@3.1.3:
- resolution:
- {
- integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
- }
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-diff@1.3.0:
- resolution:
- {
- integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==,
- }
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
fast-glob@3.3.3:
- resolution:
- {
- integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==,
- }
- engines: { node: ">=8.6.0" }
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ engines: {node: '>=8.6.0'}
fast-json-patch@3.1.1:
- resolution:
- {
- integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==,
- }
+ resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==}
fast-json-stable-stringify@2.1.0:
- resolution:
- {
- integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
- }
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
fast-levenshtein@2.0.6:
- resolution:
- {
- integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
- }
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
fastq@1.19.1:
- resolution:
- {
- integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==,
- }
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
fb-watchman@2.0.2:
- resolution:
- {
- integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==,
- }
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
fdir@6.5.0:
- resolution:
- {
- integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -3016,824 +1907,467 @@ packages:
optional: true
figures@3.2.0:
- resolution:
- {
- integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
file-entry-cache@8.0.0:
- resolution:
- {
- integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==,
- }
- engines: { node: ">=16.0.0" }
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
filelist@1.0.4:
- resolution:
- {
- integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==,
- }
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
fill-range@7.1.1:
- resolution:
- {
- integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
find-up@2.1.0:
- resolution:
- {
- integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
+ engines: {node: '>=4'}
find-up@4.1.0:
- resolution:
- {
- integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
find-up@5.0.0:
- resolution:
- {
- integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
flat-cache@4.0.1:
- resolution:
- {
- integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
flat@5.0.2:
- resolution:
- {
- integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==,
- }
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
flatted@3.3.3:
- resolution:
- {
- integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==,
- }
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
follow-redirects@1.15.11:
- resolution:
- {
- integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
+ engines: {node: '>=4.0'}
peerDependencies:
- debug: "*"
+ debug: '*'
peerDependenciesMeta:
debug:
optional: true
foreground-child@3.3.1:
- resolution:
- {
- integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
+ engines: {node: '>=14'}
form-data@4.0.5:
- resolution:
- {
- integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
+ engines: {node: '>= 6'}
front-matter@4.0.2:
- resolution:
- {
- integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==,
- }
+ resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
fs-constants@1.0.0:
- resolution:
- {
- integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==,
- }
+ resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
fs-extra@11.3.2:
- resolution:
- {
- integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
+ engines: {node: '>=14.14'}
fs-minipass@2.1.0:
- resolution:
- {
- integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
fs-minipass@3.0.3:
- resolution:
- {
- integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
fs.realpath@1.0.0:
- resolution:
- {
- integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==,
- }
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
fsevents@2.3.3:
- resolution:
- {
- integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
- }
- engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
function-bind@1.1.2:
- resolution:
- {
- integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
- }
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
gensync@1.0.0-beta.2:
- resolution:
- {
- integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
get-caller-file@2.0.5:
- resolution:
- {
- integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==,
- }
- engines: { node: 6.* || 8.* || >= 10.* }
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
get-intrinsic@1.3.0:
- resolution:
- {
- integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
get-package-type@0.1.0:
- resolution:
- {
- integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
+ engines: {node: '>=8.0.0'}
get-pkg-repo@4.2.1:
- resolution:
- {
- integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==}
+ engines: {node: '>=6.9.0'}
hasBin: true
get-port@5.1.1:
- resolution:
- {
- integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
+ engines: {node: '>=8'}
get-proto@1.0.1:
- resolution:
- {
- integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
get-stream@6.0.0:
- resolution:
- {
- integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==}
+ engines: {node: '>=10'}
get-stream@6.0.1:
- resolution:
- {
- integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
git-raw-commits@3.0.0:
- resolution:
- {
- integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==}
+ engines: {node: '>=14'}
hasBin: true
git-remote-origin-url@2.0.0:
- resolution:
- {
- integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==}
+ engines: {node: '>=4'}
git-semver-tags@5.0.1:
- resolution:
- {
- integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==}
+ engines: {node: '>=14'}
hasBin: true
git-up@7.0.0:
- resolution:
- {
- integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==,
- }
+ resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
git-url-parse@14.0.0:
- resolution:
- {
- integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==,
- }
+ resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
gitconfiglocal@1.0.0:
- resolution:
- {
- integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==,
- }
+ resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==}
glob-parent@5.1.2:
- resolution:
- {
- integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
glob-parent@6.0.2:
- resolution:
- {
- integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
glob@10.5.0:
- resolution:
- {
- integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==,
- }
+ resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
hasBin: true
glob@13.0.0:
- resolution:
- {
- integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==}
+ engines: {node: 20 || >=22}
glob@7.2.3:
- resolution:
- {
- integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
- }
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
glob@9.3.5:
- resolution:
- {
- integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
+ engines: {node: '>=16 || 14 >=14.17'}
globals@14.0.0:
- resolution:
- {
- integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
globby@15.0.0:
- resolution:
- {
- integrity: sha512-oB4vkQGqlMl682wL1IlWd02tXCbquGWM4voPEI85QmNKCaw8zGTm1f1rubFgkg3Eli2PtKlFgrnmUqasbQWlkw==,
- }
- engines: { node: ">=20" }
+ resolution: {integrity: sha512-oB4vkQGqlMl682wL1IlWd02tXCbquGWM4voPEI85QmNKCaw8zGTm1f1rubFgkg3Eli2PtKlFgrnmUqasbQWlkw==}
+ engines: {node: '>=20'}
gopd@1.2.0:
- resolution:
- {
- integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
graceful-fs@4.2.11:
- resolution:
- {
- integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
- }
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
graphemer@1.4.0:
- resolution:
- {
- integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==,
- }
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
handlebars@4.7.8:
- resolution:
- {
- integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==,
- }
- engines: { node: ">=0.4.7" }
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+ engines: {node: '>=0.4.7'}
hasBin: true
hard-rejection@2.1.0:
- resolution:
- {
- integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
+ engines: {node: '>=6'}
has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
has-flag@4.0.0:
- resolution:
- {
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
has-symbols@1.1.0:
- resolution:
- {
- integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
- resolution:
- {
- integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
has-unicode@2.0.1:
- resolution:
- {
- integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==,
- }
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
hasown@2.0.2:
- resolution:
- {
- integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
hosted-git-info@2.8.9:
- resolution:
- {
- integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==,
- }
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
hosted-git-info@4.1.0:
- resolution:
- {
- integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+ engines: {node: '>=10'}
hosted-git-info@7.0.2:
- resolution:
- {
- integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
html-escaper@2.0.2:
- resolution:
- {
- integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==,
- }
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
http-cache-semantics@4.2.0:
- resolution:
- {
- integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==,
- }
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
http-proxy-agent@7.0.2:
- resolution:
- {
- integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==,
- }
- engines: { node: ">= 14" }
+ 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" }
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
human-signals@2.1.0:
- resolution:
- {
- integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==,
- }
- engines: { node: ">=10.17.0" }
+ resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
+ engines: {node: '>=10.17.0'}
iconv-lite@0.6.3:
- resolution:
- {
- integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
iconv-lite@0.7.0:
- resolution:
- {
- integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==}
+ engines: {node: '>=0.10.0'}
ieee754@1.2.1:
- resolution:
- {
- integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==,
- }
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
ignore-by-default@1.0.1:
- resolution:
- {
- integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==,
- }
+ resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
ignore-walk@6.0.5:
- resolution:
- {
- integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ignore@5.3.2:
- resolution:
- {
- integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
ignore@7.0.5:
- resolution:
- {
- integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
+ engines: {node: '>= 4'}
import-fresh@3.3.1:
- resolution:
- {
- integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ engines: {node: '>=6'}
import-local@3.1.0:
- resolution:
- {
- integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
+ engines: {node: '>=8'}
hasBin: true
import-local@3.2.0:
- resolution:
- {
- integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
hasBin: true
imurmurhash@0.1.4:
- resolution:
- {
- integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
- }
- engines: { node: ">=0.8.19" }
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
indent-string@4.0.0:
- resolution:
- {
- integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
inflight@1.0.6:
- resolution:
- {
- integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
- }
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.4:
- resolution:
- {
- integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==,
- }
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
- resolution:
- {
- integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==,
- }
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
ini@4.1.3:
- resolution:
- {
- integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
init-package-json@6.0.3:
- resolution:
- {
- integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
inquirer@8.2.7:
- resolution:
- {
- integrity: sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==}
+ engines: {node: '>=12.0.0'}
ip-address@10.1.0:
- resolution:
- {
- integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
+ engines: {node: '>= 12'}
is-arrayish@0.2.1:
- resolution:
- {
- integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
- }
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
is-binary-path@2.1.0:
- resolution:
- {
- integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
is-ci@3.0.1:
- resolution:
- {
- integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==,
- }
+ resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
is-core-module@2.16.1:
- resolution:
- {
- integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
is-docker@2.2.1:
- resolution:
- {
- integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
hasBin: true
is-extglob@2.1.1:
- resolution:
- {
- integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
is-fullwidth-code-point@3.0.0:
- resolution:
- {
- integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
is-generator-fn@2.1.0:
- resolution:
- {
- integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
is-glob@4.0.3:
- resolution:
- {
- integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
is-interactive@1.0.0:
- resolution:
- {
- integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
is-lambda@1.0.1:
- resolution:
- {
- integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==,
- }
+ resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
is-number@7.0.0:
- resolution:
- {
- integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
is-obj@2.0.0:
- resolution:
- {
- integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
+ engines: {node: '>=8'}
is-plain-obj@1.1.0:
- resolution:
- {
- integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+ engines: {node: '>=0.10.0'}
is-plain-object@2.0.4:
- resolution:
- {
- integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+ engines: {node: '>=0.10.0'}
is-ssh@1.4.1:
- resolution:
- {
- integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==,
- }
+ resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==}
is-stream@2.0.0:
- resolution:
- {
- integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
+ engines: {node: '>=8'}
is-stream@2.0.1:
- resolution:
- {
- integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
is-text-path@1.0.1:
- resolution:
- {
- integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
+ engines: {node: '>=0.10.0'}
is-unicode-supported@0.1.0:
- resolution:
- {
- integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
is-wsl@2.2.0:
- resolution:
- {
- integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
isarray@0.0.1:
- resolution:
- {
- integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==,
- }
+ resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
isarray@1.0.0:
- resolution:
- {
- integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==,
- }
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
isexe@2.0.0:
- resolution:
- {
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
- }
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
isexe@3.1.1:
- resolution:
- {
- integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
isobject@3.0.1:
- resolution:
- {
- integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
+ engines: {node: '>=0.10.0'}
isomorphic-fetch@3.0.0:
- resolution:
- {
- integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==,
- }
+ resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
istanbul-lib-coverage@3.2.2:
- resolution:
- {
- integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==,
- }
- engines: { node: ">=8" }
+ 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" }
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ engines: {node: '>=10'}
istanbul-lib-report@3.0.1:
- resolution:
- {
- integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
istanbul-lib-source-maps@5.0.6:
- resolution:
- {
- integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
+ engines: {node: '>=10'}
istanbul-reports@3.2.0:
- resolution:
- {
- integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
+ engines: {node: '>=8'}
jackspeak@3.4.3:
- resolution:
- {
- integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==,
- }
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jake@10.9.4:
- resolution:
- {
- integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==}
+ engines: {node: '>=10'}
hasBin: true
jest-changed-files@30.2.0:
- resolution:
- {
- integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-circus@30.2.0:
- resolution:
- {
- integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-cli@30.2.0:
- resolution:
- {
- integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -3842,17 +2376,14 @@ packages:
optional: true
jest-config@30.2.0:
- resolution:
- {
- integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
- "@types/node": "*"
- esbuild-register: ">=3.4.0"
- ts-node: ">=9.0.0"
+ '@types/node': '*'
+ esbuild-register: '>=3.4.0'
+ ts-node: '>=9.0.0'
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
esbuild-register:
optional: true
@@ -3860,170 +2391,101 @@ packages:
optional: true
jest-diff@29.7.0:
- resolution:
- {
- integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
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 }
+ resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-docblock@30.2.0:
- resolution:
- {
- integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-each@30.2.0:
- resolution:
- {
- integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-environment-node@30.2.0:
- resolution:
- {
- integrity: sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-get-type@29.6.3:
- resolution:
- {
- integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-haste-map@30.2.0:
- resolution:
- {
- integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-leak-detector@30.2.0:
- resolution:
- {
- integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-matcher-utils@30.2.0:
- resolution:
- {
- integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-message-util@30.2.0:
- resolution:
- {
- integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-mock@30.2.0:
- resolution:
- {
- integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-pnp-resolver@1.2.3:
- resolution:
- {
- integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
peerDependencies:
- jest-resolve: "*"
+ jest-resolve: '*'
peerDependenciesMeta:
jest-resolve:
optional: true
jest-regex-util@30.0.1:
- resolution:
- {
- integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-resolve-dependencies@30.2.0:
- resolution:
- {
- integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-resolve@30.2.0:
- resolution:
- {
- integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-runner@30.2.0:
- resolution:
- {
- integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-runtime@30.2.0:
- resolution:
- {
- integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-snapshot@30.2.0:
- resolution:
- {
- integrity: sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-util@30.2.0:
- resolution:
- {
- integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-validate@30.2.0:
- resolution:
- {
- integrity: sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-watcher@30.2.0:
- resolution:
- {
- integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-worker@30.2.0:
- resolution:
- {
- integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest@30.2.0:
- resolution:
- {
- integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -4032,616 +2494,343 @@ packages:
optional: true
js-tokens@4.0.0:
- resolution:
- {
- integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
- }
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
js-yaml@3.14.2:
- resolution:
- {
- integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==,
- }
+ resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
hasBin: true
js-yaml@4.1.0:
- resolution:
- {
- integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
- }
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
js-yaml@4.1.1:
- resolution:
- {
- integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==,
- }
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
jsesc@3.1.0:
- resolution:
- {
- integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.1:
- resolution:
- {
- integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
- }
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
json-parse-better-errors@1.0.2:
- resolution:
- {
- integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==,
- }
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
json-parse-even-better-errors@2.3.1:
- resolution:
- {
- integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
- }
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
json-parse-even-better-errors@3.0.2:
- resolution:
- {
- integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
json-schema-traverse@0.4.1:
- resolution:
- {
- integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
- }
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
json-stable-stringify-without-jsonify@1.0.1:
- resolution:
- {
- integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
- }
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
json-stringify-nice@1.1.4:
- resolution:
- {
- integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==,
- }
+ resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==}
json-stringify-safe@5.0.1:
- resolution:
- {
- integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==,
- }
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
json5@2.2.3:
- resolution:
- {
- integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
hasBin: true
jsonc-parser@3.2.0:
- resolution:
- {
- integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==,
- }
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
jsonfile@6.2.0:
- resolution:
- {
- integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==,
- }
+ resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
jsonparse@1.3.1:
- resolution:
- {
- integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==,
- }
- engines: { "0": node >= 0.2.0 }
+ resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
+ engines: {'0': node >= 0.2.0}
junk@4.0.1:
- resolution:
- {
- integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==}
+ engines: {node: '>=12.20'}
just-diff-apply@5.5.0:
- resolution:
- {
- integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==,
- }
+ resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==}
just-diff@6.0.2:
- resolution:
- {
- integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==,
- }
+ resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==}
keyv@4.5.4:
- resolution:
- {
- integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
- }
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
kind-of@6.0.3:
- resolution:
- {
- integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
lerna@8.2.4:
- resolution:
- {
- integrity: sha512-0gaVWDIVT7fLfprfwpYcQajb7dBJv3EGavjG7zvJ+TmGx3/wovl5GklnSwM2/WeE0Z2wrIz7ndWhBcDUHVjOcQ==,
- }
- engines: { node: ">=18.0.0" }
+ resolution: {integrity: sha512-0gaVWDIVT7fLfprfwpYcQajb7dBJv3EGavjG7zvJ+TmGx3/wovl5GklnSwM2/WeE0Z2wrIz7ndWhBcDUHVjOcQ==}
+ engines: {node: '>=18.0.0'}
hasBin: true
leven@3.1.0:
- resolution:
- {
- integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
levn@0.4.1:
- resolution:
- {
- integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
libnpmaccess@8.0.6:
- resolution:
- {
- integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
libnpmpublish@9.0.9:
- resolution:
- {
- integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
lines-and-columns@1.2.4:
- resolution:
- {
- integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
- }
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
lines-and-columns@2.0.3:
- resolution:
- {
- integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
load-json-file@4.0.0:
- resolution:
- {
- integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
+ engines: {node: '>=4'}
load-json-file@6.2.0:
- resolution:
- {
- integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==}
+ engines: {node: '>=8'}
locate-path@2.0.0:
- resolution:
- {
- integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
+ engines: {node: '>=4'}
locate-path@5.0.0:
- resolution:
- {
- integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
locate-path@6.0.0:
- resolution:
- {
- integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
lodash.ismatch@4.4.0:
- resolution:
- {
- integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==,
- }
+ resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==}
lodash.memoize@4.1.2:
- resolution:
- {
- integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==,
- }
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
lodash.merge@4.6.2:
- resolution:
- {
- integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
- }
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
lodash@4.17.21:
- resolution:
- {
- integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
- }
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
log-symbols@4.1.0:
- resolution:
- {
- integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
lru-cache@10.4.3:
- resolution:
- {
- integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==,
- }
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
lru-cache@11.2.2:
- resolution:
- {
- integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
+ engines: {node: 20 || >=22}
lru-cache@5.1.1:
- resolution:
- {
- integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
- }
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
lru-cache@6.0.0:
- resolution:
- {
- integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
makage@0.1.8:
- resolution:
- {
- integrity: sha512-tuiW9YKY1v6hFakrFoNh0+Qn3PafiV6+LY1ZiIFvJQ6VmkbqbWbSZrSj3IdZI24EO5jPIyL2tgiwboBtlRrlbQ==,
- }
+ resolution: {integrity: sha512-tuiW9YKY1v6hFakrFoNh0+Qn3PafiV6+LY1ZiIFvJQ6VmkbqbWbSZrSj3IdZI24EO5jPIyL2tgiwboBtlRrlbQ==}
hasBin: true
make-dir@2.1.0:
- resolution:
- {
- integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
make-dir@4.0.0:
- resolution:
- {
- integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
make-error@1.3.6:
- resolution:
- {
- integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==,
- }
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
make-fetch-happen@13.0.1:
- resolution:
- {
- integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
makeerror@1.0.12:
- resolution:
- {
- integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==,
- }
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
map-obj@1.0.1:
- resolution:
- {
- integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
+ engines: {node: '>=0.10.0'}
map-obj@4.3.0:
- resolution:
- {
- integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
+ engines: {node: '>=8'}
math-intrinsics@1.1.0:
- resolution:
- {
- integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
meow@13.2.0:
- resolution:
- {
- integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
meow@8.1.2:
- resolution:
- {
- integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
+ engines: {node: '>=10'}
merge-stream@2.0.0:
- resolution:
- {
- integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
- }
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
merge2@1.4.1:
- resolution:
- {
- integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
micromatch@4.0.8:
- resolution:
- {
- integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
mime-db@1.52.0:
- resolution:
- {
- integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
mime-types@2.1.35:
- resolution:
- {
- integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
mimic-fn@2.1.0:
- resolution:
- {
- integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
min-indent@1.0.1:
- resolution:
- {
- integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
minimatch@10.1.1:
- resolution:
- {
- integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
+ engines: {node: 20 || >=22}
minimatch@3.0.5:
- resolution:
- {
- integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==,
- }
+ resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
minimatch@3.1.2:
- resolution:
- {
- integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
- }
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
minimatch@5.1.6:
- resolution:
- {
- integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
minimatch@8.0.4:
- resolution:
- {
- integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimatch@9.0.3:
- resolution:
- {
- integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimatch@9.0.5:
- resolution:
- {
- integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist-options@4.1.0:
- resolution:
- {
- integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
+ engines: {node: '>= 6'}
minimist@1.2.8:
- resolution:
- {
- integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==,
- }
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
minipass-collect@2.0.1:
- resolution:
- {
- integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
+ engines: {node: '>=16 || 14 >=14.17'}
minipass-fetch@3.0.5:
- resolution:
- {
- integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
minipass-flush@1.0.5:
- resolution:
- {
- integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==,
- }
- engines: { node: ">= 8" }
+ 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" }
+ 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" }
+ resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ engines: {node: '>=8'}
minipass@3.3.6:
- resolution:
- {
- integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
minipass@4.2.8:
- resolution:
- {
- integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
+ engines: {node: '>=8'}
minipass@5.0.0:
- resolution:
- {
- integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
minipass@7.1.2:
- resolution:
- {
- integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
- resolution:
- {
- integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+ engines: {node: '>= 8'}
mkdirp@1.0.4:
- resolution:
- {
- integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
hasBin: true
modify-values@1.0.1:
- resolution:
- {
- integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==}
+ engines: {node: '>=0.10.0'}
ms@2.1.3:
- resolution:
- {
- integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
- }
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
multimatch@5.0.0:
- resolution:
- {
- integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
+ engines: {node: '>=10'}
mute-stream@0.0.8:
- resolution:
- {
- integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==,
- }
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
mute-stream@1.0.0:
- resolution:
- {
- integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
napi-postinstall@0.3.4:
- resolution:
- {
- integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==,
- }
- engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
+ resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
natural-compare@1.4.0:
- resolution:
- {
- integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
- }
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
negotiator@0.6.4:
- resolution:
- {
- integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
neo-async@2.6.2:
- resolution:
- {
- integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==,
- }
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
node-fetch@2.6.7:
- resolution:
- {
- integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
@@ -4649,1308 +2838,747 @@ packages:
optional: true
node-gyp@10.3.1:
- resolution:
- {
- integrity: sha512-Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Pp3nFHBThHzVtNY7U6JfPjvT/DTE8+o/4xKsLQtBoU+j2HLsGlhcfzflAoUreaJbNmYnX+LlLi0qjV8kpyO6xQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
node-int64@0.4.0:
- resolution:
- {
- integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==,
- }
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
node-machine-id@1.1.12:
- resolution:
- {
- integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==,
- }
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
node-releases@2.0.27:
- resolution:
- {
- integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==,
- }
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
nodemon@3.1.11:
- resolution:
- {
- integrity: sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==}
+ engines: {node: '>=10'}
hasBin: true
noms@0.0.0:
- resolution:
- {
- integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==,
- }
+ resolution: {integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==}
nopt@7.2.1:
- resolution:
- {
- integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
normalize-package-data@2.5.0:
- resolution:
- {
- integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==,
- }
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
normalize-package-data@3.0.3:
- resolution:
- {
- integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
+ engines: {node: '>=10'}
normalize-package-data@6.0.2:
- resolution:
- {
- integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
normalize-path@3.0.0:
- resolution:
- {
- integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
npm-bundled@3.0.1:
- resolution:
- {
- integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-install-checks@6.3.0:
- resolution:
- {
- integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-normalize-package-bin@3.0.1:
- resolution:
- {
- integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-package-arg@11.0.2:
- resolution:
- {
- integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-packlist@8.0.2:
- resolution:
- {
- integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-pick-manifest@9.1.0:
- resolution:
- {
- integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-registry-fetch@17.1.0:
- resolution:
- {
- integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-run-path@4.0.1:
- resolution:
- {
- integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+ engines: {node: '>=8'}
nx@20.8.3:
- resolution:
- {
- integrity: sha512-8w815WSMWar3A/LFzwtmEY+E8cVW62lMiFuPDXje+C8O8hFndfvscP56QHNMn2Zdhz3q0+BZUe+se4Em1BKYdA==,
- }
+ resolution: {integrity: sha512-8w815WSMWar3A/LFzwtmEY+E8cVW62lMiFuPDXje+C8O8hFndfvscP56QHNMn2Zdhz3q0+BZUe+se4Em1BKYdA==}
hasBin: true
peerDependencies:
- "@swc-node/register": ^1.8.0
- "@swc/core": ^1.3.85
+ '@swc-node/register': ^1.8.0
+ '@swc/core': ^1.3.85
peerDependenciesMeta:
- "@swc-node/register":
+ '@swc-node/register':
optional: true
- "@swc/core":
+ '@swc/core':
optional: true
once@1.4.0:
- resolution:
- {
- integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
- }
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
onetime@5.1.2:
- resolution:
- {
- integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
open@8.4.2:
- resolution:
- {
- integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
optionator@0.9.4:
- resolution:
- {
- integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ engines: {node: '>= 0.8.0'}
ora@5.3.0:
- resolution:
- {
- integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
+ engines: {node: '>=10'}
ora@5.4.1:
- resolution:
- {
- integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
p-event@6.0.1:
- resolution:
- {
- integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==,
- }
- engines: { node: ">=16.17" }
+ resolution: {integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==}
+ engines: {node: '>=16.17'}
p-filter@4.1.0:
- resolution:
- {
- integrity: sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==}
+ engines: {node: '>=18'}
p-finally@1.0.0:
- resolution:
- {
- integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
p-limit@1.3.0:
- resolution:
- {
- integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
+ engines: {node: '>=4'}
p-limit@2.3.0:
- resolution:
- {
- integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
p-limit@3.1.0:
- resolution:
- {
- integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
p-locate@2.0.0:
- resolution:
- {
- integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
+ engines: {node: '>=4'}
p-locate@4.1.0:
- resolution:
- {
- integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
p-locate@5.0.0:
- resolution:
- {
- integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
p-map-series@2.1.0:
- resolution:
- {
- integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==}
+ engines: {node: '>=8'}
p-map@4.0.0:
- resolution:
- {
- integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
p-map@7.0.4:
- resolution:
- {
- integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==}
+ engines: {node: '>=18'}
p-pipe@3.1.0:
- resolution:
- {
- integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==}
+ engines: {node: '>=8'}
p-queue@6.6.2:
- resolution:
- {
- integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
+ engines: {node: '>=8'}
p-reduce@2.1.0:
- resolution:
- {
- integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==}
+ engines: {node: '>=8'}
p-timeout@3.2.0:
- resolution:
- {
- integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
+ engines: {node: '>=8'}
p-timeout@6.1.4:
- resolution:
- {
- integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==}
+ engines: {node: '>=14.16'}
p-try@1.0.0:
- resolution:
- {
- integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
+ engines: {node: '>=4'}
p-try@2.2.0:
- resolution:
- {
- integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
p-waterfall@2.1.1:
- resolution:
- {
- integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==}
+ engines: {node: '>=8'}
package-json-from-dist@1.0.1:
- resolution:
- {
- integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==,
- }
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
pacote@18.0.6:
- resolution:
- {
- integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
parent-module@1.0.1:
- resolution:
- {
- integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
parse-conflict-json@3.0.1:
- resolution:
- {
- integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
parse-json@4.0.0:
- resolution:
- {
- integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
parse-json@5.2.0:
- resolution:
- {
- integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
parse-path@7.1.0:
- resolution:
- {
- integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==,
- }
+ resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==}
parse-url@8.1.0:
- resolution:
- {
- integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==,
- }
+ resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
path-exists@3.0.0:
- resolution:
- {
- integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
path-exists@4.0.0:
- resolution:
- {
- integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
path-is-absolute@1.0.1:
- resolution:
- {
- integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
path-key@3.1.1:
- resolution:
- {
- integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
path-parse@1.0.7:
- resolution:
- {
- integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
- }
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
path-scurry@1.11.1:
- resolution:
- {
- integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==,
- }
- engines: { node: ">=16 || 14 >=14.18" }
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-scurry@2.0.1:
- resolution:
- {
- integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
+ engines: {node: 20 || >=22}
path-type@3.0.0:
- resolution:
- {
- integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
+ engines: {node: '>=4'}
path-type@6.0.0:
- resolution:
- {
- integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
+ engines: {node: '>=18'}
picocolors@1.1.1:
- resolution:
- {
- integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
- }
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
- resolution:
- {
- integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
picomatch@4.0.3:
- resolution:
- {
- integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
pify@2.3.0:
- resolution:
- {
- integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
pify@3.0.0:
- resolution:
- {
- integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
+ engines: {node: '>=4'}
pify@4.0.1:
- resolution:
- {
- integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
pify@5.0.0:
- resolution:
- {
- integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==}
+ engines: {node: '>=10'}
pirates@4.0.7:
- resolution:
- {
- integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
+ engines: {node: '>= 6'}
pkg-dir@4.2.0:
- resolution:
- {
- integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
postcss-selector-parser@6.1.2:
- resolution:
- {
- integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ engines: {node: '>=4'}
prelude-ls@1.2.1:
- resolution:
- {
- integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
prettier-linter-helpers@1.0.0:
- resolution:
- {
- integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ engines: {node: '>=6.0.0'}
prettier@3.7.1:
- resolution:
- {
- integrity: sha512-RWKXE4qB3u5Z6yz7omJkjWwmTfLdcbv44jUVHC5NpfXwFGzvpQM798FGv/6WNK879tc+Cn0AAyherCl1KjbyZQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-RWKXE4qB3u5Z6yz7omJkjWwmTfLdcbv44jUVHC5NpfXwFGzvpQM798FGv/6WNK879tc+Cn0AAyherCl1KjbyZQ==}
+ engines: {node: '>=14'}
hasBin: true
pretty-format@29.7.0:
- resolution:
- {
- integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
pretty-format@30.2.0:
- 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 }
+ 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@4.2.0:
- resolution:
- {
- integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
process-nextick-args@2.0.1:
- resolution:
- {
- integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==,
- }
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
proggy@2.0.0:
- resolution:
- {
- integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
promise-all-reject-late@1.0.1:
- resolution:
- {
- integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==,
- }
+ resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==}
promise-call-limit@3.0.2:
- resolution:
- {
- integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==,
- }
+ resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==}
promise-inflight@1.0.1:
- resolution:
- {
- integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==,
- }
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
- bluebird: "*"
+ bluebird: '*'
peerDependenciesMeta:
bluebird:
optional: true
promise-retry@2.0.1:
- resolution:
- {
- integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
promzard@1.0.2:
- resolution:
- {
- integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
protocols@2.0.2:
- resolution:
- {
- integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==,
- }
+ resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
proxy-from-env@1.1.0:
- resolution:
- {
- integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
- }
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
pstree.remy@1.1.8:
- resolution:
- {
- integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==,
- }
+ resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
punycode@2.3.1:
- resolution:
- {
- integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
pure-rand@7.0.1:
- resolution:
- {
- integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==,
- }
+ resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==}
queue-microtask@1.2.3:
- resolution:
- {
- integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
- }
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
quick-lru@4.0.1:
- resolution:
- {
- integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
+ engines: {node: '>=8'}
react-is@18.3.1:
- resolution:
- {
- integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==,
- }
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
read-cmd-shim@4.0.0:
- resolution:
- {
- integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
read-package-json-fast@3.0.2:
- resolution:
- {
- integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
read-pkg-up@3.0.0:
- resolution:
- {
- integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==}
+ engines: {node: '>=4'}
read-pkg-up@7.0.1:
- resolution:
- {
- integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
+ engines: {node: '>=8'}
read-pkg@3.0.0:
- resolution:
- {
- integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+ engines: {node: '>=4'}
read-pkg@5.2.0:
- resolution:
- {
- integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+ engines: {node: '>=8'}
read@3.0.1:
- resolution:
- {
- integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
readable-stream@1.0.34:
- resolution:
- {
- integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==,
- }
+ resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==}
readable-stream@2.3.8:
- resolution:
- {
- integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==,
- }
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
readable-stream@3.6.2:
- resolution:
- {
- integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
readdirp@3.6.0:
- resolution:
- {
- integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
- }
- engines: { node: ">=8.10.0" }
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
redent@3.0.0:
- resolution:
- {
- integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
require-directory@2.1.1:
- resolution:
- {
- integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
resolve-cwd@3.0.0:
- resolution:
- {
- integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+ engines: {node: '>=8'}
resolve-from@4.0.0:
- resolution:
- {
- integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
resolve-from@5.0.0:
- resolution:
- {
- integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
resolve.exports@2.0.3:
- resolution:
- {
- integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
+ engines: {node: '>=10'}
resolve@1.22.11:
- resolution:
- {
- integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==,
- }
- engines: { node: ">= 0.4" }
+ 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" }
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
retry@0.12.0:
- resolution:
- {
- integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==,
- }
- engines: { node: ">= 4" }
+ 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" }
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@4.4.1:
- resolution:
- {
- integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==}
+ engines: {node: '>=14'}
hasBin: true
rimraf@6.1.2:
- resolution:
- {
- integrity: sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==}
+ engines: {node: 20 || >=22}
hasBin: true
run-async@2.4.1:
- resolution:
- {
- integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
run-parallel@1.2.0:
- resolution:
- {
- integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
- }
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
rxjs@7.8.2:
- resolution:
- {
- integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==,
- }
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
safe-buffer@5.1.2:
- resolution:
- {
- integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
- }
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
safe-buffer@5.2.1:
- resolution:
- {
- integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
- }
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
safer-buffer@2.1.2:
- resolution:
- {
- integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
- }
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
semver@5.7.2:
- resolution:
- {
- integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==,
- }
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
semver@6.3.1:
- resolution:
- {
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
- }
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
semver@7.7.3:
- resolution:
- {
- integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
hasBin: true
set-blocking@2.0.0:
- resolution:
- {
- integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==,
- }
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
shallow-clone@3.0.1:
- resolution:
- {
- integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+ engines: {node: '>=8'}
shebang-command@2.0.0:
- resolution:
- {
- integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
shebang-regex@3.0.0:
- resolution:
- {
- integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
signal-exit@3.0.7:
- resolution:
- {
- integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
- }
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
- resolution:
- {
- integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
sigstore@2.3.1:
- resolution:
- {
- integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
simple-update-notifier@2.0.0:
- resolution:
- {
- integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
+ engines: {node: '>=10'}
slash@3.0.0:
- resolution:
- {
- integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
slash@5.1.0:
- resolution:
- {
- integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
smart-buffer@4.2.0:
- resolution:
- {
- integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==,
- }
- engines: { node: ">= 6.0.0", npm: ">= 3.0.0" }
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
socks-proxy-agent@8.0.5:
- resolution:
- {
- integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==,
- }
- engines: { node: ">= 14" }
+ 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" }
+ resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
sort-keys@2.0.0:
- resolution:
- {
- integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
+ engines: {node: '>=4'}
source-map-support@0.5.13:
- resolution:
- {
- integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==,
- }
+ resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
source-map@0.6.1:
- resolution:
- {
- integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
spdx-correct@3.2.0:
- resolution:
- {
- integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==,
- }
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
spdx-exceptions@2.5.0:
- resolution:
- {
- integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==,
- }
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
spdx-expression-parse@3.0.1:
- resolution:
- {
- integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==,
- }
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
spdx-license-ids@3.0.22:
- resolution:
- {
- integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==,
- }
+ resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
split2@3.2.2:
- resolution:
- {
- integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==,
- }
+ resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
split@1.0.1:
- resolution:
- {
- integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==,
- }
+ resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
sprintf-js@1.0.3:
- resolution:
- {
- integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==,
- }
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
ssri@10.0.6:
- resolution:
- {
- integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
stack-utils@2.0.6:
- resolution:
- {
- integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
string-length@4.0.2:
- resolution:
- {
- integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+ engines: {node: '>=10'}
string-width@4.2.3:
- resolution:
- {
- integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
string-width@5.1.2:
- resolution:
- {
- integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
string_decoder@0.10.31:
- resolution:
- {
- integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==,
- }
+ resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
string_decoder@1.1.1:
- resolution:
- {
- integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==,
- }
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
string_decoder@1.3.0:
- resolution:
- {
- integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==,
- }
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
strip-ansi@6.0.1:
- resolution:
- {
- integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
strip-ansi@7.1.2:
- resolution:
- {
- integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==,
- }
- engines: { node: ">=12" }
+ 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" }
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
strip-bom@4.0.0:
- resolution:
- {
- integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
+ engines: {node: '>=8'}
strip-final-newline@2.0.0:
- resolution:
- {
- integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+ engines: {node: '>=6'}
strip-indent@3.0.0:
- resolution:
- {
- integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
strip-json-comments@3.1.1:
- resolution:
- {
- integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
supports-color@7.2.0:
- resolution:
- {
- integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
supports-color@8.1.1:
- resolution:
- {
- integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
supports-preserve-symlinks-flag@1.0.0:
- resolution:
- {
- integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
synckit@0.11.11:
- resolution:
- {
- integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
+ resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
tar-stream@2.2.0:
- resolution:
- {
- integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
+ engines: {node: '>=6'}
tar@6.2.1:
- resolution:
- {
- integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
temp-dir@1.0.0:
- resolution:
- {
- integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+ engines: {node: '>=4'}
test-exclude@6.0.0:
- resolution:
- {
- integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
text-extensions@1.9.0:
- resolution:
- {
- integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
+ engines: {node: '>=0.10'}
through2@2.0.5:
- resolution:
- {
- integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==,
- }
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
through@2.3.8:
- resolution:
- {
- integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==,
- }
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
tinyglobby@0.2.12:
- resolution:
- {
- integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
+ engines: {node: '>=12.0.0'}
tinyglobby@0.2.15:
- resolution:
- {
- integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
+ engines: {node: '>=12.0.0'}
tmp@0.2.5:
- resolution:
- {
- integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
+ engines: {node: '>=14.14'}
tmpl@1.0.5:
- resolution:
- {
- integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==,
- }
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
to-regex-range@5.0.1:
- resolution:
- {
- integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
touch@3.1.1:
- resolution:
- {
- integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==,
- }
+ resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==}
hasBin: true
tr46@0.0.3:
- resolution:
- {
- integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
- }
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
treeverse@3.0.0:
- resolution:
- {
- integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
trim-newlines@3.0.1:
- resolution:
- {
- integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
+ engines: {node: '>=8'}
ts-api-utils@2.1.0:
- resolution:
- {
- integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==,
- }
- engines: { node: ">=18.12" }
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
+ engines: {node: '>=18.12'}
peerDependencies:
- typescript: ">=4.8.4"
+ typescript: '>=4.8.4'
ts-jest@29.4.5:
- resolution:
- {
- integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- "@babel/core": ">=7.0.0-beta.0 <8"
- "@jest/transform": ^29.0.0 || ^30.0.0
- "@jest/types": ^29.0.0 || ^30.0.0
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@jest/transform': ^29.0.0 || ^30.0.0
+ '@jest/types': ^29.0.0 || ^30.0.0
babel-jest: ^29.0.0 || ^30.0.0
- esbuild: "*"
+ esbuild: '*'
jest: ^29.0.0 || ^30.0.0
jest-util: ^29.0.0 || ^30.0.0
- typescript: ">=4.3 <6"
+ typescript: '>=4.3 <6'
peerDependenciesMeta:
- "@babel/core":
+ '@babel/core':
optional: true
- "@jest/transform":
+ '@jest/transform':
optional: true
- "@jest/types":
+ '@jest/types':
optional: true
babel-jest:
optional: true
@@ -5960,462 +3588,274 @@ packages:
optional: true
ts-node@10.9.2:
- resolution:
- {
- integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==,
- }
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
- "@swc/core": ">=1.2.50"
- "@swc/wasm": ">=1.2.50"
- "@types/node": "*"
- typescript: ">=2.7"
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
peerDependenciesMeta:
- "@swc/core":
+ '@swc/core':
optional: true
- "@swc/wasm":
+ '@swc/wasm':
optional: true
tsconfig-paths@4.2.0:
- resolution:
- {
- integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
+ engines: {node: '>=6'}
tslib@2.8.1:
- resolution:
- {
- integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==,
- }
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tuf-js@2.2.1:
- resolution:
- {
- integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
type-check@0.4.0:
- resolution:
- {
- integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
type-detect@4.0.8:
- resolution:
- {
- integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
type-fest@0.18.1:
- resolution:
- {
- integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
+ engines: {node: '>=10'}
type-fest@0.21.3:
- resolution:
- {
- integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
type-fest@0.4.1:
- resolution:
- {
- integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==}
+ engines: {node: '>=6'}
type-fest@0.6.0:
- resolution:
- {
- integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+ engines: {node: '>=8'}
type-fest@0.8.1:
- resolution:
- {
- integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
type-fest@4.41.0:
- resolution:
- {
- integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
+ engines: {node: '>=16'}
typedarray@0.0.6:
- resolution:
- {
- integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==,
- }
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
typescript@5.9.3:
- resolution:
- {
- integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
+ engines: {node: '>=14.17'}
hasBin: true
uglify-js@3.19.3:
- resolution:
- {
- integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
+ engines: {node: '>=0.8.0'}
hasBin: true
undefsafe@2.0.5:
- resolution:
- {
- integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==,
- }
+ resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
undici-types@6.21.0:
- resolution:
- {
- integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==,
- }
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
unicorn-magic@0.3.0:
- resolution:
- {
- integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
unique-filename@3.0.0:
- resolution:
- {
- integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
unique-slug@4.0.0:
- resolution:
- {
- integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
universal-user-agent@6.0.1:
- resolution:
- {
- integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
- }
+ resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
universalify@2.0.1:
- resolution:
- {
- integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
unrs-resolver@1.11.1:
- resolution:
- {
- integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==,
- }
+ resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
untildify@4.0.0:
- resolution:
- {
- integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
+ engines: {node: '>=8'}
upath@2.0.1:
- resolution:
- {
- integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
+ engines: {node: '>=4'}
update-browserslist-db@1.1.4:
- resolution:
- {
- integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==,
- }
+ resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
hasBin: true
peerDependencies:
- browserslist: ">= 4.21.0"
+ browserslist: '>= 4.21.0'
uri-js@4.4.1:
- resolution:
- {
- integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
- }
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
util-deprecate@1.0.2:
- resolution:
- {
- integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
- }
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
uuid@10.0.0:
- resolution:
- {
- integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==,
- }
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
hasBin: true
v8-compile-cache-lib@3.0.1:
- resolution:
- {
- integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==,
- }
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
v8-to-istanbul@9.3.0:
- resolution:
- {
- integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==,
- }
- engines: { node: ">=10.12.0" }
+ resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+ engines: {node: '>=10.12.0'}
validate-npm-package-license@3.0.4:
- resolution:
- {
- integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==,
- }
+ 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 }
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
walk-up-path@3.0.1:
- resolution:
- {
- integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==,
- }
+ resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==}
walker@1.0.8:
- resolution:
- {
- integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==,
- }
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
wcwidth@1.0.1:
- resolution:
- {
- integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==,
- }
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
webidl-conversions@3.0.1:
- resolution:
- {
- integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
- }
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
whatwg-fetch@3.6.20:
- resolution:
- {
- integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==,
- }
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
whatwg-url@5.0.0:
- resolution:
- {
- integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
- }
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
which@2.0.2:
- resolution:
- {
- integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
hasBin: true
which@4.0.0:
- resolution:
- {
- integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==,
- }
- engines: { node: ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
hasBin: true
wide-align@1.1.5:
- resolution:
- {
- integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==,
- }
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
word-wrap@1.2.5:
- resolution:
- {
- integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
wordwrap@1.0.0:
- resolution:
- {
- integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==,
- }
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
wrap-ansi@6.2.0:
- resolution:
- {
- integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==,
- }
- engines: { node: ">=8" }
+ 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" }
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
wrap-ansi@8.1.0:
- resolution:
- {
- integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
wrappy@1.0.2:
- resolution:
- {
- integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
- }
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
write-file-atomic@2.4.3:
- resolution:
- {
- integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==,
- }
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
write-file-atomic@5.0.1:
- resolution:
- {
- integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
write-json-file@3.2.0:
- resolution:
- {
- integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==}
+ engines: {node: '>=6'}
write-pkg@4.0.0:
- resolution:
- {
- integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==}
+ engines: {node: '>=8'}
xtend@4.0.2:
- resolution:
- {
- integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==,
- }
- engines: { node: ">=0.4" }
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
y18n@5.0.8:
- resolution:
- {
- integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
yallist@3.1.1:
- resolution:
- {
- integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
- }
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
yallist@4.0.0:
- resolution:
- {
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
yaml@2.8.1:
- resolution:
- {
- integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==,
- }
- engines: { node: ">= 14.6" }
+ resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
+ engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@20.2.9:
- resolution:
- {
- integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
+ engines: {node: '>=10'}
yargs-parser@21.1.1:
- resolution:
- {
- integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
yargs@16.2.0:
- resolution:
- {
- integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
yargs@17.7.2:
- resolution:
- {
- integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
yn@3.1.1:
- resolution:
- {
- integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
yocto-queue@0.1.0:
- resolution:
- {
- integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
snapshots:
- "@babel/code-frame@7.27.1":
+
+ '@babel/code-frame@7.27.1':
dependencies:
- "@babel/helper-validator-identifier": 7.28.5
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- "@babel/compat-data@7.28.5": {}
+ '@babel/compat-data@7.28.5': {}
- "@babel/core@7.28.5":
+ '@babel/core@7.28.5':
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.5)
- "@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
+ '@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.5)
+ '@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(supports-color@5.5.0)
gensync: 1.0.0-beta.2
@@ -6424,208 +3864,208 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/generator@7.28.5":
+ '@babel/generator@7.28.5':
dependencies:
- "@babel/parser": 7.28.5
- "@babel/types": 7.28.5
- "@jridgewell/gen-mapping": 0.3.13
- "@jridgewell/trace-mapping": 0.3.31
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- "@babel/helper-compilation-targets@7.27.2":
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- "@babel/compat-data": 7.28.5
- "@babel/helper-validator-option": 7.27.1
+ '@babel/compat-data': 7.28.5
+ '@babel/helper-validator-option': 7.27.1
browserslist: 4.28.0
lru-cache: 5.1.1
semver: 6.3.1
- "@babel/helper-globals@7.28.0": {}
+ '@babel/helper-globals@7.28.0': {}
- "@babel/helper-module-imports@7.27.1":
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- "@babel/traverse": 7.28.5
- "@babel/types": 7.28.5
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
- "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)":
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-module-imports": 7.27.1
- "@babel/helper-validator-identifier": 7.28.5
- "@babel/traverse": 7.28.5
+ '@babel/core': 7.28.5
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- "@babel/helper-plugin-utils@7.27.1": {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- "@babel/helper-string-parser@7.27.1": {}
+ '@babel/helper-string-parser@7.27.1': {}
- "@babel/helper-validator-identifier@7.28.5": {}
+ '@babel/helper-validator-identifier@7.28.5': {}
- "@babel/helper-validator-option@7.27.1": {}
+ '@babel/helper-validator-option@7.27.1': {}
- "@babel/helpers@7.28.4":
+ '@babel/helpers@7.28.4':
dependencies:
- "@babel/template": 7.27.2
- "@babel/types": 7.28.5
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.5
- "@babel/parser@7.28.5":
+ '@babel/parser@7.28.5':
dependencies:
- "@babel/types": 7.28.5
+ '@babel/types': 7.28.5
- "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)":
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)':
dependencies:
- "@babel/core": 7.28.5
- "@babel/helper-plugin-utils": 7.27.1
+ '@babel/core': 7.28.5
+ '@babel/helper-plugin-utils': 7.27.1
- "@babel/template@7.27.2":
+ '@babel/template@7.27.2':
dependencies:
- "@babel/code-frame": 7.27.1
- "@babel/parser": 7.28.5
- "@babel/types": 7.28.5
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
- "@babel/traverse@7.28.5":
+ '@babel/traverse@7.28.5':
dependencies:
- "@babel/code-frame": 7.27.1
- "@babel/generator": 7.28.5
- "@babel/helper-globals": 7.28.0
- "@babel/parser": 7.28.5
- "@babel/template": 7.27.2
- "@babel/types": 7.28.5
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.5
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.5
debug: 4.4.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- "@babel/types@7.28.5":
+ '@babel/types@7.28.5':
dependencies:
- "@babel/helper-string-parser": 7.27.1
- "@babel/helper-validator-identifier": 7.28.5
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
- "@bcoe/v8-coverage@0.2.3": {}
+ '@bcoe/v8-coverage@0.2.3': {}
- "@cspotcode/source-map-support@0.8.1":
+ '@cspotcode/source-map-support@0.8.1':
dependencies:
- "@jridgewell/trace-mapping": 0.3.9
+ '@jridgewell/trace-mapping': 0.3.9
- "@emnapi/core@1.7.1":
+ '@emnapi/core@1.7.1':
dependencies:
- "@emnapi/wasi-threads": 1.1.0
+ '@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
- "@emnapi/runtime@1.7.1":
+ '@emnapi/runtime@1.7.1':
dependencies:
tslib: 2.8.1
- "@emnapi/wasi-threads@1.1.0":
+ '@emnapi/wasi-threads@1.1.0':
dependencies:
tslib: 2.8.1
- "@eslint-community/eslint-utils@4.9.0(eslint@9.39.1)":
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1)':
dependencies:
eslint: 9.39.1
eslint-visitor-keys: 3.4.3
- "@eslint-community/regexpp@4.12.2": {}
+ '@eslint-community/regexpp@4.12.2': {}
- "@eslint/config-array@0.21.1":
+ '@eslint/config-array@0.21.1':
dependencies:
- "@eslint/object-schema": 2.1.7
+ '@eslint/object-schema': 2.1.7
debug: 4.4.3(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- "@eslint/config-helpers@0.4.2":
+ '@eslint/config-helpers@0.4.2':
dependencies:
- "@eslint/core": 0.17.0
+ '@eslint/core': 0.17.0
- "@eslint/core@0.17.0":
+ '@eslint/core@0.17.0':
dependencies:
- "@types/json-schema": 7.0.15
+ '@types/json-schema': 7.0.15
- "@eslint/eslintrc@3.3.1":
+ '@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
debug: 4.4.3(supports-color@5.5.0)
@@ -6639,42 +4079,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@eslint/js@9.39.1": {}
+ '@eslint/js@9.39.1': {}
- "@eslint/object-schema@2.1.7": {}
+ '@eslint/object-schema@2.1.7': {}
- "@eslint/plugin-kit@0.4.1":
+ '@eslint/plugin-kit@0.4.1':
dependencies:
- "@eslint/core": 0.17.0
+ '@eslint/core': 0.17.0
levn: 0.4.1
- "@humanfs/core@0.19.1": {}
+ '@humanfs/core@0.19.1': {}
- "@humanfs/node@0.16.7":
+ '@humanfs/node@0.16.7':
dependencies:
- "@humanfs/core": 0.19.1
- "@humanwhocodes/retry": 0.4.3
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.4.3
- "@humanwhocodes/module-importer@1.0.1": {}
+ '@humanwhocodes/module-importer@1.0.1': {}
- "@humanwhocodes/retry@0.4.3": {}
+ '@humanwhocodes/retry@0.4.3': {}
- "@hutson/parse-repository-url@3.0.2": {}
+ '@hutson/parse-repository-url@3.0.2': {}
- "@inquirer/external-editor@1.0.3(@types/node@22.19.1)":
+ '@inquirer/external-editor@1.0.3(@types/node@22.19.1)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.0
optionalDependencies:
- "@types/node": 22.19.1
+ '@types/node': 22.19.1
- "@isaacs/balanced-match@4.0.1": {}
+ '@isaacs/balanced-match@4.0.1': {}
- "@isaacs/brace-expansion@5.0.0":
+ '@isaacs/brace-expansion@5.0.0':
dependencies:
- "@isaacs/balanced-match": 4.0.1
+ '@isaacs/balanced-match': 4.0.1
- "@isaacs/cliui@8.0.2":
+ '@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
@@ -6683,9 +4123,9 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- "@isaacs/string-locale-compare@1.1.0": {}
+ '@isaacs/string-locale-compare@1.1.0': {}
- "@istanbuljs/load-nyc-config@1.1.0":
+ '@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
find-up: 4.1.0
@@ -6693,26 +4133,26 @@ snapshots:
js-yaml: 3.14.2
resolve-from: 5.0.0
- "@istanbuljs/schema@0.1.3": {}
+ '@istanbuljs/schema@0.1.3': {}
- "@jest/console@30.2.0":
+ '@jest/console@30.2.0':
dependencies:
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
chalk: 4.1.2
jest-message-util: 30.2.0
jest-util: 30.2.0
slash: 3.0.0
- "@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))":
+ '@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))':
dependencies:
- "@jest/console": 30.2.0
- "@jest/pattern": 30.0.1
- "@jest/reporters": 30.2.0
- "@jest/test-result": 30.2.0
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/console': 30.2.0
+ '@jest/pattern': 30.0.1
+ '@jest/reporters': 30.2.0
+ '@jest/test-result': 30.2.0
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 4.3.1
@@ -6740,60 +4180,60 @@ snapshots:
- supports-color
- ts-node
- "@jest/diff-sequences@30.0.1": {}
+ '@jest/diff-sequences@30.0.1': {}
- "@jest/environment@30.2.0":
+ '@jest/environment@30.2.0':
dependencies:
- "@jest/fake-timers": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/fake-timers': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
jest-mock: 30.2.0
- "@jest/expect-utils@30.2.0":
+ '@jest/expect-utils@30.2.0':
dependencies:
- "@jest/get-type": 30.1.0
+ '@jest/get-type': 30.1.0
- "@jest/expect@30.2.0":
+ '@jest/expect@30.2.0':
dependencies:
expect: 30.2.0
jest-snapshot: 30.2.0
transitivePeerDependencies:
- supports-color
- "@jest/fake-timers@30.2.0":
+ '@jest/fake-timers@30.2.0':
dependencies:
- "@jest/types": 30.2.0
- "@sinonjs/fake-timers": 13.0.5
- "@types/node": 22.19.1
+ '@jest/types': 30.2.0
+ '@sinonjs/fake-timers': 13.0.5
+ '@types/node': 22.19.1
jest-message-util: 30.2.0
jest-mock: 30.2.0
jest-util: 30.2.0
- "@jest/get-type@30.1.0": {}
+ '@jest/get-type@30.1.0': {}
- "@jest/globals@30.2.0":
+ '@jest/globals@30.2.0':
dependencies:
- "@jest/environment": 30.2.0
- "@jest/expect": 30.2.0
- "@jest/types": 30.2.0
+ '@jest/environment': 30.2.0
+ '@jest/expect': 30.2.0
+ '@jest/types': 30.2.0
jest-mock: 30.2.0
transitivePeerDependencies:
- supports-color
- "@jest/pattern@30.0.1":
+ '@jest/pattern@30.0.1':
dependencies:
- "@types/node": 22.19.1
+ '@types/node': 22.19.1
jest-regex-util: 30.0.1
- "@jest/reporters@30.2.0":
+ '@jest/reporters@30.2.0':
dependencies:
- "@bcoe/v8-coverage": 0.2.3
- "@jest/console": 30.2.0
- "@jest/test-result": 30.2.0
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
- "@jridgewell/trace-mapping": 0.3.31
- "@types/node": 22.19.1
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 30.2.0
+ '@jest/test-result': 30.2.0
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/node': 22.19.1
chalk: 4.1.2
collect-v8-coverage: 1.0.3
exit-x: 0.2.2
@@ -6813,46 +4253,46 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/schemas@29.6.3":
+ '@jest/schemas@29.6.3':
dependencies:
- "@sinclair/typebox": 0.27.8
+ '@sinclair/typebox': 0.27.8
- "@jest/schemas@30.0.5":
+ '@jest/schemas@30.0.5':
dependencies:
- "@sinclair/typebox": 0.34.41
+ '@sinclair/typebox': 0.34.41
- "@jest/snapshot-utils@30.2.0":
+ '@jest/snapshot-utils@30.2.0':
dependencies:
- "@jest/types": 30.2.0
+ '@jest/types': 30.2.0
chalk: 4.1.2
graceful-fs: 4.2.11
natural-compare: 1.4.0
- "@jest/source-map@30.0.1":
+ '@jest/source-map@30.0.1':
dependencies:
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/trace-mapping': 0.3.31
callsites: 3.1.0
graceful-fs: 4.2.11
- "@jest/test-result@30.2.0":
+ '@jest/test-result@30.2.0':
dependencies:
- "@jest/console": 30.2.0
- "@jest/types": 30.2.0
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jest/console': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.3
- "@jest/test-sequencer@30.2.0":
+ '@jest/test-sequencer@30.2.0':
dependencies:
- "@jest/test-result": 30.2.0
+ '@jest/test-result': 30.2.0
graceful-fs: 4.2.11
jest-haste-map: 30.2.0
slash: 3.0.0
- "@jest/transform@30.2.0":
+ '@jest/transform@30.2.0':
dependencies:
- "@babel/core": 7.28.5
- "@jest/types": 30.2.0
- "@jridgewell/trace-mapping": 0.3.31
+ '@babel/core': 7.28.5
+ '@jest/types': 30.2.0
+ '@jridgewell/trace-mapping': 0.3.31
babel-plugin-istanbul: 7.0.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -6868,48 +4308,48 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/types@30.2.0":
+ '@jest/types@30.2.0':
dependencies:
- "@jest/pattern": 30.0.1
- "@jest/schemas": 30.0.5
- "@types/istanbul-lib-coverage": 2.0.6
- "@types/istanbul-reports": 3.0.4
- "@types/node": 22.19.1
- "@types/yargs": 17.0.35
+ '@jest/pattern': 30.0.1
+ '@jest/schemas': 30.0.5
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 22.19.1
+ '@types/yargs': 17.0.35
chalk: 4.1.2
- "@jridgewell/gen-mapping@0.3.13":
+ '@jridgewell/gen-mapping@0.3.13':
dependencies:
- "@jridgewell/sourcemap-codec": 1.5.5
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
- "@jridgewell/remapping@2.3.5":
+ '@jridgewell/remapping@2.3.5':
dependencies:
- "@jridgewell/gen-mapping": 0.3.13
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- "@jridgewell/resolve-uri@3.1.2": {}
+ '@jridgewell/resolve-uri@3.1.2': {}
- "@jridgewell/sourcemap-codec@1.5.5": {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
- "@jridgewell/trace-mapping@0.3.31":
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
- "@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.5
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
- "@jridgewell/trace-mapping@0.3.9":
+ '@jridgewell/trace-mapping@0.3.9':
dependencies:
- "@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.5
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
- "@lerna/create@8.2.4(@types/node@22.19.1)(encoding@0.1.13)(typescript@5.9.3)":
+ '@lerna/create@8.2.4(@types/node@22.19.1)(encoding@0.1.13)(typescript@5.9.3)':
dependencies:
- "@npmcli/arborist": 7.5.4
- "@npmcli/package-json": 5.2.0
- "@npmcli/run-script": 8.1.0
- "@nx/devkit": 20.8.3(nx@20.8.3)
- "@octokit/plugin-enterprise-rest": 6.0.1
- "@octokit/rest": 20.1.2
+ '@npmcli/arborist': 7.5.4
+ '@npmcli/package-json': 5.2.0
+ '@npmcli/run-script': 8.1.0
+ '@nx/devkit': 20.8.3(nx@20.8.3)
+ '@octokit/plugin-enterprise-rest': 6.0.1
+ '@octokit/rest': 20.1.2
aproba: 2.0.0
byte-size: 8.1.1
chalk: 4.1.0
@@ -6974,9 +4414,9 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- - "@swc-node/register"
- - "@swc/core"
- - "@types/node"
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@types/node'
- babel-plugin-macros
- bluebird
- debug
@@ -6984,32 +4424,32 @@ snapshots:
- supports-color
- typescript
- "@napi-rs/wasm-runtime@0.2.12":
+ '@napi-rs/wasm-runtime@0.2.12':
dependencies:
- "@emnapi/core": 1.7.1
- "@emnapi/runtime": 1.7.1
- "@tybys/wasm-util": 0.10.1
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
optional: true
- "@napi-rs/wasm-runtime@0.2.4":
+ '@napi-rs/wasm-runtime@0.2.4':
dependencies:
- "@emnapi/core": 1.7.1
- "@emnapi/runtime": 1.7.1
- "@tybys/wasm-util": 0.9.0
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.9.0
- "@nodelib/fs.scandir@2.1.5":
+ '@nodelib/fs.scandir@2.1.5':
dependencies:
- "@nodelib/fs.stat": 2.0.5
+ '@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- "@nodelib/fs.stat@2.0.5": {}
+ '@nodelib/fs.stat@2.0.5': {}
- "@nodelib/fs.walk@1.2.8":
+ '@nodelib/fs.walk@1.2.8':
dependencies:
- "@nodelib/fs.scandir": 2.1.5
+ '@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- "@npmcli/agent@2.2.2":
+ '@npmcli/agent@2.2.2':
dependencies:
agent-base: 7.1.4
http-proxy-agent: 7.0.2
@@ -7019,19 +4459,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@npmcli/arborist@7.5.4":
- dependencies:
- "@isaacs/string-locale-compare": 1.1.0
- "@npmcli/fs": 3.1.1
- "@npmcli/installed-package-contents": 2.1.0
- "@npmcli/map-workspaces": 3.0.6
- "@npmcli/metavuln-calculator": 7.1.1
- "@npmcli/name-from-folder": 2.0.0
- "@npmcli/node-gyp": 3.0.0
- "@npmcli/package-json": 5.2.0
- "@npmcli/query": 3.1.0
- "@npmcli/redact": 2.0.1
- "@npmcli/run-script": 8.1.0
+ '@npmcli/arborist@7.5.4':
+ dependencies:
+ '@isaacs/string-locale-compare': 1.1.0
+ '@npmcli/fs': 3.1.1
+ '@npmcli/installed-package-contents': 2.1.0
+ '@npmcli/map-workspaces': 3.0.6
+ '@npmcli/metavuln-calculator': 7.1.1
+ '@npmcli/name-from-folder': 2.0.0
+ '@npmcli/node-gyp': 3.0.0
+ '@npmcli/package-json': 5.2.0
+ '@npmcli/query': 3.1.0
+ '@npmcli/redact': 2.0.1
+ '@npmcli/run-script': 8.1.0
bin-links: 4.0.4
cacache: 18.0.4
common-ancestor-path: 1.0.1
@@ -7060,13 +4500,13 @@ snapshots:
- bluebird
- supports-color
- "@npmcli/fs@3.1.1":
+ '@npmcli/fs@3.1.1':
dependencies:
semver: 7.7.3
- "@npmcli/git@5.0.8":
+ '@npmcli/git@5.0.8':
dependencies:
- "@npmcli/promise-spawn": 7.0.2
+ '@npmcli/promise-spawn': 7.0.2
ini: 4.1.3
lru-cache: 10.4.3
npm-pick-manifest: 9.1.0
@@ -7078,19 +4518,19 @@ snapshots:
transitivePeerDependencies:
- bluebird
- "@npmcli/installed-package-contents@2.1.0":
+ '@npmcli/installed-package-contents@2.1.0':
dependencies:
npm-bundled: 3.0.1
npm-normalize-package-bin: 3.0.1
- "@npmcli/map-workspaces@3.0.6":
+ '@npmcli/map-workspaces@3.0.6':
dependencies:
- "@npmcli/name-from-folder": 2.0.0
+ '@npmcli/name-from-folder': 2.0.0
glob: 10.5.0
minimatch: 9.0.5
read-package-json-fast: 3.0.2
- "@npmcli/metavuln-calculator@7.1.1":
+ '@npmcli/metavuln-calculator@7.1.1':
dependencies:
cacache: 18.0.4
json-parse-even-better-errors: 3.0.2
@@ -7101,13 +4541,13 @@ snapshots:
- bluebird
- supports-color
- "@npmcli/name-from-folder@2.0.0": {}
+ '@npmcli/name-from-folder@2.0.0': {}
- "@npmcli/node-gyp@3.0.0": {}
+ '@npmcli/node-gyp@3.0.0': {}
- "@npmcli/package-json@5.2.0":
+ '@npmcli/package-json@5.2.0':
dependencies:
- "@npmcli/git": 5.0.8
+ '@npmcli/git': 5.0.8
glob: 10.5.0
hosted-git-info: 7.0.2
json-parse-even-better-errors: 3.0.2
@@ -7117,21 +4557,21 @@ snapshots:
transitivePeerDependencies:
- bluebird
- "@npmcli/promise-spawn@7.0.2":
+ '@npmcli/promise-spawn@7.0.2':
dependencies:
which: 4.0.0
- "@npmcli/query@3.1.0":
+ '@npmcli/query@3.1.0':
dependencies:
postcss-selector-parser: 6.1.2
- "@npmcli/redact@2.0.1": {}
+ '@npmcli/redact@2.0.1': {}
- "@npmcli/run-script@8.1.0":
+ '@npmcli/run-script@8.1.0':
dependencies:
- "@npmcli/node-gyp": 3.0.0
- "@npmcli/package-json": 5.2.0
- "@npmcli/promise-spawn": 7.0.2
+ '@npmcli/node-gyp': 3.0.0
+ '@npmcli/package-json': 5.2.0
+ '@npmcli/promise-spawn': 7.0.2
node-gyp: 10.3.1
proc-log: 4.2.0
which: 4.0.0
@@ -7139,7 +4579,7 @@ snapshots:
- bluebird
- supports-color
- "@nx/devkit@20.8.3(nx@20.8.3)":
+ '@nx/devkit@20.8.3(nx@20.8.3)':
dependencies:
ejs: 3.1.10
enquirer: 2.3.6
@@ -7151,244 +4591,244 @@ snapshots:
tslib: 2.8.1
yargs-parser: 21.1.1
- "@nx/nx-darwin-arm64@20.8.3":
+ '@nx/nx-darwin-arm64@20.8.3':
optional: true
- "@nx/nx-darwin-x64@20.8.3":
+ '@nx/nx-darwin-x64@20.8.3':
optional: true
- "@nx/nx-freebsd-x64@20.8.3":
+ '@nx/nx-freebsd-x64@20.8.3':
optional: true
- "@nx/nx-linux-arm-gnueabihf@20.8.3":
+ '@nx/nx-linux-arm-gnueabihf@20.8.3':
optional: true
- "@nx/nx-linux-arm64-gnu@20.8.3":
+ '@nx/nx-linux-arm64-gnu@20.8.3':
optional: true
- "@nx/nx-linux-arm64-musl@20.8.3":
+ '@nx/nx-linux-arm64-musl@20.8.3':
optional: true
- "@nx/nx-linux-x64-gnu@20.8.3":
+ '@nx/nx-linux-x64-gnu@20.8.3':
optional: true
- "@nx/nx-linux-x64-musl@20.8.3":
+ '@nx/nx-linux-x64-musl@20.8.3':
optional: true
- "@nx/nx-win32-arm64-msvc@20.8.3":
+ '@nx/nx-win32-arm64-msvc@20.8.3':
optional: true
- "@nx/nx-win32-x64-msvc@20.8.3":
+ '@nx/nx-win32-x64-msvc@20.8.3':
optional: true
- "@octokit/auth-token@4.0.0": {}
+ '@octokit/auth-token@4.0.0': {}
- "@octokit/core@5.2.2":
+ '@octokit/core@5.2.2':
dependencies:
- "@octokit/auth-token": 4.0.0
- "@octokit/graphql": 7.1.1
- "@octokit/request": 8.4.1
- "@octokit/request-error": 5.1.1
- "@octokit/types": 13.10.0
+ '@octokit/auth-token': 4.0.0
+ '@octokit/graphql': 7.1.1
+ '@octokit/request': 8.4.1
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
before-after-hook: 2.2.3
universal-user-agent: 6.0.1
- "@octokit/endpoint@9.0.6":
+ '@octokit/endpoint@9.0.6':
dependencies:
- "@octokit/types": 13.10.0
+ '@octokit/types': 13.10.0
universal-user-agent: 6.0.1
- "@octokit/graphql@7.1.1":
+ '@octokit/graphql@7.1.1':
dependencies:
- "@octokit/request": 8.4.1
- "@octokit/types": 13.10.0
+ '@octokit/request': 8.4.1
+ '@octokit/types': 13.10.0
universal-user-agent: 6.0.1
- "@octokit/openapi-types@24.2.0": {}
+ '@octokit/openapi-types@24.2.0': {}
- "@octokit/plugin-enterprise-rest@6.0.1": {}
+ '@octokit/plugin-enterprise-rest@6.0.1': {}
- "@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)":
+ '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)':
dependencies:
- "@octokit/core": 5.2.2
- "@octokit/types": 13.10.0
+ '@octokit/core': 5.2.2
+ '@octokit/types': 13.10.0
- "@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)":
+ '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)':
dependencies:
- "@octokit/core": 5.2.2
+ '@octokit/core': 5.2.2
- "@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)":
+ '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)':
dependencies:
- "@octokit/core": 5.2.2
- "@octokit/types": 13.10.0
+ '@octokit/core': 5.2.2
+ '@octokit/types': 13.10.0
- "@octokit/request-error@5.1.1":
+ '@octokit/request-error@5.1.1':
dependencies:
- "@octokit/types": 13.10.0
+ '@octokit/types': 13.10.0
deprecation: 2.3.1
once: 1.4.0
- "@octokit/request@8.4.1":
+ '@octokit/request@8.4.1':
dependencies:
- "@octokit/endpoint": 9.0.6
- "@octokit/request-error": 5.1.1
- "@octokit/types": 13.10.0
+ '@octokit/endpoint': 9.0.6
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
universal-user-agent: 6.0.1
- "@octokit/rest@20.1.2":
+ '@octokit/rest@20.1.2':
dependencies:
- "@octokit/core": 5.2.2
- "@octokit/plugin-paginate-rest": 11.4.4-cjs.2(@octokit/core@5.2.2)
- "@octokit/plugin-request-log": 4.0.1(@octokit/core@5.2.2)
- "@octokit/plugin-rest-endpoint-methods": 13.3.2-cjs.1(@octokit/core@5.2.2)
+ '@octokit/core': 5.2.2
+ '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.2)
+ '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2)
+ '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2)
- "@octokit/types@13.10.0":
+ '@octokit/types@13.10.0':
dependencies:
- "@octokit/openapi-types": 24.2.0
+ '@octokit/openapi-types': 24.2.0
- "@pkgjs/parseargs@0.11.0":
+ '@pkgjs/parseargs@0.11.0':
optional: true
- "@pkgr/core@0.2.9": {}
+ '@pkgr/core@0.2.9': {}
- "@sigstore/bundle@2.3.2":
+ '@sigstore/bundle@2.3.2':
dependencies:
- "@sigstore/protobuf-specs": 0.3.3
+ '@sigstore/protobuf-specs': 0.3.3
- "@sigstore/core@1.1.0": {}
+ '@sigstore/core@1.1.0': {}
- "@sigstore/protobuf-specs@0.3.3": {}
+ '@sigstore/protobuf-specs@0.3.3': {}
- "@sigstore/sign@2.3.2":
+ '@sigstore/sign@2.3.2':
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.3
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.3
make-fetch-happen: 13.0.1
proc-log: 4.2.0
promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- "@sigstore/tuf@2.3.4":
+ '@sigstore/tuf@2.3.4':
dependencies:
- "@sigstore/protobuf-specs": 0.3.3
+ '@sigstore/protobuf-specs': 0.3.3
tuf-js: 2.2.1
transitivePeerDependencies:
- supports-color
- "@sigstore/verify@1.2.1":
+ '@sigstore/verify@1.2.1':
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.3
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.3
- "@sinclair/typebox@0.27.8": {}
+ '@sinclair/typebox@0.27.8': {}
- "@sinclair/typebox@0.34.41": {}
+ '@sinclair/typebox@0.34.41': {}
- "@sindresorhus/merge-streams@4.0.0": {}
+ '@sindresorhus/merge-streams@4.0.0': {}
- "@sinonjs/commons@3.0.1":
+ '@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
- "@sinonjs/fake-timers@13.0.5":
+ '@sinonjs/fake-timers@13.0.5':
dependencies:
- "@sinonjs/commons": 3.0.1
+ '@sinonjs/commons': 3.0.1
- "@tsconfig/node10@1.0.12": {}
+ '@tsconfig/node10@1.0.12': {}
- "@tsconfig/node12@1.0.11": {}
+ '@tsconfig/node12@1.0.11': {}
- "@tsconfig/node14@1.0.3": {}
+ '@tsconfig/node14@1.0.3': {}
- "@tsconfig/node16@1.0.4": {}
+ '@tsconfig/node16@1.0.4': {}
- "@tufjs/canonical-json@2.0.0": {}
+ '@tufjs/canonical-json@2.0.0': {}
- "@tufjs/models@2.0.1":
+ '@tufjs/models@2.0.1':
dependencies:
- "@tufjs/canonical-json": 2.0.0
+ '@tufjs/canonical-json': 2.0.0
minimatch: 9.0.5
- "@tybys/wasm-util@0.10.1":
+ '@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
optional: true
- "@tybys/wasm-util@0.9.0":
+ '@tybys/wasm-util@0.9.0':
dependencies:
tslib: 2.8.1
- "@types/babel__core@7.20.5":
+ '@types/babel__core@7.20.5':
dependencies:
- "@babel/parser": 7.28.5
- "@babel/types": 7.28.5
- "@types/babel__generator": 7.27.0
- "@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
+ '@types/babel__generator': 7.27.0
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.28.0
- "@types/babel__generator@7.27.0":
+ '@types/babel__generator@7.27.0':
dependencies:
- "@babel/types": 7.28.5
+ '@babel/types': 7.28.5
- "@types/babel__template@7.4.4":
+ '@types/babel__template@7.4.4':
dependencies:
- "@babel/parser": 7.28.5
- "@babel/types": 7.28.5
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
- "@types/babel__traverse@7.28.0":
+ '@types/babel__traverse@7.28.0':
dependencies:
- "@babel/types": 7.28.5
+ '@babel/types': 7.28.5
- "@types/estree@1.0.8": {}
+ '@types/estree@1.0.8': {}
- "@types/isomorphic-fetch@0.0.39": {}
+ '@types/isomorphic-fetch@0.0.39': {}
- "@types/istanbul-lib-coverage@2.0.6": {}
+ '@types/istanbul-lib-coverage@2.0.6': {}
- "@types/istanbul-lib-report@3.0.3":
+ '@types/istanbul-lib-report@3.0.3':
dependencies:
- "@types/istanbul-lib-coverage": 2.0.6
+ '@types/istanbul-lib-coverage': 2.0.6
- "@types/istanbul-reports@3.0.4":
+ '@types/istanbul-reports@3.0.4':
dependencies:
- "@types/istanbul-lib-report": 3.0.3
+ '@types/istanbul-lib-report': 3.0.3
- "@types/jest@30.0.0":
+ '@types/jest@30.0.0':
dependencies:
expect: 30.2.0
pretty-format: 30.2.0
- "@types/json-schema@7.0.15": {}
+ '@types/json-schema@7.0.15': {}
- "@types/minimatch@3.0.5": {}
+ '@types/minimatch@3.0.5': {}
- "@types/minimist@1.2.5": {}
+ '@types/minimist@1.2.5': {}
- "@types/node@22.19.1":
+ '@types/node@22.19.1':
dependencies:
undici-types: 6.21.0
- "@types/normalize-package-data@2.4.4": {}
+ '@types/normalize-package-data@2.4.4': {}
- "@types/stack-utils@2.0.3": {}
+ '@types/stack-utils@2.0.3': {}
- "@types/yargs-parser@21.0.3": {}
+ '@types/yargs-parser@21.0.3': {}
- "@types/yargs@17.0.35":
+ '@types/yargs@17.0.35':
dependencies:
- "@types/yargs-parser": 21.0.3
+ '@types/yargs-parser': 21.0.3
- "@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)":
+ '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)':
dependencies:
- "@eslint-community/regexpp": 4.12.2
- "@typescript-eslint/parser": 8.48.0(eslint@9.39.1)(typescript@5.9.3)
- "@typescript-eslint/scope-manager": 8.48.0
- "@typescript-eslint/type-utils": 8.48.0(eslint@9.39.1)(typescript@5.9.3)
- "@typescript-eslint/utils": 8.48.0(eslint@9.39.1)(typescript@5.9.3)
- "@typescript-eslint/visitor-keys": 8.48.0
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.48.0(eslint@9.39.1)(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/type-utils': 8.48.0(eslint@9.39.1)(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1)(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
eslint: 9.39.1
graphemer: 1.4.0
ignore: 7.0.5
@@ -7398,41 +4838,41 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3)":
+ '@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3)':
dependencies:
- "@typescript-eslint/scope-manager": 8.48.0
- "@typescript-eslint/types": 8.48.0
- "@typescript-eslint/typescript-estree": 8.48.0(typescript@5.9.3)
- "@typescript-eslint/visitor-keys": 8.48.0
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
debug: 4.4.3(supports-color@5.5.0)
eslint: 9.39.1
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/project-service@8.48.0(typescript@5.9.3)":
+ '@typescript-eslint/project-service@8.48.0(typescript@5.9.3)':
dependencies:
- "@typescript-eslint/tsconfig-utils": 8.48.0(typescript@5.9.3)
- "@typescript-eslint/types": 8.48.0
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.0
debug: 4.4.3(supports-color@5.5.0)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/scope-manager@8.48.0":
+ '@typescript-eslint/scope-manager@8.48.0':
dependencies:
- "@typescript-eslint/types": 8.48.0
- "@typescript-eslint/visitor-keys": 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
- "@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.9.3)":
+ '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.9.3)':
dependencies:
typescript: 5.9.3
- "@typescript-eslint/type-utils@8.48.0(eslint@9.39.1)(typescript@5.9.3)":
+ '@typescript-eslint/type-utils@8.48.0(eslint@9.39.1)(typescript@5.9.3)':
dependencies:
- "@typescript-eslint/types": 8.48.0
- "@typescript-eslint/typescript-estree": 8.48.0(typescript@5.9.3)
- "@typescript-eslint/utils": 8.48.0(eslint@9.39.1)(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.39.1)(typescript@5.9.3)
debug: 4.4.3(supports-color@5.5.0)
eslint: 9.39.1
ts-api-utils: 2.1.0(typescript@5.9.3)
@@ -7440,14 +4880,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/types@8.48.0": {}
+ '@typescript-eslint/types@8.48.0': {}
- "@typescript-eslint/typescript-estree@8.48.0(typescript@5.9.3)":
+ '@typescript-eslint/typescript-estree@8.48.0(typescript@5.9.3)':
dependencies:
- "@typescript-eslint/project-service": 8.48.0(typescript@5.9.3)
- "@typescript-eslint/tsconfig-utils": 8.48.0(typescript@5.9.3)
- "@typescript-eslint/types": 8.48.0
- "@typescript-eslint/visitor-keys": 8.48.0
+ '@typescript-eslint/project-service': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
debug: 4.4.3(supports-color@5.5.0)
minimatch: 9.0.5
semver: 7.7.3
@@ -7457,91 +4897,91 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/utils@8.48.0(eslint@9.39.1)(typescript@5.9.3)":
+ '@typescript-eslint/utils@8.48.0(eslint@9.39.1)(typescript@5.9.3)':
dependencies:
- "@eslint-community/eslint-utils": 4.9.0(eslint@9.39.1)
- "@typescript-eslint/scope-manager": 8.48.0
- "@typescript-eslint/types": 8.48.0
- "@typescript-eslint/typescript-estree": 8.48.0(typescript@5.9.3)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.9.3)
eslint: 9.39.1
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/visitor-keys@8.48.0":
+ '@typescript-eslint/visitor-keys@8.48.0':
dependencies:
- "@typescript-eslint/types": 8.48.0
+ '@typescript-eslint/types': 8.48.0
eslint-visitor-keys: 4.2.1
- "@ungap/structured-clone@1.3.0": {}
+ '@ungap/structured-clone@1.3.0': {}
- "@unrs/resolver-binding-android-arm-eabi@1.11.1":
+ '@unrs/resolver-binding-android-arm-eabi@1.11.1':
optional: true
- "@unrs/resolver-binding-android-arm64@1.11.1":
+ '@unrs/resolver-binding-android-arm64@1.11.1':
optional: true
- "@unrs/resolver-binding-darwin-arm64@1.11.1":
+ '@unrs/resolver-binding-darwin-arm64@1.11.1':
optional: true
- "@unrs/resolver-binding-darwin-x64@1.11.1":
+ '@unrs/resolver-binding-darwin-x64@1.11.1':
optional: true
- "@unrs/resolver-binding-freebsd-x64@1.11.1":
+ '@unrs/resolver-binding-freebsd-x64@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
+ '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-arm64-musl@1.11.1":
+ '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
+ '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
+ '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-x64-gnu@1.11.1":
+ '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
optional: true
- "@unrs/resolver-binding-linux-x64-musl@1.11.1":
+ '@unrs/resolver-binding-linux-x64-musl@1.11.1':
optional: true
- "@unrs/resolver-binding-wasm32-wasi@1.11.1":
+ '@unrs/resolver-binding-wasm32-wasi@1.11.1':
dependencies:
- "@napi-rs/wasm-runtime": 0.2.12
+ '@napi-rs/wasm-runtime': 0.2.12
optional: true
- "@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
+ '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
optional: true
- "@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
+ '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
optional: true
- "@unrs/resolver-binding-win32-x64-msvc@1.11.1":
+ '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- "@yarnpkg/lockfile@1.1.0": {}
+ '@yarnpkg/lockfile@1.1.0': {}
- "@yarnpkg/parsers@3.0.2":
+ '@yarnpkg/parsers@3.0.2':
dependencies:
js-yaml: 3.14.2
tslib: 2.8.1
- "@zkochan/js-yaml@0.0.7":
+ '@zkochan/js-yaml@0.0.7':
dependencies:
argparse: 2.0.1
@@ -7635,9 +5075,9 @@ snapshots:
babel-jest@30.2.0(@babel/core@7.28.5):
dependencies:
- "@babel/core": 7.28.5
- "@jest/transform": 30.2.0
- "@types/babel__core": 7.20.5
+ '@babel/core': 7.28.5
+ '@jest/transform': 30.2.0
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 7.0.1
babel-preset-jest: 30.2.0(@babel/core@7.28.5)
chalk: 4.1.2
@@ -7648,9 +5088,9 @@ snapshots:
babel-plugin-istanbul@7.0.1:
dependencies:
- "@babel/helper-plugin-utils": 7.27.1
- "@istanbuljs/load-nyc-config": 1.1.0
- "@istanbuljs/schema": 0.1.3
+ '@babel/helper-plugin-utils': 7.27.1
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 6.0.3
test-exclude: 6.0.0
transitivePeerDependencies:
@@ -7658,30 +5098,30 @@ snapshots:
babel-plugin-jest-hoist@30.2.0:
dependencies:
- "@types/babel__core": 7.20.5
+ '@types/babel__core': 7.20.5
babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5):
dependencies:
- "@babel/core": 7.28.5
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.28.5)
- "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.28.5)
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.28.5)
- "@babel/plugin-syntax-import-attributes": 7.27.1(@babel/core@7.28.5)
- "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.28.5)
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.28.5)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.28.5)
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.28.5)
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.28.5)
- "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.28.5)
+ '@babel/core': 7.28.5
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5)
babel-preset-jest@30.2.0(@babel/core@7.28.5):
dependencies:
- "@babel/core": 7.28.5
+ '@babel/core': 7.28.5
babel-plugin-jest-hoist: 30.2.0
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
@@ -7748,7 +5188,7 @@ snapshots:
cacache@18.0.4:
dependencies:
- "@npmcli/fs": 3.1.1
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
glob: 10.5.0
lru-cache: 10.4.3
@@ -8131,7 +5571,7 @@ snapshots:
dependencies:
eslint: 9.39.1
optionalDependencies:
- "@typescript-eslint/eslint-plugin": 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)
eslint-scope@8.4.0:
dependencies:
@@ -8144,18 +5584,18 @@ snapshots:
eslint@9.39.1:
dependencies:
- "@eslint-community/eslint-utils": 4.9.0(eslint@9.39.1)
- "@eslint-community/regexpp": 4.12.2
- "@eslint/config-array": 0.21.1
- "@eslint/config-helpers": 0.4.2
- "@eslint/core": 0.17.0
- "@eslint/eslintrc": 3.3.1
- "@eslint/js": 9.39.1
- "@eslint/plugin-kit": 0.4.1
- "@humanfs/node": 0.16.7
- "@humanwhocodes/module-importer": 1.0.1
- "@humanwhocodes/retry": 0.4.3
- "@types/estree": 1.0.8
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1)
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.21.1
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
+ '@eslint/eslintrc': 3.3.1
+ '@eslint/js': 9.39.1
+ '@eslint/plugin-kit': 0.4.1
+ '@humanfs/node': 0.16.7
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.3
+ '@types/estree': 1.0.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
@@ -8231,8 +5671,8 @@ snapshots:
expect@30.2.0:
dependencies:
- "@jest/expect-utils": 30.2.0
- "@jest/get-type": 30.1.0
+ '@jest/expect-utils': 30.2.0
+ '@jest/get-type': 30.1.0
jest-matcher-utils: 30.2.0
jest-message-util: 30.2.0
jest-mock: 30.2.0
@@ -8246,8 +5686,8 @@ snapshots:
fast-glob@3.3.3:
dependencies:
- "@nodelib/fs.stat": 2.0.5
- "@nodelib/fs.walk": 1.2.8
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.8
@@ -8372,7 +5812,7 @@ snapshots:
get-pkg-repo@4.2.1:
dependencies:
- "@hutson/parse-repository-url": 3.0.2
+ '@hutson/parse-repository-url': 3.0.2
hosted-git-info: 4.1.0
through2: 2.0.5
yargs: 16.2.0
@@ -8460,7 +5900,7 @@ snapshots:
globby@15.0.0:
dependencies:
- "@sindresorhus/merge-streams": 4.0.0
+ '@sindresorhus/merge-streams': 4.0.0
fast-glob: 3.3.3
ignore: 7.0.5
path-type: 6.0.0
@@ -8583,7 +6023,7 @@ snapshots:
init-package-json@6.0.3:
dependencies:
- "@npmcli/package-json": 5.2.0
+ '@npmcli/package-json': 5.2.0
npm-package-arg: 11.0.2
promzard: 1.0.2
read: 3.0.1
@@ -8595,7 +6035,7 @@ snapshots:
inquirer@8.2.7(@types/node@22.19.1):
dependencies:
- "@inquirer/external-editor": 1.0.3(@types/node@22.19.1)
+ '@inquirer/external-editor': 1.0.3(@types/node@22.19.1)
ansi-escapes: 4.3.2
chalk: 4.1.2
cli-cursor: 3.1.0
@@ -8611,7 +6051,7 @@ snapshots:
through: 2.3.8
wrap-ansi: 6.2.0
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
ip-address@10.1.0: {}
@@ -8694,9 +6134,9 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- "@babel/core": 7.28.5
- "@babel/parser": 7.28.5
- "@istanbuljs/schema": 0.1.3
+ '@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:
@@ -8710,7 +6150,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/trace-mapping': 0.3.31
debug: 4.4.3(supports-color@5.5.0)
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
@@ -8723,9 +6163,9 @@ snapshots:
jackspeak@3.4.3:
dependencies:
- "@isaacs/cliui": 8.0.2
+ '@isaacs/cliui': 8.0.2
optionalDependencies:
- "@pkgjs/parseargs": 0.11.0
+ '@pkgjs/parseargs': 0.11.0
jake@10.9.4:
dependencies:
@@ -8741,11 +6181,11 @@ snapshots:
jest-circus@30.2.0:
dependencies:
- "@jest/environment": 30.2.0
- "@jest/expect": 30.2.0
- "@jest/test-result": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/environment': 30.2.0
+ '@jest/expect': 30.2.0
+ '@jest/test-result': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
chalk: 4.1.2
co: 4.6.0
dedent: 1.7.0
@@ -8767,9 +6207,9 @@ snapshots:
jest-cli@30.2.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
- "@jest/core": 30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- "@jest/test-result": 30.2.0
- "@jest/types": 30.2.0
+ '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ '@jest/test-result': 30.2.0
+ '@jest/types': 30.2.0
chalk: 4.1.2
exit-x: 0.2.2
import-local: 3.2.0
@@ -8778,7 +6218,7 @@ snapshots:
jest-validate: 30.2.0
yargs: 17.7.2
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- esbuild-register
- supports-color
@@ -8786,11 +6226,11 @@ snapshots:
jest-config@30.2.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
- "@babel/core": 7.28.5
- "@jest/get-type": 30.1.0
- "@jest/pattern": 30.0.1
- "@jest/test-sequencer": 30.2.0
- "@jest/types": 30.2.0
+ '@babel/core': 7.28.5
+ '@jest/get-type': 30.1.0
+ '@jest/pattern': 30.0.1
+ '@jest/test-sequencer': 30.2.0
+ '@jest/types': 30.2.0
babel-jest: 30.2.0(@babel/core@7.28.5)
chalk: 4.1.2
ci-info: 4.3.1
@@ -8811,7 +6251,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- "@types/node": 22.19.1
+ '@types/node': 22.19.1
ts-node: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
transitivePeerDependencies:
- babel-plugin-macros
@@ -8826,8 +6266,8 @@ snapshots:
jest-diff@30.2.0:
dependencies:
- "@jest/diff-sequences": 30.0.1
- "@jest/get-type": 30.1.0
+ '@jest/diff-sequences': 30.0.1
+ '@jest/get-type': 30.1.0
chalk: 4.1.2
pretty-format: 30.2.0
@@ -8837,18 +6277,18 @@ snapshots:
jest-each@30.2.0:
dependencies:
- "@jest/get-type": 30.1.0
- "@jest/types": 30.2.0
+ '@jest/get-type': 30.1.0
+ '@jest/types': 30.2.0
chalk: 4.1.2
jest-util: 30.2.0
pretty-format: 30.2.0
jest-environment-node@30.2.0:
dependencies:
- "@jest/environment": 30.2.0
- "@jest/fake-timers": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/environment': 30.2.0
+ '@jest/fake-timers': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
jest-mock: 30.2.0
jest-util: 30.2.0
jest-validate: 30.2.0
@@ -8857,8 +6297,8 @@ snapshots:
jest-haste-map@30.2.0:
dependencies:
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -8872,21 +6312,21 @@ snapshots:
jest-leak-detector@30.2.0:
dependencies:
- "@jest/get-type": 30.1.0
+ '@jest/get-type': 30.1.0
pretty-format: 30.2.0
jest-matcher-utils@30.2.0:
dependencies:
- "@jest/get-type": 30.1.0
+ '@jest/get-type': 30.1.0
chalk: 4.1.2
jest-diff: 30.2.0
pretty-format: 30.2.0
jest-message-util@30.2.0:
dependencies:
- "@babel/code-frame": 7.27.1
- "@jest/types": 30.2.0
- "@types/stack-utils": 2.0.3
+ '@babel/code-frame': 7.27.1
+ '@jest/types': 30.2.0
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.8
@@ -8896,8 +6336,8 @@ snapshots:
jest-mock@30.2.0:
dependencies:
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
jest-util: 30.2.0
jest-pnp-resolver@1.2.3(jest-resolve@30.2.0):
@@ -8926,12 +6366,12 @@ snapshots:
jest-runner@30.2.0:
dependencies:
- "@jest/console": 30.2.0
- "@jest/environment": 30.2.0
- "@jest/test-result": 30.2.0
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/console': 30.2.0
+ '@jest/environment': 30.2.0
+ '@jest/test-result': 30.2.0
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
chalk: 4.1.2
emittery: 0.13.1
exit-x: 0.2.2
@@ -8953,14 +6393,14 @@ snapshots:
jest-runtime@30.2.0:
dependencies:
- "@jest/environment": 30.2.0
- "@jest/fake-timers": 30.2.0
- "@jest/globals": 30.2.0
- "@jest/source-map": 30.0.1
- "@jest/test-result": 30.2.0
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/environment': 30.2.0
+ '@jest/fake-timers': 30.2.0
+ '@jest/globals': 30.2.0
+ '@jest/source-map': 30.0.1
+ '@jest/test-result': 30.2.0
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
chalk: 4.1.2
cjs-module-lexer: 2.1.1
collect-v8-coverage: 1.0.3
@@ -8980,16 +6420,16 @@ snapshots:
jest-snapshot@30.2.0:
dependencies:
- "@babel/core": 7.28.5
- "@babel/generator": 7.28.5
- "@babel/plugin-syntax-jsx": 7.27.1(@babel/core@7.28.5)
- "@babel/plugin-syntax-typescript": 7.27.1(@babel/core@7.28.5)
- "@babel/types": 7.28.5
- "@jest/expect-utils": 30.2.0
- "@jest/get-type": 30.1.0
- "@jest/snapshot-utils": 30.2.0
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
+ '@babel/core': 7.28.5
+ '@babel/generator': 7.28.5
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
+ '@babel/types': 7.28.5
+ '@jest/expect-utils': 30.2.0
+ '@jest/get-type': 30.1.0
+ '@jest/snapshot-utils': 30.2.0
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
chalk: 4.1.2
expect: 30.2.0
@@ -9006,8 +6446,8 @@ snapshots:
jest-util@30.2.0:
dependencies:
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
chalk: 4.1.2
ci-info: 4.3.1
graceful-fs: 4.2.11
@@ -9015,8 +6455,8 @@ snapshots:
jest-validate@30.2.0:
dependencies:
- "@jest/get-type": 30.1.0
- "@jest/types": 30.2.0
+ '@jest/get-type': 30.1.0
+ '@jest/types': 30.2.0
camelcase: 6.3.0
chalk: 4.1.2
leven: 3.1.0
@@ -9024,9 +6464,9 @@ snapshots:
jest-watcher@30.2.0:
dependencies:
- "@jest/test-result": 30.2.0
- "@jest/types": 30.2.0
- "@types/node": 22.19.1
+ '@jest/test-result': 30.2.0
+ '@jest/types': 30.2.0
+ '@types/node': 22.19.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -9035,20 +6475,20 @@ snapshots:
jest-worker@30.2.0:
dependencies:
- "@types/node": 22.19.1
- "@ungap/structured-clone": 1.3.0
+ '@types/node': 22.19.1
+ '@ungap/structured-clone': 1.3.0
jest-util: 30.2.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest@30.2.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
- "@jest/core": 30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- "@jest/types": 30.2.0
+ '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ '@jest/types': 30.2.0
import-local: 3.2.0
jest-cli: 30.2.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- esbuild-register
- supports-color
@@ -9113,13 +6553,13 @@ snapshots:
lerna@8.2.4(@types/node@22.19.1)(encoding@0.1.13):
dependencies:
- "@lerna/create": 8.2.4(@types/node@22.19.1)(encoding@0.1.13)(typescript@5.9.3)
- "@npmcli/arborist": 7.5.4
- "@npmcli/package-json": 5.2.0
- "@npmcli/run-script": 8.1.0
- "@nx/devkit": 20.8.3(nx@20.8.3)
- "@octokit/plugin-enterprise-rest": 6.0.1
- "@octokit/rest": 20.1.2
+ '@lerna/create': 8.2.4(@types/node@22.19.1)(encoding@0.1.13)(typescript@5.9.3)
+ '@npmcli/arborist': 7.5.4
+ '@npmcli/package-json': 5.2.0
+ '@npmcli/run-script': 8.1.0
+ '@nx/devkit': 20.8.3(nx@20.8.3)
+ '@octokit/plugin-enterprise-rest': 6.0.1
+ '@octokit/rest': 20.1.2
aproba: 2.0.0
byte-size: 8.1.1
chalk: 4.1.0
@@ -9193,9 +6633,9 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- - "@swc-node/register"
- - "@swc/core"
- - "@types/node"
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@types/node'
- babel-plugin-macros
- bluebird
- debug
@@ -9302,7 +6742,7 @@ snapshots:
make-fetch-happen@13.0.1:
dependencies:
- "@npmcli/agent": 2.2.2
+ '@npmcli/agent': 2.2.2
cacache: 18.0.4
http-cache-semantics: 4.2.0
is-lambda: 1.0.1
@@ -9331,7 +6771,7 @@ snapshots:
meow@8.1.2:
dependencies:
- "@types/minimist": 1.2.5
+ '@types/minimist': 1.2.5
camelcase-keys: 6.2.2
decamelize-keys: 1.1.1
hard-rejection: 2.1.0
@@ -9364,7 +6804,7 @@ snapshots:
minimatch@10.1.1:
dependencies:
- "@isaacs/brace-expansion": 5.0.0
+ '@isaacs/brace-expansion': 5.0.0
minimatch@3.0.5:
dependencies:
@@ -9445,7 +6885,7 @@ snapshots:
multimatch@5.0.0:
dependencies:
- "@types/minimatch": 3.0.5
+ '@types/minimatch': 3.0.5
array-differ: 3.0.0
array-union: 2.1.0
arrify: 2.0.1
@@ -9564,7 +7004,7 @@ snapshots:
npm-registry-fetch@17.1.0:
dependencies:
- "@npmcli/redact": 2.0.1
+ '@npmcli/redact': 2.0.1
jsonparse: 1.3.1
make-fetch-happen: 13.0.1
minipass: 7.1.2
@@ -9581,10 +7021,10 @@ snapshots:
nx@20.8.3:
dependencies:
- "@napi-rs/wasm-runtime": 0.2.4
- "@yarnpkg/lockfile": 1.1.0
- "@yarnpkg/parsers": 3.0.2
- "@zkochan/js-yaml": 0.0.7
+ '@napi-rs/wasm-runtime': 0.2.4
+ '@yarnpkg/lockfile': 1.1.0
+ '@yarnpkg/parsers': 3.0.2
+ '@zkochan/js-yaml': 0.0.7
axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
@@ -9616,16 +7056,16 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- "@nx/nx-darwin-arm64": 20.8.3
- "@nx/nx-darwin-x64": 20.8.3
- "@nx/nx-freebsd-x64": 20.8.3
- "@nx/nx-linux-arm-gnueabihf": 20.8.3
- "@nx/nx-linux-arm64-gnu": 20.8.3
- "@nx/nx-linux-arm64-musl": 20.8.3
- "@nx/nx-linux-x64-gnu": 20.8.3
- "@nx/nx-linux-x64-musl": 20.8.3
- "@nx/nx-win32-arm64-msvc": 20.8.3
- "@nx/nx-win32-x64-msvc": 20.8.3
+ '@nx/nx-darwin-arm64': 20.8.3
+ '@nx/nx-darwin-x64': 20.8.3
+ '@nx/nx-freebsd-x64': 20.8.3
+ '@nx/nx-linux-arm-gnueabihf': 20.8.3
+ '@nx/nx-linux-arm64-gnu': 20.8.3
+ '@nx/nx-linux-arm64-musl': 20.8.3
+ '@nx/nx-linux-x64-gnu': 20.8.3
+ '@nx/nx-linux-x64-musl': 20.8.3
+ '@nx/nx-win32-arm64-msvc': 20.8.3
+ '@nx/nx-win32-x64-msvc': 20.8.3
transitivePeerDependencies:
- debug
@@ -9744,11 +7184,11 @@ snapshots:
pacote@18.0.6:
dependencies:
- "@npmcli/git": 5.0.8
- "@npmcli/installed-package-contents": 2.1.0
- "@npmcli/package-json": 5.2.0
- "@npmcli/promise-spawn": 7.0.2
- "@npmcli/run-script": 8.1.0
+ '@npmcli/git': 5.0.8
+ '@npmcli/installed-package-contents': 2.1.0
+ '@npmcli/package-json': 5.2.0
+ '@npmcli/promise-spawn': 7.0.2
+ '@npmcli/run-script': 8.1.0
cacache: 18.0.4
fs-minipass: 3.0.3
minipass: 7.1.2
@@ -9782,7 +7222,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- "@babel/code-frame": 7.27.1
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -9856,13 +7296,13 @@ snapshots:
pretty-format@29.7.0:
dependencies:
- "@jest/schemas": 29.6.3
+ '@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.3.1
pretty-format@30.2.0:
dependencies:
- "@jest/schemas": 30.0.5
+ '@jest/schemas': 30.0.5
ansi-styles: 5.2.0
react-is: 18.3.1
@@ -9929,7 +7369,7 @@ snapshots:
read-pkg@5.2.0:
dependencies:
- "@types/normalize-package-data": 2.4.4
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
@@ -10046,12 +7486,12 @@ snapshots:
sigstore@2.3.1:
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.3
- "@sigstore/sign": 2.3.2
- "@sigstore/tuf": 2.3.4
- "@sigstore/verify": 1.2.1
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.3
+ '@sigstore/sign': 2.3.2
+ '@sigstore/tuf': 2.3.4
+ '@sigstore/verify': 1.2.1
transitivePeerDependencies:
- supports-color
@@ -10184,7 +7624,7 @@ snapshots:
synckit@0.11.11:
dependencies:
- "@pkgr/core": 0.2.9
+ '@pkgr/core': 0.2.9
tar-stream@2.2.0:
dependencies:
@@ -10207,7 +7647,7 @@ snapshots:
test-exclude@6.0.0:
dependencies:
- "@istanbuljs/schema": 0.1.3
+ '@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
@@ -10264,20 +7704,20 @@ snapshots:
typescript: 5.9.3
yargs-parser: 21.1.1
optionalDependencies:
- "@babel/core": 7.28.5
- "@jest/transform": 30.2.0
- "@jest/types": 30.2.0
+ '@babel/core': 7.28.5
+ '@jest/transform': 30.2.0
+ '@jest/types': 30.2.0
babel-jest: 30.2.0(@babel/core@7.28.5)
jest-util: 30.2.0
ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3):
dependencies:
- "@cspotcode/source-map-support": 0.8.1
- "@tsconfig/node10": 1.0.12
- "@tsconfig/node12": 1.0.11
- "@tsconfig/node14": 1.0.3
- "@tsconfig/node16": 1.0.4
- "@types/node": 22.19.1
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.12
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 22.19.1
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -10298,7 +7738,7 @@ snapshots:
tuf-js@2.2.1:
dependencies:
- "@tufjs/models": 2.0.1
+ '@tufjs/models': 2.0.1
debug: 4.4.3(supports-color@5.5.0)
make-fetch-happen: 13.0.1
transitivePeerDependencies:
@@ -10351,25 +7791,25 @@ snapshots:
dependencies:
napi-postinstall: 0.3.4
optionalDependencies:
- "@unrs/resolver-binding-android-arm-eabi": 1.11.1
- "@unrs/resolver-binding-android-arm64": 1.11.1
- "@unrs/resolver-binding-darwin-arm64": 1.11.1
- "@unrs/resolver-binding-darwin-x64": 1.11.1
- "@unrs/resolver-binding-freebsd-x64": 1.11.1
- "@unrs/resolver-binding-linux-arm-gnueabihf": 1.11.1
- "@unrs/resolver-binding-linux-arm-musleabihf": 1.11.1
- "@unrs/resolver-binding-linux-arm64-gnu": 1.11.1
- "@unrs/resolver-binding-linux-arm64-musl": 1.11.1
- "@unrs/resolver-binding-linux-ppc64-gnu": 1.11.1
- "@unrs/resolver-binding-linux-riscv64-gnu": 1.11.1
- "@unrs/resolver-binding-linux-riscv64-musl": 1.11.1
- "@unrs/resolver-binding-linux-s390x-gnu": 1.11.1
- "@unrs/resolver-binding-linux-x64-gnu": 1.11.1
- "@unrs/resolver-binding-linux-x64-musl": 1.11.1
- "@unrs/resolver-binding-wasm32-wasi": 1.11.1
- "@unrs/resolver-binding-win32-arm64-msvc": 1.11.1
- "@unrs/resolver-binding-win32-ia32-msvc": 1.11.1
- "@unrs/resolver-binding-win32-x64-msvc": 1.11.1
+ '@unrs/resolver-binding-android-arm-eabi': 1.11.1
+ '@unrs/resolver-binding-android-arm64': 1.11.1
+ '@unrs/resolver-binding-darwin-arm64': 1.11.1
+ '@unrs/resolver-binding-darwin-x64': 1.11.1
+ '@unrs/resolver-binding-freebsd-x64': 1.11.1
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
+ '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
+ '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
+ '@unrs/resolver-binding-linux-x64-musl': 1.11.1
+ '@unrs/resolver-binding-wasm32-wasi': 1.11.1
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
+ '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
untildify@4.0.0: {}
@@ -10393,8 +7833,8 @@ snapshots:
v8-to-istanbul@9.3.0:
dependencies:
- "@jridgewell/trace-mapping": 0.3.31
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
validate-npm-package-license@3.0.4:
From 0c31ba3fde54802dac089be826c4e919c1e1eac6 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:05:12 +0000
Subject: [PATCH 2/8] fix: update CI workflow to use new package names
- Replace 'inquirerer' with 'genomic' in test matrix
- Replace 'create-gen-app' with 'scaffolds' in test matrix
- Add 'utils' package to test matrix
---
.github/workflows/ci.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c60c11c..251b980 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -59,8 +59,9 @@ jobs:
- schema-typescript
- strfy-js
- yanse
- - inquirerer
- - create-gen-app
+ - genomic
+ - scaffolds
+ - utils
- create-gen-app-test
steps:
From 8910308a8566f0cff6731ff0ce68819c3806e8bf Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:08:17 +0000
Subject: [PATCH 3/8] fix: update test snapshots and utils package test script
- Update snapshot files to use 'Genomic' instead of 'Inquirerer'
- Add --passWithNoTests flag to utils package test script
---
.../__snapshots__/autocomplete.test.ts.snap | 8 ++++----
.../__tests__/__snapshots__/prompt.test.ts.snap | 12 ++++++------
packages/utils/package.json | 2 +-
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap b/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
index bb9eb14..e803a3c 100644
--- a/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
+++ b/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
@@ -1,18 +1,18 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
-exports[`Inquirerer prompts user and correctly processes delayed input 1`] = `
+exports[`Genomic prompts user and correctly processes delayed input 1`] = `
{
"autocompleteField": "firry third option",
}
`;
-exports[`Inquirerer prompts user and correctly processes delayed input 2`] = `
+exports[`Genomic prompts user and correctly processes delayed input 2`] = `
{
"autocompleteField": "firry third option",
}
`;
-exports[`Inquirerer prompts user and correctly processes delayed input 3`] = `
+exports[`Genomic prompts user and correctly processes delayed input 3`] = `
[
"",
"autocompleteField?(--autocompleteField)
@@ -47,7 +47,7 @@ exports[`Inquirerer prompts user and correctly processes delayed input 3`] = `
]
`;
-exports[`Inquirerer prompts user and correctly processes delayed input 4`] = `
+exports[`Genomic prompts user and correctly processes delayed input 4`] = `
[
"",
"",
diff --git a/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap b/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
index 42e2a9c..7b5a366 100644
--- a/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
+++ b/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
-exports[`Inquirerer checkbox 1`] = `
+exports[`Genomic checkbox 1`] = `
{
"checkbox": [
{
@@ -17,7 +17,7 @@ exports[`Inquirerer checkbox 1`] = `
}
`;
-exports[`Inquirerer checkbox w/options 1`] = `
+exports[`Genomic checkbox w/options 1`] = `
{
"checkbox": [
{
@@ -39,19 +39,19 @@ exports[`Inquirerer checkbox w/options 1`] = `
}
`;
-exports[`Inquirerer handles multiple questions 1`] = `
+exports[`Genomic handles multiple questions 1`] = `
[
"",
"",
]
`;
-exports[`Inquirerer handles multiple questions 2`] = `[]`;
+exports[`Genomic handles multiple questions 2`] = `[]`;
-exports[`Inquirerer prompts user and correctly processes delayed input 1`] = `
+exports[`Genomic prompts user and correctly processes delayed input 1`] = `
[
"",
]
`;
-exports[`Inquirerer prompts user and correctly processes delayed input 2`] = `[]`;
+exports[`Genomic prompts user and correctly processes delayed input 2`] = `[]`;
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 1cf666f..37c0076 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -24,7 +24,7 @@
"clean": "makage clean",
"prepublishOnly": "npm run build",
"build": "makage build",
- "test": "jest",
+ "test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"dependencies": {
From 425222b8efb1b8bcc12ea676c576f94fb9cf9951 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:19:57 +0000
Subject: [PATCH 4/8] refactor: rename Genomic class to Prompter
- Rename Genomic -> Prompter throughout the codebase
- Rename GenomicOptions -> PrompterOptions for consistency
- Update test snapshots to use Prompter
- Add 'formerly inquirerer' note to README
- Update all code examples in README to use Prompter
This provides a cleaner API: import { Prompter } from 'genomic'
---
packages/genomic/README.md | 52 ++++++++++---------
.../__snapshots__/autocomplete.test.ts.snap | 8 +--
.../__snapshots__/prompt.test.ts.snap | 12 ++---
.../genomic/__tests__/autocomplete.test.ts | 6 +--
.../genomic/__tests__/defaultFrom.test.ts | 38 +++++++-------
packages/genomic/__tests__/positional.test.ts | 8 +--
packages/genomic/__tests__/prompt.test.ts | 16 +++---
packages/genomic/__tests__/setFrom.test.ts | 30 +++++------
packages/genomic/dev/dev.ts | 4 +-
packages/genomic/dev/index.ts | 4 +-
.../genomic/examples/defaultFrom-example.ts | 6 +--
packages/genomic/src/commander.ts | 8 +--
packages/genomic/src/keypress.ts | 2 +-
packages/genomic/src/prompt.ts | 6 +--
packages/genomic/src/resolvers/index.ts | 2 +-
15 files changed, 102 insertions(+), 100 deletions(-)
diff --git a/packages/genomic/README.md b/packages/genomic/README.md
index 8c81db7..e7d443e 100644
--- a/packages/genomic/README.md
+++ b/packages/genomic/README.md
@@ -15,7 +15,9 @@
-A powerful, TypeScript-first library for building beautiful command-line interfaces. Create interactive CLI tools with ease using intuitive prompts, validation, and rich user experiences.
+> Formerly [`inquirerer`](https://www.npmjs.com/package/inquirerer)
+
+A powerful, TypeScript-first library for building beautiful command-line interfaces.Create interactive CLI tools with ease using intuitive prompts, validation, and rich user experiences.
## Installation
@@ -41,7 +43,7 @@ npm install genomic
- [Question Types](#question-types)
- [Non-Interactive Mode](#non-interactive-mode)
- [API Reference](#api-reference)
- - [Genomic Class](#genomic-class)
+ - [Prompter Class](#genomic-class)
- [Question Types](#question-types-1)
- [Text Question](#text-question)
- [Number Question](#number-question)
@@ -67,9 +69,9 @@ npm install genomic
## Quick Start
```typescript
-import { Genomic } from 'genomic';
+import { Prompter } from 'genomic';
-const prompter = new Genomic();
+const prompter = new Prompter();
const answers = await prompter.prompt({}, [
{
@@ -98,7 +100,7 @@ Import types for full type safety:
```typescript
import {
- Genomic,
+ Prompter,
Question,
TextQuestion,
NumberQuestion,
@@ -106,7 +108,7 @@ import {
ListQuestion,
AutocompleteQuestion,
CheckboxQuestion,
- GenomicOptions,
+ PrompterOptions,
DefaultResolverRegistry,
registerDefaultResolver,
resolveDefault
@@ -151,7 +153,7 @@ interface BaseQuestion {
When running in CI/CD or without a TTY, genomic automatically falls back to default values:
```typescript
-const prompter = new Genomic({
+const prompter = new Prompter({
noTty: true, // Force non-interactive mode
useDefaults: true // Use defaults without prompting
});
@@ -159,12 +161,12 @@ const prompter = new Genomic({
## API Reference
-### Genomic Class
+### Prompter Class
#### Constructor Options
```typescript
-interface GenomicOptions {
+interface PrompterOptions {
noTty?: boolean; // Disable interactive mode
input?: Readable; // Input stream (default: process.stdin)
output?: Writable; // Output stream (default: process.stdout)
@@ -174,7 +176,7 @@ interface GenomicOptions {
resolverRegistry?: DefaultResolverRegistry; // Custom resolver registry
}
-const prompter = new Genomic(options);
+const prompter = new Prompter(options);
```
#### Methods
@@ -193,13 +195,13 @@ exit(): void
#### Managing Multiple Instances
-When working with multiple `Genomic` instances that share the same input stream (typically `process.stdin`), only one instance should be actively prompting at a time. Each instance attaches its own keyboard listener, so having multiple active instances will cause duplicate or unexpected keypress behavior.
+When working with multiple `Prompter` instances that share the same input stream (typically `process.stdin`), only one instance should be actively prompting at a time. Each instance attaches its own keyboard listener, so having multiple active instances will cause duplicate or unexpected keypress behavior.
**Best practices:**
-1. **Reuse a single instance** - Create one `Genomic` instance and reuse it for all prompts:
+1. **Reuse a single instance** - Create one `Prompter` instance and reuse it for all prompts:
```typescript
- const prompter = new Genomic();
+ const prompter = new Prompter();
// Use the same instance for multiple prompt sessions
const answers1 = await prompter.prompt({}, questions1);
@@ -210,11 +212,11 @@ When working with multiple `Genomic` instances that share the same input stream
2. **Close before creating another** - If you need separate instances, close the first before using the second:
```typescript
- const prompter1 = new Genomic();
+ const prompter1 = new Prompter();
const answers1 = await prompter1.prompt({}, questions1);
prompter1.close(); // Important: close before creating another
- const prompter2 = new Genomic();
+ const prompter2 = new Prompter();
const answers2 = await prompter2.prompt({}, questions2);
prompter2.close();
```
@@ -508,11 +510,11 @@ const questions: Question[] = [
### Project Setup Wizard
```typescript
-import { Genomic, Question } from 'genomic';
+import { Prompter, Question } from 'genomic';
import minimist from 'minimist';
const argv = minimist(process.argv.slice(2));
-const prompter = new Genomic();
+const prompter = new Prompter();
const questions: Question[] = [
{
@@ -797,7 +799,7 @@ The `defaultFrom` feature allows you to automatically populate question defaults
### Quick Example
```typescript
-import { Genomic } from 'genomic';
+import { Prompter } from 'genomic';
const questions = [
{
@@ -826,13 +828,13 @@ const questions = [
}
];
-const prompter = new Genomic();
+const prompter = new Prompter();
const answers = await prompter.prompt({}, questions);
```
### Built-in Resolvers
-Genomic comes with several built-in resolvers ready to use:
+Prompter comes with several built-in resolvers ready to use:
#### Git Configuration
@@ -996,10 +998,10 @@ const questions = [
### Instance-Specific Resolvers
-For isolated resolver registries, use a custom resolver registry per Genomic instance:
+For isolated resolver registries, use a custom resolver registry per Prompter instance:
```typescript
-import { DefaultResolverRegistry, Genomic } from 'genomic';
+import { DefaultResolverRegistry, Prompter } from 'genomic';
const customRegistry = new DefaultResolverRegistry();
@@ -1007,7 +1009,7 @@ const customRegistry = new DefaultResolverRegistry();
customRegistry.register('app.name', () => 'my-app');
customRegistry.register('app.port', () => 3000);
-const prompter = new Genomic({
+const prompter = new Prompter({
resolverRegistry: customRegistry // Use custom registry
});
@@ -1088,7 +1090,7 @@ DEBUG=genomic node your-cli.js
### Real-World Use Case
```typescript
-import { Genomic, registerDefaultResolver } from 'genomic';
+import { Prompter, registerDefaultResolver } from 'genomic';
// Register a resolver for current directory name
registerDefaultResolver('cwd.name', () => {
@@ -1125,7 +1127,7 @@ const questions = [
}
];
-const prompter = new Genomic();
+const prompter = new Prompter();
const config = await prompter.prompt({}, questions);
```
diff --git a/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap b/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
index e803a3c..9c23103 100644
--- a/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
+++ b/packages/genomic/__tests__/__snapshots__/autocomplete.test.ts.snap
@@ -1,18 +1,18 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
-exports[`Genomic prompts user and correctly processes delayed input 1`] = `
+exports[`Prompter prompts user and correctly processes delayed input 1`] = `
{
"autocompleteField": "firry third option",
}
`;
-exports[`Genomic prompts user and correctly processes delayed input 2`] = `
+exports[`Prompter prompts user and correctly processes delayed input 2`] = `
{
"autocompleteField": "firry third option",
}
`;
-exports[`Genomic prompts user and correctly processes delayed input 3`] = `
+exports[`Prompter prompts user and correctly processes delayed input 3`] = `
[
"",
"autocompleteField?(--autocompleteField)
@@ -47,7 +47,7 @@ exports[`Genomic prompts user and correctly processes delayed input 3`] = `
]
`;
-exports[`Genomic prompts user and correctly processes delayed input 4`] = `
+exports[`Prompter prompts user and correctly processes delayed input 4`] = `
[
"",
"",
diff --git a/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap b/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
index 7b5a366..b67598e 100644
--- a/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
+++ b/packages/genomic/__tests__/__snapshots__/prompt.test.ts.snap
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
-exports[`Genomic checkbox 1`] = `
+exports[`Prompter checkbox 1`] = `
{
"checkbox": [
{
@@ -17,7 +17,7 @@ exports[`Genomic checkbox 1`] = `
}
`;
-exports[`Genomic checkbox w/options 1`] = `
+exports[`Prompter checkbox w/options 1`] = `
{
"checkbox": [
{
@@ -39,19 +39,19 @@ exports[`Genomic checkbox w/options 1`] = `
}
`;
-exports[`Genomic handles multiple questions 1`] = `
+exports[`Prompter handles multiple questions 1`] = `
[
"",
"",
]
`;
-exports[`Genomic handles multiple questions 2`] = `[]`;
+exports[`Prompter handles multiple questions 2`] = `[]`;
-exports[`Genomic prompts user and correctly processes delayed input 1`] = `
+exports[`Prompter prompts user and correctly processes delayed input 1`] = `
[
"",
]
`;
-exports[`Genomic prompts user and correctly processes delayed input 2`] = `[]`;
+exports[`Prompter prompts user and correctly processes delayed input 2`] = `[]`;
diff --git a/packages/genomic/__tests__/autocomplete.test.ts b/packages/genomic/__tests__/autocomplete.test.ts
index dce8937..fdc0416 100644
--- a/packages/genomic/__tests__/autocomplete.test.ts
+++ b/packages/genomic/__tests__/autocomplete.test.ts
@@ -1,9 +1,9 @@
-import { Genomic, Question } from '../src';
+import { Prompter, Question } from '../src';
import { KEY_SEQUENCES, setupTests, TestEnvironment } from '../test-utils/setup';
const beforeEachSetup = setupTests();
-describe('Genomic', () => {
+describe('Prompter', () => {
let environment: TestEnvironment;
beforeEach(() => {
@@ -13,7 +13,7 @@ describe('Genomic', () => {
it('prompts user and correctly processes delayed input', async () => {
const { mockInput, mockOutput, writeResults, transformResults, enqueueInputResponse } = environment;
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
diff --git a/packages/genomic/__tests__/defaultFrom.test.ts b/packages/genomic/__tests__/defaultFrom.test.ts
index 4de7731..d1ade9d 100644
--- a/packages/genomic/__tests__/defaultFrom.test.ts
+++ b/packages/genomic/__tests__/defaultFrom.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Genomic, DefaultResolverRegistry } from '../src';
+import { Prompter, DefaultResolverRegistry } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -16,7 +16,7 @@ function sleep(ms: number): Promise {
return new Promise(resolve => setTimeout(resolve, ms));
}
-describe('Genomic - defaultFrom feature', () => {
+describe('Prompter - defaultFrom feature', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -100,7 +100,7 @@ describe('Genomic - defaultFrom feature', () => {
it('should use git.user.name as default', async () => {
mockedExecSync.mockReturnValue('John Doe\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true // Non-interactive mode to use defaults
@@ -126,7 +126,7 @@ describe('Genomic - defaultFrom feature', () => {
it('should use git.user.email as default', async () => {
mockedExecSync.mockReturnValue('john@example.com\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -154,7 +154,7 @@ describe('Genomic - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -179,7 +179,7 @@ describe('Genomic - defaultFrom feature', () => {
.mockReturnValueOnce('Jane Smith\n' as any)
.mockReturnValueOnce('jane@example.com\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -209,7 +209,7 @@ describe('Genomic - defaultFrom feature', () => {
describe('date resolvers', () => {
it('should use date.year as default', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -229,7 +229,7 @@ describe('Genomic - defaultFrom feature', () => {
});
it('should use date.iso as default', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -249,7 +249,7 @@ describe('Genomic - defaultFrom feature', () => {
});
it('should resolve multiple date fields', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -288,7 +288,7 @@ describe('Genomic - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'custom-result');
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -315,7 +315,7 @@ describe('Genomic - defaultFrom feature', () => {
return Promise.resolve('async-result');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -340,7 +340,7 @@ describe('Genomic - defaultFrom feature', () => {
it('should prioritize argv over defaultFrom', async () => {
mockedExecSync.mockReturnValue('Git User\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -365,7 +365,7 @@ describe('Genomic - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -387,7 +387,7 @@ describe('Genomic - defaultFrom feature', () => {
it('should handle mixed defaultFrom and static defaults', async () => {
mockedExecSync.mockReturnValue('Jane Doe\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -426,7 +426,7 @@ describe('Genomic - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.bool', () => true);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true, // Non-interactive to avoid readline complexity
@@ -450,7 +450,7 @@ describe('Genomic - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.number', () => 42);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -476,7 +476,7 @@ describe('Genomic - defaultFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.empty', () => '');
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -504,7 +504,7 @@ describe('Genomic - defaultFrom feature', () => {
throw new Error('Resolver error');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -530,7 +530,7 @@ describe('Genomic - defaultFrom feature', () => {
throw new Error('Git not configured');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
diff --git a/packages/genomic/__tests__/positional.test.ts b/packages/genomic/__tests__/positional.test.ts
index 3a17d1b..bdc0962 100644
--- a/packages/genomic/__tests__/positional.test.ts
+++ b/packages/genomic/__tests__/positional.test.ts
@@ -1,4 +1,4 @@
-import { Genomic } from '../src';
+import { Prompter } from '../src';
import { Question } from '../src/question';
interface TestResult {
@@ -7,10 +7,10 @@ interface TestResult {
}
describe('Positional Arguments (_: true)', () => {
- let prompter: Genomic;
+ let prompter: Prompter;
beforeEach(() => {
- prompter = new Genomic({ noTty: true });
+ prompter = new Prompter({ noTty: true });
});
afterEach(() => {
@@ -319,7 +319,7 @@ describe('Positional Arguments (_: true)', () => {
});
it('does not mutate original argv when mutateArgs is false', async () => {
- const nonMutatingPrompter = new Genomic({ noTty: true, mutateArgs: false });
+ const nonMutatingPrompter = new Prompter({ noTty: true, mutateArgs: false });
const questions: Question[] = [
{ _: true, name: 'foo', type: 'text' }
];
diff --git a/packages/genomic/__tests__/prompt.test.ts b/packages/genomic/__tests__/prompt.test.ts
index 4013112..6072cc7 100644
--- a/packages/genomic/__tests__/prompt.test.ts
+++ b/packages/genomic/__tests__/prompt.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Genomic } from '../src';
+import { Prompter } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -12,7 +12,7 @@ function sleep(ms: number): Promise {
const snap = (str: any) => expect(str).toMatchSnapshot();
-describe('Genomic', () => {
+describe('Prompter', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -100,7 +100,7 @@ describe('Genomic', () => {
it('prompts user and correctly processes delayed input', async () => {
enqueueInputResponse({ type: 'read', value: 'user input' });
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
@@ -122,7 +122,7 @@ describe('Genomic', () => {
enqueueInputResponse({ type: 'read', value: 'first question answer' });
enqueueInputResponse({ type: 'read', value: 'second question answer' });
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
@@ -145,7 +145,7 @@ describe('Genomic', () => {
it('handles combined key events and readline inputs', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
@@ -173,7 +173,7 @@ describe('Genomic', () => {
it('checkbox', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
@@ -202,7 +202,7 @@ describe('Genomic', () => {
it('checkbox w/options', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
@@ -234,7 +234,7 @@ describe('Genomic', () => {
it('handles readline inputs', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: false
diff --git a/packages/genomic/__tests__/setFrom.test.ts b/packages/genomic/__tests__/setFrom.test.ts
index 3c49150..27722c6 100644
--- a/packages/genomic/__tests__/setFrom.test.ts
+++ b/packages/genomic/__tests__/setFrom.test.ts
@@ -1,7 +1,7 @@
import readline from 'readline';
import { Readable, Transform, Writable } from 'stream';
import { stripAnsi } from 'clean-ansi';
-import { Genomic, DefaultResolverRegistry } from '../src';
+import { Prompter, DefaultResolverRegistry } from '../src';
import { Question } from '../src/question';
jest.mock('readline');
@@ -12,7 +12,7 @@ jest.mock('child_process', () => ({
import { execSync } from 'child_process';
const mockedExecSync = execSync as jest.MockedFunction;
-describe('Genomic - setFrom feature', () => {
+describe('Prompter - setFrom feature', () => {
let mockWrite: jest.Mock;
let mockInput: Readable;
let mockOutput: Writable;
@@ -84,7 +84,7 @@ describe('Genomic - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'auto-set-value');
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -107,7 +107,7 @@ describe('Genomic - setFrom feature', () => {
it('should use git.user.name with setFrom', async () => {
mockedExecSync.mockReturnValue('John Doe\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -131,7 +131,7 @@ describe('Genomic - setFrom feature', () => {
});
it('should use date.year with setFrom', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -151,7 +151,7 @@ describe('Genomic - setFrom feature', () => {
});
it('should use workspace resolvers with setFrom', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -185,7 +185,7 @@ describe('Genomic - setFrom feature', () => {
customRegistry.register('resolver.a', () => 'value-a');
customRegistry.register('resolver.b', () => 'value-b');
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -217,7 +217,7 @@ describe('Genomic - setFrom feature', () => {
it('should allow both setFrom and defaultFrom on different questions', async () => {
mockedExecSync.mockReturnValue('Git User\n' as any);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -250,7 +250,7 @@ describe('Genomic - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.value', () => 'resolver-value');
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -274,7 +274,7 @@ describe('Genomic - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.undefined', () => undefined);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -302,7 +302,7 @@ describe('Genomic - setFrom feature', () => {
throw new Error('Resolver error');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -331,7 +331,7 @@ describe('Genomic - setFrom feature', () => {
return Promise.resolve('async-value');
});
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -354,7 +354,7 @@ describe('Genomic - setFrom feature', () => {
describe('multiple setFrom fields', () => {
it('should resolve multiple setFrom fields', async () => {
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true
@@ -393,7 +393,7 @@ describe('Genomic - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.number', () => 42);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
@@ -417,7 +417,7 @@ describe('Genomic - setFrom feature', () => {
const customRegistry = new DefaultResolverRegistry();
customRegistry.register('custom.bool', () => true);
- const prompter = new Genomic({
+ const prompter = new Prompter({
input: mockInput,
output: mockOutput,
noTty: true,
diff --git a/packages/genomic/dev/dev.ts b/packages/genomic/dev/dev.ts
index 0118c53..b266411 100644
--- a/packages/genomic/dev/dev.ts
+++ b/packages/genomic/dev/dev.ts
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import minimist from 'minimist';
-import { Genomic } from '../src';
+import { Prompter } from '../src';
import { AutocompleteQuestion, ConfirmQuestion, Question } from '../src/question';
import { displayVersion } from '../src/utils';
@@ -22,7 +22,7 @@ if (argv.version) {
process.exit(0);
}
-const prompter = new Genomic({
+const prompter = new Prompter({
noTty: !argv.tty
});
diff --git a/packages/genomic/dev/index.ts b/packages/genomic/dev/index.ts
index 6324814..a1d7e6e 100644
--- a/packages/genomic/dev/index.ts
+++ b/packages/genomic/dev/index.ts
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import minimist from 'minimist';
-import { Genomic } from '../src';
+import { Prompter } from '../src';
import { AutocompleteQuestion, ConfirmQuestion, Question } from '../src/question';
import { displayVersion } from '../src/utils';
@@ -26,7 +26,7 @@ if (argv.version) {
process.exit(0);
}
-const prompter = new Genomic({
+const prompter = new Prompter({
noTty: !argv.tty
});
diff --git a/packages/genomic/examples/defaultFrom-example.ts b/packages/genomic/examples/defaultFrom-example.ts
index c94c9dc..f6920b8 100644
--- a/packages/genomic/examples/defaultFrom-example.ts
+++ b/packages/genomic/examples/defaultFrom-example.ts
@@ -1,4 +1,4 @@
-import { Genomic, registerDefaultResolver } from '../src';
+import { Prompter, registerDefaultResolver } from '../src';
/**
* Example demonstrating the new defaultFrom feature
@@ -33,7 +33,7 @@ async function basicExample() {
}
];
- const prompter = new Genomic();
+ const prompter = new Prompter();
const answers = await prompter.prompt({}, questions);
console.log('\nAnswers:', answers);
@@ -68,7 +68,7 @@ async function customResolverExample() {
}
];
- const prompter = new Genomic();
+ const prompter = new Prompter();
const answers = await prompter.prompt({}, questions);
console.log('\nAnswers:', answers);
diff --git a/packages/genomic/src/commander.ts b/packages/genomic/src/commander.ts
index b5a576c..af9f044 100644
--- a/packages/genomic/src/commander.ts
+++ b/packages/genomic/src/commander.ts
@@ -2,11 +2,11 @@ import deepmerge from 'deepmerge';
import minimist, { Opts, ParsedArgs } from 'minimist';
import { Readable, Writable } from 'stream';
-import { Genomic } from './prompt';
+import { Prompter } from './prompt';
import { getVersion } from './utils';
// Define the type for the command handler function
-export type CommandHandler = (argv: ParsedArgs, prompter: Genomic, options: CLIOptions) => void;
+export type CommandHandler = (argv: ParsedArgs, prompter: Prompter, options: CLIOptions) => void;
export interface CLIOptions {
noTty: boolean;
@@ -30,7 +30,7 @@ export const defaultCLIOptions: CLIOptions = {
export class CLI {
private argv: ParsedArgs;
- private prompter: Genomic;
+ private prompter: Prompter;
private commandHandler: CommandHandler;
private options: CLIOptions;
@@ -48,7 +48,7 @@ export class CLI {
this.argv = argv ? argv : minimist(process.argv.slice(2), this.options.minimistOpts);
- this.prompter = new Genomic({
+ this.prompter = new Prompter({
noTty: this.options.noTty,
input: this.options.input,
output: this.options.output
diff --git a/packages/genomic/src/keypress.ts b/packages/genomic/src/keypress.ts
index c255813..c3e02f9 100644
--- a/packages/genomic/src/keypress.ts
+++ b/packages/genomic/src/keypress.ts
@@ -26,7 +26,7 @@ export const KEY_CODES = {
* Handles keyboard input for interactive prompts.
*
* **Important**: Only one TerminalKeypress instance should be actively listening
- * on a given input stream at a time. If you need multiple Genomic instances,
+ * on a given input stream at a time. If you need multiple Prompter instances,
* call `close()` on the first instance before using the second, or reuse a single
* instance for all prompts.
*
diff --git a/packages/genomic/src/prompt.ts b/packages/genomic/src/prompt.ts
index 60b9acd..7d12f59 100644
--- a/packages/genomic/src/prompt.ts
+++ b/packages/genomic/src/prompt.ts
@@ -171,7 +171,7 @@ function generatePromptMessage(question: Question, ctx: PromptContext): string {
return lines.join('\n') + '\n';
}
-export interface GenomicOptions {
+export interface PrompterOptions {
noTty?: boolean;
input?: Readable;
output?: Writable;
@@ -180,7 +180,7 @@ export interface GenomicOptions {
mutateArgs?: boolean;
resolverRegistry?: DefaultResolverRegistry;
}
-export class Genomic {
+export class Prompter {
private rl: readline.Interface | null;
private keypress: TerminalKeypress | null;
private noTty: boolean;
@@ -194,7 +194,7 @@ export class Genomic {
private handledKeys: Set = new Set();
constructor(
- options?: GenomicOptions
+ options?: PrompterOptions
) {
const {
noTty = false,
diff --git a/packages/genomic/src/resolvers/index.ts b/packages/genomic/src/resolvers/index.ts
index 2b313c4..6c2f59f 100644
--- a/packages/genomic/src/resolvers/index.ts
+++ b/packages/genomic/src/resolvers/index.ts
@@ -85,7 +85,7 @@ export class DefaultResolverRegistry {
/**
* Global resolver registry instance with built-in resolvers.
- * This is the default registry used by Genomic unless a custom one is provided.
+ * This is the default registry used by Prompter unless a custom one is provided.
*/
export const globalResolverRegistry = new DefaultResolverRegistry({
...gitResolvers,
From 65f21fe7e2b8ce1a4deca7a4472582d167775f9d Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:21:43 +0000
Subject: [PATCH 5/8] fix: update scaffolds package to use Prompter class name
---
.../scaffolds/__tests__/create-gen.test.ts | 30 +++++++++----------
packages/scaffolds/src/scaffolder/types.ts | 6 ++--
packages/scaffolds/src/template/prompt.ts | 8 ++---
.../scaffolds/src/template/templatizer.ts | 4 +--
packages/scaffolds/src/template/types.ts | 6 ++--
5 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/packages/scaffolds/__tests__/create-gen.test.ts b/packages/scaffolds/__tests__/create-gen.test.ts
index 4b1b08b..681d4a5 100644
--- a/packages/scaffolds/__tests__/create-gen.test.ts
+++ b/packages/scaffolds/__tests__/create-gen.test.ts
@@ -13,7 +13,7 @@ jest.mock('child_process', () => {
jest.mock('genomic', () => {
return {
- Genomic: jest.fn().mockImplementation(() => {
+ Prompter: jest.fn().mockImplementation(() => {
return {
prompt: jest.fn().mockResolvedValue({}),
close: jest.fn(),
@@ -199,13 +199,13 @@ module.exports = {
describe('promptUser', () => {
it('should generate questions for file and content replacers', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
author: 'John Doe',
});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -228,12 +228,12 @@ module.exports = {
});
it('should prioritize project questions over auto-generated ones', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -263,13 +263,13 @@ module.exports = {
});
it('should use argv to pre-populate answers', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
projectName: 'my-project',
author: 'John Doe',
});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -292,10 +292,10 @@ module.exports = {
});
it('should require exact CLI override names', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -325,10 +325,10 @@ module.exports = {
});
it('should not map CLI overrides sharing substrings', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -358,12 +358,12 @@ module.exports = {
});
it('should hydrate template variables from alias answers', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
fullName: 'Prompted User',
});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
@@ -389,12 +389,12 @@ module.exports = {
});
it('should not hydrate overlapping template variables implicitly', async () => {
- const { Genomic } = require('genomic');
+ const { Prompter } = require('genomic');
const mockPrompt = jest.fn().mockResolvedValue({
description: 'Prompted description',
});
- Genomic.mockImplementation(() => ({
+ Prompter.mockImplementation(() => ({
prompt: mockPrompt,
close: jest.fn(),
}));
diff --git a/packages/scaffolds/src/scaffolder/types.ts b/packages/scaffolds/src/scaffolder/types.ts
index ebc0a2b..95cc689 100644
--- a/packages/scaffolds/src/scaffolder/types.ts
+++ b/packages/scaffolds/src/scaffolder/types.ts
@@ -1,4 +1,4 @@
-import { Genomic } from 'genomic';
+import { Prompter } from 'genomic';
import { Question } from 'genomic';
/**
@@ -81,11 +81,11 @@ export interface ScaffoldOptions {
noTty?: boolean;
/**
- * Optional Genomic instance to reuse for prompting.
+ * Optional Prompter instance to reuse for prompting.
* If provided, the caller retains ownership and is responsible for closing it.
* If not provided, a new instance will be created and closed automatically.
*/
- prompter?: Genomic;
+ prompter?: Prompter;
}
/**
diff --git a/packages/scaffolds/src/template/prompt.ts b/packages/scaffolds/src/template/prompt.ts
index 29267bb..23a1195 100644
--- a/packages/scaffolds/src/template/prompt.ts
+++ b/packages/scaffolds/src/template/prompt.ts
@@ -1,4 +1,4 @@
-import { Genomic, Question } from 'genomic';
+import { Prompter, Question } from 'genomic';
import { ExtractedVariables } from '../types';
@@ -71,7 +71,7 @@ function normalizeQuestionName(name: string): string {
* Prompt the user for variable values
* @param extractedVariables - Variables extracted from the template
* @param argv - Command-line arguments to pre-populate answers
- * @param existingPrompter - Optional existing Genomic instance to reuse.
+ * @param existingPrompter - Optional existing Prompter instance to reuse.
* If provided, the caller retains ownership and must close it themselves.
* If not provided, a new instance is created and closed automatically.
* @param noTty - Whether to disable TTY mode (only used when creating a new prompter)
@@ -80,7 +80,7 @@ function normalizeQuestionName(name: string): string {
export async function promptUser(
extractedVariables: ExtractedVariables,
argv: Record = {},
- existingPrompter?: Genomic,
+ existingPrompter?: Prompter,
noTty: boolean = false
): Promise> {
const questions = generateQuestions(extractedVariables);
@@ -93,7 +93,7 @@ export async function promptUser(
// If an existing prompter is provided, use it (caller owns lifecycle)
// Otherwise, create a new one and close it when done
- const prompter = existingPrompter ?? new Genomic({ noTty });
+ const prompter = existingPrompter ?? new Prompter({ noTty });
const shouldClose = !existingPrompter;
try {
diff --git a/packages/scaffolds/src/template/templatizer.ts b/packages/scaffolds/src/template/templatizer.ts
index 7f26918..2e501e0 100644
--- a/packages/scaffolds/src/template/templatizer.ts
+++ b/packages/scaffolds/src/template/templatizer.ts
@@ -64,13 +64,13 @@ export class Templatizer {
* Prompt user for variables
* @param extracted - Extracted variables from template
* @param argv - Pre-populated answers
- * @param prompter - Optional existing Genomic instance to reuse
+ * @param prompter - Optional existing Prompter instance to reuse
* @param noTty - Whether to disable TTY mode (only used when creating a new prompter)
*/
async prompt(
extracted: ExtractedVariables,
argv?: Record,
- prompter?: import('genomic').Genomic,
+ prompter?: import('genomic').Prompter,
noTty?: boolean
): Promise> {
return promptUser(extracted, argv ?? {}, prompter, noTty ?? false);
diff --git a/packages/scaffolds/src/template/types.ts b/packages/scaffolds/src/template/types.ts
index c1bd8fb..a5bbf04 100644
--- a/packages/scaffolds/src/template/types.ts
+++ b/packages/scaffolds/src/template/types.ts
@@ -1,4 +1,4 @@
-import { Genomic } from 'genomic';
+import { Prompter } from 'genomic';
import { ExtractedVariables } from '../types';
@@ -7,11 +7,11 @@ export interface ProcessOptions {
noTty?: boolean;
fromPath?: string;
/**
- * Optional Genomic instance to reuse for prompting.
+ * Optional Prompter instance to reuse for prompting.
* If provided, the caller retains ownership and is responsible for closing it.
* If not provided, a new instance will be created and closed automatically.
*/
- prompter?: Genomic;
+ prompter?: Prompter;
}
export interface TemplatizerResult {
From 8063a70bb258159a22b7c21f2582b9afef9e20cf Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:23:14 +0000
Subject: [PATCH 6/8] fix: update create-gen-app-test package to use Prompter
class name
---
packages/create-gen-app-test/dev/index.ts | 4 ++--
packages/create-gen-app-test/src/cli.ts | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/packages/create-gen-app-test/dev/index.ts b/packages/create-gen-app-test/dev/index.ts
index 50a5368..e666402 100644
--- a/packages/create-gen-app-test/dev/index.ts
+++ b/packages/create-gen-app-test/dev/index.ts
@@ -1,5 +1,5 @@
import * as fs from 'fs';
-import { Genomic, ListQuestion } from 'genomic';
+import { Prompter, ListQuestion } from 'genomic';
import minimist from 'minimist';
import * as path from 'path';
@@ -70,7 +70,7 @@ async function main() {
);
}
} else {
- const genomic = new Genomic();
+ const genomic = new Prompter();
const question: ListQuestion = {
type: 'list',
name: 'template',
diff --git a/packages/create-gen-app-test/src/cli.ts b/packages/create-gen-app-test/src/cli.ts
index f1f364f..7043441 100644
--- a/packages/create-gen-app-test/src/cli.ts
+++ b/packages/create-gen-app-test/src/cli.ts
@@ -3,7 +3,7 @@
import * as fs from 'fs';
import * as path from 'path';
-import { Genomic, ListQuestion } from 'genomic';
+import { Prompter, ListQuestion } from 'genomic';
import minimist, { ParsedArgs } from 'minimist';
import { CacheManager, GitCloner, checkNpmVersion } from '@genomic/scaffolds';
@@ -279,7 +279,7 @@ function printVersion(): void {
}
async function promptForTemplate(templates: string[]): Promise {
- const prompter = new Genomic();
+ const prompter = new Prompter();
const question: ListQuestion = {
type: 'list',
name: 'template',
From 5f7dc5c752372a8c51d992d9b90751829210b796 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:38:27 +0000
Subject: [PATCH 7/8] fix: use 'prompter' as variable name instead of 'genomic'
---
packages/create-gen-app-test/dev/index.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/create-gen-app-test/dev/index.ts b/packages/create-gen-app-test/dev/index.ts
index e666402..e9183db 100644
--- a/packages/create-gen-app-test/dev/index.ts
+++ b/packages/create-gen-app-test/dev/index.ts
@@ -70,7 +70,7 @@ async function main() {
);
}
} else {
- const genomic = new Prompter();
+ const prompter = new Prompter();
const question: ListQuestion = {
type: 'list',
name: 'template',
@@ -80,12 +80,12 @@ async function main() {
};
try {
- const answers = (await genomic.prompt({}, [question])) as {
+ const answers = (await prompter.prompt({}, [question])) as {
template: string;
};
selectedFolder = answers.template;
} finally {
- genomic.close();
+ prompter.close();
}
}
From 41f82f2003a79befb28cbe5cfaeb3a5c4a1b0411 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 26 Dec 2025 23:39:58 +0000
Subject: [PATCH 8/8] fix: remove exports field from genomic package.json
---
packages/genomic/package.json | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/packages/genomic/package.json b/packages/genomic/package.json
index 5242f6f..d39751c 100644
--- a/packages/genomic/package.json
+++ b/packages/genomic/package.json
@@ -6,18 +6,6 @@
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
- "exports": {
- ".": {
- "types": "./index.d.ts",
- "import": "./esm/index.js",
- "require": "./index.js"
- },
- "./test-utils": {
- "types": "./test-utils/setup.d.ts",
- "import": "./esm/test-utils/setup.js",
- "require": "./test-utils/setup.js"
- }
- },
"homepage": "https://github.com/constructive-io/dev-utils",
"license": "MIT",
"publishConfig": {